@aws-sdk/client-workspaces 3.964.0 → 3.966.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/dist-cjs/index.js CHANGED
@@ -863,7 +863,8 @@ const _PCSWRL = "PendingCreateStandbyWorkspacesRequestList";
863
863
  const _PI = "PoolId";
864
864
  const _PIo = "PoolIds";
865
865
  const _PN = "PoolName";
866
- const _PP = "PreferredProtocol";
866
+ const _PP = "ProgressPercentage";
867
+ const _PPr = "PreferredProtocol";
867
868
  const _PR = "PrimaryRegion";
868
869
  const _PRe = "PendingRequests";
869
870
  const _PSR = "PendingStandbyRequests";
@@ -940,6 +941,7 @@ const _SIe = "SessionId";
940
941
  const _SIu = "SubnetId";
941
942
  const _SL = "SupportLink";
942
943
  const _SLn = "SnapshotList";
944
+ const _SM = "StateMessage";
943
945
  const _SOSN = "SupportedOperatingSystemNames";
944
946
  const _SP = "SamlProperties";
945
947
  const _SPe = "SelfservicePermissions";
@@ -1614,8 +1616,8 @@ var DescribeCustomWorkspaceImageImportRequest$ = [3, n0, _DCWIIR,
1614
1616
  ];
1615
1617
  var DescribeCustomWorkspaceImageImportResult$ = [3, n0, _DCWIIRe,
1616
1618
  0,
1617
- [_II, _ICA, _S, _C, _LUT, _IS, _IBII, _ED],
1618
- [0, 0, 0, 4, 4, () => ImageSourceIdentifier$, 0, () => CustomWorkspaceImageImportErrorDetailsList]
1619
+ [_II, _ICA, _S, _SM, _PP, _C, _LUT, _IS, _IBII, _ED],
1620
+ [0, 0, 0, 0, 1, 4, 4, () => ImageSourceIdentifier$, 0, () => CustomWorkspaceImageImportErrorDetailsList]
1619
1621
  ];
1620
1622
  var DescribeImageAssociationsRequest$ = [3, n0, _DIAR,
1621
1623
  0,
@@ -1819,12 +1821,12 @@ var GetAccountLinkResult$ = [3, n0, _GALRe,
1819
1821
  ];
1820
1822
  var GlobalAcceleratorForDirectory$ = [3, n0, _GAFD,
1821
1823
  0,
1822
- [_Mo, _PP],
1824
+ [_Mo, _PPr],
1823
1825
  [0, 0]
1824
1826
  ];
1825
1827
  var GlobalAcceleratorForWorkSpace$ = [3, n0, _GAFWS,
1826
1828
  0,
1827
- [_Mo, _PP],
1829
+ [_Mo, _PPr],
1828
1830
  [0, 0]
1829
1831
  ];
1830
1832
  var IDCConfig$ = [3, n0, _IDCC,
@@ -4228,6 +4230,7 @@ const AssociationState = {
4228
4230
  UNINSTALLING: "UNINSTALLING",
4229
4231
  };
4230
4232
  const AssociationErrorCode = {
4233
+ APPLICATION_OLDVERSIONEXIST_FAILURE: "ValidationError.ApplicationOldVersionExists",
4231
4234
  INSUFFICIENT_DISKSPACE: "ValidationError.InsufficientDiskSpace",
4232
4235
  INSUFFICIENT_MEMORY: "ValidationError.InsufficientMemory",
4233
4236
  INTERNAL_SERVER_ERROR: "DeploymentError.InternalServerError",
@@ -4441,9 +4444,19 @@ const CustomImageProtocol = {
4441
4444
  };
4442
4445
  const CustomWorkspaceImageImportState = {
4443
4446
  COMPLETED: "COMPLETED",
4447
+ CREATING_TEST_INSTANCE: "CREATING_TEST_INSTANCE",
4444
4448
  ERROR: "ERROR",
4449
+ GENERALIZING: "GENERALIZING",
4450
+ IMAGE_COMPATIBILITY_CHECKING: "IMAGE_COMPATIBILITY_CHECKING",
4451
+ IMAGE_TESTING_GENERALIZATION: "IMAGE_TESTING_GENERALIZATION",
4452
+ IMAGE_TESTING_START: "IMAGE_TESTING_START",
4453
+ INSTALLING_COMPONENTS: "INSTALLING_COMPONENTS",
4445
4454
  IN_PROGRESS: "IN_PROGRESS",
4446
4455
  PENDING: "PENDING",
4456
+ PROCESSING_SOURCE_IMAGE: "PROCESSING_SOURCE_IMAGE",
4457
+ PUBLISHING: "PUBLISHING",
4458
+ UPDATING_OPERATING_SYSTEM: "UPDATING_OPERATING_SYSTEM",
4459
+ VALIDATING: "VALIDATING",
4447
4460
  };
4448
4461
  const DedicatedTenancyAccountType = {
4449
4462
  SOURCE_ACCOUNT: "SOURCE_ACCOUNT",
@@ -63,6 +63,7 @@ export const AssociationState = {
63
63
  UNINSTALLING: "UNINSTALLING",
64
64
  };
65
65
  export const AssociationErrorCode = {
66
+ APPLICATION_OLDVERSIONEXIST_FAILURE: "ValidationError.ApplicationOldVersionExists",
66
67
  INSUFFICIENT_DISKSPACE: "ValidationError.InsufficientDiskSpace",
67
68
  INSUFFICIENT_MEMORY: "ValidationError.InsufficientMemory",
68
69
  INTERNAL_SERVER_ERROR: "DeploymentError.InternalServerError",
@@ -276,9 +277,19 @@ export const CustomImageProtocol = {
276
277
  };
277
278
  export const CustomWorkspaceImageImportState = {
278
279
  COMPLETED: "COMPLETED",
280
+ CREATING_TEST_INSTANCE: "CREATING_TEST_INSTANCE",
279
281
  ERROR: "ERROR",
282
+ GENERALIZING: "GENERALIZING",
283
+ IMAGE_COMPATIBILITY_CHECKING: "IMAGE_COMPATIBILITY_CHECKING",
284
+ IMAGE_TESTING_GENERALIZATION: "IMAGE_TESTING_GENERALIZATION",
285
+ IMAGE_TESTING_START: "IMAGE_TESTING_START",
286
+ INSTALLING_COMPONENTS: "INSTALLING_COMPONENTS",
280
287
  IN_PROGRESS: "IN_PROGRESS",
281
288
  PENDING: "PENDING",
289
+ PROCESSING_SOURCE_IMAGE: "PROCESSING_SOURCE_IMAGE",
290
+ PUBLISHING: "PUBLISHING",
291
+ UPDATING_OPERATING_SYSTEM: "UPDATING_OPERATING_SYSTEM",
292
+ VALIDATING: "VALIDATING",
282
293
  };
283
294
  export const DedicatedTenancyAccountType = {
284
295
  SOURCE_ACCOUNT: "SOURCE_ACCOUNT",
@@ -459,7 +459,8 @@ const _PCSWRL = "PendingCreateStandbyWorkspacesRequestList";
459
459
  const _PI = "PoolId";
460
460
  const _PIo = "PoolIds";
461
461
  const _PN = "PoolName";
462
- const _PP = "PreferredProtocol";
462
+ const _PP = "ProgressPercentage";
463
+ const _PPr = "PreferredProtocol";
463
464
  const _PR = "PrimaryRegion";
464
465
  const _PRe = "PendingRequests";
465
466
  const _PSR = "PendingStandbyRequests";
@@ -536,6 +537,7 @@ const _SIe = "SessionId";
536
537
  const _SIu = "SubnetId";
537
538
  const _SL = "SupportLink";
538
539
  const _SLn = "SnapshotList";
540
+ const _SM = "StateMessage";
539
541
  const _SOSN = "SupportedOperatingSystemNames";
540
542
  const _SP = "SamlProperties";
541
543
  const _SPe = "SelfservicePermissions";
@@ -1213,8 +1215,8 @@ export var DescribeCustomWorkspaceImageImportRequest$ = [3, n0, _DCWIIR,
1213
1215
  ];
1214
1216
  export var DescribeCustomWorkspaceImageImportResult$ = [3, n0, _DCWIIRe,
1215
1217
  0,
1216
- [_II, _ICA, _S, _C, _LUT, _IS, _IBII, _ED],
1217
- [0, 0, 0, 4, 4, () => ImageSourceIdentifier$, 0, () => CustomWorkspaceImageImportErrorDetailsList]
1218
+ [_II, _ICA, _S, _SM, _PP, _C, _LUT, _IS, _IBII, _ED],
1219
+ [0, 0, 0, 0, 1, 4, 4, () => ImageSourceIdentifier$, 0, () => CustomWorkspaceImageImportErrorDetailsList]
1218
1220
  ];
1219
1221
  export var DescribeImageAssociationsRequest$ = [3, n0, _DIAR,
1220
1222
  0,
@@ -1418,12 +1420,12 @@ export var GetAccountLinkResult$ = [3, n0, _GALRe,
1418
1420
  ];
1419
1421
  export var GlobalAcceleratorForDirectory$ = [3, n0, _GAFD,
1420
1422
  0,
1421
- [_Mo, _PP],
1423
+ [_Mo, _PPr],
1422
1424
  [0, 0]
1423
1425
  ];
1424
1426
  export var GlobalAcceleratorForWorkSpace$ = [3, n0, _GAFWS,
1425
1427
  0,
1426
- [_Mo, _PP],
1428
+ [_Mo, _PPr],
1427
1429
  [0, 0]
1428
1430
  ];
1429
1431
  export var IDCConfig$ = [3, n0, _IDCC,
@@ -50,7 +50,7 @@ declare const AssociateWorkspaceApplicationCommand_base: {
50
50
  * // LastUpdatedTime: new Date("TIMESTAMP"),
51
51
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
52
52
  * // StateReason: { // AssociationStateReason
53
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
53
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
54
54
  * // ErrorMessage: "STRING_VALUE",
55
55
  * // },
56
56
  * // WorkspaceId: "STRING_VALUE",
@@ -31,7 +31,7 @@ declare const CopyWorkspaceImageCommand_base: {
31
31
  * information about copying images, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/copy-custom-image.html"> Copy a Custom WorkSpaces
32
32
  * Image</a>.</p>
33
33
  * <p>In the China (Ningxia) Region, you can copy images only within the same Region.</p>
34
- * <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web ServicesSupport.</p>
34
+ * <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web Services Support.</p>
35
35
  * <important>
36
36
  * <p>Before copying a shared image, be sure to verify that it has been shared from the
37
37
  * correct Amazon Web Services account. To determine if an image has been shared and to see
@@ -52,7 +52,7 @@ declare const DeployWorkspaceApplicationsCommand_base: {
52
52
  * // LastUpdatedTime: new Date("TIMESTAMP"),
53
53
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
54
54
  * // StateReason: { // AssociationStateReason
55
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
55
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
56
56
  * // ErrorMessage: "STRING_VALUE",
57
57
  * // },
58
58
  * // WorkspaceId: "STRING_VALUE",
@@ -56,7 +56,7 @@ declare const DescribeApplicationAssociationsCommand_base: {
56
56
  * // LastUpdatedTime: new Date("TIMESTAMP"),
57
57
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
58
58
  * // StateReason: { // AssociationStateReason
59
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
59
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
60
60
  * // ErrorMessage: "STRING_VALUE",
61
61
  * // },
62
62
  * // },
@@ -54,7 +54,7 @@ declare const DescribeBundleAssociationsCommand_base: {
54
54
  * // LastUpdatedTime: new Date("TIMESTAMP"),
55
55
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
56
56
  * // StateReason: { // AssociationStateReason
57
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
57
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
58
58
  * // ErrorMessage: "STRING_VALUE",
59
59
  * // },
60
60
  * // },
@@ -44,7 +44,9 @@ declare const DescribeCustomWorkspaceImageImportCommand_base: {
44
44
  * // { // DescribeCustomWorkspaceImageImportResult
45
45
  * // ImageId: "STRING_VALUE",
46
46
  * // InfrastructureConfigurationArn: "STRING_VALUE",
47
- * // State: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "ERROR",
47
+ * // State: "PENDING" || "IN_PROGRESS" || "PROCESSING_SOURCE_IMAGE" || "IMAGE_TESTING_START" || "UPDATING_OPERATING_SYSTEM" || "IMAGE_COMPATIBILITY_CHECKING" || "IMAGE_TESTING_GENERALIZATION" || "CREATING_TEST_INSTANCE" || "INSTALLING_COMPONENTS" || "GENERALIZING" || "VALIDATING" || "PUBLISHING" || "COMPLETED" || "ERROR",
48
+ * // StateMessage: "STRING_VALUE",
49
+ * // ProgressPercentage: Number("int"),
48
50
  * // Created: new Date("TIMESTAMP"),
49
51
  * // LastUpdatedTime: new Date("TIMESTAMP"),
50
52
  * // ImageSource: { // ImageSourceIdentifier Union: only one key present
@@ -54,7 +54,7 @@ declare const DescribeImageAssociationsCommand_base: {
54
54
  * // ImageId: "STRING_VALUE",
55
55
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
56
56
  * // StateReason: { // AssociationStateReason
57
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
57
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
58
58
  * // ErrorMessage: "STRING_VALUE",
59
59
  * // },
60
60
  * // },
@@ -53,7 +53,7 @@ declare const DescribeWorkspaceAssociationsCommand_base: {
53
53
  * // LastUpdatedTime: new Date("TIMESTAMP"),
54
54
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
55
55
  * // StateReason: { // AssociationStateReason
56
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
56
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
57
57
  * // ErrorMessage: "STRING_VALUE",
58
58
  * // },
59
59
  * // WorkspaceId: "STRING_VALUE",
@@ -50,7 +50,7 @@ declare const DisassociateWorkspaceApplicationCommand_base: {
50
50
  * // LastUpdatedTime: new Date("TIMESTAMP"),
51
51
  * // State: "PENDING_INSTALL" || "PENDING_INSTALL_DEPLOYMENT" || "PENDING_UNINSTALL" || "PENDING_UNINSTALL_DEPLOYMENT" || "INSTALLING" || "UNINSTALLING" || "ERROR" || "COMPLETED" || "REMOVED",
52
52
  * // StateReason: { // AssociationStateReason
53
- * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable",
53
+ * // ErrorCode: "ValidationError.InsufficientDiskSpace" || "ValidationError.InsufficientMemory" || "ValidationError.UnsupportedOperatingSystem" || "DeploymentError.InternalServerError" || "DeploymentError.WorkspaceUnreachable" || "ValidationError.ApplicationOldVersionExists",
54
54
  * // ErrorMessage: "STRING_VALUE",
55
55
  * // },
56
56
  * // WorkspaceId: "STRING_VALUE",
@@ -65,7 +65,7 @@ declare const ImportCustomWorkspaceImageCommand_base: {
65
65
  * const response = await client.send(command);
66
66
  * // { // ImportCustomWorkspaceImageResult
67
67
  * // ImageId: "STRING_VALUE",
68
- * // State: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "ERROR",
68
+ * // State: "PENDING" || "IN_PROGRESS" || "PROCESSING_SOURCE_IMAGE" || "IMAGE_TESTING_START" || "UPDATING_OPERATING_SYSTEM" || "IMAGE_COMPATIBILITY_CHECKING" || "IMAGE_TESTING_GENERALIZATION" || "CREATING_TEST_INSTANCE" || "INSTALLING_COMPONENTS" || "GENERALIZING" || "VALIDATING" || "PUBLISHING" || "COMPLETED" || "ERROR",
69
69
  * // };
70
70
  *
71
71
  * ```
@@ -30,7 +30,7 @@ declare const TerminateWorkspacesCommand_base: {
30
30
  * <p>Terminates the specified WorkSpaces.</p>
31
31
  * <important>
32
32
  * <p>Terminating a WorkSpace is a permanent action and cannot be undone. The user's data
33
- * is destroyed. If you need to archive any user data, contact Amazon Web ServicesSupport before
33
+ * is destroyed. If you need to archive any user data, contact Amazon Web Services Support before
34
34
  * terminating the WorkSpace.</p>
35
35
  * </important>
36
36
  * <p>You can terminate a WorkSpace that is in any state except <code>SUSPENDED</code>.</p>
@@ -34,7 +34,7 @@ declare const UpdateWorkspaceImagePermissionCommand_base: {
34
34
  * <p>After an image has been shared, the recipient account can copy the image to other
35
35
  * Regions as needed.</p>
36
36
  * <p>In the China (Ningxia) Region, you can copy images only within the same Region.</p>
37
- * <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web ServicesSupport.</p>
37
+ * <p>In Amazon Web Services GovCloud (US), to copy images to and from other Regions, contact Amazon Web Services Support.</p>
38
38
  * <p>For more information about sharing images, see <a href="https://docs.aws.amazon.com/workspaces/latest/adminguide/share-custom-image.html"> Share or Unshare a Custom
39
39
  * WorkSpaces Image</a>.</p>
40
40
  * <note>
@@ -46,7 +46,7 @@ declare const UpdateWorkspaceImagePermissionCommand_base: {
46
46
  * <li>
47
47
  * <p>Sharing Bring Your Own License (BYOL) images across Amazon Web Services accounts
48
48
  * isn't supported at this time in Amazon Web Services GovCloud (US). To share BYOL images
49
- * across accounts in Amazon Web Services GovCloud (US), contact Amazon Web ServicesSupport.</p>
49
+ * across accounts in Amazon Web Services GovCloud (US), contact Amazon Web Services Support.</p>
50
50
  * </li>
51
51
  * </ul>
52
52
  * </note>
@@ -171,6 +171,7 @@ export type AssociationState = (typeof AssociationState)[keyof typeof Associatio
171
171
  * @enum
172
172
  */
173
173
  export declare const AssociationErrorCode: {
174
+ readonly APPLICATION_OLDVERSIONEXIST_FAILURE: "ValidationError.ApplicationOldVersionExists";
174
175
  readonly INSUFFICIENT_DISKSPACE: "ValidationError.InsufficientDiskSpace";
175
176
  readonly INSUFFICIENT_MEMORY: "ValidationError.InsufficientMemory";
176
177
  readonly INTERNAL_SERVER_ERROR: "DeploymentError.InternalServerError";
@@ -624,9 +625,19 @@ export type CustomImageProtocol = (typeof CustomImageProtocol)[keyof typeof Cust
624
625
  */
625
626
  export declare const CustomWorkspaceImageImportState: {
626
627
  readonly COMPLETED: "COMPLETED";
628
+ readonly CREATING_TEST_INSTANCE: "CREATING_TEST_INSTANCE";
627
629
  readonly ERROR: "ERROR";
630
+ readonly GENERALIZING: "GENERALIZING";
631
+ readonly IMAGE_COMPATIBILITY_CHECKING: "IMAGE_COMPATIBILITY_CHECKING";
632
+ readonly IMAGE_TESTING_GENERALIZATION: "IMAGE_TESTING_GENERALIZATION";
633
+ readonly IMAGE_TESTING_START: "IMAGE_TESTING_START";
634
+ readonly INSTALLING_COMPONENTS: "INSTALLING_COMPONENTS";
628
635
  readonly IN_PROGRESS: "IN_PROGRESS";
629
636
  readonly PENDING: "PENDING";
637
+ readonly PROCESSING_SOURCE_IMAGE: "PROCESSING_SOURCE_IMAGE";
638
+ readonly PUBLISHING: "PUBLISHING";
639
+ readonly UPDATING_OPERATING_SYSTEM: "UPDATING_OPERATING_SYSTEM";
640
+ readonly VALIDATING: "VALIDATING";
630
641
  };
631
642
  /**
632
643
  * @public
@@ -2878,6 +2878,16 @@ export interface DescribeCustomWorkspaceImageImportResult {
2878
2878
  * @public
2879
2879
  */
2880
2880
  State?: CustomWorkspaceImageImportState | undefined;
2881
+ /**
2882
+ * <p>The state message of the WorkSpace image import workflow.</p>
2883
+ * @public
2884
+ */
2885
+ StateMessage?: string | undefined;
2886
+ /**
2887
+ * <p>The estimated progress percentage of the WorkSpace image import workflow.</p>
2888
+ * @public
2889
+ */
2890
+ ProgressPercentage?: number | undefined;
2881
2891
  /**
2882
2892
  * <p>The timestamp when the WorkSpace image import was created.</p>
2883
2893
  * @public
@@ -88,6 +88,7 @@ export declare const AssociationState: {
88
88
  export type AssociationState =
89
89
  (typeof AssociationState)[keyof typeof AssociationState];
90
90
  export declare const AssociationErrorCode: {
91
+ readonly APPLICATION_OLDVERSIONEXIST_FAILURE: "ValidationError.ApplicationOldVersionExists";
91
92
  readonly INSUFFICIENT_DISKSPACE: "ValidationError.InsufficientDiskSpace";
92
93
  readonly INSUFFICIENT_MEMORY: "ValidationError.InsufficientMemory";
93
94
  readonly INTERNAL_SERVER_ERROR: "DeploymentError.InternalServerError";
@@ -355,9 +356,19 @@ export type CustomImageProtocol =
355
356
  (typeof CustomImageProtocol)[keyof typeof CustomImageProtocol];
356
357
  export declare const CustomWorkspaceImageImportState: {
357
358
  readonly COMPLETED: "COMPLETED";
359
+ readonly CREATING_TEST_INSTANCE: "CREATING_TEST_INSTANCE";
358
360
  readonly ERROR: "ERROR";
361
+ readonly GENERALIZING: "GENERALIZING";
362
+ readonly IMAGE_COMPATIBILITY_CHECKING: "IMAGE_COMPATIBILITY_CHECKING";
363
+ readonly IMAGE_TESTING_GENERALIZATION: "IMAGE_TESTING_GENERALIZATION";
364
+ readonly IMAGE_TESTING_START: "IMAGE_TESTING_START";
365
+ readonly INSTALLING_COMPONENTS: "INSTALLING_COMPONENTS";
359
366
  readonly IN_PROGRESS: "IN_PROGRESS";
360
367
  readonly PENDING: "PENDING";
368
+ readonly PROCESSING_SOURCE_IMAGE: "PROCESSING_SOURCE_IMAGE";
369
+ readonly PUBLISHING: "PUBLISHING";
370
+ readonly UPDATING_OPERATING_SYSTEM: "UPDATING_OPERATING_SYSTEM";
371
+ readonly VALIDATING: "VALIDATING";
361
372
  };
362
373
  export type CustomWorkspaceImageImportState =
363
374
  (typeof CustomWorkspaceImageImportState)[keyof typeof CustomWorkspaceImageImportState];
@@ -707,6 +707,8 @@ export interface DescribeCustomWorkspaceImageImportResult {
707
707
  ImageId?: string | undefined;
708
708
  InfrastructureConfigurationArn?: string | undefined;
709
709
  State?: CustomWorkspaceImageImportState | undefined;
710
+ StateMessage?: string | undefined;
711
+ ProgressPercentage?: number | undefined;
710
712
  Created?: Date | undefined;
711
713
  LastUpdatedTime?: Date | undefined;
712
714
  ImageSource?: ImageSourceIdentifier | undefined;
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.964.0",
4
+ "version": "3.966.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-workspaces",
@@ -23,38 +23,38 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "3.964.0",
27
- "@aws-sdk/credential-provider-node": "3.964.0",
28
- "@aws-sdk/middleware-host-header": "3.957.0",
29
- "@aws-sdk/middleware-logger": "3.957.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.957.0",
31
- "@aws-sdk/middleware-user-agent": "3.964.0",
32
- "@aws-sdk/region-config-resolver": "3.957.0",
33
- "@aws-sdk/types": "3.957.0",
34
- "@aws-sdk/util-endpoints": "3.957.0",
35
- "@aws-sdk/util-user-agent-browser": "3.957.0",
36
- "@aws-sdk/util-user-agent-node": "3.964.0",
26
+ "@aws-sdk/core": "3.966.0",
27
+ "@aws-sdk/credential-provider-node": "3.966.0",
28
+ "@aws-sdk/middleware-host-header": "3.965.0",
29
+ "@aws-sdk/middleware-logger": "3.965.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.965.0",
31
+ "@aws-sdk/middleware-user-agent": "3.966.0",
32
+ "@aws-sdk/region-config-resolver": "3.965.0",
33
+ "@aws-sdk/types": "3.965.0",
34
+ "@aws-sdk/util-endpoints": "3.965.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.965.0",
36
+ "@aws-sdk/util-user-agent-node": "3.966.0",
37
37
  "@smithy/config-resolver": "^4.4.5",
38
- "@smithy/core": "^3.20.0",
38
+ "@smithy/core": "^3.20.1",
39
39
  "@smithy/fetch-http-handler": "^5.3.8",
40
40
  "@smithy/hash-node": "^4.2.7",
41
41
  "@smithy/invalid-dependency": "^4.2.7",
42
42
  "@smithy/middleware-content-length": "^4.2.7",
43
- "@smithy/middleware-endpoint": "^4.4.1",
44
- "@smithy/middleware-retry": "^4.4.17",
43
+ "@smithy/middleware-endpoint": "^4.4.2",
44
+ "@smithy/middleware-retry": "^4.4.18",
45
45
  "@smithy/middleware-serde": "^4.2.8",
46
46
  "@smithy/middleware-stack": "^4.2.7",
47
47
  "@smithy/node-config-provider": "^4.3.7",
48
48
  "@smithy/node-http-handler": "^4.4.7",
49
49
  "@smithy/protocol-http": "^5.3.7",
50
- "@smithy/smithy-client": "^4.10.2",
50
+ "@smithy/smithy-client": "^4.10.3",
51
51
  "@smithy/types": "^4.11.0",
52
52
  "@smithy/url-parser": "^4.2.7",
53
53
  "@smithy/util-base64": "^4.3.0",
54
54
  "@smithy/util-body-length-browser": "^4.2.0",
55
55
  "@smithy/util-body-length-node": "^4.2.1",
56
- "@smithy/util-defaults-mode-browser": "^4.3.16",
57
- "@smithy/util-defaults-mode-node": "^4.2.19",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.17",
57
+ "@smithy/util-defaults-mode-node": "^4.2.20",
58
58
  "@smithy/util-endpoints": "^3.2.7",
59
59
  "@smithy/util-middleware": "^4.2.7",
60
60
  "@smithy/util-retry": "^4.2.7",
@@ -66,7 +66,7 @@
66
66
  "@types/node": "^18.19.69",
67
67
  "concurrently": "7.0.0",
68
68
  "downlevel-dts": "0.10.1",
69
- "rimraf": "3.0.2",
69
+ "rimraf": "5.0.10",
70
70
  "typescript": "~5.8.3"
71
71
  },
72
72
  "engines": {