@aws-sdk/client-workspaces 3.425.0 → 3.426.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 +1 -1
package/dist-es/WorkSpaces.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { AssociateConnectionAliasCommand, } from "./commands/AssociateConnectionAliasCommand";
|
|
3
3
|
import { AssociateIpGroupsCommand, } from "./commands/AssociateIpGroupsCommand";
|
|
4
|
+
import { AssociateWorkspaceApplicationCommand, } from "./commands/AssociateWorkspaceApplicationCommand";
|
|
4
5
|
import { AuthorizeIpRulesCommand, } from "./commands/AuthorizeIpRulesCommand";
|
|
5
6
|
import { CopyWorkspaceImageCommand, } from "./commands/CopyWorkspaceImageCommand";
|
|
6
7
|
import { CreateConnectClientAddInCommand, } from "./commands/CreateConnectClientAddInCommand";
|
|
@@ -19,16 +20,22 @@ import { DeleteIpGroupCommand, } from "./commands/DeleteIpGroupCommand";
|
|
|
19
20
|
import { DeleteTagsCommand } from "./commands/DeleteTagsCommand";
|
|
20
21
|
import { DeleteWorkspaceBundleCommand, } from "./commands/DeleteWorkspaceBundleCommand";
|
|
21
22
|
import { DeleteWorkspaceImageCommand, } from "./commands/DeleteWorkspaceImageCommand";
|
|
23
|
+
import { DeployWorkspaceApplicationsCommand, } from "./commands/DeployWorkspaceApplicationsCommand";
|
|
22
24
|
import { DeregisterWorkspaceDirectoryCommand, } from "./commands/DeregisterWorkspaceDirectoryCommand";
|
|
23
25
|
import { DescribeAccountCommand, } from "./commands/DescribeAccountCommand";
|
|
24
26
|
import { DescribeAccountModificationsCommand, } from "./commands/DescribeAccountModificationsCommand";
|
|
27
|
+
import { DescribeApplicationAssociationsCommand, } from "./commands/DescribeApplicationAssociationsCommand";
|
|
28
|
+
import { DescribeApplicationsCommand, } from "./commands/DescribeApplicationsCommand";
|
|
29
|
+
import { DescribeBundleAssociationsCommand, } from "./commands/DescribeBundleAssociationsCommand";
|
|
25
30
|
import { DescribeClientBrandingCommand, } from "./commands/DescribeClientBrandingCommand";
|
|
26
31
|
import { DescribeClientPropertiesCommand, } from "./commands/DescribeClientPropertiesCommand";
|
|
27
32
|
import { DescribeConnectClientAddInsCommand, } from "./commands/DescribeConnectClientAddInsCommand";
|
|
28
33
|
import { DescribeConnectionAliasesCommand, } from "./commands/DescribeConnectionAliasesCommand";
|
|
29
34
|
import { DescribeConnectionAliasPermissionsCommand, } from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
35
|
+
import { DescribeImageAssociationsCommand, } from "./commands/DescribeImageAssociationsCommand";
|
|
30
36
|
import { DescribeIpGroupsCommand, } from "./commands/DescribeIpGroupsCommand";
|
|
31
37
|
import { DescribeTagsCommand, } from "./commands/DescribeTagsCommand";
|
|
38
|
+
import { DescribeWorkspaceAssociationsCommand, } from "./commands/DescribeWorkspaceAssociationsCommand";
|
|
32
39
|
import { DescribeWorkspaceBundlesCommand, } from "./commands/DescribeWorkspaceBundlesCommand";
|
|
33
40
|
import { DescribeWorkspaceDirectoriesCommand, } from "./commands/DescribeWorkspaceDirectoriesCommand";
|
|
34
41
|
import { DescribeWorkspaceImagePermissionsCommand, } from "./commands/DescribeWorkspaceImagePermissionsCommand";
|
|
@@ -38,6 +45,7 @@ import { DescribeWorkspacesConnectionStatusCommand, } from "./commands/DescribeW
|
|
|
38
45
|
import { DescribeWorkspaceSnapshotsCommand, } from "./commands/DescribeWorkspaceSnapshotsCommand";
|
|
39
46
|
import { DisassociateConnectionAliasCommand, } from "./commands/DisassociateConnectionAliasCommand";
|
|
40
47
|
import { DisassociateIpGroupsCommand, } from "./commands/DisassociateIpGroupsCommand";
|
|
48
|
+
import { DisassociateWorkspaceApplicationCommand, } from "./commands/DisassociateWorkspaceApplicationCommand";
|
|
41
49
|
import { ImportClientBrandingCommand, } from "./commands/ImportClientBrandingCommand";
|
|
42
50
|
import { ImportWorkspaceImageCommand, } from "./commands/ImportWorkspaceImageCommand";
|
|
43
51
|
import { ListAvailableManagementCidrRangesCommand, } from "./commands/ListAvailableManagementCidrRangesCommand";
|
|
@@ -68,6 +76,7 @@ import { WorkSpacesClient } from "./WorkSpacesClient";
|
|
|
68
76
|
const commands = {
|
|
69
77
|
AssociateConnectionAliasCommand,
|
|
70
78
|
AssociateIpGroupsCommand,
|
|
79
|
+
AssociateWorkspaceApplicationCommand,
|
|
71
80
|
AuthorizeIpRulesCommand,
|
|
72
81
|
CopyWorkspaceImageCommand,
|
|
73
82
|
CreateConnectClientAddInCommand,
|
|
@@ -86,16 +95,22 @@ const commands = {
|
|
|
86
95
|
DeleteTagsCommand,
|
|
87
96
|
DeleteWorkspaceBundleCommand,
|
|
88
97
|
DeleteWorkspaceImageCommand,
|
|
98
|
+
DeployWorkspaceApplicationsCommand,
|
|
89
99
|
DeregisterWorkspaceDirectoryCommand,
|
|
90
100
|
DescribeAccountCommand,
|
|
91
101
|
DescribeAccountModificationsCommand,
|
|
102
|
+
DescribeApplicationAssociationsCommand,
|
|
103
|
+
DescribeApplicationsCommand,
|
|
104
|
+
DescribeBundleAssociationsCommand,
|
|
92
105
|
DescribeClientBrandingCommand,
|
|
93
106
|
DescribeClientPropertiesCommand,
|
|
94
107
|
DescribeConnectClientAddInsCommand,
|
|
95
108
|
DescribeConnectionAliasesCommand,
|
|
96
109
|
DescribeConnectionAliasPermissionsCommand,
|
|
110
|
+
DescribeImageAssociationsCommand,
|
|
97
111
|
DescribeIpGroupsCommand,
|
|
98
112
|
DescribeTagsCommand,
|
|
113
|
+
DescribeWorkspaceAssociationsCommand,
|
|
99
114
|
DescribeWorkspaceBundlesCommand,
|
|
100
115
|
DescribeWorkspaceDirectoriesCommand,
|
|
101
116
|
DescribeWorkspaceImagePermissionsCommand,
|
|
@@ -105,6 +120,7 @@ const commands = {
|
|
|
105
120
|
DescribeWorkspaceSnapshotsCommand,
|
|
106
121
|
DisassociateConnectionAliasCommand,
|
|
107
122
|
DisassociateIpGroupsCommand,
|
|
123
|
+
DisassociateWorkspaceApplicationCommand,
|
|
108
124
|
ImportClientBrandingCommand,
|
|
109
125
|
ImportWorkspaceImageCommand,
|
|
110
126
|
ListAvailableManagementCidrRangesCommand,
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_AssociateWorkspaceApplicationCommand, se_AssociateWorkspaceApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AssociateWorkspaceApplicationCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, AssociateWorkspaceApplicationCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "AssociateWorkspaceApplicationCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "AssociateWorkspaceApplication",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_AssociateWorkspaceApplicationCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_AssociateWorkspaceApplicationCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DeployWorkspaceApplicationsCommand, se_DeployWorkspaceApplicationsCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeployWorkspaceApplicationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DeployWorkspaceApplicationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DeployWorkspaceApplicationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DeployWorkspaceApplications",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DeployWorkspaceApplicationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DeployWorkspaceApplicationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DescribeApplicationAssociationsCommand, se_DescribeApplicationAssociationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeApplicationAssociationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DescribeApplicationAssociationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DescribeApplicationAssociationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DescribeApplicationAssociations",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DescribeApplicationAssociationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DescribeApplicationAssociationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DescribeApplicationsCommand, se_DescribeApplicationsCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeApplicationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DescribeApplicationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DescribeApplicationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DescribeApplications",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DescribeApplicationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DescribeApplicationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DescribeBundleAssociationsCommand, se_DescribeBundleAssociationsCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeBundleAssociationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DescribeBundleAssociationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DescribeBundleAssociationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DescribeBundleAssociations",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DescribeBundleAssociationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DescribeBundleAssociationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DescribeImageAssociationsCommand, se_DescribeImageAssociationsCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeImageAssociationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DescribeImageAssociationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DescribeImageAssociationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DescribeImageAssociations",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DescribeImageAssociationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DescribeImageAssociationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DescribeWorkspaceAssociationsCommand, se_DescribeWorkspaceAssociationsCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DescribeWorkspaceAssociationsCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DescribeWorkspaceAssociationsCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DescribeWorkspaceAssociationsCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DescribeWorkspaceAssociations",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DescribeWorkspaceAssociationsCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DescribeWorkspaceAssociationsCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
|
|
5
|
+
import { de_DisassociateWorkspaceApplicationCommand, se_DisassociateWorkspaceApplicationCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DisassociateWorkspaceApplicationCommand extends $Command {
|
|
8
|
+
static getEndpointParameterInstructions() {
|
|
9
|
+
return {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
constructor(input) {
|
|
17
|
+
super();
|
|
18
|
+
this.input = input;
|
|
19
|
+
}
|
|
20
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
21
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
22
|
+
this.middlewareStack.use(getEndpointPlugin(configuration, DisassociateWorkspaceApplicationCommand.getEndpointParameterInstructions()));
|
|
23
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
24
|
+
const { logger } = configuration;
|
|
25
|
+
const clientName = "WorkSpacesClient";
|
|
26
|
+
const commandName = "DisassociateWorkspaceApplicationCommand";
|
|
27
|
+
const handlerExecutionContext = {
|
|
28
|
+
logger,
|
|
29
|
+
clientName,
|
|
30
|
+
commandName,
|
|
31
|
+
inputFilterSensitiveLog: (_) => _,
|
|
32
|
+
outputFilterSensitiveLog: (_) => _,
|
|
33
|
+
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
+
service: "WorkspacesService",
|
|
35
|
+
operation: "DisassociateWorkspaceApplication",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
const { requestHandler } = configuration;
|
|
39
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
+
}
|
|
41
|
+
serialize(input, context) {
|
|
42
|
+
return se_DisassociateWorkspaceApplicationCommand(input, context);
|
|
43
|
+
}
|
|
44
|
+
deserialize(output, context) {
|
|
45
|
+
return de_DisassociateWorkspaceApplicationCommand(output, context);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -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";
|