Skip to content

Commit df094f5

Browse files
author
awstools
committed
feat(client-appstream): Add support for managing admin consent requirement on selected domains for OneDrive Storage Connectors in AppStream2.0.
1 parent 5da8835 commit df094f5

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

clients/client-appstream/src/commands/CreateStackCommand.ts

+6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
4646
* Domains: [ // DomainList
4747
* "STRING_VALUE",
4848
* ],
49+
* DomainsRequireAdminConsent: [
50+
* "STRING_VALUE",
51+
* ],
4952
* },
5053
* ],
5154
* RedirectURL: "STRING_VALUE",
@@ -93,6 +96,9 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
9396
* // Domains: [ // DomainList
9497
* // "STRING_VALUE",
9598
* // ],
99+
* // DomainsRequireAdminConsent: [
100+
* // "STRING_VALUE",
101+
* // ],
96102
* // },
97103
* // ],
98104
* // RedirectURL: "STRING_VALUE",

clients/client-appstream/src/commands/DescribeStacksCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
5858
* // Domains: [ // DomainList
5959
* // "STRING_VALUE",
6060
* // ],
61+
* // DomainsRequireAdminConsent: [
62+
* // "STRING_VALUE",
63+
* // ],
6164
* // },
6265
* // ],
6366
* // RedirectURL: "STRING_VALUE",

clients/client-appstream/src/commands/UpdateStackCommand.ts

+6
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
4646
* Domains: [ // DomainList
4747
* "STRING_VALUE",
4848
* ],
49+
* DomainsRequireAdminConsent: [
50+
* "STRING_VALUE",
51+
* ],
4952
* },
5053
* ],
5154
* DeleteStorageConnectors: true || false,
@@ -94,6 +97,9 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
9497
* // Domains: [ // DomainList
9598
* // "STRING_VALUE",
9699
* // ],
100+
* // DomainsRequireAdminConsent: [
101+
* // "STRING_VALUE",
102+
* // ],
97103
* // },
98104
* // ],
99105
* // RedirectURL: "STRING_VALUE",

clients/client-appstream/src/models/models_0.ts

+6
Original file line numberDiff line numberDiff line change
@@ -3297,6 +3297,12 @@ export interface StorageConnector {
32973297
* @public
32983298
*/
32993299
Domains?: string[] | undefined;
3300+
3301+
/**
3302+
* <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>
3303+
* @public
3304+
*/
3305+
DomainsRequireAdminConsent?: string[] | undefined;
33003306
}
33013307

33023308
/**

codegen/sdk-codegen/aws-models/appstream.json

+6
Original file line numberDiff line numberDiff line change
@@ -9228,6 +9228,12 @@
92289228
"traits": {
92299229
"smithy.api#documentation": "<p>The names of the domains for the account.</p>"
92309230
}
9231+
},
9232+
"DomainsRequireAdminConsent": {
9233+
"target": "com.amazonaws.appstream#DomainList",
9234+
"traits": {
9235+
"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>"
9236+
}
92319237
}
92329238
},
92339239
"traits": {

0 commit comments

Comments
 (0)