@aws-sdk/client-workspaces 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/AssociateConnectionAliasCommand.d.ts +4 -0
- package/dist-types/commands/AssociateIpGroupsCommand.d.ts +6 -0
- package/dist-types/commands/AuthorizeIpRulesCommand.d.ts +9 -0
- package/dist-types/commands/CopyWorkspaceImageCommand.d.ts +12 -0
- package/dist-types/commands/CreateConnectClientAddInCommand.d.ts +5 -0
- package/dist-types/commands/CreateConnectionAliasCommand.d.ts +9 -0
- package/dist-types/commands/CreateIpGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateStandbyWorkspacesCommand.d.ts +16 -0
- package/dist-types/commands/CreateTagsCommand.d.ts +9 -0
- package/dist-types/commands/CreateUpdatedWorkspaceImageCommand.d.ts +11 -0
- package/dist-types/commands/CreateWorkspaceBundleCommand.d.ts +20 -0
- package/dist-types/commands/CreateWorkspaceImageCommand.d.ts +11 -0
- package/dist-types/commands/CreateWorkspacesCommand.d.ts +28 -0
- package/dist-types/commands/DeleteClientBrandingCommand.d.ts +6 -0
- package/dist-types/commands/DeleteConnectClientAddInCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConnectionAliasCommand.d.ts +3 -0
- package/dist-types/commands/DeleteIpGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWorkspaceBundleCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWorkspaceImageCommand.d.ts +3 -0
- package/dist-types/commands/DeregisterWorkspaceDirectoryCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAccountCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAccountModificationsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeClientBrandingCommand.d.ts +3 -0
- package/dist-types/commands/DescribeClientPropertiesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeConnectClientAddInsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeConnectionAliasPermissionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeConnectionAliasesCommand.d.ts +8 -0
- package/dist-types/commands/DescribeIpGroupsCommand.d.ts +7 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWorkspaceBundlesCommand.d.ts +7 -0
- package/dist-types/commands/DescribeWorkspaceDirectoriesCommand.d.ts +7 -0
- package/dist-types/commands/DescribeWorkspaceImagePermissionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeWorkspaceImagesCommand.d.ts +8 -0
- package/dist-types/commands/DescribeWorkspaceSnapshotsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWorkspacesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeWorkspacesConnectionStatusCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateConnectionAliasCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateIpGroupsCommand.d.ts +6 -0
- package/dist-types/commands/ImportClientBrandingCommand.d.ts +59 -0
- package/dist-types/commands/ImportWorkspaceImageCommand.d.ts +15 -0
- package/dist-types/commands/ListAvailableManagementCidrRangesCommand.d.ts +5 -0
- package/dist-types/commands/MigrateWorkspaceCommand.d.ts +4 -0
- package/dist-types/commands/ModifyAccountCommand.d.ts +4 -0
- package/dist-types/commands/ModifyCertificateBasedAuthPropertiesCommand.d.ts +10 -0
- package/dist-types/commands/ModifyClientPropertiesCommand.d.ts +7 -0
- package/dist-types/commands/ModifySamlPropertiesCommand.d.ts +11 -0
- package/dist-types/commands/ModifySelfservicePermissionsCommand.d.ts +10 -0
- package/dist-types/commands/ModifyWorkspaceAccessPropertiesCommand.d.ts +13 -0
- package/dist-types/commands/ModifyWorkspaceCreationPropertiesCommand.d.ts +11 -0
- package/dist-types/commands/ModifyWorkspacePropertiesCommand.d.ts +13 -0
- package/dist-types/commands/ModifyWorkspaceStateCommand.d.ts +4 -0
- package/dist-types/commands/RebootWorkspacesCommand.d.ts +7 -0
- package/dist-types/commands/RebuildWorkspacesCommand.d.ts +7 -0
- package/dist-types/commands/RegisterWorkspaceDirectoryCommand.d.ts +15 -0
- package/dist-types/commands/RestoreWorkspaceCommand.d.ts +3 -0
- package/dist-types/commands/RevokeIpRulesCommand.d.ts +6 -0
- package/dist-types/commands/StartWorkspacesCommand.d.ts +7 -0
- package/dist-types/commands/StopWorkspacesCommand.d.ts +7 -0
- package/dist-types/commands/TerminateWorkspacesCommand.d.ts +7 -0
- package/dist-types/commands/UpdateConnectClientAddInCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConnectionAliasPermissionCommand.d.ts +7 -0
- package/dist-types/commands/UpdateRulesOfIpGroupCommand.d.ts +9 -0
- package/dist-types/commands/UpdateWorkspaceBundleCommand.d.ts +4 -0
- package/dist-types/commands/UpdateWorkspaceImagePermissionCommand.d.ts +5 -0
- package/package.json +8 -8
|
@@ -33,6 +33,10 @@ export interface AssociateConnectionAliasCommandOutput extends AssociateConnecti
|
|
|
33
33
|
* import { WorkSpacesClient, AssociateConnectionAliasCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, AssociateConnectionAliasCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* AliasId: "STRING_VALUE", // required
|
|
38
|
+
* ResourceId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
36
40
|
* const command = new AssociateConnectionAliasCommand(input);
|
|
37
41
|
* const response = await client.send(command);
|
|
38
42
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface AssociateIpGroupsCommandOutput extends AssociateIpGroupsResult,
|
|
|
26
26
|
* import { WorkSpacesClient, AssociateIpGroupsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, AssociateIpGroupsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* GroupIds: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new AssociateIpGroupsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface AuthorizeIpRulesCommandOutput extends AuthorizeIpRulesResult, _
|
|
|
28
28
|
* import { WorkSpacesClient, AuthorizeIpRulesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, AuthorizeIpRulesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* GroupId: "STRING_VALUE", // required
|
|
33
|
+
* UserRules: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* ipRule: "STRING_VALUE",
|
|
36
|
+
* ruleDesc: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
31
40
|
* const command = new AuthorizeIpRulesCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -35,6 +35,18 @@ export interface CopyWorkspaceImageCommandOutput extends CopyWorkspaceImageResul
|
|
|
35
35
|
* import { WorkSpacesClient, CopyWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
36
36
|
* // const { WorkSpacesClient, CopyWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
37
37
|
* const client = new WorkSpacesClient(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* Name: "STRING_VALUE", // required
|
|
40
|
+
* Description: "STRING_VALUE",
|
|
41
|
+
* SourceImageId: "STRING_VALUE", // required
|
|
42
|
+
* SourceRegion: "STRING_VALUE", // required
|
|
43
|
+
* Tags: [
|
|
44
|
+
* {
|
|
45
|
+
* Key: "STRING_VALUE", // required
|
|
46
|
+
* Value: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* };
|
|
38
50
|
* const command = new CopyWorkspaceImageCommand(input);
|
|
39
51
|
* const response = await client.send(command);
|
|
40
52
|
* ```
|
|
@@ -28,6 +28,11 @@ export interface CreateConnectClientAddInCommandOutput extends CreateConnectClie
|
|
|
28
28
|
* import { WorkSpacesClient, CreateConnectClientAddInCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, CreateConnectClientAddInCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* URL: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
31
36
|
* const command = new CreateConnectClientAddInCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface CreateConnectionAliasCommandOutput extends CreateConnectionAlia
|
|
|
28
28
|
* import { WorkSpacesClient, CreateConnectionAliasCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, CreateConnectionAliasCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ConnectionString: "STRING_VALUE", // required
|
|
33
|
+
* Tags: [
|
|
34
|
+
* {
|
|
35
|
+
* Key: "STRING_VALUE", // required
|
|
36
|
+
* Value: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
31
40
|
* const command = new CreateConnectionAliasCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -34,6 +34,22 @@ export interface CreateIpGroupCommandOutput extends CreateIpGroupResult, __Metad
|
|
|
34
34
|
* import { WorkSpacesClient, CreateIpGroupCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
35
35
|
* // const { WorkSpacesClient, CreateIpGroupCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
36
36
|
* const client = new WorkSpacesClient(config);
|
|
37
|
+
* const input = {
|
|
38
|
+
* GroupName: "STRING_VALUE", // required
|
|
39
|
+
* GroupDesc: "STRING_VALUE",
|
|
40
|
+
* UserRules: [
|
|
41
|
+
* {
|
|
42
|
+
* ipRule: "STRING_VALUE",
|
|
43
|
+
* ruleDesc: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* Tags: [
|
|
47
|
+
* {
|
|
48
|
+
* Key: "STRING_VALUE", // required
|
|
49
|
+
* Value: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* };
|
|
37
53
|
* const command = new CreateIpGroupCommand(input);
|
|
38
54
|
* const response = await client.send(command);
|
|
39
55
|
* ```
|
|
@@ -26,6 +26,22 @@ export interface CreateStandbyWorkspacesCommandOutput extends CreateStandbyWorks
|
|
|
26
26
|
* import { WorkSpacesClient, CreateStandbyWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, CreateStandbyWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* PrimaryRegion: "STRING_VALUE", // required
|
|
31
|
+
* StandbyWorkspaces: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* PrimaryWorkspaceId: "STRING_VALUE", // required
|
|
34
|
+
* VolumeEncryptionKey: "STRING_VALUE",
|
|
35
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
36
|
+
* Tags: [
|
|
37
|
+
* {
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
29
45
|
* const command = new CreateStandbyWorkspacesCommand(input);
|
|
30
46
|
* const response = await client.send(command);
|
|
31
47
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface CreateTagsCommandOutput extends CreateTagsResult, __MetadataBea
|
|
|
26
26
|
* import { WorkSpacesClient, CreateTagsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, CreateTagsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* Tags: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* Key: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new CreateTagsCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -47,6 +47,17 @@ export interface CreateUpdatedWorkspaceImageCommandOutput extends CreateUpdatedW
|
|
|
47
47
|
* import { WorkSpacesClient, CreateUpdatedWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
48
48
|
* // const { WorkSpacesClient, CreateUpdatedWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
49
49
|
* const client = new WorkSpacesClient(config);
|
|
50
|
+
* const input = {
|
|
51
|
+
* Name: "STRING_VALUE", // required
|
|
52
|
+
* Description: "STRING_VALUE", // required
|
|
53
|
+
* SourceImageId: "STRING_VALUE", // required
|
|
54
|
+
* Tags: [
|
|
55
|
+
* {
|
|
56
|
+
* Key: "STRING_VALUE", // required
|
|
57
|
+
* Value: "STRING_VALUE",
|
|
58
|
+
* },
|
|
59
|
+
* ],
|
|
60
|
+
* };
|
|
50
61
|
* const command = new CreateUpdatedWorkspaceImageCommand(input);
|
|
51
62
|
* const response = await client.send(command);
|
|
52
63
|
* ```
|
|
@@ -28,6 +28,26 @@ export interface CreateWorkspaceBundleCommandOutput extends CreateWorkspaceBundl
|
|
|
28
28
|
* import { WorkSpacesClient, CreateWorkspaceBundleCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, CreateWorkspaceBundleCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* BundleName: "STRING_VALUE", // required
|
|
33
|
+
* BundleDescription: "STRING_VALUE", // required
|
|
34
|
+
* ImageId: "STRING_VALUE", // required
|
|
35
|
+
* ComputeType: {
|
|
36
|
+
* Name: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
|
|
37
|
+
* },
|
|
38
|
+
* UserStorage: {
|
|
39
|
+
* Capacity: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* RootStorage: {
|
|
42
|
+
* Capacity: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* Tags: [
|
|
45
|
+
* {
|
|
46
|
+
* Key: "STRING_VALUE", // required
|
|
47
|
+
* Value: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* };
|
|
31
51
|
* const command = new CreateWorkspaceBundleCommand(input);
|
|
32
52
|
* const response = await client.send(command);
|
|
33
53
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface CreateWorkspaceImageCommandOutput extends CreateWorkspaceImageR
|
|
|
26
26
|
* import { WorkSpacesClient, CreateWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, CreateWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE", // required
|
|
32
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
33
|
+
* Tags: [
|
|
34
|
+
* {
|
|
35
|
+
* Key: "STRING_VALUE", // required
|
|
36
|
+
* Value: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new CreateWorkspaceImageCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -33,6 +33,34 @@ export interface CreateWorkspacesCommandOutput extends CreateWorkspacesResult, _
|
|
|
33
33
|
* import { WorkSpacesClient, CreateWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, CreateWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* Workspaces: [ // required
|
|
38
|
+
* {
|
|
39
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
40
|
+
* UserName: "STRING_VALUE", // required
|
|
41
|
+
* BundleId: "STRING_VALUE", // required
|
|
42
|
+
* VolumeEncryptionKey: "STRING_VALUE",
|
|
43
|
+
* UserVolumeEncryptionEnabled: true || false,
|
|
44
|
+
* RootVolumeEncryptionEnabled: true || false,
|
|
45
|
+
* WorkspaceProperties: {
|
|
46
|
+
* RunningMode: "AUTO_STOP" || "ALWAYS_ON" || "MANUAL",
|
|
47
|
+
* RunningModeAutoStopTimeoutInMinutes: Number("int"),
|
|
48
|
+
* RootVolumeSizeGib: Number("int"),
|
|
49
|
+
* UserVolumeSizeGib: Number("int"),
|
|
50
|
+
* ComputeTypeName: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
|
|
51
|
+
* Protocols: [
|
|
52
|
+
* "PCOIP" || "WSP",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* Tags: [
|
|
56
|
+
* {
|
|
57
|
+
* Key: "STRING_VALUE", // required
|
|
58
|
+
* Value: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* };
|
|
36
64
|
* const command = new CreateWorkspacesCommand(input);
|
|
37
65
|
* const response = await client.send(command);
|
|
38
66
|
* ```
|
|
@@ -31,6 +31,12 @@ export interface DeleteClientBrandingCommandOutput extends DeleteClientBrandingR
|
|
|
31
31
|
* import { WorkSpacesClient, DeleteClientBrandingCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
32
32
|
* // const { WorkSpacesClient, DeleteClientBrandingCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
33
33
|
* const client = new WorkSpacesClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* ResourceId: "STRING_VALUE", // required
|
|
36
|
+
* Platforms: [ // required
|
|
37
|
+
* "DeviceTypeWindows" || "DeviceTypeOsx" || "DeviceTypeAndroid" || "DeviceTypeIos" || "DeviceTypeLinux" || "DeviceTypeWeb",
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
34
40
|
* const command = new DeleteClientBrandingCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteConnectClientAddInCommandOutput extends DeleteConnectClie
|
|
|
27
27
|
* import { WorkSpacesClient, DeleteConnectClientAddInCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DeleteConnectClientAddInCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* AddInId: "STRING_VALUE", // required
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteConnectClientAddInCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -41,6 +41,9 @@ export interface DeleteConnectionAliasCommandOutput extends DeleteConnectionAlia
|
|
|
41
41
|
* import { WorkSpacesClient, DeleteConnectionAliasCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
42
42
|
* // const { WorkSpacesClient, DeleteConnectionAliasCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
43
43
|
* const client = new WorkSpacesClient(config);
|
|
44
|
+
* const input = {
|
|
45
|
+
* AliasId: "STRING_VALUE", // required
|
|
46
|
+
* };
|
|
44
47
|
* const command = new DeleteConnectionAliasCommand(input);
|
|
45
48
|
* const response = await client.send(command);
|
|
46
49
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteIpGroupCommandOutput extends DeleteIpGroupResult, __Metad
|
|
|
27
27
|
* import { WorkSpacesClient, DeleteIpGroupCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DeleteIpGroupCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteIpGroupCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DeleteTagsCommandOutput extends DeleteTagsResult, __MetadataBea
|
|
|
26
26
|
* import { WorkSpacesClient, DeleteTagsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DeleteTagsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DeleteTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteWorkspaceBundleCommandOutput extends DeleteWorkspaceBundl
|
|
|
28
28
|
* import { WorkSpacesClient, DeleteWorkspaceBundleCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, DeleteWorkspaceBundleCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* BundleId: "STRING_VALUE",
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteWorkspaceBundleCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteWorkspaceImageCommandOutput extends DeleteWorkspaceImageR
|
|
|
28
28
|
* import { WorkSpacesClient, DeleteWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, DeleteWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ImageId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteWorkspaceImageCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -39,6 +39,9 @@ export interface DeregisterWorkspaceDirectoryCommandOutput extends DeregisterWor
|
|
|
39
39
|
* import { WorkSpacesClient, DeregisterWorkspaceDirectoryCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
40
40
|
* // const { WorkSpacesClient, DeregisterWorkspaceDirectoryCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
41
41
|
* const client = new WorkSpacesClient(config);
|
|
42
|
+
* const input = {
|
|
43
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
42
45
|
* const command = new DeregisterWorkspaceDirectoryCommand(input);
|
|
43
46
|
* const response = await client.send(command);
|
|
44
47
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface DescribeAccountCommandOutput extends DescribeAccountResult, __M
|
|
|
27
27
|
* import { WorkSpacesClient, DescribeAccountCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DescribeAccountCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new DescribeAccountCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DescribeAccountModificationsCommandOutput extends DescribeAccou
|
|
|
27
27
|
* import { WorkSpacesClient, DescribeAccountModificationsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DescribeAccountModificationsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DescribeAccountModificationsCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -33,6 +33,9 @@ export interface DescribeClientBrandingCommandOutput extends DescribeClientBrand
|
|
|
33
33
|
* import { WorkSpacesClient, DescribeClientBrandingCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, DescribeClientBrandingCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* ResourceId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
36
39
|
* const command = new DescribeClientBrandingCommand(input);
|
|
37
40
|
* const response = await client.send(command);
|
|
38
41
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeClientPropertiesCommandOutput extends DescribeClientPro
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeClientPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeClientPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceIds: [ // required
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeClientPropertiesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeConnectClientAddInsCommandOutput extends DescribeConnec
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeConnectClientAddInsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeConnectClientAddInsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeConnectClientAddInsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -29,6 +29,11 @@ export interface DescribeConnectionAliasPermissionsCommandOutput extends Describ
|
|
|
29
29
|
* import { WorkSpacesClient, DescribeConnectionAliasPermissionsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
30
30
|
* // const { WorkSpacesClient, DescribeConnectionAliasPermissionsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
31
31
|
* const client = new WorkSpacesClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* AliasId: "STRING_VALUE", // required
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* };
|
|
32
37
|
* const command = new DescribeConnectionAliasPermissionsCommand(input);
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface DescribeConnectionAliasesCommandOutput extends DescribeConnecti
|
|
|
28
28
|
* import { WorkSpacesClient, DescribeConnectionAliasesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, DescribeConnectionAliasesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* AliasIds: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* ResourceId: "STRING_VALUE",
|
|
36
|
+
* Limit: Number("int"),
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
31
39
|
* const command = new DescribeConnectionAliasesCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface DescribeIpGroupsCommandOutput extends DescribeIpGroupsResult, _
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeIpGroupsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeIpGroupsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* GroupIds: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* };
|
|
29
36
|
* const command = new DescribeIpGroupsCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeTagsCommandOutput extends DescribeTagsResult, __Metadat
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeTagsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeTagsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeTagsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface DescribeWorkspaceBundlesCommandOutput extends DescribeWorkspace
|
|
|
27
27
|
* import { WorkSpacesClient, DescribeWorkspaceBundlesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DescribeWorkspaceBundlesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* BundleIds: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* Owner: "STRING_VALUE",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new DescribeWorkspaceBundlesCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface DescribeWorkspaceDirectoriesCommandOutput extends DescribeWorks
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeWorkspaceDirectoriesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeWorkspaceDirectoriesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DirectoryIds: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* Limit: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* };
|
|
29
36
|
* const command = new DescribeWorkspaceDirectoriesCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeWorkspaceImagePermissionsCommandOutput extends Describe
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeWorkspaceImagePermissionsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeWorkspaceImagePermissionsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ImageId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeWorkspaceImagePermissionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -27,6 +27,14 @@ export interface DescribeWorkspaceImagesCommandOutput extends DescribeWorkspaceI
|
|
|
27
27
|
* import { WorkSpacesClient, DescribeWorkspaceImagesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, DescribeWorkspaceImagesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ImageIds: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* ImageType: "OWNED" || "SHARED",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* };
|
|
30
38
|
* const command = new DescribeWorkspaceImagesCommand(input);
|
|
31
39
|
* const response = await client.send(command);
|
|
32
40
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeWorkspaceSnapshotsCommandOutput extends DescribeWorkspa
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeWorkspaceSnapshotsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeWorkspaceSnapshotsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeWorkspaceSnapshotsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -28,6 +28,16 @@ export interface DescribeWorkspacesCommandOutput extends DescribeWorkspacesResul
|
|
|
28
28
|
* import { WorkSpacesClient, DescribeWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, DescribeWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* WorkspaceIds: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* DirectoryId: "STRING_VALUE",
|
|
36
|
+
* UserName: "STRING_VALUE",
|
|
37
|
+
* BundleId: "STRING_VALUE",
|
|
38
|
+
* Limit: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
31
41
|
* const command = new DescribeWorkspacesCommand(input);
|
|
32
42
|
* const response = await client.send(command);
|
|
33
43
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeWorkspacesConnectionStatusCommandOutput extends Describ
|
|
|
26
26
|
* import { WorkSpacesClient, DescribeWorkspacesConnectionStatusCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DescribeWorkspacesConnectionStatusCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* WorkspaceIds: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeWorkspacesConnectionStatusCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -34,6 +34,9 @@ export interface DisassociateConnectionAliasCommandOutput extends DisassociateCo
|
|
|
34
34
|
* import { WorkSpacesClient, DisassociateConnectionAliasCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
35
35
|
* // const { WorkSpacesClient, DisassociateConnectionAliasCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
36
36
|
* const client = new WorkSpacesClient(config);
|
|
37
|
+
* const input = {
|
|
38
|
+
* AliasId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
37
40
|
* const command = new DisassociateConnectionAliasCommand(input);
|
|
38
41
|
* const response = await client.send(command);
|
|
39
42
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DisassociateIpGroupsCommandOutput extends DisassociateIpGroupsR
|
|
|
26
26
|
* import { WorkSpacesClient, DisassociateIpGroupsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, DisassociateIpGroupsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* GroupIds: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DisassociateIpGroupsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -53,6 +53,65 @@ export interface ImportClientBrandingCommandOutput extends ImportClientBrandingR
|
|
|
53
53
|
* import { WorkSpacesClient, ImportClientBrandingCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
54
54
|
* // const { WorkSpacesClient, ImportClientBrandingCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
55
55
|
* const client = new WorkSpacesClient(config);
|
|
56
|
+
* const input = {
|
|
57
|
+
* ResourceId: "STRING_VALUE", // required
|
|
58
|
+
* DeviceTypeWindows: {
|
|
59
|
+
* Logo: "BLOB_VALUE",
|
|
60
|
+
* SupportEmail: "STRING_VALUE",
|
|
61
|
+
* SupportLink: "STRING_VALUE",
|
|
62
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
63
|
+
* LoginMessage: {
|
|
64
|
+
* "<keys>": "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* DeviceTypeOsx: {
|
|
68
|
+
* Logo: "BLOB_VALUE",
|
|
69
|
+
* SupportEmail: "STRING_VALUE",
|
|
70
|
+
* SupportLink: "STRING_VALUE",
|
|
71
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
72
|
+
* LoginMessage: {
|
|
73
|
+
* "<keys>": "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* DeviceTypeAndroid: {
|
|
77
|
+
* Logo: "BLOB_VALUE",
|
|
78
|
+
* SupportEmail: "STRING_VALUE",
|
|
79
|
+
* SupportLink: "STRING_VALUE",
|
|
80
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
81
|
+
* LoginMessage: {
|
|
82
|
+
* "<keys>": "STRING_VALUE",
|
|
83
|
+
* },
|
|
84
|
+
* },
|
|
85
|
+
* DeviceTypeIos: {
|
|
86
|
+
* Logo: "BLOB_VALUE",
|
|
87
|
+
* Logo2x: "BLOB_VALUE",
|
|
88
|
+
* Logo3x: "BLOB_VALUE",
|
|
89
|
+
* SupportEmail: "STRING_VALUE",
|
|
90
|
+
* SupportLink: "STRING_VALUE",
|
|
91
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
92
|
+
* LoginMessage: {
|
|
93
|
+
* "<keys>": "STRING_VALUE",
|
|
94
|
+
* },
|
|
95
|
+
* },
|
|
96
|
+
* DeviceTypeLinux: {
|
|
97
|
+
* Logo: "BLOB_VALUE",
|
|
98
|
+
* SupportEmail: "STRING_VALUE",
|
|
99
|
+
* SupportLink: "STRING_VALUE",
|
|
100
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
101
|
+
* LoginMessage: {
|
|
102
|
+
* "<keys>": "STRING_VALUE",
|
|
103
|
+
* },
|
|
104
|
+
* },
|
|
105
|
+
* DeviceTypeWeb: {
|
|
106
|
+
* Logo: "BLOB_VALUE",
|
|
107
|
+
* SupportEmail: "STRING_VALUE",
|
|
108
|
+
* SupportLink: "STRING_VALUE",
|
|
109
|
+
* ForgotPasswordLink: "STRING_VALUE",
|
|
110
|
+
* LoginMessage: {
|
|
111
|
+
* "<keys>": "STRING_VALUE",
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* };
|
|
56
115
|
* const command = new ImportClientBrandingCommand(input);
|
|
57
116
|
* const response = await client.send(command);
|
|
58
117
|
* ```
|
|
@@ -30,6 +30,21 @@ export interface ImportWorkspaceImageCommandOutput extends ImportWorkspaceImageR
|
|
|
30
30
|
* import { WorkSpacesClient, ImportWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
31
31
|
* // const { WorkSpacesClient, ImportWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
32
32
|
* const client = new WorkSpacesClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* Ec2ImageId: "STRING_VALUE", // required
|
|
35
|
+
* IngestionProcess: "BYOL_REGULAR" || "BYOL_GRAPHICS" || "BYOL_GRAPHICSPRO" || "BYOL_GRAPHICS_G4DN" || "BYOL_REGULAR_WSP" || "BYOL_REGULAR_BYOP" || "BYOL_GRAPHICS_G4DN_BYOP", // required
|
|
36
|
+
* ImageName: "STRING_VALUE", // required
|
|
37
|
+
* ImageDescription: "STRING_VALUE", // required
|
|
38
|
+
* Tags: [
|
|
39
|
+
* {
|
|
40
|
+
* Key: "STRING_VALUE", // required
|
|
41
|
+
* Value: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* Applications: [
|
|
45
|
+
* "Microsoft_Office_2016" || "Microsoft_Office_2019",
|
|
46
|
+
* ],
|
|
47
|
+
* };
|
|
33
48
|
* const command = new ImportWorkspaceImageCommand(input);
|
|
34
49
|
* const response = await client.send(command);
|
|
35
50
|
* ```
|
|
@@ -33,6 +33,11 @@ export interface ListAvailableManagementCidrRangesCommandOutput extends ListAvai
|
|
|
33
33
|
* import { WorkSpacesClient, ListAvailableManagementCidrRangesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, ListAvailableManagementCidrRangesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* ManagementCidrRangeConstraint: "STRING_VALUE", // required
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
36
41
|
* const command = new ListAvailableManagementCidrRangesCommand(input);
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
@@ -36,6 +36,10 @@ export interface MigrateWorkspaceCommandOutput extends MigrateWorkspaceResult, _
|
|
|
36
36
|
* import { WorkSpacesClient, MigrateWorkspaceCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
37
37
|
* // const { WorkSpacesClient, MigrateWorkspaceCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
38
38
|
* const client = new WorkSpacesClient(config);
|
|
39
|
+
* const input = {
|
|
40
|
+
* SourceWorkspaceId: "STRING_VALUE", // required
|
|
41
|
+
* BundleId: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
39
43
|
* const command = new MigrateWorkspaceCommand(input);
|
|
40
44
|
* const response = await client.send(command);
|
|
41
45
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ModifyAccountCommandOutput extends ModifyAccountResult, __Metad
|
|
|
27
27
|
* import { WorkSpacesClient, ModifyAccountCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, ModifyAccountCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* DedicatedTenancySupport: "ENABLED",
|
|
32
|
+
* DedicatedTenancyManagementCidrRange: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ModifyAccountCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,16 @@ export interface ModifyCertificateBasedAuthPropertiesCommandOutput extends Modif
|
|
|
27
27
|
* import { WorkSpacesClient, ModifyCertificateBasedAuthPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, ModifyCertificateBasedAuthPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ResourceId: "STRING_VALUE", // required
|
|
32
|
+
* CertificateBasedAuthProperties: {
|
|
33
|
+
* Status: "DISABLED" || "ENABLED",
|
|
34
|
+
* CertificateAuthorityArn: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* PropertiesToDelete: [
|
|
37
|
+
* "CERTIFICATE_BASED_AUTH_PROPERTIES_CERTIFICATE_AUTHORITY_ARN",
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
30
40
|
* const command = new ModifyCertificateBasedAuthPropertiesCommand(input);
|
|
31
41
|
* const response = await client.send(command);
|
|
32
42
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface ModifyClientPropertiesCommandOutput extends ModifyClientPropert
|
|
|
26
26
|
* import { WorkSpacesClient, ModifyClientPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, ModifyClientPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* ClientProperties: {
|
|
32
|
+
* ReconnectEnabled: "ENABLED" || "DISABLED",
|
|
33
|
+
* LogUploadEnabled: "ENABLED" || "DISABLED",
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
29
36
|
* const command = new ModifyClientPropertiesCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -28,6 +28,17 @@ export interface ModifySamlPropertiesCommandOutput extends ModifySamlPropertiesR
|
|
|
28
28
|
* import { WorkSpacesClient, ModifySamlPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, ModifySamlPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* SamlProperties: {
|
|
34
|
+
* Status: "DISABLED" || "ENABLED" || "ENABLED_WITH_DIRECTORY_LOGIN_FALLBACK",
|
|
35
|
+
* UserAccessUrl: "STRING_VALUE",
|
|
36
|
+
* RelayStateParameterName: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* PropertiesToDelete: [
|
|
39
|
+
* "SAML_PROPERTIES_USER_ACCESS_URL" || "SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
31
42
|
* const command = new ModifySamlPropertiesCommand(input);
|
|
32
43
|
* const response = await client.send(command);
|
|
33
44
|
* ```
|
|
@@ -27,6 +27,16 @@ export interface ModifySelfservicePermissionsCommandOutput extends ModifySelfser
|
|
|
27
27
|
* import { WorkSpacesClient, ModifySelfservicePermissionsCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, ModifySelfservicePermissionsCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ResourceId: "STRING_VALUE", // required
|
|
32
|
+
* SelfservicePermissions: {
|
|
33
|
+
* RestartWorkspace: "ENABLED" || "DISABLED",
|
|
34
|
+
* IncreaseVolumeSize: "ENABLED" || "DISABLED",
|
|
35
|
+
* ChangeComputeType: "ENABLED" || "DISABLED",
|
|
36
|
+
* SwitchRunningMode: "ENABLED" || "DISABLED",
|
|
37
|
+
* RebuildWorkspace: "ENABLED" || "DISABLED",
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
30
40
|
* const command = new ModifySelfservicePermissionsCommand(input);
|
|
31
41
|
* const response = await client.send(command);
|
|
32
42
|
* ```
|
|
@@ -28,6 +28,19 @@ export interface ModifyWorkspaceAccessPropertiesCommandOutput extends ModifyWork
|
|
|
28
28
|
* import { WorkSpacesClient, ModifyWorkspaceAccessPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, ModifyWorkspaceAccessPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* WorkspaceAccessProperties: {
|
|
34
|
+
* DeviceTypeWindows: "ALLOW" || "DENY",
|
|
35
|
+
* DeviceTypeOsx: "ALLOW" || "DENY",
|
|
36
|
+
* DeviceTypeWeb: "ALLOW" || "DENY",
|
|
37
|
+
* DeviceTypeIos: "ALLOW" || "DENY",
|
|
38
|
+
* DeviceTypeAndroid: "ALLOW" || "DENY",
|
|
39
|
+
* DeviceTypeChromeOs: "ALLOW" || "DENY",
|
|
40
|
+
* DeviceTypeZeroClient: "ALLOW" || "DENY",
|
|
41
|
+
* DeviceTypeLinux: "ALLOW" || "DENY",
|
|
42
|
+
* },
|
|
43
|
+
* };
|
|
31
44
|
* const command = new ModifyWorkspaceAccessPropertiesCommand(input);
|
|
32
45
|
* const response = await client.send(command);
|
|
33
46
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ModifyWorkspaceCreationPropertiesCommandOutput extends ModifyWo
|
|
|
26
26
|
* import { WorkSpacesClient, ModifyWorkspaceCreationPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, ModifyWorkspaceCreationPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* WorkspaceCreationProperties: {
|
|
32
|
+
* EnableWorkDocs: true || false,
|
|
33
|
+
* EnableInternetAccess: true || false,
|
|
34
|
+
* DefaultOu: "STRING_VALUE",
|
|
35
|
+
* CustomSecurityGroupId: "STRING_VALUE",
|
|
36
|
+
* UserEnabledAsLocalAdministrator: true || false,
|
|
37
|
+
* EnableMaintenanceMode: true || false,
|
|
38
|
+
* },
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ModifyWorkspaceCreationPropertiesCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -34,6 +34,19 @@ export interface ModifyWorkspacePropertiesCommandOutput extends ModifyWorkspaceP
|
|
|
34
34
|
* import { WorkSpacesClient, ModifyWorkspacePropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
35
35
|
* // const { WorkSpacesClient, ModifyWorkspacePropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
36
36
|
* const client = new WorkSpacesClient(config);
|
|
37
|
+
* const input = {
|
|
38
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
39
|
+
* WorkspaceProperties: {
|
|
40
|
+
* RunningMode: "AUTO_STOP" || "ALWAYS_ON" || "MANUAL",
|
|
41
|
+
* RunningModeAutoStopTimeoutInMinutes: Number("int"),
|
|
42
|
+
* RootVolumeSizeGib: Number("int"),
|
|
43
|
+
* UserVolumeSizeGib: Number("int"),
|
|
44
|
+
* ComputeTypeName: "VALUE" || "STANDARD" || "PERFORMANCE" || "POWER" || "GRAPHICS" || "POWERPRO" || "GRAPHICSPRO" || "GRAPHICS_G4DN" || "GRAPHICSPRO_G4DN",
|
|
45
|
+
* Protocols: [
|
|
46
|
+
* "PCOIP" || "WSP",
|
|
47
|
+
* ],
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
37
50
|
* const command = new ModifyWorkspacePropertiesCommand(input);
|
|
38
51
|
* const response = await client.send(command);
|
|
39
52
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface ModifyWorkspaceStateCommandOutput extends ModifyWorkspaceStateR
|
|
|
31
31
|
* import { WorkSpacesClient, ModifyWorkspaceStateCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
32
32
|
* // const { WorkSpacesClient, ModifyWorkspaceStateCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
33
33
|
* const client = new WorkSpacesClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
36
|
+
* WorkspaceState: "AVAILABLE" || "ADMIN_MAINTENANCE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new ModifyWorkspaceStateCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -29,6 +29,13 @@ export interface RebootWorkspacesCommandOutput extends RebootWorkspacesResult, _
|
|
|
29
29
|
* import { WorkSpacesClient, RebootWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
30
30
|
* // const { WorkSpacesClient, RebootWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
31
31
|
* const client = new WorkSpacesClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* RebootWorkspaceRequests: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
32
39
|
* const command = new RebootWorkspacesCommand(input);
|
|
33
40
|
* const response = await client.send(command);
|
|
34
41
|
* ```
|
|
@@ -34,6 +34,13 @@ export interface RebuildWorkspacesCommandOutput extends RebuildWorkspacesResult,
|
|
|
34
34
|
* import { WorkSpacesClient, RebuildWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
35
35
|
* // const { WorkSpacesClient, RebuildWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
36
36
|
* const client = new WorkSpacesClient(config);
|
|
37
|
+
* const input = {
|
|
38
|
+
* RebuildWorkspaceRequests: [ // required
|
|
39
|
+
* {
|
|
40
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
37
44
|
* const command = new RebuildWorkspacesCommand(input);
|
|
38
45
|
* const response = await client.send(command);
|
|
39
46
|
* ```
|
|
@@ -30,6 +30,21 @@ export interface RegisterWorkspaceDirectoryCommandOutput extends RegisterWorkspa
|
|
|
30
30
|
* import { WorkSpacesClient, RegisterWorkspaceDirectoryCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
31
31
|
* // const { WorkSpacesClient, RegisterWorkspaceDirectoryCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
32
32
|
* const client = new WorkSpacesClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
35
|
+
* SubnetIds: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* EnableWorkDocs: true || false, // required
|
|
39
|
+
* EnableSelfService: true || false,
|
|
40
|
+
* Tenancy: "DEDICATED" || "SHARED",
|
|
41
|
+
* Tags: [
|
|
42
|
+
* {
|
|
43
|
+
* Key: "STRING_VALUE", // required
|
|
44
|
+
* Value: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
47
|
+
* };
|
|
33
48
|
* const command = new RegisterWorkspaceDirectoryCommand(input);
|
|
34
49
|
* const response = await client.send(command);
|
|
35
50
|
* ```
|
|
@@ -33,6 +33,9 @@ export interface RestoreWorkspaceCommandOutput extends RestoreWorkspaceResult, _
|
|
|
33
33
|
* import { WorkSpacesClient, RestoreWorkspaceCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, RestoreWorkspaceCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
36
39
|
* const command = new RestoreWorkspaceCommand(input);
|
|
37
40
|
* const response = await client.send(command);
|
|
38
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RevokeIpRulesCommandOutput extends RevokeIpRulesResult, __Metad
|
|
|
26
26
|
* import { WorkSpacesClient, RevokeIpRulesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
27
27
|
* // const { WorkSpacesClient, RevokeIpRulesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
28
28
|
* const client = new WorkSpacesClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* GroupId: "STRING_VALUE", // required
|
|
31
|
+
* UserRules: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RevokeIpRulesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -28,6 +28,13 @@ export interface StartWorkspacesCommandOutput extends StartWorkspacesResult, __M
|
|
|
28
28
|
* import { WorkSpacesClient, StartWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
29
29
|
* // const { WorkSpacesClient, StartWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
30
30
|
* const client = new WorkSpacesClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* StartWorkspaceRequests: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* WorkspaceId: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
31
38
|
* const command = new StartWorkspacesCommand(input);
|
|
32
39
|
* const response = await client.send(command);
|
|
33
40
|
* ```
|
|
@@ -29,6 +29,13 @@ export interface StopWorkspacesCommandOutput extends StopWorkspacesResult, __Met
|
|
|
29
29
|
* import { WorkSpacesClient, StopWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
30
30
|
* // const { WorkSpacesClient, StopWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
31
31
|
* const client = new WorkSpacesClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* StopWorkspaceRequests: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* WorkspaceId: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
32
39
|
* const command = new StopWorkspacesCommand(input);
|
|
33
40
|
* const response = await client.send(command);
|
|
34
41
|
* ```
|
|
@@ -50,6 +50,13 @@ export interface TerminateWorkspacesCommandOutput extends TerminateWorkspacesRes
|
|
|
50
50
|
* import { WorkSpacesClient, TerminateWorkspacesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
51
51
|
* // const { WorkSpacesClient, TerminateWorkspacesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
52
52
|
* const client = new WorkSpacesClient(config);
|
|
53
|
+
* const input = {
|
|
54
|
+
* TerminateWorkspaceRequests: [ // required
|
|
55
|
+
* {
|
|
56
|
+
* WorkspaceId: "STRING_VALUE", // required
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* };
|
|
53
60
|
* const command = new TerminateWorkspacesCommand(input);
|
|
54
61
|
* const response = await client.send(command);
|
|
55
62
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface UpdateConnectClientAddInCommandOutput extends UpdateConnectClie
|
|
|
27
27
|
* import { WorkSpacesClient, UpdateConnectClientAddInCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, UpdateConnectClientAddInCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* AddInId: "STRING_VALUE", // required
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* Name: "STRING_VALUE",
|
|
34
|
+
* URL: "STRING_VALUE",
|
|
35
|
+
* };
|
|
30
36
|
* const command = new UpdateConnectClientAddInCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -47,6 +47,13 @@ export interface UpdateConnectionAliasPermissionCommandOutput extends UpdateConn
|
|
|
47
47
|
* import { WorkSpacesClient, UpdateConnectionAliasPermissionCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
48
48
|
* // const { WorkSpacesClient, UpdateConnectionAliasPermissionCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
49
49
|
* const client = new WorkSpacesClient(config);
|
|
50
|
+
* const input = {
|
|
51
|
+
* AliasId: "STRING_VALUE", // required
|
|
52
|
+
* ConnectionAliasPermission: {
|
|
53
|
+
* SharedAccountId: "STRING_VALUE", // required
|
|
54
|
+
* AllowAssociation: true || false, // required
|
|
55
|
+
* },
|
|
56
|
+
* };
|
|
50
57
|
* const command = new UpdateConnectionAliasPermissionCommand(input);
|
|
51
58
|
* const response = await client.send(command);
|
|
52
59
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface UpdateRulesOfIpGroupCommandOutput extends UpdateRulesOfIpGroupR
|
|
|
27
27
|
* import { WorkSpacesClient, UpdateRulesOfIpGroupCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
28
28
|
* // const { WorkSpacesClient, UpdateRulesOfIpGroupCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
29
29
|
* const client = new WorkSpacesClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* GroupId: "STRING_VALUE", // required
|
|
32
|
+
* UserRules: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* ipRule: "STRING_VALUE",
|
|
35
|
+
* ruleDesc: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new UpdateRulesOfIpGroupCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -33,6 +33,10 @@ export interface UpdateWorkspaceBundleCommandOutput extends UpdateWorkspaceBundl
|
|
|
33
33
|
* import { WorkSpacesClient, UpdateWorkspaceBundleCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
34
34
|
* // const { WorkSpacesClient, UpdateWorkspaceBundleCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
35
35
|
* const client = new WorkSpacesClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* BundleId: "STRING_VALUE",
|
|
38
|
+
* ImageId: "STRING_VALUE",
|
|
39
|
+
* };
|
|
36
40
|
* const command = new UpdateWorkspaceBundleCommand(input);
|
|
37
41
|
* const response = await client.send(command);
|
|
38
42
|
* ```
|
|
@@ -48,6 +48,11 @@ export interface UpdateWorkspaceImagePermissionCommandOutput extends UpdateWorks
|
|
|
48
48
|
* import { WorkSpacesClient, UpdateWorkspaceImagePermissionCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
49
49
|
* // const { WorkSpacesClient, UpdateWorkspaceImagePermissionCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
50
50
|
* const client = new WorkSpacesClient(config);
|
|
51
|
+
* const input = {
|
|
52
|
+
* ImageId: "STRING_VALUE", // required
|
|
53
|
+
* AllowCopyImage: true || false, // required
|
|
54
|
+
* SharedAccountId: "STRING_VALUE", // required
|
|
55
|
+
* };
|
|
51
56
|
* const command = new UpdateWorkspaceImagePermissionCommand(input);
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces 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
|
},
|