@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,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeApplicationAssociationsCommandInput, DescribeApplicationAssociationsCommandOutput } from "../commands/DescribeApplicationAssociationsCommand";
|
|
3
|
+
import { WorkSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateDescribeApplicationAssociations(config: WorkSpacesPaginationConfiguration, input: DescribeApplicationAssociationsCommandInput, ...additionalArguments: any): Paginator<DescribeApplicationAssociationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "../commands/DescribeApplicationsCommand";
|
|
3
|
+
import { WorkSpacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateDescribeApplications(config: WorkSpacesPaginationConfiguration, input: DescribeApplicationsCommandInput, ...additionalArguments: any): 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";
|
|
@@ -2,6 +2,7 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AssociateConnectionAliasCommandInput, AssociateConnectionAliasCommandOutput } from "../commands/AssociateConnectionAliasCommand";
|
|
4
4
|
import { AssociateIpGroupsCommandInput, AssociateIpGroupsCommandOutput } from "../commands/AssociateIpGroupsCommand";
|
|
5
|
+
import { AssociateWorkspaceApplicationCommandInput, AssociateWorkspaceApplicationCommandOutput } from "../commands/AssociateWorkspaceApplicationCommand";
|
|
5
6
|
import { AuthorizeIpRulesCommandInput, AuthorizeIpRulesCommandOutput } from "../commands/AuthorizeIpRulesCommand";
|
|
6
7
|
import { CopyWorkspaceImageCommandInput, CopyWorkspaceImageCommandOutput } from "../commands/CopyWorkspaceImageCommand";
|
|
7
8
|
import { CreateConnectClientAddInCommandInput, CreateConnectClientAddInCommandOutput } from "../commands/CreateConnectClientAddInCommand";
|
|
@@ -20,16 +21,22 @@ import { DeleteIpGroupCommandInput, DeleteIpGroupCommandOutput } from "../comman
|
|
|
20
21
|
import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
|
|
21
22
|
import { DeleteWorkspaceBundleCommandInput, DeleteWorkspaceBundleCommandOutput } from "../commands/DeleteWorkspaceBundleCommand";
|
|
22
23
|
import { DeleteWorkspaceImageCommandInput, DeleteWorkspaceImageCommandOutput } from "../commands/DeleteWorkspaceImageCommand";
|
|
24
|
+
import { DeployWorkspaceApplicationsCommandInput, DeployWorkspaceApplicationsCommandOutput } from "../commands/DeployWorkspaceApplicationsCommand";
|
|
23
25
|
import { DeregisterWorkspaceDirectoryCommandInput, DeregisterWorkspaceDirectoryCommandOutput } from "../commands/DeregisterWorkspaceDirectoryCommand";
|
|
24
26
|
import { DescribeAccountCommandInput, DescribeAccountCommandOutput } from "../commands/DescribeAccountCommand";
|
|
25
27
|
import { DescribeAccountModificationsCommandInput, DescribeAccountModificationsCommandOutput } from "../commands/DescribeAccountModificationsCommand";
|
|
28
|
+
import { DescribeApplicationAssociationsCommandInput, DescribeApplicationAssociationsCommandOutput } from "../commands/DescribeApplicationAssociationsCommand";
|
|
29
|
+
import { DescribeApplicationsCommandInput, DescribeApplicationsCommandOutput } from "../commands/DescribeApplicationsCommand";
|
|
30
|
+
import { DescribeBundleAssociationsCommandInput, DescribeBundleAssociationsCommandOutput } from "../commands/DescribeBundleAssociationsCommand";
|
|
26
31
|
import { DescribeClientBrandingCommandInput, DescribeClientBrandingCommandOutput } from "../commands/DescribeClientBrandingCommand";
|
|
27
32
|
import { DescribeClientPropertiesCommandInput, DescribeClientPropertiesCommandOutput } from "../commands/DescribeClientPropertiesCommand";
|
|
28
33
|
import { DescribeConnectClientAddInsCommandInput, DescribeConnectClientAddInsCommandOutput } from "../commands/DescribeConnectClientAddInsCommand";
|
|
29
34
|
import { DescribeConnectionAliasesCommandInput, DescribeConnectionAliasesCommandOutput } from "../commands/DescribeConnectionAliasesCommand";
|
|
30
35
|
import { DescribeConnectionAliasPermissionsCommandInput, DescribeConnectionAliasPermissionsCommandOutput } from "../commands/DescribeConnectionAliasPermissionsCommand";
|
|
36
|
+
import { DescribeImageAssociationsCommandInput, DescribeImageAssociationsCommandOutput } from "../commands/DescribeImageAssociationsCommand";
|
|
31
37
|
import { DescribeIpGroupsCommandInput, DescribeIpGroupsCommandOutput } from "../commands/DescribeIpGroupsCommand";
|
|
32
38
|
import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "../commands/DescribeTagsCommand";
|
|
39
|
+
import { DescribeWorkspaceAssociationsCommandInput, DescribeWorkspaceAssociationsCommandOutput } from "../commands/DescribeWorkspaceAssociationsCommand";
|
|
33
40
|
import { DescribeWorkspaceBundlesCommandInput, DescribeWorkspaceBundlesCommandOutput } from "../commands/DescribeWorkspaceBundlesCommand";
|
|
34
41
|
import { DescribeWorkspaceDirectoriesCommandInput, DescribeWorkspaceDirectoriesCommandOutput } from "../commands/DescribeWorkspaceDirectoriesCommand";
|
|
35
42
|
import { DescribeWorkspaceImagePermissionsCommandInput, DescribeWorkspaceImagePermissionsCommandOutput } from "../commands/DescribeWorkspaceImagePermissionsCommand";
|
|
@@ -39,6 +46,7 @@ import { DescribeWorkspacesConnectionStatusCommandInput, DescribeWorkspacesConne
|
|
|
39
46
|
import { DescribeWorkspaceSnapshotsCommandInput, DescribeWorkspaceSnapshotsCommandOutput } from "../commands/DescribeWorkspaceSnapshotsCommand";
|
|
40
47
|
import { DisassociateConnectionAliasCommandInput, DisassociateConnectionAliasCommandOutput } from "../commands/DisassociateConnectionAliasCommand";
|
|
41
48
|
import { DisassociateIpGroupsCommandInput, DisassociateIpGroupsCommandOutput } from "../commands/DisassociateIpGroupsCommand";
|
|
49
|
+
import { DisassociateWorkspaceApplicationCommandInput, DisassociateWorkspaceApplicationCommandOutput } from "../commands/DisassociateWorkspaceApplicationCommand";
|
|
42
50
|
import { ImportClientBrandingCommandInput, ImportClientBrandingCommandOutput } from "../commands/ImportClientBrandingCommand";
|
|
43
51
|
import { ImportWorkspaceImageCommandInput, ImportWorkspaceImageCommandOutput } from "../commands/ImportWorkspaceImageCommand";
|
|
44
52
|
import { ListAvailableManagementCidrRangesCommandInput, ListAvailableManagementCidrRangesCommandOutput } from "../commands/ListAvailableManagementCidrRangesCommand";
|
|
@@ -73,6 +81,10 @@ export declare const se_AssociateConnectionAliasCommand: (input: AssociateConnec
|
|
|
73
81
|
* serializeAws_json1_1AssociateIpGroupsCommand
|
|
74
82
|
*/
|
|
75
83
|
export declare const se_AssociateIpGroupsCommand: (input: AssociateIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
/**
|
|
85
|
+
* serializeAws_json1_1AssociateWorkspaceApplicationCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const se_AssociateWorkspaceApplicationCommand: (input: AssociateWorkspaceApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
88
|
/**
|
|
77
89
|
* serializeAws_json1_1AuthorizeIpRulesCommand
|
|
78
90
|
*/
|
|
@@ -145,6 +157,10 @@ export declare const se_DeleteWorkspaceBundleCommand: (input: DeleteWorkspaceBun
|
|
|
145
157
|
* serializeAws_json1_1DeleteWorkspaceImageCommand
|
|
146
158
|
*/
|
|
147
159
|
export declare const se_DeleteWorkspaceImageCommand: (input: DeleteWorkspaceImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
+
/**
|
|
161
|
+
* serializeAws_json1_1DeployWorkspaceApplicationsCommand
|
|
162
|
+
*/
|
|
163
|
+
export declare const se_DeployWorkspaceApplicationsCommand: (input: DeployWorkspaceApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
164
|
/**
|
|
149
165
|
* serializeAws_json1_1DeregisterWorkspaceDirectoryCommand
|
|
150
166
|
*/
|
|
@@ -157,6 +173,18 @@ export declare const se_DescribeAccountCommand: (input: DescribeAccountCommandIn
|
|
|
157
173
|
* serializeAws_json1_1DescribeAccountModificationsCommand
|
|
158
174
|
*/
|
|
159
175
|
export declare const se_DescribeAccountModificationsCommand: (input: DescribeAccountModificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
|
+
/**
|
|
177
|
+
* serializeAws_json1_1DescribeApplicationAssociationsCommand
|
|
178
|
+
*/
|
|
179
|
+
export declare const se_DescribeApplicationAssociationsCommand: (input: DescribeApplicationAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
|
+
/**
|
|
181
|
+
* serializeAws_json1_1DescribeApplicationsCommand
|
|
182
|
+
*/
|
|
183
|
+
export declare const se_DescribeApplicationsCommand: (input: DescribeApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
184
|
+
/**
|
|
185
|
+
* serializeAws_json1_1DescribeBundleAssociationsCommand
|
|
186
|
+
*/
|
|
187
|
+
export declare const se_DescribeBundleAssociationsCommand: (input: DescribeBundleAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
188
|
/**
|
|
161
189
|
* serializeAws_json1_1DescribeClientBrandingCommand
|
|
162
190
|
*/
|
|
@@ -177,6 +205,10 @@ export declare const se_DescribeConnectionAliasesCommand: (input: DescribeConnec
|
|
|
177
205
|
* serializeAws_json1_1DescribeConnectionAliasPermissionsCommand
|
|
178
206
|
*/
|
|
179
207
|
export declare const se_DescribeConnectionAliasPermissionsCommand: (input: DescribeConnectionAliasPermissionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
208
|
+
/**
|
|
209
|
+
* serializeAws_json1_1DescribeImageAssociationsCommand
|
|
210
|
+
*/
|
|
211
|
+
export declare const se_DescribeImageAssociationsCommand: (input: DescribeImageAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
180
212
|
/**
|
|
181
213
|
* serializeAws_json1_1DescribeIpGroupsCommand
|
|
182
214
|
*/
|
|
@@ -185,6 +217,10 @@ export declare const se_DescribeIpGroupsCommand: (input: DescribeIpGroupsCommand
|
|
|
185
217
|
* serializeAws_json1_1DescribeTagsCommand
|
|
186
218
|
*/
|
|
187
219
|
export declare const se_DescribeTagsCommand: (input: DescribeTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
220
|
+
/**
|
|
221
|
+
* serializeAws_json1_1DescribeWorkspaceAssociationsCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const se_DescribeWorkspaceAssociationsCommand: (input: DescribeWorkspaceAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
224
|
/**
|
|
189
225
|
* serializeAws_json1_1DescribeWorkspaceBundlesCommand
|
|
190
226
|
*/
|
|
@@ -221,6 +257,10 @@ export declare const se_DisassociateConnectionAliasCommand: (input: Disassociate
|
|
|
221
257
|
* serializeAws_json1_1DisassociateIpGroupsCommand
|
|
222
258
|
*/
|
|
223
259
|
export declare const se_DisassociateIpGroupsCommand: (input: DisassociateIpGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
260
|
+
/**
|
|
261
|
+
* serializeAws_json1_1DisassociateWorkspaceApplicationCommand
|
|
262
|
+
*/
|
|
263
|
+
export declare const se_DisassociateWorkspaceApplicationCommand: (input: DisassociateWorkspaceApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
224
264
|
/**
|
|
225
265
|
* serializeAws_json1_1ImportClientBrandingCommand
|
|
226
266
|
*/
|
|
@@ -333,6 +373,10 @@ export declare const de_AssociateConnectionAliasCommand: (output: __HttpResponse
|
|
|
333
373
|
* deserializeAws_json1_1AssociateIpGroupsCommand
|
|
334
374
|
*/
|
|
335
375
|
export declare const de_AssociateIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateIpGroupsCommandOutput>;
|
|
376
|
+
/**
|
|
377
|
+
* deserializeAws_json1_1AssociateWorkspaceApplicationCommand
|
|
378
|
+
*/
|
|
379
|
+
export declare const de_AssociateWorkspaceApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateWorkspaceApplicationCommandOutput>;
|
|
336
380
|
/**
|
|
337
381
|
* deserializeAws_json1_1AuthorizeIpRulesCommand
|
|
338
382
|
*/
|
|
@@ -405,6 +449,10 @@ export declare const de_DeleteWorkspaceBundleCommand: (output: __HttpResponse, c
|
|
|
405
449
|
* deserializeAws_json1_1DeleteWorkspaceImageCommand
|
|
406
450
|
*/
|
|
407
451
|
export declare const de_DeleteWorkspaceImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceImageCommandOutput>;
|
|
452
|
+
/**
|
|
453
|
+
* deserializeAws_json1_1DeployWorkspaceApplicationsCommand
|
|
454
|
+
*/
|
|
455
|
+
export declare const de_DeployWorkspaceApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeployWorkspaceApplicationsCommandOutput>;
|
|
408
456
|
/**
|
|
409
457
|
* deserializeAws_json1_1DeregisterWorkspaceDirectoryCommand
|
|
410
458
|
*/
|
|
@@ -417,6 +465,18 @@ export declare const de_DescribeAccountCommand: (output: __HttpResponse, context
|
|
|
417
465
|
* deserializeAws_json1_1DescribeAccountModificationsCommand
|
|
418
466
|
*/
|
|
419
467
|
export declare const de_DescribeAccountModificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountModificationsCommandOutput>;
|
|
468
|
+
/**
|
|
469
|
+
* deserializeAws_json1_1DescribeApplicationAssociationsCommand
|
|
470
|
+
*/
|
|
471
|
+
export declare const de_DescribeApplicationAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationAssociationsCommandOutput>;
|
|
472
|
+
/**
|
|
473
|
+
* deserializeAws_json1_1DescribeApplicationsCommand
|
|
474
|
+
*/
|
|
475
|
+
export declare const de_DescribeApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeApplicationsCommandOutput>;
|
|
476
|
+
/**
|
|
477
|
+
* deserializeAws_json1_1DescribeBundleAssociationsCommand
|
|
478
|
+
*/
|
|
479
|
+
export declare const de_DescribeBundleAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBundleAssociationsCommandOutput>;
|
|
420
480
|
/**
|
|
421
481
|
* deserializeAws_json1_1DescribeClientBrandingCommand
|
|
422
482
|
*/
|
|
@@ -437,6 +497,10 @@ export declare const de_DescribeConnectionAliasesCommand: (output: __HttpRespons
|
|
|
437
497
|
* deserializeAws_json1_1DescribeConnectionAliasPermissionsCommand
|
|
438
498
|
*/
|
|
439
499
|
export declare const de_DescribeConnectionAliasPermissionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConnectionAliasPermissionsCommandOutput>;
|
|
500
|
+
/**
|
|
501
|
+
* deserializeAws_json1_1DescribeImageAssociationsCommand
|
|
502
|
+
*/
|
|
503
|
+
export declare const de_DescribeImageAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageAssociationsCommandOutput>;
|
|
440
504
|
/**
|
|
441
505
|
* deserializeAws_json1_1DescribeIpGroupsCommand
|
|
442
506
|
*/
|
|
@@ -445,6 +509,10 @@ export declare const de_DescribeIpGroupsCommand: (output: __HttpResponse, contex
|
|
|
445
509
|
* deserializeAws_json1_1DescribeTagsCommand
|
|
446
510
|
*/
|
|
447
511
|
export declare const de_DescribeTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTagsCommandOutput>;
|
|
512
|
+
/**
|
|
513
|
+
* deserializeAws_json1_1DescribeWorkspaceAssociationsCommand
|
|
514
|
+
*/
|
|
515
|
+
export declare const de_DescribeWorkspaceAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkspaceAssociationsCommandOutput>;
|
|
448
516
|
/**
|
|
449
517
|
* deserializeAws_json1_1DescribeWorkspaceBundlesCommand
|
|
450
518
|
*/
|
|
@@ -481,6 +549,10 @@ export declare const de_DisassociateConnectionAliasCommand: (output: __HttpRespo
|
|
|
481
549
|
* deserializeAws_json1_1DisassociateIpGroupsCommand
|
|
482
550
|
*/
|
|
483
551
|
export declare const de_DisassociateIpGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateIpGroupsCommandOutput>;
|
|
552
|
+
/**
|
|
553
|
+
* deserializeAws_json1_1DisassociateWorkspaceApplicationCommand
|
|
554
|
+
*/
|
|
555
|
+
export declare const de_DisassociateWorkspaceApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateWorkspaceApplicationCommandOutput>;
|
|
484
556
|
/**
|
|
485
557
|
* deserializeAws_json1_1ImportClientBrandingCommand
|
|
486
558
|
*/
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
AssociateIpGroupsCommandInput,
|
|
8
8
|
AssociateIpGroupsCommandOutput,
|
|
9
9
|
} from "./commands/AssociateIpGroupsCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateWorkspaceApplicationCommandInput,
|
|
12
|
+
AssociateWorkspaceApplicationCommandOutput,
|
|
13
|
+
} from "./commands/AssociateWorkspaceApplicationCommand";
|
|
10
14
|
import {
|
|
11
15
|
AuthorizeIpRulesCommandInput,
|
|
12
16
|
AuthorizeIpRulesCommandOutput,
|
|
@@ -79,6 +83,10 @@ import {
|
|
|
79
83
|
DeleteWorkspaceImageCommandInput,
|
|
80
84
|
DeleteWorkspaceImageCommandOutput,
|
|
81
85
|
} from "./commands/DeleteWorkspaceImageCommand";
|
|
86
|
+
import {
|
|
87
|
+
DeployWorkspaceApplicationsCommandInput,
|
|
88
|
+
DeployWorkspaceApplicationsCommandOutput,
|
|
89
|
+
} from "./commands/DeployWorkspaceApplicationsCommand";
|
|
82
90
|
import {
|
|
83
91
|
DeregisterWorkspaceDirectoryCommandInput,
|
|
84
92
|
DeregisterWorkspaceDirectoryCommandOutput,
|
|
@@ -91,6 +99,18 @@ import {
|
|
|
91
99
|
DescribeAccountModificationsCommandInput,
|
|
92
100
|
DescribeAccountModificationsCommandOutput,
|
|
93
101
|
} from "./commands/DescribeAccountModificationsCommand";
|
|
102
|
+
import {
|
|
103
|
+
DescribeApplicationAssociationsCommandInput,
|
|
104
|
+
DescribeApplicationAssociationsCommandOutput,
|
|
105
|
+
} from "./commands/DescribeApplicationAssociationsCommand";
|
|
106
|
+
import {
|
|
107
|
+
DescribeApplicationsCommandInput,
|
|
108
|
+
DescribeApplicationsCommandOutput,
|
|
109
|
+
} from "./commands/DescribeApplicationsCommand";
|
|
110
|
+
import {
|
|
111
|
+
DescribeBundleAssociationsCommandInput,
|
|
112
|
+
DescribeBundleAssociationsCommandOutput,
|
|
113
|
+
} from "./commands/DescribeBundleAssociationsCommand";
|
|
94
114
|
import {
|
|
95
115
|
DescribeClientBrandingCommandInput,
|
|
96
116
|
DescribeClientBrandingCommandOutput,
|
|
@@ -111,6 +131,10 @@ import {
|
|
|
111
131
|
DescribeConnectionAliasPermissionsCommandInput,
|
|
112
132
|
DescribeConnectionAliasPermissionsCommandOutput,
|
|
113
133
|
} from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
134
|
+
import {
|
|
135
|
+
DescribeImageAssociationsCommandInput,
|
|
136
|
+
DescribeImageAssociationsCommandOutput,
|
|
137
|
+
} from "./commands/DescribeImageAssociationsCommand";
|
|
114
138
|
import {
|
|
115
139
|
DescribeIpGroupsCommandInput,
|
|
116
140
|
DescribeIpGroupsCommandOutput,
|
|
@@ -119,6 +143,10 @@ import {
|
|
|
119
143
|
DescribeTagsCommandInput,
|
|
120
144
|
DescribeTagsCommandOutput,
|
|
121
145
|
} from "./commands/DescribeTagsCommand";
|
|
146
|
+
import {
|
|
147
|
+
DescribeWorkspaceAssociationsCommandInput,
|
|
148
|
+
DescribeWorkspaceAssociationsCommandOutput,
|
|
149
|
+
} from "./commands/DescribeWorkspaceAssociationsCommand";
|
|
122
150
|
import {
|
|
123
151
|
DescribeWorkspaceBundlesCommandInput,
|
|
124
152
|
DescribeWorkspaceBundlesCommandOutput,
|
|
@@ -155,6 +183,10 @@ import {
|
|
|
155
183
|
DisassociateIpGroupsCommandInput,
|
|
156
184
|
DisassociateIpGroupsCommandOutput,
|
|
157
185
|
} from "./commands/DisassociateIpGroupsCommand";
|
|
186
|
+
import {
|
|
187
|
+
DisassociateWorkspaceApplicationCommandInput,
|
|
188
|
+
DisassociateWorkspaceApplicationCommandOutput,
|
|
189
|
+
} from "./commands/DisassociateWorkspaceApplicationCommand";
|
|
158
190
|
import {
|
|
159
191
|
ImportClientBrandingCommandInput,
|
|
160
192
|
ImportClientBrandingCommandOutput,
|
|
@@ -287,6 +319,19 @@ export interface WorkSpaces {
|
|
|
287
319
|
options: __HttpHandlerOptions,
|
|
288
320
|
cb: (err: any, data?: AssociateIpGroupsCommandOutput) => void
|
|
289
321
|
): void;
|
|
322
|
+
associateWorkspaceApplication(
|
|
323
|
+
args: AssociateWorkspaceApplicationCommandInput,
|
|
324
|
+
options?: __HttpHandlerOptions
|
|
325
|
+
): Promise<AssociateWorkspaceApplicationCommandOutput>;
|
|
326
|
+
associateWorkspaceApplication(
|
|
327
|
+
args: AssociateWorkspaceApplicationCommandInput,
|
|
328
|
+
cb: (err: any, data?: AssociateWorkspaceApplicationCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
associateWorkspaceApplication(
|
|
331
|
+
args: AssociateWorkspaceApplicationCommandInput,
|
|
332
|
+
options: __HttpHandlerOptions,
|
|
333
|
+
cb: (err: any, data?: AssociateWorkspaceApplicationCommandOutput) => void
|
|
334
|
+
): void;
|
|
290
335
|
authorizeIpRules(
|
|
291
336
|
args: AuthorizeIpRulesCommandInput,
|
|
292
337
|
options?: __HttpHandlerOptions
|
|
@@ -521,6 +566,19 @@ export interface WorkSpaces {
|
|
|
521
566
|
options: __HttpHandlerOptions,
|
|
522
567
|
cb: (err: any, data?: DeleteWorkspaceImageCommandOutput) => void
|
|
523
568
|
): void;
|
|
569
|
+
deployWorkspaceApplications(
|
|
570
|
+
args: DeployWorkspaceApplicationsCommandInput,
|
|
571
|
+
options?: __HttpHandlerOptions
|
|
572
|
+
): Promise<DeployWorkspaceApplicationsCommandOutput>;
|
|
573
|
+
deployWorkspaceApplications(
|
|
574
|
+
args: DeployWorkspaceApplicationsCommandInput,
|
|
575
|
+
cb: (err: any, data?: DeployWorkspaceApplicationsCommandOutput) => void
|
|
576
|
+
): void;
|
|
577
|
+
deployWorkspaceApplications(
|
|
578
|
+
args: DeployWorkspaceApplicationsCommandInput,
|
|
579
|
+
options: __HttpHandlerOptions,
|
|
580
|
+
cb: (err: any, data?: DeployWorkspaceApplicationsCommandOutput) => void
|
|
581
|
+
): void;
|
|
524
582
|
deregisterWorkspaceDirectory(
|
|
525
583
|
args: DeregisterWorkspaceDirectoryCommandInput,
|
|
526
584
|
options?: __HttpHandlerOptions
|
|
@@ -560,6 +618,45 @@ export interface WorkSpaces {
|
|
|
560
618
|
options: __HttpHandlerOptions,
|
|
561
619
|
cb: (err: any, data?: DescribeAccountModificationsCommandOutput) => void
|
|
562
620
|
): void;
|
|
621
|
+
describeApplicationAssociations(
|
|
622
|
+
args: DescribeApplicationAssociationsCommandInput,
|
|
623
|
+
options?: __HttpHandlerOptions
|
|
624
|
+
): Promise<DescribeApplicationAssociationsCommandOutput>;
|
|
625
|
+
describeApplicationAssociations(
|
|
626
|
+
args: DescribeApplicationAssociationsCommandInput,
|
|
627
|
+
cb: (err: any, data?: DescribeApplicationAssociationsCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
describeApplicationAssociations(
|
|
630
|
+
args: DescribeApplicationAssociationsCommandInput,
|
|
631
|
+
options: __HttpHandlerOptions,
|
|
632
|
+
cb: (err: any, data?: DescribeApplicationAssociationsCommandOutput) => void
|
|
633
|
+
): void;
|
|
634
|
+
describeApplications(
|
|
635
|
+
args: DescribeApplicationsCommandInput,
|
|
636
|
+
options?: __HttpHandlerOptions
|
|
637
|
+
): Promise<DescribeApplicationsCommandOutput>;
|
|
638
|
+
describeApplications(
|
|
639
|
+
args: DescribeApplicationsCommandInput,
|
|
640
|
+
cb: (err: any, data?: DescribeApplicationsCommandOutput) => void
|
|
641
|
+
): void;
|
|
642
|
+
describeApplications(
|
|
643
|
+
args: DescribeApplicationsCommandInput,
|
|
644
|
+
options: __HttpHandlerOptions,
|
|
645
|
+
cb: (err: any, data?: DescribeApplicationsCommandOutput) => void
|
|
646
|
+
): void;
|
|
647
|
+
describeBundleAssociations(
|
|
648
|
+
args: DescribeBundleAssociationsCommandInput,
|
|
649
|
+
options?: __HttpHandlerOptions
|
|
650
|
+
): Promise<DescribeBundleAssociationsCommandOutput>;
|
|
651
|
+
describeBundleAssociations(
|
|
652
|
+
args: DescribeBundleAssociationsCommandInput,
|
|
653
|
+
cb: (err: any, data?: DescribeBundleAssociationsCommandOutput) => void
|
|
654
|
+
): void;
|
|
655
|
+
describeBundleAssociations(
|
|
656
|
+
args: DescribeBundleAssociationsCommandInput,
|
|
657
|
+
options: __HttpHandlerOptions,
|
|
658
|
+
cb: (err: any, data?: DescribeBundleAssociationsCommandOutput) => void
|
|
659
|
+
): void;
|
|
563
660
|
describeClientBranding(
|
|
564
661
|
args: DescribeClientBrandingCommandInput,
|
|
565
662
|
options?: __HttpHandlerOptions
|
|
@@ -631,6 +728,19 @@ export interface WorkSpaces {
|
|
|
631
728
|
data?: DescribeConnectionAliasPermissionsCommandOutput
|
|
632
729
|
) => void
|
|
633
730
|
): void;
|
|
731
|
+
describeImageAssociations(
|
|
732
|
+
args: DescribeImageAssociationsCommandInput,
|
|
733
|
+
options?: __HttpHandlerOptions
|
|
734
|
+
): Promise<DescribeImageAssociationsCommandOutput>;
|
|
735
|
+
describeImageAssociations(
|
|
736
|
+
args: DescribeImageAssociationsCommandInput,
|
|
737
|
+
cb: (err: any, data?: DescribeImageAssociationsCommandOutput) => void
|
|
738
|
+
): void;
|
|
739
|
+
describeImageAssociations(
|
|
740
|
+
args: DescribeImageAssociationsCommandInput,
|
|
741
|
+
options: __HttpHandlerOptions,
|
|
742
|
+
cb: (err: any, data?: DescribeImageAssociationsCommandOutput) => void
|
|
743
|
+
): void;
|
|
634
744
|
describeIpGroups(
|
|
635
745
|
args: DescribeIpGroupsCommandInput,
|
|
636
746
|
options?: __HttpHandlerOptions
|
|
@@ -657,6 +767,19 @@ export interface WorkSpaces {
|
|
|
657
767
|
options: __HttpHandlerOptions,
|
|
658
768
|
cb: (err: any, data?: DescribeTagsCommandOutput) => void
|
|
659
769
|
): void;
|
|
770
|
+
describeWorkspaceAssociations(
|
|
771
|
+
args: DescribeWorkspaceAssociationsCommandInput,
|
|
772
|
+
options?: __HttpHandlerOptions
|
|
773
|
+
): Promise<DescribeWorkspaceAssociationsCommandOutput>;
|
|
774
|
+
describeWorkspaceAssociations(
|
|
775
|
+
args: DescribeWorkspaceAssociationsCommandInput,
|
|
776
|
+
cb: (err: any, data?: DescribeWorkspaceAssociationsCommandOutput) => void
|
|
777
|
+
): void;
|
|
778
|
+
describeWorkspaceAssociations(
|
|
779
|
+
args: DescribeWorkspaceAssociationsCommandInput,
|
|
780
|
+
options: __HttpHandlerOptions,
|
|
781
|
+
cb: (err: any, data?: DescribeWorkspaceAssociationsCommandOutput) => void
|
|
782
|
+
): void;
|
|
660
783
|
describeWorkspaceBundles(
|
|
661
784
|
args: DescribeWorkspaceBundlesCommandInput,
|
|
662
785
|
options?: __HttpHandlerOptions
|
|
@@ -786,6 +909,19 @@ export interface WorkSpaces {
|
|
|
786
909
|
options: __HttpHandlerOptions,
|
|
787
910
|
cb: (err: any, data?: DisassociateIpGroupsCommandOutput) => void
|
|
788
911
|
): void;
|
|
912
|
+
disassociateWorkspaceApplication(
|
|
913
|
+
args: DisassociateWorkspaceApplicationCommandInput,
|
|
914
|
+
options?: __HttpHandlerOptions
|
|
915
|
+
): Promise<DisassociateWorkspaceApplicationCommandOutput>;
|
|
916
|
+
disassociateWorkspaceApplication(
|
|
917
|
+
args: DisassociateWorkspaceApplicationCommandInput,
|
|
918
|
+
cb: (err: any, data?: DisassociateWorkspaceApplicationCommandOutput) => void
|
|
919
|
+
): void;
|
|
920
|
+
disassociateWorkspaceApplication(
|
|
921
|
+
args: DisassociateWorkspaceApplicationCommandInput,
|
|
922
|
+
options: __HttpHandlerOptions,
|
|
923
|
+
cb: (err: any, data?: DisassociateWorkspaceApplicationCommandOutput) => void
|
|
924
|
+
): void;
|
|
789
925
|
importClientBranding(
|
|
790
926
|
args: ImportClientBrandingCommandInput,
|
|
791
927
|
options?: __HttpHandlerOptions
|
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
AssociateIpGroupsCommandInput,
|
|
54
54
|
AssociateIpGroupsCommandOutput,
|
|
55
55
|
} from "./commands/AssociateIpGroupsCommand";
|
|
56
|
+
import {
|
|
57
|
+
AssociateWorkspaceApplicationCommandInput,
|
|
58
|
+
AssociateWorkspaceApplicationCommandOutput,
|
|
59
|
+
} from "./commands/AssociateWorkspaceApplicationCommand";
|
|
56
60
|
import {
|
|
57
61
|
AuthorizeIpRulesCommandInput,
|
|
58
62
|
AuthorizeIpRulesCommandOutput,
|
|
@@ -125,6 +129,10 @@ import {
|
|
|
125
129
|
DeleteWorkspaceImageCommandInput,
|
|
126
130
|
DeleteWorkspaceImageCommandOutput,
|
|
127
131
|
} from "./commands/DeleteWorkspaceImageCommand";
|
|
132
|
+
import {
|
|
133
|
+
DeployWorkspaceApplicationsCommandInput,
|
|
134
|
+
DeployWorkspaceApplicationsCommandOutput,
|
|
135
|
+
} from "./commands/DeployWorkspaceApplicationsCommand";
|
|
128
136
|
import {
|
|
129
137
|
DeregisterWorkspaceDirectoryCommandInput,
|
|
130
138
|
DeregisterWorkspaceDirectoryCommandOutput,
|
|
@@ -137,6 +145,18 @@ import {
|
|
|
137
145
|
DescribeAccountModificationsCommandInput,
|
|
138
146
|
DescribeAccountModificationsCommandOutput,
|
|
139
147
|
} from "./commands/DescribeAccountModificationsCommand";
|
|
148
|
+
import {
|
|
149
|
+
DescribeApplicationAssociationsCommandInput,
|
|
150
|
+
DescribeApplicationAssociationsCommandOutput,
|
|
151
|
+
} from "./commands/DescribeApplicationAssociationsCommand";
|
|
152
|
+
import {
|
|
153
|
+
DescribeApplicationsCommandInput,
|
|
154
|
+
DescribeApplicationsCommandOutput,
|
|
155
|
+
} from "./commands/DescribeApplicationsCommand";
|
|
156
|
+
import {
|
|
157
|
+
DescribeBundleAssociationsCommandInput,
|
|
158
|
+
DescribeBundleAssociationsCommandOutput,
|
|
159
|
+
} from "./commands/DescribeBundleAssociationsCommand";
|
|
140
160
|
import {
|
|
141
161
|
DescribeClientBrandingCommandInput,
|
|
142
162
|
DescribeClientBrandingCommandOutput,
|
|
@@ -157,6 +177,10 @@ import {
|
|
|
157
177
|
DescribeConnectionAliasPermissionsCommandInput,
|
|
158
178
|
DescribeConnectionAliasPermissionsCommandOutput,
|
|
159
179
|
} from "./commands/DescribeConnectionAliasPermissionsCommand";
|
|
180
|
+
import {
|
|
181
|
+
DescribeImageAssociationsCommandInput,
|
|
182
|
+
DescribeImageAssociationsCommandOutput,
|
|
183
|
+
} from "./commands/DescribeImageAssociationsCommand";
|
|
160
184
|
import {
|
|
161
185
|
DescribeIpGroupsCommandInput,
|
|
162
186
|
DescribeIpGroupsCommandOutput,
|
|
@@ -165,6 +189,10 @@ import {
|
|
|
165
189
|
DescribeTagsCommandInput,
|
|
166
190
|
DescribeTagsCommandOutput,
|
|
167
191
|
} from "./commands/DescribeTagsCommand";
|
|
192
|
+
import {
|
|
193
|
+
DescribeWorkspaceAssociationsCommandInput,
|
|
194
|
+
DescribeWorkspaceAssociationsCommandOutput,
|
|
195
|
+
} from "./commands/DescribeWorkspaceAssociationsCommand";
|
|
168
196
|
import {
|
|
169
197
|
DescribeWorkspaceBundlesCommandInput,
|
|
170
198
|
DescribeWorkspaceBundlesCommandOutput,
|
|
@@ -201,6 +229,10 @@ import {
|
|
|
201
229
|
DisassociateIpGroupsCommandInput,
|
|
202
230
|
DisassociateIpGroupsCommandOutput,
|
|
203
231
|
} from "./commands/DisassociateIpGroupsCommand";
|
|
232
|
+
import {
|
|
233
|
+
DisassociateWorkspaceApplicationCommandInput,
|
|
234
|
+
DisassociateWorkspaceApplicationCommandOutput,
|
|
235
|
+
} from "./commands/DisassociateWorkspaceApplicationCommand";
|
|
204
236
|
import {
|
|
205
237
|
ImportClientBrandingCommandInput,
|
|
206
238
|
ImportClientBrandingCommandOutput,
|
|
@@ -315,6 +347,7 @@ export { __Client };
|
|
|
315
347
|
export type ServiceInputTypes =
|
|
316
348
|
| AssociateConnectionAliasCommandInput
|
|
317
349
|
| AssociateIpGroupsCommandInput
|
|
350
|
+
| AssociateWorkspaceApplicationCommandInput
|
|
318
351
|
| AuthorizeIpRulesCommandInput
|
|
319
352
|
| CopyWorkspaceImageCommandInput
|
|
320
353
|
| CreateConnectClientAddInCommandInput
|
|
@@ -333,16 +366,22 @@ export type ServiceInputTypes =
|
|
|
333
366
|
| DeleteTagsCommandInput
|
|
334
367
|
| DeleteWorkspaceBundleCommandInput
|
|
335
368
|
| DeleteWorkspaceImageCommandInput
|
|
369
|
+
| DeployWorkspaceApplicationsCommandInput
|
|
336
370
|
| DeregisterWorkspaceDirectoryCommandInput
|
|
337
371
|
| DescribeAccountCommandInput
|
|
338
372
|
| DescribeAccountModificationsCommandInput
|
|
373
|
+
| DescribeApplicationAssociationsCommandInput
|
|
374
|
+
| DescribeApplicationsCommandInput
|
|
375
|
+
| DescribeBundleAssociationsCommandInput
|
|
339
376
|
| DescribeClientBrandingCommandInput
|
|
340
377
|
| DescribeClientPropertiesCommandInput
|
|
341
378
|
| DescribeConnectClientAddInsCommandInput
|
|
342
379
|
| DescribeConnectionAliasPermissionsCommandInput
|
|
343
380
|
| DescribeConnectionAliasesCommandInput
|
|
381
|
+
| DescribeImageAssociationsCommandInput
|
|
344
382
|
| DescribeIpGroupsCommandInput
|
|
345
383
|
| DescribeTagsCommandInput
|
|
384
|
+
| DescribeWorkspaceAssociationsCommandInput
|
|
346
385
|
| DescribeWorkspaceBundlesCommandInput
|
|
347
386
|
| DescribeWorkspaceDirectoriesCommandInput
|
|
348
387
|
| DescribeWorkspaceImagePermissionsCommandInput
|
|
@@ -352,6 +391,7 @@ export type ServiceInputTypes =
|
|
|
352
391
|
| DescribeWorkspacesConnectionStatusCommandInput
|
|
353
392
|
| DisassociateConnectionAliasCommandInput
|
|
354
393
|
| DisassociateIpGroupsCommandInput
|
|
394
|
+
| DisassociateWorkspaceApplicationCommandInput
|
|
355
395
|
| ImportClientBrandingCommandInput
|
|
356
396
|
| ImportWorkspaceImageCommandInput
|
|
357
397
|
| ListAvailableManagementCidrRangesCommandInput
|
|
@@ -381,6 +421,7 @@ export type ServiceInputTypes =
|
|
|
381
421
|
export type ServiceOutputTypes =
|
|
382
422
|
| AssociateConnectionAliasCommandOutput
|
|
383
423
|
| AssociateIpGroupsCommandOutput
|
|
424
|
+
| AssociateWorkspaceApplicationCommandOutput
|
|
384
425
|
| AuthorizeIpRulesCommandOutput
|
|
385
426
|
| CopyWorkspaceImageCommandOutput
|
|
386
427
|
| CreateConnectClientAddInCommandOutput
|
|
@@ -399,16 +440,22 @@ export type ServiceOutputTypes =
|
|
|
399
440
|
| DeleteTagsCommandOutput
|
|
400
441
|
| DeleteWorkspaceBundleCommandOutput
|
|
401
442
|
| DeleteWorkspaceImageCommandOutput
|
|
443
|
+
| DeployWorkspaceApplicationsCommandOutput
|
|
402
444
|
| DeregisterWorkspaceDirectoryCommandOutput
|
|
403
445
|
| DescribeAccountCommandOutput
|
|
404
446
|
| DescribeAccountModificationsCommandOutput
|
|
447
|
+
| DescribeApplicationAssociationsCommandOutput
|
|
448
|
+
| DescribeApplicationsCommandOutput
|
|
449
|
+
| DescribeBundleAssociationsCommandOutput
|
|
405
450
|
| DescribeClientBrandingCommandOutput
|
|
406
451
|
| DescribeClientPropertiesCommandOutput
|
|
407
452
|
| DescribeConnectClientAddInsCommandOutput
|
|
408
453
|
| DescribeConnectionAliasPermissionsCommandOutput
|
|
409
454
|
| DescribeConnectionAliasesCommandOutput
|
|
455
|
+
| DescribeImageAssociationsCommandOutput
|
|
410
456
|
| DescribeIpGroupsCommandOutput
|
|
411
457
|
| DescribeTagsCommandOutput
|
|
458
|
+
| DescribeWorkspaceAssociationsCommandOutput
|
|
412
459
|
| DescribeWorkspaceBundlesCommandOutput
|
|
413
460
|
| DescribeWorkspaceDirectoriesCommandOutput
|
|
414
461
|
| DescribeWorkspaceImagePermissionsCommandOutput
|
|
@@ -418,6 +465,7 @@ export type ServiceOutputTypes =
|
|
|
418
465
|
| DescribeWorkspacesConnectionStatusCommandOutput
|
|
419
466
|
| DisassociateConnectionAliasCommandOutput
|
|
420
467
|
| DisassociateIpGroupsCommandOutput
|
|
468
|
+
| DisassociateWorkspaceApplicationCommandOutput
|
|
421
469
|
| ImportClientBrandingCommandOutput
|
|
422
470
|
| ImportWorkspaceImageCommandOutput
|
|
423
471
|
| ListAvailableManagementCidrRangesCommandOutput
|
|
@@ -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
|
+
AssociateWorkspaceApplicationRequest,
|
|
11
|
+
AssociateWorkspaceApplicationResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface AssociateWorkspaceApplicationCommandInput
|
|
20
|
+
extends AssociateWorkspaceApplicationRequest {}
|
|
21
|
+
export interface AssociateWorkspaceApplicationCommandOutput
|
|
22
|
+
extends AssociateWorkspaceApplicationResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class AssociateWorkspaceApplicationCommand extends $Command<
|
|
25
|
+
AssociateWorkspaceApplicationCommandInput,
|
|
26
|
+
AssociateWorkspaceApplicationCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: AssociateWorkspaceApplicationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: AssociateWorkspaceApplicationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
AssociateWorkspaceApplicationCommandInput,
|
|
38
|
+
AssociateWorkspaceApplicationCommandOutput
|
|
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
|
+
DeployWorkspaceApplicationsRequest,
|
|
11
|
+
DeployWorkspaceApplicationsResult,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WorkSpacesClientResolvedConfig,
|
|
17
|
+
} from "../WorkSpacesClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeployWorkspaceApplicationsCommandInput
|
|
20
|
+
extends DeployWorkspaceApplicationsRequest {}
|
|
21
|
+
export interface DeployWorkspaceApplicationsCommandOutput
|
|
22
|
+
extends DeployWorkspaceApplicationsResult,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeployWorkspaceApplicationsCommand extends $Command<
|
|
25
|
+
DeployWorkspaceApplicationsCommandInput,
|
|
26
|
+
DeployWorkspaceApplicationsCommandOutput,
|
|
27
|
+
WorkSpacesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeployWorkspaceApplicationsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeployWorkspaceApplicationsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: WorkSpacesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeployWorkspaceApplicationsCommandInput,
|
|
38
|
+
DeployWorkspaceApplicationsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|