@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.
Files changed (67) hide show
  1. package/README.md +64 -0
  2. package/dist-cjs/WorkSpaces.js +16 -0
  3. package/dist-cjs/commands/AssociateWorkspaceApplicationCommand.js +51 -0
  4. package/dist-cjs/commands/DeployWorkspaceApplicationsCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeApplicationAssociationsCommand.js +51 -0
  6. package/dist-cjs/commands/DescribeApplicationsCommand.js +51 -0
  7. package/dist-cjs/commands/DescribeBundleAssociationsCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeImageAssociationsCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeWorkspaceAssociationsCommand.js +51 -0
  10. package/dist-cjs/commands/DisassociateWorkspaceApplicationCommand.js +51 -0
  11. package/dist-cjs/commands/index.js +8 -0
  12. package/dist-cjs/models/models_0.js +136 -14
  13. package/dist-cjs/pagination/DescribeApplicationAssociationsPaginator.js +29 -0
  14. package/dist-cjs/pagination/DescribeApplicationsPaginator.js +29 -0
  15. package/dist-cjs/pagination/index.js +2 -0
  16. package/dist-cjs/protocols/Aws_json1_1.js +611 -3
  17. package/dist-es/WorkSpaces.js +16 -0
  18. package/dist-es/commands/AssociateWorkspaceApplicationCommand.js +47 -0
  19. package/dist-es/commands/DeployWorkspaceApplicationsCommand.js +47 -0
  20. package/dist-es/commands/DescribeApplicationAssociationsCommand.js +47 -0
  21. package/dist-es/commands/DescribeApplicationsCommand.js +47 -0
  22. package/dist-es/commands/DescribeBundleAssociationsCommand.js +47 -0
  23. package/dist-es/commands/DescribeImageAssociationsCommand.js +47 -0
  24. package/dist-es/commands/DescribeWorkspaceAssociationsCommand.js +47 -0
  25. package/dist-es/commands/DisassociateWorkspaceApplicationCommand.js +47 -0
  26. package/dist-es/commands/index.js +8 -0
  27. package/dist-es/models/models_0.js +128 -12
  28. package/dist-es/pagination/DescribeApplicationAssociationsPaginator.js +25 -0
  29. package/dist-es/pagination/DescribeApplicationsPaginator.js +25 -0
  30. package/dist-es/pagination/index.js +2 -0
  31. package/dist-es/protocols/Aws_json1_1.js +593 -1
  32. package/dist-types/WorkSpaces.d.ts +56 -0
  33. package/dist-types/WorkSpacesClient.d.ts +10 -2
  34. package/dist-types/commands/AssociateWorkspaceApplicationCommand.d.ts +115 -0
  35. package/dist-types/commands/CreateWorkspacesCommand.d.ts +3 -0
  36. package/dist-types/commands/DeployWorkspaceApplicationsCommand.d.ts +107 -0
  37. package/dist-types/commands/DescribeApplicationAssociationsCommand.d.ts +104 -0
  38. package/dist-types/commands/DescribeApplicationsCommand.d.ts +114 -0
  39. package/dist-types/commands/DescribeBundleAssociationsCommand.d.ts +101 -0
  40. package/dist-types/commands/DescribeImageAssociationsCommand.d.ts +101 -0
  41. package/dist-types/commands/DescribeWorkspaceAssociationsCommand.d.ts +101 -0
  42. package/dist-types/commands/DescribeWorkspacesCommand.d.ts +1 -0
  43. package/dist-types/commands/DisassociateWorkspaceApplicationCommand.d.ts +100 -0
  44. package/dist-types/commands/ModifyWorkspacePropertiesCommand.d.ts +1 -0
  45. package/dist-types/commands/index.d.ts +8 -0
  46. package/dist-types/models/models_0.d.ts +701 -15
  47. package/dist-types/pagination/DescribeApplicationAssociationsPaginator.d.ts +7 -0
  48. package/dist-types/pagination/DescribeApplicationsPaginator.d.ts +7 -0
  49. package/dist-types/pagination/index.d.ts +2 -0
  50. package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
  51. package/dist-types/ts3.4/WorkSpaces.d.ts +136 -0
  52. package/dist-types/ts3.4/WorkSpacesClient.d.ts +48 -0
  53. package/dist-types/ts3.4/commands/AssociateWorkspaceApplicationCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/DeployWorkspaceApplicationsCommand.d.ts +42 -0
  55. package/dist-types/ts3.4/commands/DescribeApplicationAssociationsCommand.d.ts +42 -0
  56. package/dist-types/ts3.4/commands/DescribeApplicationsCommand.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/DescribeBundleAssociationsCommand.d.ts +42 -0
  58. package/dist-types/ts3.4/commands/DescribeImageAssociationsCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/DescribeWorkspaceAssociationsCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/DisassociateWorkspaceApplicationCommand.d.ts +42 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +251 -7
  63. package/dist-types/ts3.4/pagination/DescribeApplicationAssociationsPaginator.d.ts +11 -0
  64. package/dist-types/ts3.4/pagination/DescribeApplicationsPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  66. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
  67. package/package.json +1 -1
@@ -11,6 +11,10 @@ import {
11
11
  AssociateIpGroupsCommandInput,
12
12
  AssociateIpGroupsCommandOutput,
13
13
  } from "../commands/AssociateIpGroupsCommand";
14
+ import {
15
+ AssociateWorkspaceApplicationCommandInput,
16
+ AssociateWorkspaceApplicationCommandOutput,
17
+ } from "../commands/AssociateWorkspaceApplicationCommand";
14
18
  import {
15
19
  AuthorizeIpRulesCommandInput,
16
20
  AuthorizeIpRulesCommandOutput,
@@ -83,6 +87,10 @@ import {
83
87
  DeleteWorkspaceImageCommandInput,
84
88
  DeleteWorkspaceImageCommandOutput,
85
89
  } from "../commands/DeleteWorkspaceImageCommand";
90
+ import {
91
+ DeployWorkspaceApplicationsCommandInput,
92
+ DeployWorkspaceApplicationsCommandOutput,
93
+ } from "../commands/DeployWorkspaceApplicationsCommand";
86
94
  import {
87
95
  DeregisterWorkspaceDirectoryCommandInput,
88
96
  DeregisterWorkspaceDirectoryCommandOutput,
@@ -95,6 +103,18 @@ import {
95
103
  DescribeAccountModificationsCommandInput,
96
104
  DescribeAccountModificationsCommandOutput,
97
105
  } from "../commands/DescribeAccountModificationsCommand";
106
+ import {
107
+ DescribeApplicationAssociationsCommandInput,
108
+ DescribeApplicationAssociationsCommandOutput,
109
+ } from "../commands/DescribeApplicationAssociationsCommand";
110
+ import {
111
+ DescribeApplicationsCommandInput,
112
+ DescribeApplicationsCommandOutput,
113
+ } from "../commands/DescribeApplicationsCommand";
114
+ import {
115
+ DescribeBundleAssociationsCommandInput,
116
+ DescribeBundleAssociationsCommandOutput,
117
+ } from "../commands/DescribeBundleAssociationsCommand";
98
118
  import {
99
119
  DescribeClientBrandingCommandInput,
100
120
  DescribeClientBrandingCommandOutput,
@@ -115,6 +135,10 @@ import {
115
135
  DescribeConnectionAliasPermissionsCommandInput,
116
136
  DescribeConnectionAliasPermissionsCommandOutput,
117
137
  } from "../commands/DescribeConnectionAliasPermissionsCommand";
138
+ import {
139
+ DescribeImageAssociationsCommandInput,
140
+ DescribeImageAssociationsCommandOutput,
141
+ } from "../commands/DescribeImageAssociationsCommand";
118
142
  import {
119
143
  DescribeIpGroupsCommandInput,
120
144
  DescribeIpGroupsCommandOutput,
@@ -123,6 +147,10 @@ import {
123
147
  DescribeTagsCommandInput,
124
148
  DescribeTagsCommandOutput,
125
149
  } from "../commands/DescribeTagsCommand";
150
+ import {
151
+ DescribeWorkspaceAssociationsCommandInput,
152
+ DescribeWorkspaceAssociationsCommandOutput,
153
+ } from "../commands/DescribeWorkspaceAssociationsCommand";
126
154
  import {
127
155
  DescribeWorkspaceBundlesCommandInput,
128
156
  DescribeWorkspaceBundlesCommandOutput,
@@ -159,6 +187,10 @@ import {
159
187
  DisassociateIpGroupsCommandInput,
160
188
  DisassociateIpGroupsCommandOutput,
161
189
  } from "../commands/DisassociateIpGroupsCommand";
190
+ import {
191
+ DisassociateWorkspaceApplicationCommandInput,
192
+ DisassociateWorkspaceApplicationCommandOutput,
193
+ } from "../commands/DisassociateWorkspaceApplicationCommand";
162
194
  import {
163
195
  ImportClientBrandingCommandInput,
164
196
  ImportClientBrandingCommandOutput,
@@ -271,6 +303,10 @@ export declare const se_AssociateIpGroupsCommand: (
271
303
  input: AssociateIpGroupsCommandInput,
272
304
  context: __SerdeContext
273
305
  ) => Promise<__HttpRequest>;
306
+ export declare const se_AssociateWorkspaceApplicationCommand: (
307
+ input: AssociateWorkspaceApplicationCommandInput,
308
+ context: __SerdeContext
309
+ ) => Promise<__HttpRequest>;
274
310
  export declare const se_AuthorizeIpRulesCommand: (
275
311
  input: AuthorizeIpRulesCommandInput,
276
312
  context: __SerdeContext
@@ -343,6 +379,10 @@ export declare const se_DeleteWorkspaceImageCommand: (
343
379
  input: DeleteWorkspaceImageCommandInput,
344
380
  context: __SerdeContext
345
381
  ) => Promise<__HttpRequest>;
382
+ export declare const se_DeployWorkspaceApplicationsCommand: (
383
+ input: DeployWorkspaceApplicationsCommandInput,
384
+ context: __SerdeContext
385
+ ) => Promise<__HttpRequest>;
346
386
  export declare const se_DeregisterWorkspaceDirectoryCommand: (
347
387
  input: DeregisterWorkspaceDirectoryCommandInput,
348
388
  context: __SerdeContext
@@ -355,6 +395,18 @@ export declare const se_DescribeAccountModificationsCommand: (
355
395
  input: DescribeAccountModificationsCommandInput,
356
396
  context: __SerdeContext
357
397
  ) => Promise<__HttpRequest>;
398
+ export declare const se_DescribeApplicationAssociationsCommand: (
399
+ input: DescribeApplicationAssociationsCommandInput,
400
+ context: __SerdeContext
401
+ ) => Promise<__HttpRequest>;
402
+ export declare const se_DescribeApplicationsCommand: (
403
+ input: DescribeApplicationsCommandInput,
404
+ context: __SerdeContext
405
+ ) => Promise<__HttpRequest>;
406
+ export declare const se_DescribeBundleAssociationsCommand: (
407
+ input: DescribeBundleAssociationsCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
358
410
  export declare const se_DescribeClientBrandingCommand: (
359
411
  input: DescribeClientBrandingCommandInput,
360
412
  context: __SerdeContext
@@ -375,6 +427,10 @@ export declare const se_DescribeConnectionAliasPermissionsCommand: (
375
427
  input: DescribeConnectionAliasPermissionsCommandInput,
376
428
  context: __SerdeContext
377
429
  ) => Promise<__HttpRequest>;
430
+ export declare const se_DescribeImageAssociationsCommand: (
431
+ input: DescribeImageAssociationsCommandInput,
432
+ context: __SerdeContext
433
+ ) => Promise<__HttpRequest>;
378
434
  export declare const se_DescribeIpGroupsCommand: (
379
435
  input: DescribeIpGroupsCommandInput,
380
436
  context: __SerdeContext
@@ -383,6 +439,10 @@ export declare const se_DescribeTagsCommand: (
383
439
  input: DescribeTagsCommandInput,
384
440
  context: __SerdeContext
385
441
  ) => Promise<__HttpRequest>;
442
+ export declare const se_DescribeWorkspaceAssociationsCommand: (
443
+ input: DescribeWorkspaceAssociationsCommandInput,
444
+ context: __SerdeContext
445
+ ) => Promise<__HttpRequest>;
386
446
  export declare const se_DescribeWorkspaceBundlesCommand: (
387
447
  input: DescribeWorkspaceBundlesCommandInput,
388
448
  context: __SerdeContext
@@ -419,6 +479,10 @@ export declare const se_DisassociateIpGroupsCommand: (
419
479
  input: DisassociateIpGroupsCommandInput,
420
480
  context: __SerdeContext
421
481
  ) => Promise<__HttpRequest>;
482
+ export declare const se_DisassociateWorkspaceApplicationCommand: (
483
+ input: DisassociateWorkspaceApplicationCommandInput,
484
+ context: __SerdeContext
485
+ ) => Promise<__HttpRequest>;
422
486
  export declare const se_ImportClientBrandingCommand: (
423
487
  input: ImportClientBrandingCommandInput,
424
488
  context: __SerdeContext
@@ -531,6 +595,10 @@ export declare const de_AssociateIpGroupsCommand: (
531
595
  output: __HttpResponse,
532
596
  context: __SerdeContext
533
597
  ) => Promise<AssociateIpGroupsCommandOutput>;
598
+ export declare const de_AssociateWorkspaceApplicationCommand: (
599
+ output: __HttpResponse,
600
+ context: __SerdeContext
601
+ ) => Promise<AssociateWorkspaceApplicationCommandOutput>;
534
602
  export declare const de_AuthorizeIpRulesCommand: (
535
603
  output: __HttpResponse,
536
604
  context: __SerdeContext
@@ -603,6 +671,10 @@ export declare const de_DeleteWorkspaceImageCommand: (
603
671
  output: __HttpResponse,
604
672
  context: __SerdeContext
605
673
  ) => Promise<DeleteWorkspaceImageCommandOutput>;
674
+ export declare const de_DeployWorkspaceApplicationsCommand: (
675
+ output: __HttpResponse,
676
+ context: __SerdeContext
677
+ ) => Promise<DeployWorkspaceApplicationsCommandOutput>;
606
678
  export declare const de_DeregisterWorkspaceDirectoryCommand: (
607
679
  output: __HttpResponse,
608
680
  context: __SerdeContext
@@ -615,6 +687,18 @@ export declare const de_DescribeAccountModificationsCommand: (
615
687
  output: __HttpResponse,
616
688
  context: __SerdeContext
617
689
  ) => Promise<DescribeAccountModificationsCommandOutput>;
690
+ export declare const de_DescribeApplicationAssociationsCommand: (
691
+ output: __HttpResponse,
692
+ context: __SerdeContext
693
+ ) => Promise<DescribeApplicationAssociationsCommandOutput>;
694
+ export declare const de_DescribeApplicationsCommand: (
695
+ output: __HttpResponse,
696
+ context: __SerdeContext
697
+ ) => Promise<DescribeApplicationsCommandOutput>;
698
+ export declare const de_DescribeBundleAssociationsCommand: (
699
+ output: __HttpResponse,
700
+ context: __SerdeContext
701
+ ) => Promise<DescribeBundleAssociationsCommandOutput>;
618
702
  export declare const de_DescribeClientBrandingCommand: (
619
703
  output: __HttpResponse,
620
704
  context: __SerdeContext
@@ -635,6 +719,10 @@ export declare const de_DescribeConnectionAliasPermissionsCommand: (
635
719
  output: __HttpResponse,
636
720
  context: __SerdeContext
637
721
  ) => Promise<DescribeConnectionAliasPermissionsCommandOutput>;
722
+ export declare const de_DescribeImageAssociationsCommand: (
723
+ output: __HttpResponse,
724
+ context: __SerdeContext
725
+ ) => Promise<DescribeImageAssociationsCommandOutput>;
638
726
  export declare const de_DescribeIpGroupsCommand: (
639
727
  output: __HttpResponse,
640
728
  context: __SerdeContext
@@ -643,6 +731,10 @@ export declare const de_DescribeTagsCommand: (
643
731
  output: __HttpResponse,
644
732
  context: __SerdeContext
645
733
  ) => Promise<DescribeTagsCommandOutput>;
734
+ export declare const de_DescribeWorkspaceAssociationsCommand: (
735
+ output: __HttpResponse,
736
+ context: __SerdeContext
737
+ ) => Promise<DescribeWorkspaceAssociationsCommandOutput>;
646
738
  export declare const de_DescribeWorkspaceBundlesCommand: (
647
739
  output: __HttpResponse,
648
740
  context: __SerdeContext
@@ -679,6 +771,10 @@ export declare const de_DisassociateIpGroupsCommand: (
679
771
  output: __HttpResponse,
680
772
  context: __SerdeContext
681
773
  ) => Promise<DisassociateIpGroupsCommandOutput>;
774
+ export declare const de_DisassociateWorkspaceApplicationCommand: (
775
+ output: __HttpResponse,
776
+ context: __SerdeContext
777
+ ) => Promise<DisassociateWorkspaceApplicationCommandOutput>;
682
778
  export declare const de_ImportClientBrandingCommand: (
683
779
  output: __HttpResponse,
684
780
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-workspaces",
3
3
  "description": "AWS SDK for JavaScript Workspaces Client for Node.js, Browser and React Native",
4
- "version": "3.425.0",
4
+ "version": "3.426.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",