@aws-sdk/client-workspaces 3.425.0 → 3.427.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/README.md +64 -0
- package/dist-cjs/WorkSpaces.js +16 -0
- package/dist-cjs/commands/AssociateWorkspaceApplicationCommand.js +51 -0
- package/dist-cjs/commands/DeployWorkspaceApplicationsCommand.js +51 -0
- package/dist-cjs/commands/DescribeApplicationAssociationsCommand.js +51 -0
- package/dist-cjs/commands/DescribeApplicationsCommand.js +51 -0
- package/dist-cjs/commands/DescribeBundleAssociationsCommand.js +51 -0
- package/dist-cjs/commands/DescribeImageAssociationsCommand.js +51 -0
- package/dist-cjs/commands/DescribeWorkspaceAssociationsCommand.js +51 -0
- package/dist-cjs/commands/DisassociateWorkspaceApplicationCommand.js +51 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +136 -14
- package/dist-cjs/pagination/DescribeApplicationAssociationsPaginator.js +29 -0
- package/dist-cjs/pagination/DescribeApplicationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +611 -3
- package/dist-es/WorkSpaces.js +16 -0
- package/dist-es/commands/AssociateWorkspaceApplicationCommand.js +47 -0
- package/dist-es/commands/DeployWorkspaceApplicationsCommand.js +47 -0
- package/dist-es/commands/DescribeApplicationAssociationsCommand.js +47 -0
- package/dist-es/commands/DescribeApplicationsCommand.js +47 -0
- package/dist-es/commands/DescribeBundleAssociationsCommand.js +47 -0
- package/dist-es/commands/DescribeImageAssociationsCommand.js +47 -0
- package/dist-es/commands/DescribeWorkspaceAssociationsCommand.js +47 -0
- package/dist-es/commands/DisassociateWorkspaceApplicationCommand.js +47 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +128 -12
- package/dist-es/pagination/DescribeApplicationAssociationsPaginator.js +25 -0
- package/dist-es/pagination/DescribeApplicationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +593 -1
- package/dist-types/WorkSpaces.d.ts +56 -0
- package/dist-types/WorkSpacesClient.d.ts +10 -2
- package/dist-types/commands/AssociateWorkspaceApplicationCommand.d.ts +115 -0
- package/dist-types/commands/CreateWorkspacesCommand.d.ts +3 -0
- package/dist-types/commands/DeployWorkspaceApplicationsCommand.d.ts +107 -0
- package/dist-types/commands/DescribeApplicationAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +114 -0
- package/dist-types/commands/DescribeBundleAssociationsCommand.d.ts +101 -0
- package/dist-types/commands/DescribeImageAssociationsCommand.d.ts +101 -0
- package/dist-types/commands/DescribeWorkspaceAssociationsCommand.d.ts +101 -0
- package/dist-types/commands/DescribeWorkspacesCommand.d.ts +1 -0
- package/dist-types/commands/DisassociateWorkspaceApplicationCommand.d.ts +100 -0
- package/dist-types/commands/ModifyWorkspacePropertiesCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +701 -15
- package/dist-types/pagination/DescribeApplicationAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeApplicationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/WorkSpaces.d.ts +136 -0
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/AssociateWorkspaceApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeployWorkspaceApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeApplicationAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeApplicationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeBundleAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeImageAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeWorkspaceAssociationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DisassociateWorkspaceApplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -7
- package/dist-types/ts3.4/pagination/DescribeApplicationAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeApplicationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +5 -5
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeApplicationAssociationsRequest,
|
|
11
|
+
DescribeApplicationAssociationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeApplicationAssociationsCommandInput
|
|
20
|
+
extends DescribeApplicationAssociationsRequest {}
|
|
21
|
+
export interface DescribeApplicationAssociationsCommandOutput
|
|
22
|
+
extends DescribeApplicationAssociationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeApplicationAssociationsCommand extends $Command<
|
|
25
|
+
DescribeApplicationAssociationsCommandInput,
|
|
26
|
+
DescribeApplicationAssociationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeApplicationAssociationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeApplicationAssociationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeApplicationAssociationsCommandInput,
|
|
38
|
+
DescribeApplicationAssociationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeApplicationsRequest,
|
|
11
|
+
DescribeApplicationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeApplicationsCommandInput
|
|
20
|
+
extends DescribeApplicationsRequest {}
|
|
21
|
+
export interface DescribeApplicationsCommandOutput
|
|
22
|
+
extends DescribeApplicationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeApplicationsCommand extends $Command<
|
|
25
|
+
DescribeApplicationsCommandInput,
|
|
26
|
+
DescribeApplicationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeApplicationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeApplicationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeApplicationsCommandInput,
|
|
38
|
+
DescribeApplicationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeBundleAssociationsRequest,
|
|
11
|
+
DescribeBundleAssociationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeBundleAssociationsCommandInput
|
|
20
|
+
extends DescribeBundleAssociationsRequest {}
|
|
21
|
+
export interface DescribeBundleAssociationsCommandOutput
|
|
22
|
+
extends DescribeBundleAssociationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeBundleAssociationsCommand extends $Command<
|
|
25
|
+
DescribeBundleAssociationsCommandInput,
|
|
26
|
+
DescribeBundleAssociationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeBundleAssociationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeBundleAssociationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeBundleAssociationsCommandInput,
|
|
38
|
+
DescribeBundleAssociationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeImageAssociationsRequest,
|
|
11
|
+
DescribeImageAssociationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeImageAssociationsCommandInput
|
|
20
|
+
extends DescribeImageAssociationsRequest {}
|
|
21
|
+
export interface DescribeImageAssociationsCommandOutput
|
|
22
|
+
extends DescribeImageAssociationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeImageAssociationsCommand extends $Command<
|
|
25
|
+
DescribeImageAssociationsCommandInput,
|
|
26
|
+
DescribeImageAssociationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeImageAssociationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeImageAssociationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeImageAssociationsCommandInput,
|
|
38
|
+
DescribeImageAssociationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeWorkspaceAssociationsRequest,
|
|
11
|
+
DescribeWorkspaceAssociationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeWorkspaceAssociationsCommandInput
|
|
20
|
+
extends DescribeWorkspaceAssociationsRequest {}
|
|
21
|
+
export interface DescribeWorkspaceAssociationsCommandOutput
|
|
22
|
+
extends DescribeWorkspaceAssociationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeWorkspaceAssociationsCommand extends $Command<
|
|
25
|
+
DescribeWorkspaceAssociationsCommandInput,
|
|
26
|
+
DescribeWorkspaceAssociationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeWorkspaceAssociationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeWorkspaceAssociationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeWorkspaceAssociationsCommandInput,
|
|
38
|
+
DescribeWorkspaceAssociationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DisassociateWorkspaceApplicationRequest,
|
|
11
|
+
DisassociateWorkspaceApplicationResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DisassociateWorkspaceApplicationCommandInput
|
|
20
|
+
extends DisassociateWorkspaceApplicationRequest {}
|
|
21
|
+
export interface DisassociateWorkspaceApplicationCommandOutput
|
|
22
|
+
extends DisassociateWorkspaceApplicationResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DisassociateWorkspaceApplicationCommand extends $Command<
|
|
25
|
+
DisassociateWorkspaceApplicationCommandInput,
|
|
26
|
+
DisassociateWorkspaceApplicationCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DisassociateWorkspaceApplicationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DisassociateWorkspaceApplicationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DisassociateWorkspaceApplicationCommandInput,
|
|
38
|
+
DisassociateWorkspaceApplicationCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./AssociateConnectionAliasCommand";
|
|
2
2
|
export * from "./AssociateIpGroupsCommand";
|
|
3
|
+
export * from "./AssociateWorkspaceApplicationCommand";
|
|
3
4
|
export * from "./AuthorizeIpRulesCommand";
|
|
4
5
|
export * from "./CopyWorkspaceImageCommand";
|
|
5
6
|
export * from "./CreateConnectClientAddInCommand";
|
|
@@ -18,16 +19,22 @@ export * from "./DeleteIpGroupCommand";
|
|
|
18
19
|
export * from "./DeleteTagsCommand";
|
|
19
20
|
export * from "./DeleteWorkspaceBundleCommand";
|
|
20
21
|
export * from "./DeleteWorkspaceImageCommand";
|
|
22
|
+
export * from "./DeployWorkspaceApplicationsCommand";
|
|
21
23
|
export * from "./DeregisterWorkspaceDirectoryCommand";
|
|
22
24
|
export * from "./DescribeAccountCommand";
|
|
23
25
|
export * from "./DescribeAccountModificationsCommand";
|
|
26
|
+
export * from "./DescribeApplicationAssociationsCommand";
|
|
27
|
+
export * from "./DescribeApplicationsCommand";
|
|
28
|
+
export * from "./DescribeBundleAssociationsCommand";
|
|
24
29
|
export * from "./DescribeClientBrandingCommand";
|
|
25
30
|
export * from "./DescribeClientPropertiesCommand";
|
|
26
31
|
export * from "./DescribeConnectClientAddInsCommand";
|
|
27
32
|
export * from "./DescribeConnectionAliasPermissionsCommand";
|
|
28
33
|
export * from "./DescribeConnectionAliasesCommand";
|
|
34
|
+
export * from "./DescribeImageAssociationsCommand";
|
|
29
35
|
export * from "./DescribeIpGroupsCommand";
|
|
30
36
|
export * from "./DescribeTagsCommand";
|
|
37
|
+
export * from "./DescribeWorkspaceAssociationsCommand";
|
|
31
38
|
export * from "./DescribeWorkspaceBundlesCommand";
|
|
32
39
|
export * from "./DescribeWorkspaceDirectoriesCommand";
|
|
33
40
|
export * from "./DescribeWorkspaceImagePermissionsCommand";
|
|
@@ -37,6 +44,7 @@ export * from "./DescribeWorkspacesCommand";
|
|
|
37
44
|
export * from "./DescribeWorkspacesConnectionStatusCommand";
|
|
38
45
|
export * from "./DisassociateConnectionAliasCommand";
|
|
39
46
|
export * from "./DisassociateIpGroupsCommand";
|
|
47
|
+
export * from "./DisassociateWorkspaceApplicationCommand";
|
|
40
48
|
export * from "./ImportClientBrandingCommand";
|
|
41
49
|
export * from "./ImportWorkspaceImageCommand";
|
|
42
50
|
export * from "./ListAvailableManagementCidrRangesCommand";
|
|
@@ -39,6 +39,58 @@ export declare const Application: {
|
|
|
39
39
|
readonly Microsoft_Office_2019: "Microsoft_Office_2019";
|
|
40
40
|
};
|
|
41
41
|
export type Application = (typeof Application)[keyof typeof Application];
|
|
42
|
+
export declare const ApplicationAssociatedResourceType: {
|
|
43
|
+
readonly BUNDLE: "BUNDLE";
|
|
44
|
+
readonly IMAGE: "IMAGE";
|
|
45
|
+
readonly WORKSPACE: "WORKSPACE";
|
|
46
|
+
};
|
|
47
|
+
export type ApplicationAssociatedResourceType =
|
|
48
|
+
(typeof ApplicationAssociatedResourceType)[keyof typeof ApplicationAssociatedResourceType];
|
|
49
|
+
export declare class ApplicationNotSupportedException extends __BaseException {
|
|
50
|
+
readonly name: "ApplicationNotSupportedException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<
|
|
54
|
+
ApplicationNotSupportedException,
|
|
55
|
+
__BaseException
|
|
56
|
+
>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare const AssociationState: {
|
|
60
|
+
readonly COMPLETED: "COMPLETED";
|
|
61
|
+
readonly ERROR: "ERROR";
|
|
62
|
+
readonly INSTALLING: "INSTALLING";
|
|
63
|
+
readonly PENDING_INSTALL: "PENDING_INSTALL";
|
|
64
|
+
readonly PENDING_INSTALL_DEPLOYMENT: "PENDING_INSTALL_DEPLOYMENT";
|
|
65
|
+
readonly PENDING_UNINSTALL: "PENDING_UNINSTALL";
|
|
66
|
+
readonly PENDING_UNINSTALL_DEPLOYMENT: "PENDING_UNINSTALL_DEPLOYMENT";
|
|
67
|
+
readonly REMOVED: "REMOVED";
|
|
68
|
+
readonly UNINSTALLING: "UNINSTALLING";
|
|
69
|
+
};
|
|
70
|
+
export type AssociationState =
|
|
71
|
+
(typeof AssociationState)[keyof typeof AssociationState];
|
|
72
|
+
export declare const AssociationErrorCode: {
|
|
73
|
+
readonly INSUFFICIENT_DISKSPACE: "ValidationError.InsufficientDiskSpace";
|
|
74
|
+
readonly INSUFFICIENT_MEMORY: "ValidationError.InsufficientMemory";
|
|
75
|
+
readonly INTERNAL_SERVER_ERROR: "DeploymentError.InternalServerError";
|
|
76
|
+
readonly UNSUPPORTED_OPERATING_SYSTEM: "ValidationError.UnsupportedOperatingSystem";
|
|
77
|
+
readonly WORKSPACE_UNREACHABLE: "DeploymentError.WorkspaceUnreachable";
|
|
78
|
+
};
|
|
79
|
+
export type AssociationErrorCode =
|
|
80
|
+
(typeof AssociationErrorCode)[keyof typeof AssociationErrorCode];
|
|
81
|
+
export interface AssociationStateReason {
|
|
82
|
+
ErrorCode?: AssociationErrorCode | string;
|
|
83
|
+
ErrorMessage?: string;
|
|
84
|
+
}
|
|
85
|
+
export interface ApplicationResourceAssociation {
|
|
86
|
+
ApplicationId?: string;
|
|
87
|
+
AssociatedResourceId?: string;
|
|
88
|
+
AssociatedResourceType?: ApplicationAssociatedResourceType | string;
|
|
89
|
+
Created?: Date;
|
|
90
|
+
LastUpdatedTime?: Date;
|
|
91
|
+
State?: AssociationState | string;
|
|
92
|
+
StateReason?: AssociationStateReason;
|
|
93
|
+
}
|
|
42
94
|
export interface AssociateConnectionAliasRequest {
|
|
43
95
|
AliasId: string | undefined;
|
|
44
96
|
ResourceId: string | undefined;
|
|
@@ -98,6 +150,69 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
98
150
|
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
99
151
|
);
|
|
100
152
|
}
|
|
153
|
+
export interface AssociateWorkspaceApplicationRequest {
|
|
154
|
+
WorkspaceId: string | undefined;
|
|
155
|
+
ApplicationId: string | undefined;
|
|
156
|
+
}
|
|
157
|
+
export declare const WorkSpaceAssociatedResourceType: {
|
|
158
|
+
readonly APPLICATION: "APPLICATION";
|
|
159
|
+
};
|
|
160
|
+
export type WorkSpaceAssociatedResourceType =
|
|
161
|
+
(typeof WorkSpaceAssociatedResourceType)[keyof typeof WorkSpaceAssociatedResourceType];
|
|
162
|
+
export interface WorkspaceResourceAssociation {
|
|
163
|
+
AssociatedResourceId?: string;
|
|
164
|
+
AssociatedResourceType?: WorkSpaceAssociatedResourceType | string;
|
|
165
|
+
Created?: Date;
|
|
166
|
+
LastUpdatedTime?: Date;
|
|
167
|
+
State?: AssociationState | string;
|
|
168
|
+
StateReason?: AssociationStateReason;
|
|
169
|
+
WorkspaceId?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface AssociateWorkspaceApplicationResult {
|
|
172
|
+
Association?: WorkspaceResourceAssociation;
|
|
173
|
+
}
|
|
174
|
+
export declare class ComputeNotCompatibleException extends __BaseException {
|
|
175
|
+
readonly name: "ComputeNotCompatibleException";
|
|
176
|
+
readonly $fault: "client";
|
|
177
|
+
constructor(
|
|
178
|
+
opts: __ExceptionOptionType<ComputeNotCompatibleException, __BaseException>
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
export declare class IncompatibleApplicationsException extends __BaseException {
|
|
182
|
+
readonly name: "IncompatibleApplicationsException";
|
|
183
|
+
readonly $fault: "client";
|
|
184
|
+
constructor(
|
|
185
|
+
opts: __ExceptionOptionType<
|
|
186
|
+
IncompatibleApplicationsException,
|
|
187
|
+
__BaseException
|
|
188
|
+
>
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
export declare class OperatingSystemNotCompatibleException extends __BaseException {
|
|
192
|
+
readonly name: "OperatingSystemNotCompatibleException";
|
|
193
|
+
readonly $fault: "client";
|
|
194
|
+
constructor(
|
|
195
|
+
opts: __ExceptionOptionType<
|
|
196
|
+
OperatingSystemNotCompatibleException,
|
|
197
|
+
__BaseException
|
|
198
|
+
>
|
|
199
|
+
);
|
|
200
|
+
}
|
|
201
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
202
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
constructor(
|
|
205
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
206
|
+
);
|
|
207
|
+
}
|
|
208
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
209
|
+
readonly name: "ResourceInUseException";
|
|
210
|
+
readonly $fault: "client";
|
|
211
|
+
ResourceId?: string;
|
|
212
|
+
constructor(
|
|
213
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
214
|
+
);
|
|
215
|
+
}
|
|
101
216
|
export declare const AssociationStatus: {
|
|
102
217
|
readonly ASSOCIATED_WITH_OWNER_ACCOUNT: "ASSOCIATED_WITH_OWNER_ACCOUNT";
|
|
103
218
|
readonly ASSOCIATED_WITH_SHARED_ACCOUNT: "ASSOCIATED_WITH_SHARED_ACCOUNT";
|
|
@@ -116,6 +231,11 @@ export interface AuthorizeIpRulesRequest {
|
|
|
116
231
|
UserRules: IpRuleItem[] | undefined;
|
|
117
232
|
}
|
|
118
233
|
export interface AuthorizeIpRulesResult {}
|
|
234
|
+
export declare const BundleAssociatedResourceType: {
|
|
235
|
+
readonly APPLICATION: "APPLICATION";
|
|
236
|
+
};
|
|
237
|
+
export type BundleAssociatedResourceType =
|
|
238
|
+
(typeof BundleAssociatedResourceType)[keyof typeof BundleAssociatedResourceType];
|
|
119
239
|
export declare const BundleType: {
|
|
120
240
|
readonly REGULAR: "REGULAR";
|
|
121
241
|
readonly STANDBY: "STANDBY";
|
|
@@ -163,6 +283,15 @@ export interface WorkspaceBundle {
|
|
|
163
283
|
State?: WorkspaceBundleState | string;
|
|
164
284
|
BundleType?: BundleType | string;
|
|
165
285
|
}
|
|
286
|
+
export interface BundleResourceAssociation {
|
|
287
|
+
AssociatedResourceId?: string;
|
|
288
|
+
AssociatedResourceType?: BundleAssociatedResourceType | string;
|
|
289
|
+
BundleId?: string;
|
|
290
|
+
Created?: Date;
|
|
291
|
+
LastUpdatedTime?: Date;
|
|
292
|
+
State?: AssociationState | string;
|
|
293
|
+
StateReason?: AssociationStateReason;
|
|
294
|
+
}
|
|
166
295
|
export declare const CertificateBasedAuthStatusEnum: {
|
|
167
296
|
readonly DISABLED: "DISABLED";
|
|
168
297
|
readonly ENABLED: "ENABLED";
|
|
@@ -252,13 +381,6 @@ export interface CopyWorkspaceImageRequest {
|
|
|
252
381
|
export interface CopyWorkspaceImageResult {
|
|
253
382
|
ImageId?: string;
|
|
254
383
|
}
|
|
255
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
256
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
257
|
-
readonly $fault: "client";
|
|
258
|
-
constructor(
|
|
259
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
260
|
-
);
|
|
261
|
-
}
|
|
262
384
|
export declare class ResourceUnavailableException extends __BaseException {
|
|
263
385
|
readonly name: "ResourceUnavailableException";
|
|
264
386
|
readonly $fault: "client";
|
|
@@ -411,6 +533,21 @@ export interface CreateWorkspaceImageResult {
|
|
|
411
533
|
Created?: Date;
|
|
412
534
|
OwnerAccountId?: string;
|
|
413
535
|
}
|
|
536
|
+
export declare const OperatingSystemName: {
|
|
537
|
+
readonly AMAZON_LINUX_2: "AMAZON_LINUX_2";
|
|
538
|
+
readonly UBUNTU_18_04: "UBUNTU_18_04";
|
|
539
|
+
readonly UBUNTU_20_04: "UBUNTU_20_04";
|
|
540
|
+
readonly UBUNTU_22_04: "UBUNTU_22_04";
|
|
541
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
542
|
+
readonly WINDOWS_10: "WINDOWS_10";
|
|
543
|
+
readonly WINDOWS_11: "WINDOWS_11";
|
|
544
|
+
readonly WINDOWS_7: "WINDOWS_7";
|
|
545
|
+
readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
|
|
546
|
+
readonly WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019";
|
|
547
|
+
readonly WINDOWS_SERVER_2022: "WINDOWS_SERVER_2022";
|
|
548
|
+
};
|
|
549
|
+
export type OperatingSystemName =
|
|
550
|
+
(typeof OperatingSystemName)[keyof typeof OperatingSystemName];
|
|
414
551
|
export declare const Protocol: {
|
|
415
552
|
readonly PCOIP: "PCOIP";
|
|
416
553
|
readonly WSP: "WSP";
|
|
@@ -429,6 +566,7 @@ export interface WorkspaceProperties {
|
|
|
429
566
|
UserVolumeSizeGib?: number;
|
|
430
567
|
ComputeTypeName?: Compute | string;
|
|
431
568
|
Protocols?: (Protocol | string)[];
|
|
569
|
+
OperatingSystemName?: OperatingSystemName | string;
|
|
432
570
|
}
|
|
433
571
|
export interface WorkspaceRequest {
|
|
434
572
|
DirectoryId: string | undefined;
|
|
@@ -568,6 +706,16 @@ export interface DeleteWorkspaceImageRequest {
|
|
|
568
706
|
ImageId: string | undefined;
|
|
569
707
|
}
|
|
570
708
|
export interface DeleteWorkspaceImageResult {}
|
|
709
|
+
export interface DeployWorkspaceApplicationsRequest {
|
|
710
|
+
WorkspaceId: string | undefined;
|
|
711
|
+
Force?: boolean;
|
|
712
|
+
}
|
|
713
|
+
export interface WorkSpaceApplicationDeployment {
|
|
714
|
+
Associations?: WorkspaceResourceAssociation[];
|
|
715
|
+
}
|
|
716
|
+
export interface DeployWorkspaceApplicationsResult {
|
|
717
|
+
Deployment?: WorkSpaceApplicationDeployment;
|
|
718
|
+
}
|
|
571
719
|
export interface DeregisterWorkspaceDirectoryRequest {
|
|
572
720
|
DirectoryId: string | undefined;
|
|
573
721
|
}
|
|
@@ -584,6 +732,65 @@ export interface DescribeAccountModificationsResult {
|
|
|
584
732
|
AccountModifications?: AccountModification[];
|
|
585
733
|
NextToken?: string;
|
|
586
734
|
}
|
|
735
|
+
export interface DescribeApplicationAssociationsRequest {
|
|
736
|
+
MaxResults?: number;
|
|
737
|
+
NextToken?: string;
|
|
738
|
+
ApplicationId: string | undefined;
|
|
739
|
+
AssociatedResourceTypes:
|
|
740
|
+
| (ApplicationAssociatedResourceType | string)[]
|
|
741
|
+
| undefined;
|
|
742
|
+
}
|
|
743
|
+
export interface DescribeApplicationAssociationsResult {
|
|
744
|
+
Associations?: ApplicationResourceAssociation[];
|
|
745
|
+
NextToken?: string;
|
|
746
|
+
}
|
|
747
|
+
export declare const WorkSpaceApplicationLicenseType: {
|
|
748
|
+
readonly LICENSED: "LICENSED";
|
|
749
|
+
readonly UNLICENSED: "UNLICENSED";
|
|
750
|
+
};
|
|
751
|
+
export type WorkSpaceApplicationLicenseType =
|
|
752
|
+
(typeof WorkSpaceApplicationLicenseType)[keyof typeof WorkSpaceApplicationLicenseType];
|
|
753
|
+
export interface DescribeApplicationsRequest {
|
|
754
|
+
ApplicationIds?: string[];
|
|
755
|
+
ComputeTypeNames?: (Compute | string)[];
|
|
756
|
+
LicenseType?: WorkSpaceApplicationLicenseType | string;
|
|
757
|
+
OperatingSystemNames?: (OperatingSystemName | string)[];
|
|
758
|
+
Owner?: string;
|
|
759
|
+
MaxResults?: number;
|
|
760
|
+
NextToken?: string;
|
|
761
|
+
}
|
|
762
|
+
export declare const WorkSpaceApplicationState: {
|
|
763
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
764
|
+
readonly ERROR: "ERROR";
|
|
765
|
+
readonly PENDING: "PENDING";
|
|
766
|
+
readonly UNINSTALL_ONLY: "UNINSTALL_ONLY";
|
|
767
|
+
};
|
|
768
|
+
export type WorkSpaceApplicationState =
|
|
769
|
+
(typeof WorkSpaceApplicationState)[keyof typeof WorkSpaceApplicationState];
|
|
770
|
+
export interface WorkSpaceApplication {
|
|
771
|
+
ApplicationId?: string;
|
|
772
|
+
Created?: Date;
|
|
773
|
+
Description?: string;
|
|
774
|
+
LicenseType?: WorkSpaceApplicationLicenseType | string;
|
|
775
|
+
Name?: string;
|
|
776
|
+
Owner?: string;
|
|
777
|
+
State?: WorkSpaceApplicationState | string;
|
|
778
|
+
SupportedComputeTypeNames?: (Compute | string)[];
|
|
779
|
+
SupportedOperatingSystemNames?: (OperatingSystemName | string)[];
|
|
780
|
+
}
|
|
781
|
+
export interface DescribeApplicationsResult {
|
|
782
|
+
Applications?: WorkSpaceApplication[];
|
|
783
|
+
NextToken?: string;
|
|
784
|
+
}
|
|
785
|
+
export interface DescribeBundleAssociationsRequest {
|
|
786
|
+
BundleId: string | undefined;
|
|
787
|
+
AssociatedResourceTypes:
|
|
788
|
+
| (BundleAssociatedResourceType | string)[]
|
|
789
|
+
| undefined;
|
|
790
|
+
}
|
|
791
|
+
export interface DescribeBundleAssociationsResult {
|
|
792
|
+
Associations?: BundleResourceAssociation[];
|
|
793
|
+
}
|
|
587
794
|
export interface DescribeClientBrandingRequest {
|
|
588
795
|
ResourceId: string | undefined;
|
|
589
796
|
}
|
|
@@ -639,6 +846,27 @@ export interface DescribeConnectionAliasPermissionsResult {
|
|
|
639
846
|
ConnectionAliasPermissions?: ConnectionAliasPermission[];
|
|
640
847
|
NextToken?: string;
|
|
641
848
|
}
|
|
849
|
+
export declare const ImageAssociatedResourceType: {
|
|
850
|
+
readonly APPLICATION: "APPLICATION";
|
|
851
|
+
};
|
|
852
|
+
export type ImageAssociatedResourceType =
|
|
853
|
+
(typeof ImageAssociatedResourceType)[keyof typeof ImageAssociatedResourceType];
|
|
854
|
+
export interface DescribeImageAssociationsRequest {
|
|
855
|
+
ImageId: string | undefined;
|
|
856
|
+
AssociatedResourceTypes: (ImageAssociatedResourceType | string)[] | undefined;
|
|
857
|
+
}
|
|
858
|
+
export interface ImageResourceAssociation {
|
|
859
|
+
AssociatedResourceId?: string;
|
|
860
|
+
AssociatedResourceType?: ImageAssociatedResourceType | string;
|
|
861
|
+
Created?: Date;
|
|
862
|
+
LastUpdatedTime?: Date;
|
|
863
|
+
ImageId?: string;
|
|
864
|
+
State?: AssociationState | string;
|
|
865
|
+
StateReason?: AssociationStateReason;
|
|
866
|
+
}
|
|
867
|
+
export interface DescribeImageAssociationsResult {
|
|
868
|
+
Associations?: ImageResourceAssociation[];
|
|
869
|
+
}
|
|
642
870
|
export interface DescribeIpGroupsRequest {
|
|
643
871
|
GroupIds?: string[];
|
|
644
872
|
NextToken?: string;
|
|
@@ -660,6 +888,15 @@ export interface DescribeTagsRequest {
|
|
|
660
888
|
export interface DescribeTagsResult {
|
|
661
889
|
TagList?: Tag[];
|
|
662
890
|
}
|
|
891
|
+
export interface DescribeWorkspaceAssociationsRequest {
|
|
892
|
+
WorkspaceId: string | undefined;
|
|
893
|
+
AssociatedResourceTypes:
|
|
894
|
+
| (WorkSpaceAssociatedResourceType | string)[]
|
|
895
|
+
| undefined;
|
|
896
|
+
}
|
|
897
|
+
export interface DescribeWorkspaceAssociationsResult {
|
|
898
|
+
Associations?: WorkspaceResourceAssociation[];
|
|
899
|
+
}
|
|
663
900
|
export interface DescribeWorkspaceBundlesRequest {
|
|
664
901
|
BundleIds?: string[];
|
|
665
902
|
Owner?: string;
|
|
@@ -872,6 +1109,13 @@ export interface DisassociateIpGroupsRequest {
|
|
|
872
1109
|
GroupIds: string[] | undefined;
|
|
873
1110
|
}
|
|
874
1111
|
export interface DisassociateIpGroupsResult {}
|
|
1112
|
+
export interface DisassociateWorkspaceApplicationRequest {
|
|
1113
|
+
WorkspaceId: string | undefined;
|
|
1114
|
+
ApplicationId: string | undefined;
|
|
1115
|
+
}
|
|
1116
|
+
export interface DisassociateWorkspaceApplicationResult {
|
|
1117
|
+
Association?: WorkspaceResourceAssociation;
|
|
1118
|
+
}
|
|
875
1119
|
export interface FailedWorkspaceChangeRequest {
|
|
876
1120
|
WorkspaceId?: string;
|
|
877
1121
|
ErrorCode?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeApplicationAssociationsCommandInput,
|
|
4
|
+
DescribeApplicationAssociationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeApplicationAssociationsCommand";
|
|
6
|
+
import { WorkSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeApplicationAssociations(
|
|
8
|
+
config: WorkSpacesPaginationConfiguration,
|
|
9
|
+
input: DescribeApplicationAssociationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeApplicationAssociationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeApplicationsCommandInput,
|
|
4
|
+
DescribeApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeApplicationsCommand";
|
|
6
|
+
import { WorkSpacesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeApplications(
|
|
8
|
+
config: WorkSpacesPaginationConfiguration,
|
|
9
|
+
input: DescribeApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeApplicationsCommandOutput>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export * from "./DescribeApplicationAssociationsPaginator";
|
|
2
|
+
export * from "./DescribeApplicationsPaginator";
|
|
1
3
|
export * from "./DescribeWorkspaceBundlesPaginator";
|
|
2
4
|
export * from "./DescribeWorkspaceDirectoriesPaginator";
|
|
3
5
|
export * from "./DescribeWorkspacesPaginator";
|