@aws-sdk/client-workspaces 3.137.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/WorkSpaces.js +30 -0
- package/dist-cjs/commands/CreateWorkspaceImageCommand.js +36 -0
- package/dist-cjs/commands/ModifySamlPropertiesCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +56 -24
- package/dist-cjs/protocols/Aws_json1_1.js +491 -576
- package/dist-es/WorkSpaces.js +30 -0
- package/dist-es/commands/CreateWorkspaceImageCommand.js +39 -0
- package/dist-es/commands/ModifySamlPropertiesCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +33 -17
- package/dist-es/protocols/Aws_json1_1.js +694 -574
- package/dist-types/WorkSpaces.d.ts +16 -0
- package/dist-types/WorkSpacesClient.d.ts +4 -2
- package/dist-types/commands/CreateWorkspaceImageCommand.d.ts +35 -0
- package/dist-types/commands/ModifySamlPropertiesCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +199 -36
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/WorkSpaces.d.ts +10 -0
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateWorkspaceImageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ModifySamlPropertiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +88 -20
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +6 -6
|
@@ -9,6 +9,7 @@ import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "./command
|
|
|
9
9
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
|
|
10
10
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
11
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
|
|
12
|
+
import { CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput } from "./commands/CreateWorkspaceImageCommand";
|
|
12
13
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
|
|
13
14
|
import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "./commands/DeleteClientBrandingCommand";
|
|
14
15
|
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
|
|
@@ -42,6 +43,7 @@ import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementC
|
|
|
42
43
|
import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./commands/MigrateWorkspaceCommand";
|
|
43
44
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "./commands/ModifyAccountCommand";
|
|
44
45
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "./commands/ModifyClientPropertiesCommand";
|
|
46
|
+
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "./commands/ModifySamlPropertiesCommand";
|
|
45
47
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "./commands/ModifySelfservicePermissionsCommand";
|
|
46
48
|
import { ModifyWorkspaceAccessPropertiesCommandInput, ModifyWorkspaceAccessPropertiesCommandOutput } from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
47
49
|
import { ModifyWorkspaceCreationPropertiesCommandInput, ModifyWorkspaceCreationPropertiesCommandOutput } from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
@@ -194,6 +196,12 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
194
196
|
createWorkspaceBundle(args: CreateWorkspaceBundleCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceBundleCommandOutput>;
|
|
195
197
|
createWorkspaceBundle(args: CreateWorkspaceBundleCommandInput, cb: (err: any, data?: CreateWorkspaceBundleCommandOutput) => void): void;
|
|
196
198
|
createWorkspaceBundle(args: CreateWorkspaceBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceBundleCommandOutput) => void): void;
|
|
199
|
+
/**
|
|
200
|
+
* <p>Creates a new WorkSpace image from an existing WorkSpace.</p>
|
|
201
|
+
*/
|
|
202
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceImageCommandOutput>;
|
|
203
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, cb: (err: any, data?: CreateWorkspaceImageCommandOutput) => void): void;
|
|
204
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceImageCommandOutput) => void): void;
|
|
197
205
|
/**
|
|
198
206
|
* <p>Creates one or more WorkSpaces.</p>
|
|
199
207
|
* <p>This operation is asynchronous and returns before the WorkSpaces are created.</p>
|
|
@@ -506,6 +514,14 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
506
514
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ModifyClientPropertiesCommandOutput>;
|
|
507
515
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
508
516
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
517
|
+
/**
|
|
518
|
+
* <p>Modifies multiple properties related to SAML 2.0 authentication, including the enablement status,
|
|
519
|
+
* user access URL, and relay state parameter name that are used for configuring federation with an
|
|
520
|
+
* SAML 2.0 identity provider.</p>
|
|
521
|
+
*/
|
|
522
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ModifySamlPropertiesCommandOutput>;
|
|
523
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, cb: (err: any, data?: ModifySamlPropertiesCommandOutput) => void): void;
|
|
524
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySamlPropertiesCommandOutput) => void): void;
|
|
509
525
|
/**
|
|
510
526
|
* <p>Modifies the self-service WorkSpace management capabilities for your users. For more
|
|
511
527
|
* information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/enable-user-self-service-workspace-management.html">Enable Self-Service WorkSpace Management Capabilities for Your Users</a>.</p>
|
|
@@ -16,6 +16,7 @@ import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "./command
|
|
|
16
16
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
|
|
17
17
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
18
18
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
|
|
19
|
+
import { CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput } from "./commands/CreateWorkspaceImageCommand";
|
|
19
20
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
|
|
20
21
|
import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "./commands/DeleteClientBrandingCommand";
|
|
21
22
|
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
|
|
@@ -49,6 +50,7 @@ import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementC
|
|
|
49
50
|
import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./commands/MigrateWorkspaceCommand";
|
|
50
51
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "./commands/ModifyAccountCommand";
|
|
51
52
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "./commands/ModifyClientPropertiesCommand";
|
|
53
|
+
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "./commands/ModifySamlPropertiesCommand";
|
|
52
54
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "./commands/ModifySelfservicePermissionsCommand";
|
|
53
55
|
import { ModifyWorkspaceAccessPropertiesCommandInput, ModifyWorkspaceAccessPropertiesCommandOutput } from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
54
56
|
import { ModifyWorkspaceCreationPropertiesCommandInput, ModifyWorkspaceCreationPropertiesCommandOutput } from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
@@ -67,8 +69,8 @@ import { UpdateConnectionAliasPermissionCommandInput, UpdateConnectionAliasPermi
|
|
|
67
69
|
import { UpdateRulesOfIpGroupCommandInput, UpdateRulesOfIpGroupCommandOutput } from "./commands/UpdateRulesOfIpGroupCommand";
|
|
68
70
|
import { UpdateWorkspaceBundleCommandInput, UpdateWorkspaceBundleCommandOutput } from "./commands/UpdateWorkspaceBundleCommand";
|
|
69
71
|
import { UpdateWorkspaceImagePermissionCommandInput, UpdateWorkspaceImagePermissionCommandOutput } from "./commands/UpdateWorkspaceImagePermissionCommand";
|
|
70
|
-
export declare type ServiceInputTypes = AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspacesCommandInput | DeleteClientBrandingCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeClientBrandingCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | ImportClientBrandingCommandInput | ImportWorkspaceImageCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyClientPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StopWorkspacesCommandInput | TerminateWorkspacesCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput;
|
|
71
|
-
export declare type ServiceOutputTypes = AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspacesCommandOutput | DeleteClientBrandingCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeClientBrandingCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | ImportClientBrandingCommandOutput | ImportWorkspaceImageCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyClientPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StopWorkspacesCommandOutput | TerminateWorkspacesCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput;
|
|
72
|
+
export declare type ServiceInputTypes = AssociateConnectionAliasCommandInput | AssociateIpGroupsCommandInput | AuthorizeIpRulesCommandInput | CopyWorkspaceImageCommandInput | CreateConnectClientAddInCommandInput | CreateConnectionAliasCommandInput | CreateIpGroupCommandInput | CreateTagsCommandInput | CreateUpdatedWorkspaceImageCommandInput | CreateWorkspaceBundleCommandInput | CreateWorkspaceImageCommandInput | CreateWorkspacesCommandInput | DeleteClientBrandingCommandInput | DeleteConnectClientAddInCommandInput | DeleteConnectionAliasCommandInput | DeleteIpGroupCommandInput | DeleteTagsCommandInput | DeleteWorkspaceBundleCommandInput | DeleteWorkspaceImageCommandInput | DeregisterWorkspaceDirectoryCommandInput | DescribeAccountCommandInput | DescribeAccountModificationsCommandInput | DescribeClientBrandingCommandInput | DescribeClientPropertiesCommandInput | DescribeConnectClientAddInsCommandInput | DescribeConnectionAliasPermissionsCommandInput | DescribeConnectionAliasesCommandInput | DescribeIpGroupsCommandInput | DescribeTagsCommandInput | DescribeWorkspaceBundlesCommandInput | DescribeWorkspaceDirectoriesCommandInput | DescribeWorkspaceImagePermissionsCommandInput | DescribeWorkspaceImagesCommandInput | DescribeWorkspaceSnapshotsCommandInput | DescribeWorkspacesCommandInput | DescribeWorkspacesConnectionStatusCommandInput | DisassociateConnectionAliasCommandInput | DisassociateIpGroupsCommandInput | ImportClientBrandingCommandInput | ImportWorkspaceImageCommandInput | ListAvailableManagementCidrRangesCommandInput | MigrateWorkspaceCommandInput | ModifyAccountCommandInput | ModifyClientPropertiesCommandInput | ModifySamlPropertiesCommandInput | ModifySelfservicePermissionsCommandInput | ModifyWorkspaceAccessPropertiesCommandInput | ModifyWorkspaceCreationPropertiesCommandInput | ModifyWorkspacePropertiesCommandInput | ModifyWorkspaceStateCommandInput | RebootWorkspacesCommandInput | RebuildWorkspacesCommandInput | RegisterWorkspaceDirectoryCommandInput | RestoreWorkspaceCommandInput | RevokeIpRulesCommandInput | StartWorkspacesCommandInput | StopWorkspacesCommandInput | TerminateWorkspacesCommandInput | UpdateConnectClientAddInCommandInput | UpdateConnectionAliasPermissionCommandInput | UpdateRulesOfIpGroupCommandInput | UpdateWorkspaceBundleCommandInput | UpdateWorkspaceImagePermissionCommandInput;
|
|
73
|
+
export declare type ServiceOutputTypes = AssociateConnectionAliasCommandOutput | AssociateIpGroupsCommandOutput | AuthorizeIpRulesCommandOutput | CopyWorkspaceImageCommandOutput | CreateConnectClientAddInCommandOutput | CreateConnectionAliasCommandOutput | CreateIpGroupCommandOutput | CreateTagsCommandOutput | CreateUpdatedWorkspaceImageCommandOutput | CreateWorkspaceBundleCommandOutput | CreateWorkspaceImageCommandOutput | CreateWorkspacesCommandOutput | DeleteClientBrandingCommandOutput | DeleteConnectClientAddInCommandOutput | DeleteConnectionAliasCommandOutput | DeleteIpGroupCommandOutput | DeleteTagsCommandOutput | DeleteWorkspaceBundleCommandOutput | DeleteWorkspaceImageCommandOutput | DeregisterWorkspaceDirectoryCommandOutput | DescribeAccountCommandOutput | DescribeAccountModificationsCommandOutput | DescribeClientBrandingCommandOutput | DescribeClientPropertiesCommandOutput | DescribeConnectClientAddInsCommandOutput | DescribeConnectionAliasPermissionsCommandOutput | DescribeConnectionAliasesCommandOutput | DescribeIpGroupsCommandOutput | DescribeTagsCommandOutput | DescribeWorkspaceBundlesCommandOutput | DescribeWorkspaceDirectoriesCommandOutput | DescribeWorkspaceImagePermissionsCommandOutput | DescribeWorkspaceImagesCommandOutput | DescribeWorkspaceSnapshotsCommandOutput | DescribeWorkspacesCommandOutput | DescribeWorkspacesConnectionStatusCommandOutput | DisassociateConnectionAliasCommandOutput | DisassociateIpGroupsCommandOutput | ImportClientBrandingCommandOutput | ImportWorkspaceImageCommandOutput | ListAvailableManagementCidrRangesCommandOutput | MigrateWorkspaceCommandOutput | ModifyAccountCommandOutput | ModifyClientPropertiesCommandOutput | ModifySamlPropertiesCommandOutput | ModifySelfservicePermissionsCommandOutput | ModifyWorkspaceAccessPropertiesCommandOutput | ModifyWorkspaceCreationPropertiesCommandOutput | ModifyWorkspacePropertiesCommandOutput | ModifyWorkspaceStateCommandOutput | RebootWorkspacesCommandOutput | RebuildWorkspacesCommandOutput | RegisterWorkspaceDirectoryCommandOutput | RestoreWorkspaceCommandOutput | RevokeIpRulesCommandOutput | StartWorkspacesCommandOutput | StopWorkspacesCommandOutput | TerminateWorkspacesCommandOutput | UpdateConnectClientAddInCommandOutput | UpdateConnectionAliasPermissionCommandOutput | UpdateRulesOfIpGroupCommandOutput | UpdateWorkspaceBundleCommandOutput | UpdateWorkspaceImagePermissionCommandOutput;
|
|
72
74
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
75
|
/**
|
|
74
76
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CreateWorkspaceImageRequest, CreateWorkspaceImageResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
|
+
export interface CreateWorkspaceImageCommandInput extends CreateWorkspaceImageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateWorkspaceImageCommandOutput extends CreateWorkspaceImageResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Creates a new WorkSpace image from an existing WorkSpace.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { WorkSpacesClient, CreateWorkspaceImageCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
15
|
+
* // const { WorkSpacesClient, CreateWorkspaceImageCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
16
|
+
* const client = new WorkSpacesClient(config);
|
|
17
|
+
* const command = new CreateWorkspaceImageCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link CreateWorkspaceImageCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link CreateWorkspaceImageCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class CreateWorkspaceImageCommand extends $Command<CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput, WorkSpacesClientResolvedConfig> {
|
|
27
|
+
readonly input: CreateWorkspaceImageCommandInput;
|
|
28
|
+
constructor(input: CreateWorkspaceImageCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ModifySamlPropertiesRequest, ModifySamlPropertiesResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient";
|
|
5
|
+
export interface ModifySamlPropertiesCommandInput extends ModifySamlPropertiesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ModifySamlPropertiesCommandOutput extends ModifySamlPropertiesResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Modifies multiple properties related to SAML 2.0 authentication, including the enablement status,
|
|
11
|
+
* user access URL, and relay state parameter name that are used for configuring federation with an
|
|
12
|
+
* SAML 2.0 identity provider.</p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { WorkSpacesClient, ModifySamlPropertiesCommand } from "@aws-sdk/client-workspaces"; // ES Modules import
|
|
17
|
+
* // const { WorkSpacesClient, ModifySamlPropertiesCommand } = require("@aws-sdk/client-workspaces"); // CommonJS import
|
|
18
|
+
* const client = new WorkSpacesClient(config);
|
|
19
|
+
* const command = new ModifySamlPropertiesCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link ModifySamlPropertiesCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link ModifySamlPropertiesCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link WorkSpacesClientResolvedConfig | config} for WorkSpacesClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class ModifySamlPropertiesCommand extends $Command<ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput, WorkSpacesClientResolvedConfig> {
|
|
29
|
+
readonly input: ModifySamlPropertiesCommandInput;
|
|
30
|
+
constructor(input: ModifySamlPropertiesCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CreateIpGroupCommand";
|
|
|
8
8
|
export * from "./CreateTagsCommand";
|
|
9
9
|
export * from "./CreateUpdatedWorkspaceImageCommand";
|
|
10
10
|
export * from "./CreateWorkspaceBundleCommand";
|
|
11
|
+
export * from "./CreateWorkspaceImageCommand";
|
|
11
12
|
export * from "./CreateWorkspacesCommand";
|
|
12
13
|
export * from "./DeleteClientBrandingCommand";
|
|
13
14
|
export * from "./DeleteConnectClientAddInCommand";
|
|
@@ -41,6 +42,7 @@ export * from "./ListAvailableManagementCidrRangesCommand";
|
|
|
41
42
|
export * from "./MigrateWorkspaceCommand";
|
|
42
43
|
export * from "./ModifyAccountCommand";
|
|
43
44
|
export * from "./ModifyClientPropertiesCommand";
|
|
45
|
+
export * from "./ModifySamlPropertiesCommand";
|
|
44
46
|
export * from "./ModifySelfservicePermissionsCommand";
|
|
45
47
|
export * from "./ModifyWorkspaceAccessPropertiesCommand";
|
|
46
48
|
export * from "./ModifyWorkspaceCreationPropertiesCommand";
|
|
@@ -646,6 +646,87 @@ export interface CreateWorkspaceBundleResult {
|
|
|
646
646
|
*/
|
|
647
647
|
WorkspaceBundle?: WorkspaceBundle;
|
|
648
648
|
}
|
|
649
|
+
export interface CreateWorkspaceImageRequest {
|
|
650
|
+
/**
|
|
651
|
+
* <p>The name of the new WorkSpace image.</p>
|
|
652
|
+
*/
|
|
653
|
+
Name: string | undefined;
|
|
654
|
+
/**
|
|
655
|
+
* <p>The description of the new WorkSpace image.</p>
|
|
656
|
+
*/
|
|
657
|
+
Description: string | undefined;
|
|
658
|
+
/**
|
|
659
|
+
* <p>The identifier of the source WorkSpace</p>
|
|
660
|
+
*/
|
|
661
|
+
WorkspaceId: string | undefined;
|
|
662
|
+
/**
|
|
663
|
+
* <p>The tags that you want to add to the new WorkSpace image.
|
|
664
|
+
* To add tags when you're creating the image, you must create an IAM policy that grants
|
|
665
|
+
* your IAM user permission to use <code>workspaces:CreateTags</code>.</p>
|
|
666
|
+
*/
|
|
667
|
+
Tags?: Tag[];
|
|
668
|
+
}
|
|
669
|
+
export declare enum OperatingSystemType {
|
|
670
|
+
LINUX = "LINUX",
|
|
671
|
+
WINDOWS = "WINDOWS"
|
|
672
|
+
}
|
|
673
|
+
/**
|
|
674
|
+
* <p>The operating system that the image is running.</p>
|
|
675
|
+
*/
|
|
676
|
+
export interface OperatingSystem {
|
|
677
|
+
/**
|
|
678
|
+
* <p>The operating system.</p>
|
|
679
|
+
*/
|
|
680
|
+
Type?: OperatingSystemType | string;
|
|
681
|
+
}
|
|
682
|
+
export declare enum WorkspaceImageRequiredTenancy {
|
|
683
|
+
DEDICATED = "DEDICATED",
|
|
684
|
+
DEFAULT = "DEFAULT"
|
|
685
|
+
}
|
|
686
|
+
export declare enum WorkspaceImageState {
|
|
687
|
+
AVAILABLE = "AVAILABLE",
|
|
688
|
+
ERROR = "ERROR",
|
|
689
|
+
PENDING = "PENDING"
|
|
690
|
+
}
|
|
691
|
+
export interface CreateWorkspaceImageResult {
|
|
692
|
+
/**
|
|
693
|
+
* <p>The identifier of the new WorkSpace image.</p>
|
|
694
|
+
*/
|
|
695
|
+
ImageId?: string;
|
|
696
|
+
/**
|
|
697
|
+
* <p>The name of the image.</p>
|
|
698
|
+
*/
|
|
699
|
+
Name?: string;
|
|
700
|
+
/**
|
|
701
|
+
* <p>The description of the image.</p>
|
|
702
|
+
*/
|
|
703
|
+
Description?: string;
|
|
704
|
+
/**
|
|
705
|
+
* <p>The operating system that the image is running.</p>
|
|
706
|
+
*/
|
|
707
|
+
OperatingSystem?: OperatingSystem;
|
|
708
|
+
/**
|
|
709
|
+
* <p>The availability status of the image.</p>
|
|
710
|
+
*/
|
|
711
|
+
State?: WorkspaceImageState | string;
|
|
712
|
+
/**
|
|
713
|
+
* <p>Specifies whether the image is running on dedicated hardware.
|
|
714
|
+
* When Bring Your Own License (BYOL) is enabled, this value is set
|
|
715
|
+
* to DEDICATED. For more information, see
|
|
716
|
+
* <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/byol-windows-images.htm">
|
|
717
|
+
* Bring Your Own Windows Desktop Images.</a>
|
|
718
|
+
* </p>
|
|
719
|
+
*/
|
|
720
|
+
RequiredTenancy?: WorkspaceImageRequiredTenancy | string;
|
|
721
|
+
/**
|
|
722
|
+
* <p>The date when the image was created.</p>
|
|
723
|
+
*/
|
|
724
|
+
Created?: Date;
|
|
725
|
+
/**
|
|
726
|
+
* <p>The identifier of the AWS account that owns the image.</p>
|
|
727
|
+
*/
|
|
728
|
+
OwnerAccountId?: string;
|
|
729
|
+
}
|
|
649
730
|
export declare enum RunningMode {
|
|
650
731
|
ALWAYS_ON = "ALWAYS_ON",
|
|
651
732
|
AUTO_STOP = "AUTO_STOP"
|
|
@@ -888,8 +969,7 @@ export declare enum DedicatedTenancySupportEnum {
|
|
|
888
969
|
*/
|
|
889
970
|
export interface DefaultClientBrandingAttributes {
|
|
890
971
|
/**
|
|
891
|
-
* <p>The logo
|
|
892
|
-
* format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
|
|
972
|
+
* <p>The logo. The only image format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
|
|
893
973
|
*/
|
|
894
974
|
LogoUrl?: string;
|
|
895
975
|
/**
|
|
@@ -933,7 +1013,8 @@ export interface DefaultClientBrandingAttributes {
|
|
|
933
1013
|
/**
|
|
934
1014
|
* <p>The login message. Specified as a key value pair, in which the key is a locale and the
|
|
935
1015
|
* value is the localized message for that locale. The only key supported is
|
|
936
|
-
*
|
|
1016
|
+
* <code>en_US</code>. The HTML tags supported include the following: <code>a, b, blockquote, br, cite, code, dd, dl, dt, div, em,
|
|
1017
|
+
* i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
|
|
937
1018
|
*/
|
|
938
1019
|
LoginMessage?: Record<string, string>;
|
|
939
1020
|
}
|
|
@@ -947,8 +1028,7 @@ export interface DefaultClientBrandingAttributes {
|
|
|
947
1028
|
*/
|
|
948
1029
|
export interface DefaultImportClientBrandingAttributes {
|
|
949
1030
|
/**
|
|
950
|
-
* <p>The logo. The only image
|
|
951
|
-
* format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
|
|
1031
|
+
* <p>The logo. The only image format accepted is a binary data object that is converted from a <code>.png</code> file.</p>
|
|
952
1032
|
*/
|
|
953
1033
|
Logo?: Uint8Array;
|
|
954
1034
|
/**
|
|
@@ -992,7 +1072,8 @@ export interface DefaultImportClientBrandingAttributes {
|
|
|
992
1072
|
/**
|
|
993
1073
|
* <p>The login message. Specified as a key value pair, in which the key is a locale and the
|
|
994
1074
|
* value is the localized message for that locale. The only key supported is
|
|
995
|
-
*
|
|
1075
|
+
* <code>en_US</code>. The HTML tags supported include the following: <code>a, b, blockquote, br, cite, code, dd, dl, dt, div, em,
|
|
1076
|
+
* i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
|
|
996
1077
|
*/
|
|
997
1078
|
LoginMessage?: Record<string, string>;
|
|
998
1079
|
}
|
|
@@ -1039,6 +1120,10 @@ export interface DefaultWorkspaceCreationProperties {
|
|
|
1039
1120
|
*/
|
|
1040
1121
|
EnableMaintenanceMode?: boolean;
|
|
1041
1122
|
}
|
|
1123
|
+
export declare enum DeletableSamlProperty {
|
|
1124
|
+
SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME = "SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME",
|
|
1125
|
+
SAML_PROPERTIES_USER_ACCESS_URL = "SAML_PROPERTIES_USER_ACCESS_URL"
|
|
1126
|
+
}
|
|
1042
1127
|
export interface DeleteClientBrandingRequest {
|
|
1043
1128
|
/**
|
|
1044
1129
|
* <p>The directory identifier of the WorkSpace for which you want to delete client
|
|
@@ -1171,8 +1256,8 @@ export interface DescribeClientBrandingRequest {
|
|
|
1171
1256
|
*/
|
|
1172
1257
|
export interface IosClientBrandingAttributes {
|
|
1173
1258
|
/**
|
|
1174
|
-
* <p>The logo. This is the
|
|
1175
|
-
*
|
|
1259
|
+
* <p>The logo. This is the standard-resolution display that has a 1:1 pixel density
|
|
1260
|
+
* (or @1x), where one pixel is equal
|
|
1176
1261
|
* to one point. The only image format accepted is a binary data object that is converted from
|
|
1177
1262
|
* a <code>.png</code> file.</p>
|
|
1178
1263
|
*/
|
|
@@ -1238,7 +1323,8 @@ export interface IosClientBrandingAttributes {
|
|
|
1238
1323
|
/**
|
|
1239
1324
|
* <p>The login message. Specified as a key value pair, in which the key is a locale and the
|
|
1240
1325
|
* value is the localized message for that locale. The only key supported is
|
|
1241
|
-
*
|
|
1326
|
+
* <code>en_US</code>. The HTML tags supported include the following: <code>a, b, blockquote, br, cite, code, dd, dl, dt, div, em,
|
|
1327
|
+
* i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
|
|
1242
1328
|
*/
|
|
1243
1329
|
LoginMessage?: Record<string, string>;
|
|
1244
1330
|
}
|
|
@@ -1475,6 +1561,51 @@ export declare enum WorkspaceDirectoryType {
|
|
|
1475
1561
|
AD_CONNECTOR = "AD_CONNECTOR",
|
|
1476
1562
|
SIMPLE_AD = "SIMPLE_AD"
|
|
1477
1563
|
}
|
|
1564
|
+
export declare enum SamlStatusEnum {
|
|
1565
|
+
DISABLED = "DISABLED",
|
|
1566
|
+
ENABLED = "ENABLED",
|
|
1567
|
+
ENABLED_WITH_DIRECTORY_LOGIN_FALLBACK = "ENABLED_WITH_DIRECTORY_LOGIN_FALLBACK"
|
|
1568
|
+
}
|
|
1569
|
+
/**
|
|
1570
|
+
* <p>Describes the enablement status, user access URL, and relay state parameter name that
|
|
1571
|
+
* are used for configuring federation with an SAML 2.0 identity provider.</p>
|
|
1572
|
+
*/
|
|
1573
|
+
export interface SamlProperties {
|
|
1574
|
+
/**
|
|
1575
|
+
* <p>Indicates the status of SAML 2.0 authentication. These statuses include the following.</p>
|
|
1576
|
+
* <ul>
|
|
1577
|
+
* <li>
|
|
1578
|
+
* <p>If the setting is <code>DISABLED</code>, end users will be directed to login with their directory credentials.</p>
|
|
1579
|
+
* </li>
|
|
1580
|
+
* <li>
|
|
1581
|
+
* <p>If the setting is <code>ENABLED</code>, end users will be directed to login via the user access URL. Users attempting
|
|
1582
|
+
* to connect to WorkSpaces from a client application that does not support SAML 2.0 authentication will not be able to
|
|
1583
|
+
* connect.</p>
|
|
1584
|
+
* </li>
|
|
1585
|
+
* <li>
|
|
1586
|
+
* <p>If the setting is <code>ENABLED_WITH_DIRECTORY_LOGIN_FALLBACK</code>, end users will be directed to login via the user
|
|
1587
|
+
* access URL on supported client applications, but will not prevent clients that do not support SAML 2.0 authentication
|
|
1588
|
+
* from connecting as if SAML 2.0 authentication was disabled.</p>
|
|
1589
|
+
* </li>
|
|
1590
|
+
* </ul>
|
|
1591
|
+
*/
|
|
1592
|
+
Status?: SamlStatusEnum | string;
|
|
1593
|
+
/**
|
|
1594
|
+
* <p>The SAML 2.0 identity provider (IdP) user access URL is the URL a user would navigate to in their web browser in
|
|
1595
|
+
* order to federate from the IdP and directly access the application, without any SAML 2.0 service provider (SP)
|
|
1596
|
+
* bindings.</p>
|
|
1597
|
+
*/
|
|
1598
|
+
UserAccessUrl?: string;
|
|
1599
|
+
/**
|
|
1600
|
+
* <p>The relay state parameter name supported by the SAML 2.0 identity provider (IdP). When the end user is redirected to
|
|
1601
|
+
* the user access URL from the WorkSpaces client application, this relay state parameter name is appended as a query
|
|
1602
|
+
* parameter to the URL along with the relay state endpoint to return the user to the client application session.</p>
|
|
1603
|
+
*
|
|
1604
|
+
* <p>To use SAML 2.0 authentication with WorkSpaces, the IdP must support IdP-initiated deep linking for the relay state
|
|
1605
|
+
* URL. Consult your IdP documentation for more information.</p>
|
|
1606
|
+
*/
|
|
1607
|
+
RelayStateParameterName?: string;
|
|
1608
|
+
}
|
|
1478
1609
|
/**
|
|
1479
1610
|
* <p>Describes the self-service permissions for a directory. For more information, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/enable-user-self-service-workspace-management.html">Enable Self-Service WorkSpace Management Capabilities for Your Users</a>.</p>
|
|
1480
1611
|
*/
|
|
@@ -1630,6 +1761,11 @@ export interface WorkspaceDirectory {
|
|
|
1630
1761
|
* <p>The default self-service permissions for WorkSpaces in the directory.</p>
|
|
1631
1762
|
*/
|
|
1632
1763
|
SelfservicePermissions?: SelfservicePermissions;
|
|
1764
|
+
/**
|
|
1765
|
+
* <p>Describes the enablement status, user access URL, and relay state parameter name that are used for configuring
|
|
1766
|
+
* federation with an SAML 2.0 identity provider.</p>
|
|
1767
|
+
*/
|
|
1768
|
+
SamlProperties?: SamlProperties;
|
|
1633
1769
|
}
|
|
1634
1770
|
export interface DescribeWorkspaceDirectoriesResult {
|
|
1635
1771
|
/**
|
|
@@ -1708,28 +1844,6 @@ export interface DescribeWorkspaceImagesRequest {
|
|
|
1708
1844
|
*/
|
|
1709
1845
|
MaxResults?: number;
|
|
1710
1846
|
}
|
|
1711
|
-
export declare enum OperatingSystemType {
|
|
1712
|
-
LINUX = "LINUX",
|
|
1713
|
-
WINDOWS = "WINDOWS"
|
|
1714
|
-
}
|
|
1715
|
-
/**
|
|
1716
|
-
* <p>The operating system that the image is running.</p>
|
|
1717
|
-
*/
|
|
1718
|
-
export interface OperatingSystem {
|
|
1719
|
-
/**
|
|
1720
|
-
* <p>The operating system.</p>
|
|
1721
|
-
*/
|
|
1722
|
-
Type?: OperatingSystemType | string;
|
|
1723
|
-
}
|
|
1724
|
-
export declare enum WorkspaceImageRequiredTenancy {
|
|
1725
|
-
DEDICATED = "DEDICATED",
|
|
1726
|
-
DEFAULT = "DEFAULT"
|
|
1727
|
-
}
|
|
1728
|
-
export declare enum WorkspaceImageState {
|
|
1729
|
-
AVAILABLE = "AVAILABLE",
|
|
1730
|
-
ERROR = "ERROR",
|
|
1731
|
-
PENDING = "PENDING"
|
|
1732
|
-
}
|
|
1733
1847
|
/**
|
|
1734
1848
|
* <p>Describes whether a WorkSpace image needs to be updated with the latest drivers and
|
|
1735
1849
|
* other components required by Amazon WorkSpaces.</p>
|
|
@@ -2047,7 +2161,8 @@ export interface IosImportClientBrandingAttributes {
|
|
|
2047
2161
|
/**
|
|
2048
2162
|
* <p>The login message. Specified as a key value pair, in which the key is a locale and the
|
|
2049
2163
|
* value is the localized message for that locale. The only key supported is
|
|
2050
|
-
*
|
|
2164
|
+
* <code>en_US</code>. The HTML tags supported include the following: <code>a, b, blockquote, br, cite, code, dd, dl, dt, div, em,
|
|
2165
|
+
* i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul</code>.</p>
|
|
2051
2166
|
*/
|
|
2052
2167
|
LoginMessage?: Record<string, string>;
|
|
2053
2168
|
}
|
|
@@ -2246,6 +2361,34 @@ export interface ModifyClientPropertiesRequest {
|
|
|
2246
2361
|
}
|
|
2247
2362
|
export interface ModifyClientPropertiesResult {
|
|
2248
2363
|
}
|
|
2364
|
+
export interface ModifySamlPropertiesRequest {
|
|
2365
|
+
/**
|
|
2366
|
+
* <p>The directory identifier for which you want to configure SAML properties.</p>
|
|
2367
|
+
*/
|
|
2368
|
+
ResourceId: string | undefined;
|
|
2369
|
+
/**
|
|
2370
|
+
* <p>The properties for configuring SAML 2.0 authentication.</p>
|
|
2371
|
+
*/
|
|
2372
|
+
SamlProperties?: SamlProperties;
|
|
2373
|
+
/**
|
|
2374
|
+
* <p>The SAML properties to delete as part of your request.</p>
|
|
2375
|
+
* <p>Specify one of the following options:</p>
|
|
2376
|
+
* <ul>
|
|
2377
|
+
* <li>
|
|
2378
|
+
* <p>
|
|
2379
|
+
* <code>SAML_PROPERTIES_USER_ACCESS_URL</code> to delete the user access URL.</p>
|
|
2380
|
+
* </li>
|
|
2381
|
+
* <li>
|
|
2382
|
+
* <p>
|
|
2383
|
+
* <code>SAML_PROPERTIES_RELAY_STATE_PARAMETER_NAME</code> to delete the
|
|
2384
|
+
* relay state parameter name.</p>
|
|
2385
|
+
* </li>
|
|
2386
|
+
* </ul>
|
|
2387
|
+
*/
|
|
2388
|
+
PropertiesToDelete?: (DeletableSamlProperty | string)[];
|
|
2389
|
+
}
|
|
2390
|
+
export interface ModifySamlPropertiesResult {
|
|
2391
|
+
}
|
|
2249
2392
|
export interface ModifySelfservicePermissionsRequest {
|
|
2250
2393
|
/**
|
|
2251
2394
|
* <p>The identifier of the directory.</p>
|
|
@@ -2788,6 +2931,18 @@ export declare const CreateWorkspaceBundleRequestFilterSensitiveLog: (obj: Creat
|
|
|
2788
2931
|
* @internal
|
|
2789
2932
|
*/
|
|
2790
2933
|
export declare const CreateWorkspaceBundleResultFilterSensitiveLog: (obj: CreateWorkspaceBundleResult) => any;
|
|
2934
|
+
/**
|
|
2935
|
+
* @internal
|
|
2936
|
+
*/
|
|
2937
|
+
export declare const CreateWorkspaceImageRequestFilterSensitiveLog: (obj: CreateWorkspaceImageRequest) => any;
|
|
2938
|
+
/**
|
|
2939
|
+
* @internal
|
|
2940
|
+
*/
|
|
2941
|
+
export declare const OperatingSystemFilterSensitiveLog: (obj: OperatingSystem) => any;
|
|
2942
|
+
/**
|
|
2943
|
+
* @internal
|
|
2944
|
+
*/
|
|
2945
|
+
export declare const CreateWorkspaceImageResultFilterSensitiveLog: (obj: CreateWorkspaceImageResult) => any;
|
|
2791
2946
|
/**
|
|
2792
2947
|
* @internal
|
|
2793
2948
|
*/
|
|
@@ -2984,6 +3139,10 @@ export declare const DescribeWorkspaceBundlesResultFilterSensitiveLog: (obj: Des
|
|
|
2984
3139
|
* @internal
|
|
2985
3140
|
*/
|
|
2986
3141
|
export declare const DescribeWorkspaceDirectoriesRequestFilterSensitiveLog: (obj: DescribeWorkspaceDirectoriesRequest) => any;
|
|
3142
|
+
/**
|
|
3143
|
+
* @internal
|
|
3144
|
+
*/
|
|
3145
|
+
export declare const SamlPropertiesFilterSensitiveLog: (obj: SamlProperties) => any;
|
|
2987
3146
|
/**
|
|
2988
3147
|
* @internal
|
|
2989
3148
|
*/
|
|
@@ -3016,10 +3175,6 @@ export declare const DescribeWorkspaceImagePermissionsResultFilterSensitiveLog:
|
|
|
3016
3175
|
* @internal
|
|
3017
3176
|
*/
|
|
3018
3177
|
export declare const DescribeWorkspaceImagesRequestFilterSensitiveLog: (obj: DescribeWorkspaceImagesRequest) => any;
|
|
3019
|
-
/**
|
|
3020
|
-
* @internal
|
|
3021
|
-
*/
|
|
3022
|
-
export declare const OperatingSystemFilterSensitiveLog: (obj: OperatingSystem) => any;
|
|
3023
3178
|
/**
|
|
3024
3179
|
* @internal
|
|
3025
3180
|
*/
|
|
@@ -3136,6 +3291,14 @@ export declare const ModifyClientPropertiesRequestFilterSensitiveLog: (obj: Modi
|
|
|
3136
3291
|
* @internal
|
|
3137
3292
|
*/
|
|
3138
3293
|
export declare const ModifyClientPropertiesResultFilterSensitiveLog: (obj: ModifyClientPropertiesResult) => any;
|
|
3294
|
+
/**
|
|
3295
|
+
* @internal
|
|
3296
|
+
*/
|
|
3297
|
+
export declare const ModifySamlPropertiesRequestFilterSensitiveLog: (obj: ModifySamlPropertiesRequest) => any;
|
|
3298
|
+
/**
|
|
3299
|
+
* @internal
|
|
3300
|
+
*/
|
|
3301
|
+
export declare const ModifySamlPropertiesResultFilterSensitiveLog: (obj: ModifySamlPropertiesResult) => any;
|
|
3139
3302
|
/**
|
|
3140
3303
|
* @internal
|
|
3141
3304
|
*/
|
|
@@ -10,6 +10,7 @@ import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "../comman
|
|
|
10
10
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/CreateTagsCommand";
|
|
11
11
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "../commands/CreateUpdatedWorkspaceImageCommand";
|
|
12
12
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "../commands/CreateWorkspaceBundleCommand";
|
|
13
|
+
import { CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput } from "../commands/CreateWorkspaceImageCommand";
|
|
13
14
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "../commands/CreateWorkspacesCommand";
|
|
14
15
|
import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "../commands/DeleteClientBrandingCommand";
|
|
15
16
|
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "../commands/DeleteConnectClientAddInCommand";
|
|
@@ -43,6 +44,7 @@ import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementC
|
|
|
43
44
|
import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "../commands/MigrateWorkspaceCommand";
|
|
44
45
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "../commands/ModifyAccountCommand";
|
|
45
46
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "../commands/ModifyClientPropertiesCommand";
|
|
47
|
+
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "../commands/ModifySamlPropertiesCommand";
|
|
46
48
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "../commands/ModifySelfservicePermissionsCommand";
|
|
47
49
|
import { ModifyWorkspaceAccessPropertiesCommandInput, ModifyWorkspaceAccessPropertiesCommandOutput } from "../commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
48
50
|
import { ModifyWorkspaceCreationPropertiesCommandInput, ModifyWorkspaceCreationPropertiesCommandOutput } from "../commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
@@ -71,6 +73,7 @@ export declare const serializeAws_json1_1CreateIpGroupCommand: (input: CreateIpG
|
|
|
71
73
|
export declare const serializeAws_json1_1CreateTagsCommand: (input: CreateTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
74
|
export declare const serializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (input: CreateUpdatedWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
75
|
export declare const serializeAws_json1_1CreateWorkspaceBundleCommand: (input: CreateWorkspaceBundleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
+
export declare const serializeAws_json1_1CreateWorkspaceImageCommand: (input: CreateWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
77
|
export declare const serializeAws_json1_1CreateWorkspacesCommand: (input: CreateWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
78
|
export declare const serializeAws_json1_1DeleteClientBrandingCommand: (input: DeleteClientBrandingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
79
|
export declare const serializeAws_json1_1DeleteConnectClientAddInCommand: (input: DeleteConnectClientAddInCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -104,6 +107,7 @@ export declare const serializeAws_json1_1ListAvailableManagementCidrRangesComman
|
|
|
104
107
|
export declare const serializeAws_json1_1MigrateWorkspaceCommand: (input: MigrateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
108
|
export declare const serializeAws_json1_1ModifyAccountCommand: (input: ModifyAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
109
|
export declare const serializeAws_json1_1ModifyClientPropertiesCommand: (input: ModifyClientPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1ModifySamlPropertiesCommand: (input: ModifySamlPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
111
|
export declare const serializeAws_json1_1ModifySelfservicePermissionsCommand: (input: ModifySelfservicePermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
112
|
export declare const serializeAws_json1_1ModifyWorkspaceAccessPropertiesCommand: (input: ModifyWorkspaceAccessPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
113
|
export declare const serializeAws_json1_1ModifyWorkspaceCreationPropertiesCommand: (input: ModifyWorkspaceCreationPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -132,6 +136,7 @@ export declare const deserializeAws_json1_1CreateIpGroupCommand: (output: __Http
|
|
|
132
136
|
export declare const deserializeAws_json1_1CreateTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTagsCommandOutput>;
|
|
133
137
|
export declare const deserializeAws_json1_1CreateUpdatedWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateUpdatedWorkspaceImageCommandOutput>;
|
|
134
138
|
export declare const deserializeAws_json1_1CreateWorkspaceBundleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceBundleCommandOutput>;
|
|
139
|
+
export declare const deserializeAws_json1_1CreateWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceImageCommandOutput>;
|
|
135
140
|
export declare const deserializeAws_json1_1CreateWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspacesCommandOutput>;
|
|
136
141
|
export declare const deserializeAws_json1_1DeleteClientBrandingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClientBrandingCommandOutput>;
|
|
137
142
|
export declare const deserializeAws_json1_1DeleteConnectClientAddInCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectClientAddInCommandOutput>;
|
|
@@ -165,6 +170,7 @@ export declare const deserializeAws_json1_1ListAvailableManagementCidrRangesComm
|
|
|
165
170
|
export declare const deserializeAws_json1_1MigrateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<MigrateWorkspaceCommandOutput>;
|
|
166
171
|
export declare const deserializeAws_json1_1ModifyAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyAccountCommandOutput>;
|
|
167
172
|
export declare const deserializeAws_json1_1ModifyClientPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyClientPropertiesCommandOutput>;
|
|
173
|
+
export declare const deserializeAws_json1_1ModifySamlPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifySamlPropertiesCommandOutput>;
|
|
168
174
|
export declare const deserializeAws_json1_1ModifySelfservicePermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifySelfservicePermissionsCommandOutput>;
|
|
169
175
|
export declare const deserializeAws_json1_1ModifyWorkspaceAccessPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyWorkspaceAccessPropertiesCommandOutput>;
|
|
170
176
|
export declare const deserializeAws_json1_1ModifyWorkspaceCreationPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyWorkspaceCreationPropertiesCommandOutput>;
|
|
@@ -9,6 +9,7 @@ import { CreateIpGroupCommandInput, CreateIpGroupCommandOutput } from "./command
|
|
|
9
9
|
import { CreateTagsCommandInput, CreateTagsCommandOutput } from "./commands/CreateTagsCommand";
|
|
10
10
|
import { CreateUpdatedWorkspaceImageCommandInput, CreateUpdatedWorkspaceImageCommandOutput } from "./commands/CreateUpdatedWorkspaceImageCommand";
|
|
11
11
|
import { CreateWorkspaceBundleCommandInput, CreateWorkspaceBundleCommandOutput } from "./commands/CreateWorkspaceBundleCommand";
|
|
12
|
+
import { CreateWorkspaceImageCommandInput, CreateWorkspaceImageCommandOutput } from "./commands/CreateWorkspaceImageCommand";
|
|
12
13
|
import { CreateWorkspacesCommandInput, CreateWorkspacesCommandOutput } from "./commands/CreateWorkspacesCommand";
|
|
13
14
|
import { DeleteClientBrandingCommandInput, DeleteClientBrandingCommandOutput } from "./commands/DeleteClientBrandingCommand";
|
|
14
15
|
import { DeleteConnectClientAddInCommandInput, DeleteConnectClientAddInCommandOutput } from "./commands/DeleteConnectClientAddInCommand";
|
|
@@ -42,6 +43,7 @@ import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementC
|
|
|
42
43
|
import { MigrateWorkspaceCommandInput, MigrateWorkspaceCommandOutput } from "./commands/MigrateWorkspaceCommand";
|
|
43
44
|
import { ModifyAccountCommandInput, ModifyAccountCommandOutput } from "./commands/ModifyAccountCommand";
|
|
44
45
|
import { ModifyClientPropertiesCommandInput, ModifyClientPropertiesCommandOutput } from "./commands/ModifyClientPropertiesCommand";
|
|
46
|
+
import { ModifySamlPropertiesCommandInput, ModifySamlPropertiesCommandOutput } from "./commands/ModifySamlPropertiesCommand";
|
|
45
47
|
import { ModifySelfservicePermissionsCommandInput, ModifySelfservicePermissionsCommandOutput } from "./commands/ModifySelfservicePermissionsCommand";
|
|
46
48
|
import { ModifyWorkspaceAccessPropertiesCommandInput, ModifyWorkspaceAccessPropertiesCommandOutput } from "./commands/ModifyWorkspaceAccessPropertiesCommand";
|
|
47
49
|
import { ModifyWorkspaceCreationPropertiesCommandInput, ModifyWorkspaceCreationPropertiesCommandOutput } from "./commands/ModifyWorkspaceCreationPropertiesCommand";
|
|
@@ -104,6 +106,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
104
106
|
createWorkspaceBundle(args: CreateWorkspaceBundleCommandInput, cb: (err: any, data?: CreateWorkspaceBundleCommandOutput) => void): void;
|
|
105
107
|
createWorkspaceBundle(args: CreateWorkspaceBundleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceBundleCommandOutput) => void): void;
|
|
106
108
|
|
|
109
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceImageCommandOutput>;
|
|
110
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, cb: (err: any, data?: CreateWorkspaceImageCommandOutput) => void): void;
|
|
111
|
+
createWorkspaceImage(args: CreateWorkspaceImageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceImageCommandOutput) => void): void;
|
|
112
|
+
|
|
107
113
|
createWorkspaces(args: CreateWorkspacesCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspacesCommandOutput>;
|
|
108
114
|
createWorkspaces(args: CreateWorkspacesCommandInput, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
|
|
109
115
|
createWorkspaces(args: CreateWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspacesCommandOutput) => void): void;
|
|
@@ -236,6 +242,10 @@ export declare class WorkSpaces extends WorkSpacesClient {
|
|
|
236
242
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
237
243
|
modifyClientProperties(args: ModifyClientPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyClientPropertiesCommandOutput) => void): void;
|
|
238
244
|
|
|
245
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, options?: __HttpHandlerOptions): Promise<ModifySamlPropertiesCommandOutput>;
|
|
246
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, cb: (err: any, data?: ModifySamlPropertiesCommandOutput) => void): void;
|
|
247
|
+
modifySamlProperties(args: ModifySamlPropertiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySamlPropertiesCommandOutput) => void): void;
|
|
248
|
+
|
|
239
249
|
modifySelfservicePermissions(args: ModifySelfservicePermissionsCommandInput, options?: __HttpHandlerOptions): Promise<ModifySelfservicePermissionsCommandOutput>;
|
|
240
250
|
modifySelfservicePermissions(args: ModifySelfservicePermissionsCommandInput, cb: (err: any, data?: ModifySelfservicePermissionsCommandOutput) => void): void;
|
|
241
251
|
modifySelfservicePermissions(args: ModifySelfservicePermissionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifySelfservicePermissionsCommandOutput) => void): void;
|