@aws-sdk/client-workspaces-web 3.299.0 → 3.300.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 +4 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +4 -0
- package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +14 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +9 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +15 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +12 -0
- package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +10 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +3 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +3 -0
- package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +3 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +3 -0
- package/dist-types/commands/GetPortalCommand.d.ts +3 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +3 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +4 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +3 -0
- package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +3 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +3 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +5 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +4 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +5 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +4 -0
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +4 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +5 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +9 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +11 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +5 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +10 -0
- package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +5 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +11 -0
- package/package.json +8 -8
|
@@ -26,6 +26,10 @@ export interface AssociateBrowserSettingsCommandOutput extends AssociateBrowserS
|
|
|
26
26
|
* import { WorkSpacesWebClient, AssociateBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, AssociateBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* browserSettingsArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociateBrowserSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AssociateNetworkSettingsCommandOutput extends AssociateNetworkS
|
|
|
26
26
|
* import { WorkSpacesWebClient, AssociateNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, AssociateNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* networkSettingsArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociateNetworkSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AssociateTrustStoreCommandOutput extends AssociateTrustStoreRes
|
|
|
26
26
|
* import { WorkSpacesWebClient, AssociateTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, AssociateTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociateTrustStoreCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput extends Associa
|
|
|
26
26
|
* import { WorkSpacesWebClient, AssociateUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, AssociateUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociateUserAccessLoggingSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting
|
|
|
26
26
|
* import { WorkSpacesWebClient, AssociateUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, AssociateUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* userSettingsArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new AssociateUserSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -28,6 +28,20 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting
|
|
|
28
28
|
* import { WorkSpacesWebClient, CreateBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesWebClient, CreateBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesWebClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* tags: [
|
|
33
|
+
* {
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* customerManagedKey: "STRING_VALUE",
|
|
39
|
+
* additionalEncryptionContext: {
|
|
40
|
+
* "<keys>": "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* browserPolicy: "STRING_VALUE", // required
|
|
43
|
+
* clientToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
31
45
|
* const command = new CreateBrowserSettingsCommand(input);
|
|
32
46
|
* const response = await client.send(command);
|
|
33
47
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi
|
|
|
26
26
|
* import { WorkSpacesWebClient, CreateIdentityProviderCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, CreateIdentityProviderCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* identityProviderName: "STRING_VALUE", // required
|
|
32
|
+
* identityProviderType: "STRING_VALUE", // required
|
|
33
|
+
* identityProviderDetails: { // required
|
|
34
|
+
* "<keys>": "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* clientToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
29
38
|
* const command = new CreateIdentityProviderCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -28,6 +28,22 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting
|
|
|
28
28
|
* import { WorkSpacesWebClient, CreateNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesWebClient, CreateNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesWebClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* vpcId: "STRING_VALUE", // required
|
|
33
|
+
* subnetIds: [ // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* securityGroupIds: [ // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* tags: [
|
|
40
|
+
* {
|
|
41
|
+
* Key: "STRING_VALUE", // required
|
|
42
|
+
* Value: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* clientToken: "STRING_VALUE",
|
|
46
|
+
* };
|
|
31
47
|
* const command = new CreateNetworkSettingsCommand(input);
|
|
32
48
|
* const response = await client.send(command);
|
|
33
49
|
* ```
|
|
@@ -26,6 +26,21 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad
|
|
|
26
26
|
* import { WorkSpacesWebClient, CreatePortalCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, CreatePortalCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* displayName: "STRING_VALUE",
|
|
31
|
+
* tags: [
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* customerManagedKey: "STRING_VALUE",
|
|
38
|
+
* additionalEncryptionContext: {
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* clientToken: "STRING_VALUE",
|
|
42
|
+
* authenticationType: "STRING_VALUE",
|
|
43
|
+
* };
|
|
29
44
|
* const command = new CreatePortalCommand(input);
|
|
30
45
|
* const response = await client.send(command);
|
|
31
46
|
* ```
|
|
@@ -30,6 +30,18 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse,
|
|
|
30
30
|
* import { WorkSpacesWebClient, CreateTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
31
31
|
* // const { WorkSpacesWebClient, CreateTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
32
32
|
* const client = new WorkSpacesWebClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* certificateList: [ // required
|
|
35
|
+
* "BLOB_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* tags: [
|
|
38
|
+
* {
|
|
39
|
+
* Key: "STRING_VALUE", // required
|
|
40
|
+
* Value: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* clientToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
33
45
|
* const command = new CreateTrustStoreCommand(input);
|
|
34
46
|
* const response = await client.send(command);
|
|
35
47
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUser
|
|
|
26
26
|
* import { WorkSpacesWebClient, CreateUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, CreateUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* kinesisStreamArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: [
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* clientToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new CreateUserAccessLoggingSettingsCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -28,6 +28,22 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
28
28
|
* import { WorkSpacesWebClient, CreateUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesWebClient, CreateUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesWebClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* copyAllowed: "STRING_VALUE", // required
|
|
33
|
+
* pasteAllowed: "STRING_VALUE", // required
|
|
34
|
+
* downloadAllowed: "STRING_VALUE", // required
|
|
35
|
+
* uploadAllowed: "STRING_VALUE", // required
|
|
36
|
+
* printAllowed: "STRING_VALUE", // required
|
|
37
|
+
* tags: [
|
|
38
|
+
* {
|
|
39
|
+
* Key: "STRING_VALUE", // required
|
|
40
|
+
* Value: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* disconnectTimeoutInMinutes: Number("int"),
|
|
44
|
+
* idleDisconnectTimeoutInMinutes: Number("int"),
|
|
45
|
+
* clientToken: "STRING_VALUE",
|
|
46
|
+
* };
|
|
31
47
|
* const command = new CreateUserSettingsCommand(input);
|
|
32
48
|
* const response = await client.send(command);
|
|
33
49
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* browserSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteBrowserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteIdentityProviderCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteIdentityProviderCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* identityProviderArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteIdentityProviderCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* networkSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteNetworkSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePortalCommandOutput extends DeletePortalResponse, __Metad
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeletePortalCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeletePortalCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePortalCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteTrustStoreCommandOutput extends DeleteTrustStoreResponse,
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteTrustStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteUserAccessLoggingSettingsCommandOutput extends DeleteUser
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteUserAccessLoggingSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteUserSettingsCommandOutput extends DeleteUserSettingsRespo
|
|
|
26
26
|
* import { WorkSpacesWebClient, DeleteUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DeleteUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteUserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DisassociateBrowserSettingsCommandOutput extends DisassociateBr
|
|
|
26
26
|
* import { WorkSpacesWebClient, DisassociateBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DisassociateBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DisassociateBrowserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DisassociateNetworkSettingsCommandOutput extends DisassociateNe
|
|
|
26
26
|
* import { WorkSpacesWebClient, DisassociateNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DisassociateNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DisassociateNetworkSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DisassociateTrustStoreCommandOutput extends DisassociateTrustSt
|
|
|
26
26
|
* import { WorkSpacesWebClient, DisassociateTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DisassociateTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DisassociateTrustStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DisassociateUserAccessLoggingSettingsCommandOutput extends Disa
|
|
|
26
26
|
* import { WorkSpacesWebClient, DisassociateUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DisassociateUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DisassociateUserAccessLoggingSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DisassociateUserSettingsCommandOutput extends DisassociateUserS
|
|
|
26
26
|
* import { WorkSpacesWebClient, DisassociateUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, DisassociateUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DisassociateUserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetBrowserSettingsCommandOutput extends GetBrowserSettingsRespo
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* browserSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetBrowserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetIdentityProviderCommandOutput extends GetIdentityProviderRes
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetIdentityProviderCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetIdentityProviderCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* identityProviderArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetIdentityProviderCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetNetworkSettingsCommandOutput extends GetNetworkSettingsRespo
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* networkSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetNetworkSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetPortalCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetPortalCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetPortalCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortal
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetPortalServiceProviderMetadataCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetPortalServiceProviderMetadataCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetPortalServiceProviderMetadataCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetTrustStoreCertificateCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetTrustStoreCertificateCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
31
|
+
* thumbprint: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetTrustStoreCertificateCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetTrustStoreCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccess
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetUserAccessLoggingSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
26
26
|
* import { WorkSpacesWebClient, GetUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, GetUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetUserSettingsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListBrowserSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListIdentityProvidersCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListIdentityProvidersCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* portalArn: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListIdentityProvidersCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListNetworkSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListPortalsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListPortalsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListPortalsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListTagsForResourceCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListTagsForResourceCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListTrustStoreCertificatesCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListTrustStoreCertificatesCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListTrustStoreCertificatesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, _
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListTrustStoresCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListTrustStoresCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListTrustStoresCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListUserAccessLoggingSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse,
|
|
|
26
26
|
* import { WorkSpacesWebClient, ListUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, ListUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListUserSettingsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { WorkSpacesWebClient, TagResourceCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, TagResourceCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* clientToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new TagResourceCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { WorkSpacesWebClient, UntagResourceCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UntagResourceCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdateBrowserSettingsCommandOutput extends UpdateBrowserSetting
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateBrowserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateBrowserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* browserSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* browserPolicy: "STRING_VALUE",
|
|
32
|
+
* clientToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdateBrowserSettingsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface UpdateIdentityProviderCommandOutput extends UpdateIdentityProvi
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateIdentityProviderCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateIdentityProviderCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* identityProviderArn: "STRING_VALUE", // required
|
|
31
|
+
* identityProviderName: "STRING_VALUE",
|
|
32
|
+
* identityProviderType: "STRING_VALUE",
|
|
33
|
+
* identityProviderDetails: {
|
|
34
|
+
* "<keys>": "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* clientToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
29
38
|
* const command = new UpdateIdentityProviderCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface UpdateNetworkSettingsCommandOutput extends UpdateNetworkSetting
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateNetworkSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateNetworkSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* networkSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* vpcId: "STRING_VALUE",
|
|
32
|
+
* subnetIds: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* securityGroupIds: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* clientToken: "STRING_VALUE",
|
|
39
|
+
* };
|
|
29
40
|
* const command = new UpdateNetworkSettingsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdatePortalCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdatePortalCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* portalArn: "STRING_VALUE", // required
|
|
31
|
+
* displayName: "STRING_VALUE",
|
|
32
|
+
* authenticationType: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdatePortalCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface UpdateTrustStoreCommandOutput extends UpdateTrustStoreResponse,
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateTrustStoreCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateTrustStoreCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* trustStoreArn: "STRING_VALUE", // required
|
|
31
|
+
* certificatesToAdd: [
|
|
32
|
+
* "BLOB_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* certificatesToDelete: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* clientToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new UpdateTrustStoreCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface UpdateUserAccessLoggingSettingsCommandOutput extends UpdateUser
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateUserAccessLoggingSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateUserAccessLoggingSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* kinesisStreamArn: "STRING_VALUE",
|
|
32
|
+
* clientToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new UpdateUserAccessLoggingSettingsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo
|
|
|
26
26
|
* import { WorkSpacesWebClient, UpdateUserSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesWebClient, UpdateUserSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesWebClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* userSettingsArn: "STRING_VALUE", // required
|
|
31
|
+
* copyAllowed: "STRING_VALUE",
|
|
32
|
+
* pasteAllowed: "STRING_VALUE",
|
|
33
|
+
* downloadAllowed: "STRING_VALUE",
|
|
34
|
+
* uploadAllowed: "STRING_VALUE",
|
|
35
|
+
* printAllowed: "STRING_VALUE",
|
|
36
|
+
* disconnectTimeoutInMinutes: Number("int"),
|
|
37
|
+
* idleDisconnectTimeoutInMinutes: Number("int"),
|
|
38
|
+
* clientToken: "STRING_VALUE",
|
|
39
|
+
* };
|
|
29
40
|
* const command = new UpdateUserSettingsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
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.300.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,9 +21,9 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|