@aws-sdk/client-workspaces-web 3.321.1 → 3.326.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +7 -0
- package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +7 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +7 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +6 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +7 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +6 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +4 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +12 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +13 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +18 -0
- package/dist-types/commands/GetPortalCommand.d.ts +21 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +7 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +14 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +11 -0
- package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +18 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +11 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +13 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +12 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +23 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +11 -0
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +18 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +12 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +13 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +18 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +21 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +12 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +18 -0
- package/package.json +16 -16
|
@@ -31,6 +31,15 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetTrustStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetTrustStoreResponse
|
|
35
|
+
* // trustStore: { // TrustStore
|
|
36
|
+
* // associatedPortalArns: [ // ArnList
|
|
37
|
+
* // "STRING_VALUE",
|
|
38
|
+
* // ],
|
|
39
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param GetTrustStoreCommandInput - {@link GetTrustStoreCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>There is a validation error.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class GetTrustStoreCommand extends $Command<GetTrustStoreCommandInput, GetTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,16 @@ export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccess
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUserAccessLoggingSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetUserAccessLoggingSettingsResponse
|
|
35
|
+
* // userAccessLoggingSettings: { // UserAccessLoggingSettings
|
|
36
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
37
|
+
* // associatedPortalArns: [ // ArnList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // kinesisStreamArn: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param GetUserAccessLoggingSettingsCommandInput - {@link GetUserAccessLoggingSettingsCommandInput}
|
|
@@ -54,6 +64,8 @@ export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccess
|
|
|
54
64
|
* @throws {@link ValidationException} (client fault)
|
|
55
65
|
* <p>There is a validation error.</p>
|
|
56
66
|
*
|
|
67
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
69
|
*
|
|
58
70
|
*/
|
|
59
71
|
export declare class GetUserAccessLoggingSettingsCommand extends $Command<GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetUserSettingsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetUserSettingsResponse
|
|
35
|
+
* // userSettings: { // UserSettings
|
|
36
|
+
* // userSettingsArn: "STRING_VALUE", // required
|
|
37
|
+
* // associatedPortalArns: [ // ArnList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // copyAllowed: "STRING_VALUE",
|
|
41
|
+
* // pasteAllowed: "STRING_VALUE",
|
|
42
|
+
* // downloadAllowed: "STRING_VALUE",
|
|
43
|
+
* // uploadAllowed: "STRING_VALUE",
|
|
44
|
+
* // printAllowed: "STRING_VALUE",
|
|
45
|
+
* // disconnectTimeoutInMinutes: Number("int"),
|
|
46
|
+
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param GetUserSettingsCommandInput - {@link GetUserSettingsCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
54
70
|
* @throws {@link ValidationException} (client fault)
|
|
55
71
|
* <p>There is a validation error.</p>
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class GetUserSettingsCommand extends $Command<GetUserSettingsCommandInput, GetUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListBrowserSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListBrowserSettingsResponse
|
|
36
|
+
* // browserSettings: [ // BrowserSettingsList
|
|
37
|
+
* // { // BrowserSettingsSummary
|
|
38
|
+
* // browserSettingsArn: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param ListBrowserSettingsCommandInput - {@link ListBrowserSettingsCommandInput}
|
|
@@ -52,6 +61,8 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
52
61
|
* @throws {@link ValidationException} (client fault)
|
|
53
62
|
* <p>There is a validation error.</p>
|
|
54
63
|
*
|
|
64
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
66
|
*
|
|
56
67
|
*/
|
|
57
68
|
export declare class ListBrowserSettingsCommand extends $Command<ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -33,6 +33,17 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListIdentityProvidersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListIdentityProvidersResponse
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // identityProviders: [ // IdentityProviderList
|
|
39
|
+
* // { // IdentityProviderSummary
|
|
40
|
+
* // identityProviderArn: "STRING_VALUE",
|
|
41
|
+
* // identityProviderName: "STRING_VALUE",
|
|
42
|
+
* // identityProviderType: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
36
47
|
* ```
|
|
37
48
|
*
|
|
38
49
|
* @param ListIdentityProvidersCommandInput - {@link ListIdentityProvidersCommandInput}
|
|
@@ -53,6 +64,8 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
53
64
|
* @throws {@link ValidationException} (client fault)
|
|
54
65
|
* <p>There is a validation error.</p>
|
|
55
66
|
*
|
|
67
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
56
69
|
*
|
|
57
70
|
*/
|
|
58
71
|
export declare class ListIdentityProvidersCommand extends $Command<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListNetworkSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListNetworkSettingsResponse
|
|
36
|
+
* // networkSettings: [ // NetworkSettingsList
|
|
37
|
+
* // { // NetworkSettingsSummary
|
|
38
|
+
* // networkSettingsArn: "STRING_VALUE",
|
|
39
|
+
* // vpcId: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListNetworkSettingsCommandInput - {@link ListNetworkSettingsCommandInput}
|
|
@@ -52,6 +62,8 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
52
62
|
* @throws {@link ValidationException} (client fault)
|
|
53
63
|
* <p>There is a validation error.</p>
|
|
54
64
|
*
|
|
65
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
67
|
*
|
|
56
68
|
*/
|
|
57
69
|
export declare class ListNetworkSettingsCommand extends $Command<ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,27 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListPortalsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListPortalsResponse
|
|
36
|
+
* // portals: [ // PortalList
|
|
37
|
+
* // { // PortalSummary
|
|
38
|
+
* // portalArn: "STRING_VALUE",
|
|
39
|
+
* // rendererType: "STRING_VALUE",
|
|
40
|
+
* // browserType: "STRING_VALUE",
|
|
41
|
+
* // portalStatus: "STRING_VALUE",
|
|
42
|
+
* // portalEndpoint: "STRING_VALUE",
|
|
43
|
+
* // displayName: "STRING_VALUE",
|
|
44
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
45
|
+
* // browserSettingsArn: "STRING_VALUE",
|
|
46
|
+
* // userSettingsArn: "STRING_VALUE",
|
|
47
|
+
* // networkSettingsArn: "STRING_VALUE",
|
|
48
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
49
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
50
|
+
* // authenticationType: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
35
56
|
* ```
|
|
36
57
|
*
|
|
37
58
|
* @param ListPortalsCommandInput - {@link ListPortalsCommandInput}
|
|
@@ -52,6 +73,8 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
52
73
|
* @throws {@link ValidationException} (client fault)
|
|
53
74
|
* <p>There is a validation error.</p>
|
|
54
75
|
*
|
|
76
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
78
|
*
|
|
56
79
|
*/
|
|
57
80
|
export declare class ListPortalsCommand extends $Command<ListPortalsCommandInput, ListPortalsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: [ // TagList
|
|
36
|
+
* // { // Tag
|
|
37
|
+
* // Key: "STRING_VALUE", // required
|
|
38
|
+
* // Value: "STRING_VALUE", // required
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>There is a validation error.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -33,6 +33,20 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTrustStoreCertificatesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTrustStoreCertificatesResponse
|
|
37
|
+
* // certificateList: [ // CertificateSummaryList
|
|
38
|
+
* // { // CertificateSummary
|
|
39
|
+
* // thumbprint: "STRING_VALUE",
|
|
40
|
+
* // subject: "STRING_VALUE",
|
|
41
|
+
* // issuer: "STRING_VALUE",
|
|
42
|
+
* // notValidBefore: new Date("TIMESTAMP"),
|
|
43
|
+
* // notValidAfter: new Date("TIMESTAMP"),
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
36
50
|
* ```
|
|
37
51
|
*
|
|
38
52
|
* @param ListTrustStoreCertificatesCommandInput - {@link ListTrustStoreCertificatesCommandInput}
|
|
@@ -56,6 +70,8 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
56
70
|
* @throws {@link ValidationException} (client fault)
|
|
57
71
|
* <p>There is a validation error.</p>
|
|
58
72
|
*
|
|
73
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
59
75
|
*
|
|
60
76
|
*/
|
|
61
77
|
export declare class ListTrustStoreCertificatesCommand extends $Command<ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,15 @@ export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListTrustStoresCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListTrustStoresResponse
|
|
36
|
+
* // trustStores: [ // TrustStoreSummaryList
|
|
37
|
+
* // { // TrustStoreSummary
|
|
38
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // ],
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
35
44
|
* ```
|
|
36
45
|
*
|
|
37
46
|
* @param ListTrustStoresCommandInput - {@link ListTrustStoresCommandInput}
|
|
@@ -52,6 +61,8 @@ export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, _
|
|
|
52
61
|
* @throws {@link ValidationException} (client fault)
|
|
53
62
|
* <p>There is a validation error.</p>
|
|
54
63
|
*
|
|
64
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
66
|
*
|
|
56
67
|
*/
|
|
57
68
|
export declare class ListTrustStoresCommand extends $Command<ListTrustStoresCommandInput, ListTrustStoresCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListUserAccessLoggingSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListUserAccessLoggingSettingsResponse
|
|
36
|
+
* // userAccessLoggingSettings: [ // UserAccessLoggingSettingsList
|
|
37
|
+
* // { // UserAccessLoggingSettingsSummary
|
|
38
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
39
|
+
* // kinesisStreamArn: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListUserAccessLoggingSettingsCommandInput - {@link ListUserAccessLoggingSettingsCommandInput}
|
|
@@ -52,6 +62,8 @@ export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
52
62
|
* @throws {@link ValidationException} (client fault)
|
|
53
63
|
* <p>There is a validation error.</p>
|
|
54
64
|
*
|
|
65
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
67
|
*
|
|
56
68
|
*/
|
|
57
69
|
export declare class ListUserAccessLoggingSettingsCommand extends $Command<ListUserAccessLoggingSettingsCommandInput, ListUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListUserSettingsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListUserSettingsResponse
|
|
36
|
+
* // userSettings: [ // UserSettingsList
|
|
37
|
+
* // { // UserSettingsSummary
|
|
38
|
+
* // userSettingsArn: "STRING_VALUE",
|
|
39
|
+
* // copyAllowed: "STRING_VALUE",
|
|
40
|
+
* // pasteAllowed: "STRING_VALUE",
|
|
41
|
+
* // downloadAllowed: "STRING_VALUE",
|
|
42
|
+
* // uploadAllowed: "STRING_VALUE",
|
|
43
|
+
* // printAllowed: "STRING_VALUE",
|
|
44
|
+
* // disconnectTimeoutInMinutes: Number("int"),
|
|
45
|
+
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param ListUserSettingsCommandInput - {@link ListUserSettingsCommandInput}
|
|
@@ -52,6 +68,8 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse,
|
|
|
52
68
|
* @throws {@link ValidationException} (client fault)
|
|
53
69
|
* <p>There is a validation error.</p>
|
|
54
70
|
*
|
|
71
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
55
73
|
*
|
|
56
74
|
*/
|
|
57
75
|
export declare class ListUserSettingsCommand extends $Command<ListUserSettingsCommandInput, ListUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new TagResourceCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -64,6 +66,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
64
66
|
* @throws {@link ValidationException} (client fault)
|
|
65
67
|
* <p>There is a validation error.</p>
|
|
66
68
|
*
|
|
69
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
67
71
|
*
|
|
68
72
|
*/
|
|
69
73
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>There is a validation error.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface UpdateBrowserSettingsCommandOutput extends UpdateBrowserSetting
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateBrowserSettingsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateBrowserSettingsResponse
|
|
37
|
+
* // browserSettings: { // BrowserSettings
|
|
38
|
+
* // browserSettingsArn: "STRING_VALUE", // required
|
|
39
|
+
* // associatedPortalArns: [ // ArnList
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // browserPolicy: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param UpdateBrowserSettingsCommandInput - {@link UpdateBrowserSettingsCommandInput}
|
|
@@ -56,6 +66,8 @@ export interface UpdateBrowserSettingsCommandOutput extends UpdateBrowserSetting
|
|
|
56
66
|
* @throws {@link ValidationException} (client fault)
|
|
57
67
|
* <p>There is a validation error.</p>
|
|
58
68
|
*
|
|
69
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
59
71
|
*
|
|
60
72
|
*/
|
|
61
73
|
export declare class UpdateBrowserSettingsCommand extends $Command<UpdateBrowserSettingsCommandInput, UpdateBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProvi
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateIdentityProviderCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // UpdateIdentityProviderResponse
|
|
41
|
+
* // identityProvider: { // IdentityProvider
|
|
42
|
+
* // identityProviderArn: "STRING_VALUE", // required
|
|
43
|
+
* // identityProviderName: "STRING_VALUE",
|
|
44
|
+
* // identityProviderType: "STRING_VALUE",
|
|
45
|
+
* // identityProviderDetails: { // IdentityProviderDetails
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param UpdateIdentityProviderCommandInput - {@link UpdateIdentityProviderCommandInput}
|
|
@@ -60,6 +71,8 @@ export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProvi
|
|
|
60
71
|
* @throws {@link ValidationException} (client fault)
|
|
61
72
|
* <p>There is a validation error.</p>
|
|
62
73
|
*
|
|
74
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
63
76
|
*
|
|
64
77
|
*/
|
|
65
78
|
export declare class UpdateIdentityProviderCommand extends $Command<UpdateIdentityProviderCommandInput, UpdateIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface UpdateNetworkSettingsCommandOutput extends UpdateNetworkSetting
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateNetworkSettingsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateNetworkSettingsResponse
|
|
43
|
+
* // networkSettings: { // NetworkSettings
|
|
44
|
+
* // networkSettingsArn: "STRING_VALUE", // required
|
|
45
|
+
* // associatedPortalArns: [ // ArnList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // vpcId: "STRING_VALUE",
|
|
49
|
+
* // subnetIds: [ // SubnetIdList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // securityGroupIds: [ // SecurityGroupIdList
|
|
53
|
+
* // "STRING_VALUE",
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param UpdateNetworkSettingsCommandInput - {@link UpdateNetworkSettingsCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface UpdateNetworkSettingsCommandOutput extends UpdateNetworkSetting
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p>There is a validation error.</p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class UpdateNetworkSettingsCommand extends $Command<UpdateNetworkSettingsCommandInput, UpdateNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdatePortalCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdatePortalResponse
|
|
37
|
+
* // portal: { // Portal
|
|
38
|
+
* // portalArn: "STRING_VALUE",
|
|
39
|
+
* // rendererType: "STRING_VALUE",
|
|
40
|
+
* // browserType: "STRING_VALUE",
|
|
41
|
+
* // portalStatus: "STRING_VALUE",
|
|
42
|
+
* // portalEndpoint: "STRING_VALUE",
|
|
43
|
+
* // displayName: "STRING_VALUE",
|
|
44
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
45
|
+
* // browserSettingsArn: "STRING_VALUE",
|
|
46
|
+
* // userSettingsArn: "STRING_VALUE",
|
|
47
|
+
* // networkSettingsArn: "STRING_VALUE",
|
|
48
|
+
* // trustStoreArn: "STRING_VALUE",
|
|
49
|
+
* // statusReason: "STRING_VALUE",
|
|
50
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
51
|
+
* // authenticationType: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param UpdatePortalCommandInput - {@link UpdatePortalCommandInput}
|
|
@@ -56,6 +75,8 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
56
75
|
* @throws {@link ValidationException} (client fault)
|
|
57
76
|
* <p>There is a validation error.</p>
|
|
58
77
|
*
|
|
78
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
59
80
|
*
|
|
60
81
|
*/
|
|
61
82
|
export declare class UpdatePortalCommand extends $Command<UpdatePortalCommandInput, UpdatePortalCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface UpdateTrustStoreCommandOutput extends UpdateTrustStoreResponse,
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateTrustStoreCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateTrustStoreResponse
|
|
42
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param UpdateTrustStoreCommandInput - {@link UpdateTrustStoreCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface UpdateTrustStoreCommandOutput extends UpdateTrustStoreResponse,
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>There is a validation error.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class UpdateTrustStoreCommand extends $Command<UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -33,6 +33,16 @@ export interface UpdateUserAccessLoggingSettingsCommandOutput extends UpdateUser
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateUserAccessLoggingSettingsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateUserAccessLoggingSettingsResponse
|
|
37
|
+
* // userAccessLoggingSettings: { // UserAccessLoggingSettings
|
|
38
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
39
|
+
* // associatedPortalArns: [ // ArnList
|
|
40
|
+
* // "STRING_VALUE",
|
|
41
|
+
* // ],
|
|
42
|
+
* // kinesisStreamArn: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
36
46
|
* ```
|
|
37
47
|
*
|
|
38
48
|
* @param UpdateUserAccessLoggingSettingsCommandInput - {@link UpdateUserAccessLoggingSettingsCommandInput}
|
|
@@ -56,6 +66,8 @@ export interface UpdateUserAccessLoggingSettingsCommandOutput extends UpdateUser
|
|
|
56
66
|
* @throws {@link ValidationException} (client fault)
|
|
57
67
|
* <p>There is a validation error.</p>
|
|
58
68
|
*
|
|
69
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
59
71
|
*
|
|
60
72
|
*/
|
|
61
73
|
export declare class UpdateUserAccessLoggingSettingsCommand extends $Command<UpdateUserAccessLoggingSettingsCommandInput, UpdateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateUserSettingsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateUserSettingsResponse
|
|
43
|
+
* // userSettings: { // UserSettings
|
|
44
|
+
* // userSettingsArn: "STRING_VALUE", // required
|
|
45
|
+
* // associatedPortalArns: [ // ArnList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // copyAllowed: "STRING_VALUE",
|
|
49
|
+
* // pasteAllowed: "STRING_VALUE",
|
|
50
|
+
* // downloadAllowed: "STRING_VALUE",
|
|
51
|
+
* // uploadAllowed: "STRING_VALUE",
|
|
52
|
+
* // printAllowed: "STRING_VALUE",
|
|
53
|
+
* // disconnectTimeoutInMinutes: Number("int"),
|
|
54
|
+
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param UpdateUserSettingsCommandInput - {@link UpdateUserSettingsCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p>There is a validation error.</p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class UpdateUserSettingsCommand extends $Command<UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces-web",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|