@aws-sdk/client-workspaces 3.556.0 → 3.558.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 (42) hide show
  1. package/README.md +55 -7
  2. package/dist-cjs/index.js +372 -24
  3. package/dist-es/WorkSpaces.js +12 -0
  4. package/dist-es/commands/AcceptAccountLinkInvitationCommand.js +24 -0
  5. package/dist-es/commands/CreateAccountLinkInvitationCommand.js +24 -0
  6. package/dist-es/commands/DeleteAccountLinkInvitationCommand.js +24 -0
  7. package/dist-es/commands/GetAccountLinkCommand.js +24 -0
  8. package/dist-es/commands/ListAccountLinksCommand.js +24 -0
  9. package/dist-es/commands/RejectAccountLinkInvitationCommand.js +24 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/models_0.js +60 -13
  12. package/dist-es/pagination/ListAccountLinksPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/protocols/Aws_json1_1.js +154 -4
  15. package/dist-types/WorkSpaces.d.ts +44 -0
  16. package/dist-types/WorkSpacesClient.d.ts +8 -2
  17. package/dist-types/commands/AcceptAccountLinkInvitationCommand.d.ts +84 -0
  18. package/dist-types/commands/CreateAccountLinkInvitationCommand.d.ts +78 -0
  19. package/dist-types/commands/DeleteAccountLinkInvitationCommand.d.ts +81 -0
  20. package/dist-types/commands/DescribeAccountCommand.d.ts +1 -0
  21. package/dist-types/commands/GetAccountLinkCommand.d.ts +78 -0
  22. package/dist-types/commands/ListAccountLinksCommand.d.ts +81 -0
  23. package/dist-types/commands/RejectAccountLinkInvitationCommand.d.ts +81 -0
  24. package/dist-types/commands/index.d.ts +6 -0
  25. package/dist-types/models/models_0.d.ts +272 -17
  26. package/dist-types/pagination/ListAccountLinksPaginator.d.ts +7 -0
  27. package/dist-types/pagination/index.d.ts +1 -0
  28. package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
  29. package/dist-types/ts3.4/WorkSpaces.d.ts +104 -0
  30. package/dist-types/ts3.4/WorkSpacesClient.d.ts +36 -0
  31. package/dist-types/ts3.4/commands/AcceptAccountLinkInvitationCommand.d.ts +39 -0
  32. package/dist-types/ts3.4/commands/CreateAccountLinkInvitationCommand.d.ts +39 -0
  33. package/dist-types/ts3.4/commands/DeleteAccountLinkInvitationCommand.d.ts +39 -0
  34. package/dist-types/ts3.4/commands/GetAccountLinkCommand.d.ts +38 -0
  35. package/dist-types/ts3.4/commands/ListAccountLinksCommand.d.ts +38 -0
  36. package/dist-types/ts3.4/commands/RejectAccountLinkInvitationCommand.d.ts +39 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +93 -8
  39. package/dist-types/ts3.4/pagination/ListAccountLinksPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  41. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
  42. package/package.json +1 -1
package/dist-cjs/index.js CHANGED
@@ -21,8 +21,10 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
21
21
  // src/index.ts
22
22
  var src_exports = {};
23
23
  __export(src_exports, {
24
+ AcceptAccountLinkInvitationCommand: () => AcceptAccountLinkInvitationCommand,
24
25
  AccessDeniedException: () => AccessDeniedException,
25
26
  AccessPropertyValue: () => AccessPropertyValue,
27
+ AccountLinkStatusEnum: () => AccountLinkStatusEnum,
26
28
  Application: () => Application,
27
29
  ApplicationAssociatedResourceType: () => ApplicationAssociatedResourceType,
28
30
  ApplicationNotSupportedException: () => ApplicationNotSupportedException,
@@ -39,9 +41,11 @@ __export(src_exports, {
39
41
  ClientDeviceType: () => ClientDeviceType,
40
42
  Compute: () => Compute,
41
43
  ComputeNotCompatibleException: () => ComputeNotCompatibleException,
44
+ ConflictException: () => ConflictException,
42
45
  ConnectionAliasState: () => ConnectionAliasState,
43
46
  ConnectionState: () => ConnectionState,
44
47
  CopyWorkspaceImageCommand: () => CopyWorkspaceImageCommand,
48
+ CreateAccountLinkInvitationCommand: () => CreateAccountLinkInvitationCommand,
45
49
  CreateConnectClientAddInCommand: () => CreateConnectClientAddInCommand,
46
50
  CreateConnectionAliasCommand: () => CreateConnectionAliasCommand,
47
51
  CreateIpGroupCommand: () => CreateIpGroupCommand,
@@ -52,11 +56,13 @@ __export(src_exports, {
52
56
  CreateWorkspaceImageCommand: () => CreateWorkspaceImageCommand,
53
57
  CreateWorkspacesCommand: () => CreateWorkspacesCommand,
54
58
  DataReplication: () => DataReplication,
59
+ DedicatedTenancyAccountType: () => DedicatedTenancyAccountType,
55
60
  DedicatedTenancyModificationStateEnum: () => DedicatedTenancyModificationStateEnum,
56
61
  DedicatedTenancySupportEnum: () => DedicatedTenancySupportEnum,
57
62
  DedicatedTenancySupportResultEnum: () => DedicatedTenancySupportResultEnum,
58
63
  DeletableCertificateBasedAuthProperty: () => DeletableCertificateBasedAuthProperty,
59
64
  DeletableSamlProperty: () => DeletableSamlProperty,
65
+ DeleteAccountLinkInvitationCommand: () => DeleteAccountLinkInvitationCommand,
60
66
  DeleteClientBrandingCommand: () => DeleteClientBrandingCommand,
61
67
  DeleteConnectClientAddInCommand: () => DeleteConnectClientAddInCommand,
62
68
  DeleteConnectionAliasCommand: () => DeleteConnectionAliasCommand,
@@ -90,13 +96,16 @@ __export(src_exports, {
90
96
  DisassociateConnectionAliasCommand: () => DisassociateConnectionAliasCommand,
91
97
  DisassociateIpGroupsCommand: () => DisassociateIpGroupsCommand,
92
98
  DisassociateWorkspaceApplicationCommand: () => DisassociateWorkspaceApplicationCommand,
99
+ GetAccountLinkCommand: () => GetAccountLinkCommand,
93
100
  ImageAssociatedResourceType: () => ImageAssociatedResourceType,
94
101
  ImageType: () => ImageType,
95
102
  ImportClientBrandingCommand: () => ImportClientBrandingCommand,
96
103
  ImportWorkspaceImageCommand: () => ImportWorkspaceImageCommand,
97
104
  IncompatibleApplicationsException: () => IncompatibleApplicationsException,
105
+ InternalServerException: () => InternalServerException,
98
106
  InvalidParameterValuesException: () => InvalidParameterValuesException,
99
107
  InvalidResourceStateException: () => InvalidResourceStateException,
108
+ ListAccountLinksCommand: () => ListAccountLinksCommand,
100
109
  ListAvailableManagementCidrRangesCommand: () => ListAvailableManagementCidrRangesCommand,
101
110
  LogUploadEnum: () => LogUploadEnum,
102
111
  MigrateWorkspaceCommand: () => MigrateWorkspaceCommand,
@@ -121,6 +130,7 @@ __export(src_exports, {
121
130
  RebuildWorkspacesCommand: () => RebuildWorkspacesCommand,
122
131
  ReconnectEnum: () => ReconnectEnum,
123
132
  RegisterWorkspaceDirectoryCommand: () => RegisterWorkspaceDirectoryCommand,
133
+ RejectAccountLinkInvitationCommand: () => RejectAccountLinkInvitationCommand,
124
134
  ResourceAlreadyExistsException: () => ResourceAlreadyExistsException,
125
135
  ResourceAssociatedException: () => ResourceAssociatedException,
126
136
  ResourceCreationFailedException: () => ResourceCreationFailedException,
@@ -145,6 +155,7 @@ __export(src_exports, {
145
155
  UpdateRulesOfIpGroupCommand: () => UpdateRulesOfIpGroupCommand,
146
156
  UpdateWorkspaceBundleCommand: () => UpdateWorkspaceBundleCommand,
147
157
  UpdateWorkspaceImagePermissionCommand: () => UpdateWorkspaceImagePermissionCommand,
158
+ ValidationException: () => ValidationException,
148
159
  WorkSpaceApplicationLicenseType: () => WorkSpaceApplicationLicenseType,
149
160
  WorkSpaceApplicationState: () => WorkSpaceApplicationState,
150
161
  WorkSpaceAssociatedResourceType: () => WorkSpaceAssociatedResourceType,
@@ -165,7 +176,8 @@ __export(src_exports, {
165
176
  paginateDescribeApplications: () => paginateDescribeApplications,
166
177
  paginateDescribeWorkspaceBundles: () => paginateDescribeWorkspaceBundles,
167
178
  paginateDescribeWorkspaceDirectories: () => paginateDescribeWorkspaceDirectories,
168
- paginateDescribeWorkspaces: () => paginateDescribeWorkspaces
179
+ paginateDescribeWorkspaces: () => paginateDescribeWorkspaces,
180
+ paginateListAccountLinks: () => paginateListAccountLinks
169
181
  });
170
182
  module.exports = __toCommonJS(src_exports);
171
183
 
@@ -315,7 +327,7 @@ var WorkSpacesClient = _WorkSpacesClient;
315
327
  // src/WorkSpaces.ts
316
328
 
317
329
 
318
- // src/commands/AssociateConnectionAliasCommand.ts
330
+ // src/commands/AcceptAccountLinkInvitationCommand.ts
319
331
 
320
332
  var import_middleware_serde = require("@smithy/middleware-serde");
321
333
 
@@ -341,6 +353,13 @@ __name(_WorkSpacesServiceException, "WorkSpacesServiceException");
341
353
  var WorkSpacesServiceException = _WorkSpacesServiceException;
342
354
 
343
355
  // src/models/models_0.ts
356
+ var AccountLinkStatusEnum = {
357
+ LINKED: "LINKED",
358
+ LINKING_FAILED: "LINKING_FAILED",
359
+ LINK_NOT_FOUND: "LINK_NOT_FOUND",
360
+ PENDING_ACCEPTANCE_BY_TARGET_ACCOUNT: "PENDING_ACCEPTANCE_BY_TARGET_ACCOUNT",
361
+ REJECTED: "REJECTED"
362
+ };
344
363
  var _AccessDeniedException = class _AccessDeniedException extends WorkSpacesServiceException {
345
364
  /**
346
365
  * @internal
@@ -358,6 +377,75 @@ var _AccessDeniedException = class _AccessDeniedException extends WorkSpacesServ
358
377
  };
359
378
  __name(_AccessDeniedException, "AccessDeniedException");
360
379
  var AccessDeniedException = _AccessDeniedException;
380
+ var _ConflictException = class _ConflictException extends WorkSpacesServiceException {
381
+ /**
382
+ * @internal
383
+ */
384
+ constructor(opts) {
385
+ super({
386
+ name: "ConflictException",
387
+ $fault: "client",
388
+ ...opts
389
+ });
390
+ this.name = "ConflictException";
391
+ this.$fault = "client";
392
+ Object.setPrototypeOf(this, _ConflictException.prototype);
393
+ }
394
+ };
395
+ __name(_ConflictException, "ConflictException");
396
+ var ConflictException = _ConflictException;
397
+ var _InternalServerException = class _InternalServerException extends WorkSpacesServiceException {
398
+ /**
399
+ * @internal
400
+ */
401
+ constructor(opts) {
402
+ super({
403
+ name: "InternalServerException",
404
+ $fault: "client",
405
+ ...opts
406
+ });
407
+ this.name = "InternalServerException";
408
+ this.$fault = "client";
409
+ Object.setPrototypeOf(this, _InternalServerException.prototype);
410
+ }
411
+ };
412
+ __name(_InternalServerException, "InternalServerException");
413
+ var InternalServerException = _InternalServerException;
414
+ var _ResourceNotFoundException = class _ResourceNotFoundException extends WorkSpacesServiceException {
415
+ /**
416
+ * @internal
417
+ */
418
+ constructor(opts) {
419
+ super({
420
+ name: "ResourceNotFoundException",
421
+ $fault: "client",
422
+ ...opts
423
+ });
424
+ this.name = "ResourceNotFoundException";
425
+ this.$fault = "client";
426
+ Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
427
+ this.ResourceId = opts.ResourceId;
428
+ }
429
+ };
430
+ __name(_ResourceNotFoundException, "ResourceNotFoundException");
431
+ var ResourceNotFoundException = _ResourceNotFoundException;
432
+ var _ValidationException = class _ValidationException extends WorkSpacesServiceException {
433
+ /**
434
+ * @internal
435
+ */
436
+ constructor(opts) {
437
+ super({
438
+ name: "ValidationException",
439
+ $fault: "client",
440
+ ...opts
441
+ });
442
+ this.name = "ValidationException";
443
+ this.$fault = "client";
444
+ Object.setPrototypeOf(this, _ValidationException.prototype);
445
+ }
446
+ };
447
+ __name(_ValidationException, "ValidationException");
448
+ var ValidationException = _ValidationException;
361
449
  var AccessPropertyValue = {
362
450
  ALLOW: "ALLOW",
363
451
  DENY: "DENY"
@@ -484,24 +572,6 @@ var _ResourceAssociatedException = class _ResourceAssociatedException extends Wo
484
572
  };
485
573
  __name(_ResourceAssociatedException, "ResourceAssociatedException");
486
574
  var ResourceAssociatedException = _ResourceAssociatedException;
487
- var _ResourceNotFoundException = class _ResourceNotFoundException extends WorkSpacesServiceException {
488
- /**
489
- * @internal
490
- */
491
- constructor(opts) {
492
- super({
493
- name: "ResourceNotFoundException",
494
- $fault: "client",
495
- ...opts
496
- });
497
- this.name = "ResourceNotFoundException";
498
- this.$fault = "client";
499
- Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
500
- this.ResourceId = opts.ResourceId;
501
- }
502
- };
503
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
504
- var ResourceNotFoundException = _ResourceNotFoundException;
505
575
  var _ResourceLimitExceededException = class _ResourceLimitExceededException extends WorkSpacesServiceException {
506
576
  /**
507
577
  * @internal
@@ -774,6 +844,10 @@ var StandbyWorkspaceRelationshipType = {
774
844
  PRIMARY: "PRIMARY",
775
845
  STANDBY: "STANDBY"
776
846
  };
847
+ var DedicatedTenancyAccountType = {
848
+ SOURCE_ACCOUNT: "SOURCE_ACCOUNT",
849
+ TARGET_ACCOUNT: "TARGET_ACCOUNT"
850
+ };
777
851
  var DedicatedTenancySupportEnum = {
778
852
  ENABLED: "ENABLED"
779
853
  };
@@ -932,6 +1006,12 @@ __name(_WorkspacesDefaultRoleNotFoundException, "WorkspacesDefaultRoleNotFoundEx
932
1006
  var WorkspacesDefaultRoleNotFoundException = _WorkspacesDefaultRoleNotFoundException;
933
1007
 
934
1008
  // src/protocols/Aws_json1_1.ts
1009
+ var se_AcceptAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
1010
+ const headers = sharedHeaders("AcceptAccountLinkInvitation");
1011
+ let body;
1012
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1013
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1014
+ }, "se_AcceptAccountLinkInvitationCommand");
935
1015
  var se_AssociateConnectionAliasCommand = /* @__PURE__ */ __name(async (input, context) => {
936
1016
  const headers = sharedHeaders("AssociateConnectionAlias");
937
1017
  let body;
@@ -962,6 +1042,12 @@ var se_CopyWorkspaceImageCommand = /* @__PURE__ */ __name(async (input, context)
962
1042
  body = JSON.stringify((0, import_smithy_client._json)(input));
963
1043
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
964
1044
  }, "se_CopyWorkspaceImageCommand");
1045
+ var se_CreateAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
1046
+ const headers = sharedHeaders("CreateAccountLinkInvitation");
1047
+ let body;
1048
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1049
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1050
+ }, "se_CreateAccountLinkInvitationCommand");
965
1051
  var se_CreateConnectClientAddInCommand = /* @__PURE__ */ __name(async (input, context) => {
966
1052
  const headers = sharedHeaders("CreateConnectClientAddIn");
967
1053
  let body;
@@ -1016,6 +1102,12 @@ var se_CreateWorkspacesCommand = /* @__PURE__ */ __name(async (input, context) =
1016
1102
  body = JSON.stringify((0, import_smithy_client._json)(input));
1017
1103
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1018
1104
  }, "se_CreateWorkspacesCommand");
1105
+ var se_DeleteAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
1106
+ const headers = sharedHeaders("DeleteAccountLinkInvitation");
1107
+ let body;
1108
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1109
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1110
+ }, "se_DeleteAccountLinkInvitationCommand");
1019
1111
  var se_DeleteClientBrandingCommand = /* @__PURE__ */ __name(async (input, context) => {
1020
1112
  const headers = sharedHeaders("DeleteClientBranding");
1021
1113
  let body;
@@ -1214,6 +1306,12 @@ var se_DisassociateWorkspaceApplicationCommand = /* @__PURE__ */ __name(async (i
1214
1306
  body = JSON.stringify((0, import_smithy_client._json)(input));
1215
1307
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1216
1308
  }, "se_DisassociateWorkspaceApplicationCommand");
1309
+ var se_GetAccountLinkCommand = /* @__PURE__ */ __name(async (input, context) => {
1310
+ const headers = sharedHeaders("GetAccountLink");
1311
+ let body;
1312
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1313
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1314
+ }, "se_GetAccountLinkCommand");
1217
1315
  var se_ImportClientBrandingCommand = /* @__PURE__ */ __name(async (input, context) => {
1218
1316
  const headers = sharedHeaders("ImportClientBranding");
1219
1317
  let body;
@@ -1226,6 +1324,12 @@ var se_ImportWorkspaceImageCommand = /* @__PURE__ */ __name(async (input, contex
1226
1324
  body = JSON.stringify((0, import_smithy_client._json)(input));
1227
1325
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1228
1326
  }, "se_ImportWorkspaceImageCommand");
1327
+ var se_ListAccountLinksCommand = /* @__PURE__ */ __name(async (input, context) => {
1328
+ const headers = sharedHeaders("ListAccountLinks");
1329
+ let body;
1330
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1331
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1332
+ }, "se_ListAccountLinksCommand");
1229
1333
  var se_ListAvailableManagementCidrRangesCommand = /* @__PURE__ */ __name(async (input, context) => {
1230
1334
  const headers = sharedHeaders("ListAvailableManagementCidrRanges");
1231
1335
  let body;
@@ -1310,6 +1414,12 @@ var se_RegisterWorkspaceDirectoryCommand = /* @__PURE__ */ __name(async (input,
1310
1414
  body = JSON.stringify((0, import_smithy_client._json)(input));
1311
1415
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1312
1416
  }, "se_RegisterWorkspaceDirectoryCommand");
1417
+ var se_RejectAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
1418
+ const headers = sharedHeaders("RejectAccountLinkInvitation");
1419
+ let body;
1420
+ body = JSON.stringify((0, import_smithy_client._json)(input));
1421
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
1422
+ }, "se_RejectAccountLinkInvitationCommand");
1313
1423
  var se_RestoreWorkspaceCommand = /* @__PURE__ */ __name(async (input, context) => {
1314
1424
  const headers = sharedHeaders("RestoreWorkspace");
1315
1425
  let body;
@@ -1370,6 +1480,19 @@ var se_UpdateWorkspaceImagePermissionCommand = /* @__PURE__ */ __name(async (inp
1370
1480
  body = JSON.stringify((0, import_smithy_client._json)(input));
1371
1481
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
1372
1482
  }, "se_UpdateWorkspaceImagePermissionCommand");
1483
+ var de_AcceptAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (output, context) => {
1484
+ if (output.statusCode >= 300) {
1485
+ return de_CommandError(output, context);
1486
+ }
1487
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1488
+ let contents = {};
1489
+ contents = (0, import_smithy_client._json)(data);
1490
+ const response = {
1491
+ $metadata: deserializeMetadata(output),
1492
+ ...contents
1493
+ };
1494
+ return response;
1495
+ }, "de_AcceptAccountLinkInvitationCommand");
1373
1496
  var de_AssociateConnectionAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
1374
1497
  if (output.statusCode >= 300) {
1375
1498
  return de_CommandError(output, context);
@@ -1435,6 +1558,19 @@ var de_CopyWorkspaceImageCommand = /* @__PURE__ */ __name(async (output, context
1435
1558
  };
1436
1559
  return response;
1437
1560
  }, "de_CopyWorkspaceImageCommand");
1561
+ var de_CreateAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (output, context) => {
1562
+ if (output.statusCode >= 300) {
1563
+ return de_CommandError(output, context);
1564
+ }
1565
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1566
+ let contents = {};
1567
+ contents = (0, import_smithy_client._json)(data);
1568
+ const response = {
1569
+ $metadata: deserializeMetadata(output),
1570
+ ...contents
1571
+ };
1572
+ return response;
1573
+ }, "de_CreateAccountLinkInvitationCommand");
1438
1574
  var de_CreateConnectClientAddInCommand = /* @__PURE__ */ __name(async (output, context) => {
1439
1575
  if (output.statusCode >= 300) {
1440
1576
  return de_CommandError(output, context);
@@ -1552,6 +1688,19 @@ var de_CreateWorkspacesCommand = /* @__PURE__ */ __name(async (output, context)
1552
1688
  };
1553
1689
  return response;
1554
1690
  }, "de_CreateWorkspacesCommand");
1691
+ var de_DeleteAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (output, context) => {
1692
+ if (output.statusCode >= 300) {
1693
+ return de_CommandError(output, context);
1694
+ }
1695
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
1696
+ let contents = {};
1697
+ contents = (0, import_smithy_client._json)(data);
1698
+ const response = {
1699
+ $metadata: deserializeMetadata(output),
1700
+ ...contents
1701
+ };
1702
+ return response;
1703
+ }, "de_DeleteAccountLinkInvitationCommand");
1555
1704
  var de_DeleteClientBrandingCommand = /* @__PURE__ */ __name(async (output, context) => {
1556
1705
  if (output.statusCode >= 300) {
1557
1706
  return de_CommandError(output, context);
@@ -1981,6 +2130,19 @@ var de_DisassociateWorkspaceApplicationCommand = /* @__PURE__ */ __name(async (o
1981
2130
  };
1982
2131
  return response;
1983
2132
  }, "de_DisassociateWorkspaceApplicationCommand");
2133
+ var de_GetAccountLinkCommand = /* @__PURE__ */ __name(async (output, context) => {
2134
+ if (output.statusCode >= 300) {
2135
+ return de_CommandError(output, context);
2136
+ }
2137
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2138
+ let contents = {};
2139
+ contents = (0, import_smithy_client._json)(data);
2140
+ const response = {
2141
+ $metadata: deserializeMetadata(output),
2142
+ ...contents
2143
+ };
2144
+ return response;
2145
+ }, "de_GetAccountLinkCommand");
1984
2146
  var de_ImportClientBrandingCommand = /* @__PURE__ */ __name(async (output, context) => {
1985
2147
  if (output.statusCode >= 300) {
1986
2148
  return de_CommandError(output, context);
@@ -2007,6 +2169,19 @@ var de_ImportWorkspaceImageCommand = /* @__PURE__ */ __name(async (output, conte
2007
2169
  };
2008
2170
  return response;
2009
2171
  }, "de_ImportWorkspaceImageCommand");
2172
+ var de_ListAccountLinksCommand = /* @__PURE__ */ __name(async (output, context) => {
2173
+ if (output.statusCode >= 300) {
2174
+ return de_CommandError(output, context);
2175
+ }
2176
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2177
+ let contents = {};
2178
+ contents = (0, import_smithy_client._json)(data);
2179
+ const response = {
2180
+ $metadata: deserializeMetadata(output),
2181
+ ...contents
2182
+ };
2183
+ return response;
2184
+ }, "de_ListAccountLinksCommand");
2010
2185
  var de_ListAvailableManagementCidrRangesCommand = /* @__PURE__ */ __name(async (output, context) => {
2011
2186
  if (output.statusCode >= 300) {
2012
2187
  return de_CommandError(output, context);
@@ -2189,6 +2364,19 @@ var de_RegisterWorkspaceDirectoryCommand = /* @__PURE__ */ __name(async (output,
2189
2364
  };
2190
2365
  return response;
2191
2366
  }, "de_RegisterWorkspaceDirectoryCommand");
2367
+ var de_RejectAccountLinkInvitationCommand = /* @__PURE__ */ __name(async (output, context) => {
2368
+ if (output.statusCode >= 300) {
2369
+ return de_CommandError(output, context);
2370
+ }
2371
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
2372
+ let contents = {};
2373
+ contents = (0, import_smithy_client._json)(data);
2374
+ const response = {
2375
+ $metadata: deserializeMetadata(output),
2376
+ ...contents
2377
+ };
2378
+ return response;
2379
+ }, "de_RejectAccountLinkInvitationCommand");
2192
2380
  var de_RestoreWorkspaceCommand = /* @__PURE__ */ __name(async (output, context) => {
2193
2381
  if (output.statusCode >= 300) {
2194
2382
  return de_CommandError(output, context);
@@ -2329,6 +2517,18 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
2329
2517
  case "AccessDeniedException":
2330
2518
  case "com.amazonaws.workspaces#AccessDeniedException":
2331
2519
  throw await de_AccessDeniedExceptionRes(parsedOutput, context);
2520
+ case "ConflictException":
2521
+ case "com.amazonaws.workspaces#ConflictException":
2522
+ throw await de_ConflictExceptionRes(parsedOutput, context);
2523
+ case "InternalServerException":
2524
+ case "com.amazonaws.workspaces#InternalServerException":
2525
+ throw await de_InternalServerExceptionRes(parsedOutput, context);
2526
+ case "ResourceNotFoundException":
2527
+ case "com.amazonaws.workspaces#ResourceNotFoundException":
2528
+ throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
2529
+ case "ValidationException":
2530
+ case "com.amazonaws.workspaces#ValidationException":
2531
+ throw await de_ValidationExceptionRes(parsedOutput, context);
2332
2532
  case "InvalidParameterValuesException":
2333
2533
  case "com.amazonaws.workspaces#InvalidParameterValuesException":
2334
2534
  throw await de_InvalidParameterValuesExceptionRes(parsedOutput, context);
@@ -2341,9 +2541,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
2341
2541
  case "ResourceAssociatedException":
2342
2542
  case "com.amazonaws.workspaces#ResourceAssociatedException":
2343
2543
  throw await de_ResourceAssociatedExceptionRes(parsedOutput, context);
2344
- case "ResourceNotFoundException":
2345
- case "com.amazonaws.workspaces#ResourceNotFoundException":
2346
- throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
2347
2544
  case "ResourceLimitExceededException":
2348
2545
  case "com.amazonaws.workspaces#ResourceLimitExceededException":
2349
2546
  throw await de_ResourceLimitExceededExceptionRes(parsedOutput, context);
@@ -2419,6 +2616,15 @@ var de_ComputeNotCompatibleExceptionRes = /* @__PURE__ */ __name(async (parsedOu
2419
2616
  });
2420
2617
  return (0, import_smithy_client.decorateServiceException)(exception, body);
2421
2618
  }, "de_ComputeNotCompatibleExceptionRes");
2619
+ var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2620
+ const body = parsedOutput.body;
2621
+ const deserialized = (0, import_smithy_client._json)(body);
2622
+ const exception = new ConflictException({
2623
+ $metadata: deserializeMetadata(parsedOutput),
2624
+ ...deserialized
2625
+ });
2626
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2627
+ }, "de_ConflictExceptionRes");
2422
2628
  var de_IncompatibleApplicationsExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2423
2629
  const body = parsedOutput.body;
2424
2630
  const deserialized = (0, import_smithy_client._json)(body);
@@ -2428,6 +2634,15 @@ var de_IncompatibleApplicationsExceptionRes = /* @__PURE__ */ __name(async (pars
2428
2634
  });
2429
2635
  return (0, import_smithy_client.decorateServiceException)(exception, body);
2430
2636
  }, "de_IncompatibleApplicationsExceptionRes");
2637
+ var de_InternalServerExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2638
+ const body = parsedOutput.body;
2639
+ const deserialized = (0, import_smithy_client._json)(body);
2640
+ const exception = new InternalServerException({
2641
+ $metadata: deserializeMetadata(parsedOutput),
2642
+ ...deserialized
2643
+ });
2644
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2645
+ }, "de_InternalServerExceptionRes");
2431
2646
  var de_InvalidParameterValuesExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2432
2647
  const body = parsedOutput.body;
2433
2648
  const deserialized = (0, import_smithy_client._json)(body);
@@ -2554,6 +2769,15 @@ var de_UnsupportedWorkspaceConfigurationExceptionRes = /* @__PURE__ */ __name(as
2554
2769
  });
2555
2770
  return (0, import_smithy_client.decorateServiceException)(exception, body);
2556
2771
  }, "de_UnsupportedWorkspaceConfigurationExceptionRes");
2772
+ var de_ValidationExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2773
+ const body = parsedOutput.body;
2774
+ const deserialized = (0, import_smithy_client._json)(body);
2775
+ const exception = new ValidationException({
2776
+ $metadata: deserializeMetadata(parsedOutput),
2777
+ ...deserialized
2778
+ });
2779
+ return (0, import_smithy_client.decorateServiceException)(exception, body);
2780
+ }, "de_ValidationExceptionRes");
2557
2781
  var de_WorkspacesDefaultRoleNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
2558
2782
  const body = parsedOutput.body;
2559
2783
  const deserialized = (0, import_smithy_client._json)(body);
@@ -2953,7 +3177,24 @@ function sharedHeaders(operation) {
2953
3177
  }
2954
3178
  __name(sharedHeaders, "sharedHeaders");
2955
3179
 
3180
+ // src/commands/AcceptAccountLinkInvitationCommand.ts
3181
+ var _AcceptAccountLinkInvitationCommand = class _AcceptAccountLinkInvitationCommand extends import_smithy_client.Command.classBuilder().ep({
3182
+ ...commonParams
3183
+ }).m(function(Command, cs, config, o) {
3184
+ return [
3185
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3186
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3187
+ ];
3188
+ }).s("WorkspacesService", "AcceptAccountLinkInvitation", {}).n("WorkSpacesClient", "AcceptAccountLinkInvitationCommand").f(void 0, void 0).ser(se_AcceptAccountLinkInvitationCommand).de(de_AcceptAccountLinkInvitationCommand).build() {
3189
+ };
3190
+ __name(_AcceptAccountLinkInvitationCommand, "AcceptAccountLinkInvitationCommand");
3191
+ var AcceptAccountLinkInvitationCommand = _AcceptAccountLinkInvitationCommand;
3192
+
2956
3193
  // src/commands/AssociateConnectionAliasCommand.ts
3194
+
3195
+
3196
+
3197
+
2957
3198
  var _AssociateConnectionAliasCommand = class _AssociateConnectionAliasCommand extends import_smithy_client.Command.classBuilder().ep({
2958
3199
  ...commonParams
2959
3200
  }).m(function(Command, cs, config, o) {
@@ -3034,6 +3275,23 @@ var _CopyWorkspaceImageCommand = class _CopyWorkspaceImageCommand extends import
3034
3275
  __name(_CopyWorkspaceImageCommand, "CopyWorkspaceImageCommand");
3035
3276
  var CopyWorkspaceImageCommand = _CopyWorkspaceImageCommand;
3036
3277
 
3278
+ // src/commands/CreateAccountLinkInvitationCommand.ts
3279
+
3280
+
3281
+
3282
+
3283
+ var _CreateAccountLinkInvitationCommand = class _CreateAccountLinkInvitationCommand extends import_smithy_client.Command.classBuilder().ep({
3284
+ ...commonParams
3285
+ }).m(function(Command, cs, config, o) {
3286
+ return [
3287
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3288
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3289
+ ];
3290
+ }).s("WorkspacesService", "CreateAccountLinkInvitation", {}).n("WorkSpacesClient", "CreateAccountLinkInvitationCommand").f(void 0, void 0).ser(se_CreateAccountLinkInvitationCommand).de(de_CreateAccountLinkInvitationCommand).build() {
3291
+ };
3292
+ __name(_CreateAccountLinkInvitationCommand, "CreateAccountLinkInvitationCommand");
3293
+ var CreateAccountLinkInvitationCommand = _CreateAccountLinkInvitationCommand;
3294
+
3037
3295
  // src/commands/CreateConnectClientAddInCommand.ts
3038
3296
 
3039
3297
 
@@ -3187,6 +3445,23 @@ var _CreateWorkspacesCommand = class _CreateWorkspacesCommand extends import_smi
3187
3445
  __name(_CreateWorkspacesCommand, "CreateWorkspacesCommand");
3188
3446
  var CreateWorkspacesCommand = _CreateWorkspacesCommand;
3189
3447
 
3448
+ // src/commands/DeleteAccountLinkInvitationCommand.ts
3449
+
3450
+
3451
+
3452
+
3453
+ var _DeleteAccountLinkInvitationCommand = class _DeleteAccountLinkInvitationCommand extends import_smithy_client.Command.classBuilder().ep({
3454
+ ...commonParams
3455
+ }).m(function(Command, cs, config, o) {
3456
+ return [
3457
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3458
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3459
+ ];
3460
+ }).s("WorkspacesService", "DeleteAccountLinkInvitation", {}).n("WorkSpacesClient", "DeleteAccountLinkInvitationCommand").f(void 0, void 0).ser(se_DeleteAccountLinkInvitationCommand).de(de_DeleteAccountLinkInvitationCommand).build() {
3461
+ };
3462
+ __name(_DeleteAccountLinkInvitationCommand, "DeleteAccountLinkInvitationCommand");
3463
+ var DeleteAccountLinkInvitationCommand = _DeleteAccountLinkInvitationCommand;
3464
+
3190
3465
  // src/commands/DeleteClientBrandingCommand.ts
3191
3466
 
3192
3467
 
@@ -3748,6 +4023,23 @@ var _DisassociateWorkspaceApplicationCommand = class _DisassociateWorkspaceAppli
3748
4023
  __name(_DisassociateWorkspaceApplicationCommand, "DisassociateWorkspaceApplicationCommand");
3749
4024
  var DisassociateWorkspaceApplicationCommand = _DisassociateWorkspaceApplicationCommand;
3750
4025
 
4026
+ // src/commands/GetAccountLinkCommand.ts
4027
+
4028
+
4029
+
4030
+
4031
+ var _GetAccountLinkCommand = class _GetAccountLinkCommand extends import_smithy_client.Command.classBuilder().ep({
4032
+ ...commonParams
4033
+ }).m(function(Command, cs, config, o) {
4034
+ return [
4035
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4036
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4037
+ ];
4038
+ }).s("WorkspacesService", "GetAccountLink", {}).n("WorkSpacesClient", "GetAccountLinkCommand").f(void 0, void 0).ser(se_GetAccountLinkCommand).de(de_GetAccountLinkCommand).build() {
4039
+ };
4040
+ __name(_GetAccountLinkCommand, "GetAccountLinkCommand");
4041
+ var GetAccountLinkCommand = _GetAccountLinkCommand;
4042
+
3751
4043
  // src/commands/ImportClientBrandingCommand.ts
3752
4044
 
3753
4045
 
@@ -3782,6 +4074,23 @@ var _ImportWorkspaceImageCommand = class _ImportWorkspaceImageCommand extends im
3782
4074
  __name(_ImportWorkspaceImageCommand, "ImportWorkspaceImageCommand");
3783
4075
  var ImportWorkspaceImageCommand = _ImportWorkspaceImageCommand;
3784
4076
 
4077
+ // src/commands/ListAccountLinksCommand.ts
4078
+
4079
+
4080
+
4081
+
4082
+ var _ListAccountLinksCommand = class _ListAccountLinksCommand extends import_smithy_client.Command.classBuilder().ep({
4083
+ ...commonParams
4084
+ }).m(function(Command, cs, config, o) {
4085
+ return [
4086
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4087
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4088
+ ];
4089
+ }).s("WorkspacesService", "ListAccountLinks", {}).n("WorkSpacesClient", "ListAccountLinksCommand").f(void 0, void 0).ser(se_ListAccountLinksCommand).de(de_ListAccountLinksCommand).build() {
4090
+ };
4091
+ __name(_ListAccountLinksCommand, "ListAccountLinksCommand");
4092
+ var ListAccountLinksCommand = _ListAccountLinksCommand;
4093
+
3785
4094
  // src/commands/ListAvailableManagementCidrRangesCommand.ts
3786
4095
 
3787
4096
 
@@ -4020,6 +4329,23 @@ var _RegisterWorkspaceDirectoryCommand = class _RegisterWorkspaceDirectoryComman
4020
4329
  __name(_RegisterWorkspaceDirectoryCommand, "RegisterWorkspaceDirectoryCommand");
4021
4330
  var RegisterWorkspaceDirectoryCommand = _RegisterWorkspaceDirectoryCommand;
4022
4331
 
4332
+ // src/commands/RejectAccountLinkInvitationCommand.ts
4333
+
4334
+
4335
+
4336
+
4337
+ var _RejectAccountLinkInvitationCommand = class _RejectAccountLinkInvitationCommand extends import_smithy_client.Command.classBuilder().ep({
4338
+ ...commonParams
4339
+ }).m(function(Command, cs, config, o) {
4340
+ return [
4341
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
4342
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
4343
+ ];
4344
+ }).s("WorkspacesService", "RejectAccountLinkInvitation", {}).n("WorkSpacesClient", "RejectAccountLinkInvitationCommand").f(void 0, void 0).ser(se_RejectAccountLinkInvitationCommand).de(de_RejectAccountLinkInvitationCommand).build() {
4345
+ };
4346
+ __name(_RejectAccountLinkInvitationCommand, "RejectAccountLinkInvitationCommand");
4347
+ var RejectAccountLinkInvitationCommand = _RejectAccountLinkInvitationCommand;
4348
+
4023
4349
  // src/commands/RestoreWorkspaceCommand.ts
4024
4350
 
4025
4351
 
@@ -4192,11 +4518,13 @@ var UpdateWorkspaceImagePermissionCommand = _UpdateWorkspaceImagePermissionComma
4192
4518
 
4193
4519
  // src/WorkSpaces.ts
4194
4520
  var commands = {
4521
+ AcceptAccountLinkInvitationCommand,
4195
4522
  AssociateConnectionAliasCommand,
4196
4523
  AssociateIpGroupsCommand,
4197
4524
  AssociateWorkspaceApplicationCommand,
4198
4525
  AuthorizeIpRulesCommand,
4199
4526
  CopyWorkspaceImageCommand,
4527
+ CreateAccountLinkInvitationCommand,
4200
4528
  CreateConnectClientAddInCommand,
4201
4529
  CreateConnectionAliasCommand,
4202
4530
  CreateIpGroupCommand,
@@ -4206,6 +4534,7 @@ var commands = {
4206
4534
  CreateWorkspaceBundleCommand,
4207
4535
  CreateWorkspaceImageCommand,
4208
4536
  CreateWorkspacesCommand,
4537
+ DeleteAccountLinkInvitationCommand,
4209
4538
  DeleteClientBrandingCommand,
4210
4539
  DeleteConnectClientAddInCommand,
4211
4540
  DeleteConnectionAliasCommand,
@@ -4239,8 +4568,10 @@ var commands = {
4239
4568
  DisassociateConnectionAliasCommand,
4240
4569
  DisassociateIpGroupsCommand,
4241
4570
  DisassociateWorkspaceApplicationCommand,
4571
+ GetAccountLinkCommand,
4242
4572
  ImportClientBrandingCommand,
4243
4573
  ImportWorkspaceImageCommand,
4574
+ ListAccountLinksCommand,
4244
4575
  ListAvailableManagementCidrRangesCommand,
4245
4576
  MigrateWorkspaceCommand,
4246
4577
  ModifyAccountCommand,
@@ -4255,6 +4586,7 @@ var commands = {
4255
4586
  RebootWorkspacesCommand,
4256
4587
  RebuildWorkspacesCommand,
4257
4588
  RegisterWorkspaceDirectoryCommand,
4589
+ RejectAccountLinkInvitationCommand,
4258
4590
  RestoreWorkspaceCommand,
4259
4591
  RevokeIpRulesCommand,
4260
4592
  StartWorkspacesCommand,
@@ -4291,6 +4623,10 @@ var paginateDescribeWorkspaceDirectories = (0, import_core.createPaginator)(Work
4291
4623
  // src/pagination/DescribeWorkspacesPaginator.ts
4292
4624
 
4293
4625
  var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClient, DescribeWorkspacesCommand, "NextToken", "NextToken", "Limit");
4626
+
4627
+ // src/pagination/ListAccountLinksPaginator.ts
4628
+
4629
+ var paginateListAccountLinks = (0, import_core.createPaginator)(WorkSpacesClient, ListAccountLinksCommand, "NextToken", "NextToken", "MaxResults");
4294
4630
  // Annotate the CommonJS export names for ESM import in node:
4295
4631
 
4296
4632
  0 && (module.exports = {
@@ -4299,11 +4635,13 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4299
4635
  WorkSpacesClient,
4300
4636
  WorkSpaces,
4301
4637
  $Command,
4638
+ AcceptAccountLinkInvitationCommand,
4302
4639
  AssociateConnectionAliasCommand,
4303
4640
  AssociateIpGroupsCommand,
4304
4641
  AssociateWorkspaceApplicationCommand,
4305
4642
  AuthorizeIpRulesCommand,
4306
4643
  CopyWorkspaceImageCommand,
4644
+ CreateAccountLinkInvitationCommand,
4307
4645
  CreateConnectClientAddInCommand,
4308
4646
  CreateConnectionAliasCommand,
4309
4647
  CreateIpGroupCommand,
@@ -4313,6 +4651,7 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4313
4651
  CreateWorkspaceBundleCommand,
4314
4652
  CreateWorkspaceImageCommand,
4315
4653
  CreateWorkspacesCommand,
4654
+ DeleteAccountLinkInvitationCommand,
4316
4655
  DeleteClientBrandingCommand,
4317
4656
  DeleteConnectClientAddInCommand,
4318
4657
  DeleteConnectionAliasCommand,
@@ -4346,8 +4685,10 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4346
4685
  DisassociateConnectionAliasCommand,
4347
4686
  DisassociateIpGroupsCommand,
4348
4687
  DisassociateWorkspaceApplicationCommand,
4688
+ GetAccountLinkCommand,
4349
4689
  ImportClientBrandingCommand,
4350
4690
  ImportWorkspaceImageCommand,
4691
+ ListAccountLinksCommand,
4351
4692
  ListAvailableManagementCidrRangesCommand,
4352
4693
  MigrateWorkspaceCommand,
4353
4694
  ModifyAccountCommand,
@@ -4362,6 +4703,7 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4362
4703
  RebootWorkspacesCommand,
4363
4704
  RebuildWorkspacesCommand,
4364
4705
  RegisterWorkspaceDirectoryCommand,
4706
+ RejectAccountLinkInvitationCommand,
4365
4707
  RestoreWorkspaceCommand,
4366
4708
  RevokeIpRulesCommand,
4367
4709
  StartWorkspacesCommand,
@@ -4377,7 +4719,13 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4377
4719
  paginateDescribeWorkspaceBundles,
4378
4720
  paginateDescribeWorkspaceDirectories,
4379
4721
  paginateDescribeWorkspaces,
4722
+ paginateListAccountLinks,
4723
+ AccountLinkStatusEnum,
4380
4724
  AccessDeniedException,
4725
+ ConflictException,
4726
+ InternalServerException,
4727
+ ResourceNotFoundException,
4728
+ ValidationException,
4381
4729
  AccessPropertyValue,
4382
4730
  DedicatedTenancySupportResultEnum,
4383
4731
  DedicatedTenancyModificationStateEnum,
@@ -4390,7 +4738,6 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4390
4738
  InvalidResourceStateException,
4391
4739
  OperationNotSupportedException,
4392
4740
  ResourceAssociatedException,
4393
- ResourceNotFoundException,
4394
4741
  ResourceLimitExceededException,
4395
4742
  WorkSpaceAssociatedResourceType,
4396
4743
  ComputeNotCompatibleException,
@@ -4422,6 +4769,7 @@ var paginateDescribeWorkspaces = (0, import_core.createPaginator)(WorkSpacesClie
4422
4769
  ModificationResourceEnum,
4423
4770
  ModificationStateEnum,
4424
4771
  StandbyWorkspaceRelationshipType,
4772
+ DedicatedTenancyAccountType,
4425
4773
  DedicatedTenancySupportEnum,
4426
4774
  DeletableCertificateBasedAuthProperty,
4427
4775
  DeletableSamlProperty,