Skip to content

Commit

Permalink
feat(client-appstream): Add support for managing admin consent requir…
Browse files Browse the repository at this point in the history
…ement on selected domains for OneDrive Storage Connectors in AppStream2.0.
  • Loading branch information
awstools committed Jan 30, 2025
1 parent 5da8835 commit df094f5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions clients/client-appstream/src/commands/CreateStackCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
* Domains: [ // DomainList
* "STRING_VALUE",
* ],
* DomainsRequireAdminConsent: [
* "STRING_VALUE",
* ],
* },
* ],
* RedirectURL: "STRING_VALUE",
Expand Down Expand Up @@ -93,6 +96,9 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
* // Domains: [ // DomainList
* // "STRING_VALUE",
* // ],
* // DomainsRequireAdminConsent: [
* // "STRING_VALUE",
* // ],
* // },
* // ],
* // RedirectURL: "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
* // Domains: [ // DomainList
* // "STRING_VALUE",
* // ],
* // DomainsRequireAdminConsent: [
* // "STRING_VALUE",
* // ],
* // },
* // ],
* // RedirectURL: "STRING_VALUE",
Expand Down
6 changes: 6 additions & 0 deletions clients/client-appstream/src/commands/UpdateStackCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
* Domains: [ // DomainList
* "STRING_VALUE",
* ],
* DomainsRequireAdminConsent: [
* "STRING_VALUE",
* ],
* },
* ],
* DeleteStorageConnectors: true || false,
Expand Down Expand Up @@ -94,6 +97,9 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
* // Domains: [ // DomainList
* // "STRING_VALUE",
* // ],
* // DomainsRequireAdminConsent: [
* // "STRING_VALUE",
* // ],
* // },
* // ],
* // RedirectURL: "STRING_VALUE",
Expand Down
6 changes: 6 additions & 0 deletions clients/client-appstream/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3297,6 +3297,12 @@ export interface StorageConnector {
* @public
*/
Domains?: string[] | undefined;

/**
* <p>The OneDrive for Business domains where you require admin consent when users try to link their OneDrive account to AppStream 2.0. The attribute can only be specified when ConnectorType=ONE_DRIVE.</p>
* @public
*/
DomainsRequireAdminConsent?: string[] | undefined;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions codegen/sdk-codegen/aws-models/appstream.json
Original file line number Diff line number Diff line change
Expand Up @@ -9228,6 +9228,12 @@
"traits": {
"smithy.api#documentation": "<p>The names of the domains for the account.</p>"
}
},
"DomainsRequireAdminConsent": {
"target": "com.amazonaws.appstream#DomainList",
"traits": {
"smithy.api#documentation": "<p>The OneDrive for Business domains where you require admin consent when users try to link their OneDrive account to AppStream 2.0. The attribute can only be specified when ConnectorType=ONE_DRIVE.</p>"
}
}
},
"traits": {
Expand Down

0 comments on commit df094f5

Please sign in to comment.