@aws-sdk/client-workspaces 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/WorkSpacesServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +189 -4
- package/dist-cjs/protocols/Aws_json1_1.js +534 -1901
- package/dist-es/index.js +1 -0
- package/dist-es/models/WorkSpacesServiceException.js +12 -0
- package/dist-es/models/models_0.js +172 -1
- package/dist-es/protocols/Aws_json1_1.js +1183 -2071
- package/dist-types/WorkSpacesClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/WorkSpacesServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +96 -65
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/WorkSpacesClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/WorkSpacesServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +70 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var WorkSpacesServiceException = (function (_super) {
|
|
4
|
+
__extends(WorkSpacesServiceException, _super);
|
|
5
|
+
function WorkSpacesServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, WorkSpacesServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return WorkSpacesServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { WorkSpacesServiceException };
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
2
15
|
export var AccessPropertyValue;
|
|
3
16
|
(function (AccessPropertyValue) {
|
|
4
17
|
AccessPropertyValue["ALLOW"] = "ALLOW";
|
|
@@ -32,6 +45,67 @@ export var AssociateConnectionAliasResult;
|
|
|
32
45
|
(function (AssociateConnectionAliasResult) {
|
|
33
46
|
AssociateConnectionAliasResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
34
47
|
})(AssociateConnectionAliasResult || (AssociateConnectionAliasResult = {}));
|
|
48
|
+
var InvalidParameterValuesException = (function (_super) {
|
|
49
|
+
__extends(InvalidParameterValuesException, _super);
|
|
50
|
+
function InvalidParameterValuesException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterValuesException", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "InvalidParameterValuesException";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(_this, InvalidParameterValuesException.prototype);
|
|
55
|
+
return _this;
|
|
56
|
+
}
|
|
57
|
+
return InvalidParameterValuesException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { InvalidParameterValuesException };
|
|
60
|
+
var InvalidResourceStateException = (function (_super) {
|
|
61
|
+
__extends(InvalidResourceStateException, _super);
|
|
62
|
+
function InvalidResourceStateException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "InvalidResourceStateException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "InvalidResourceStateException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, InvalidResourceStateException.prototype);
|
|
67
|
+
return _this;
|
|
68
|
+
}
|
|
69
|
+
return InvalidResourceStateException;
|
|
70
|
+
}(__BaseException));
|
|
71
|
+
export { InvalidResourceStateException };
|
|
72
|
+
var OperationNotSupportedException = (function (_super) {
|
|
73
|
+
__extends(OperationNotSupportedException, _super);
|
|
74
|
+
function OperationNotSupportedException(opts) {
|
|
75
|
+
var _this = _super.call(this, __assign({ name: "OperationNotSupportedException", $fault: "client" }, opts)) || this;
|
|
76
|
+
_this.name = "OperationNotSupportedException";
|
|
77
|
+
_this.$fault = "client";
|
|
78
|
+
Object.setPrototypeOf(_this, OperationNotSupportedException.prototype);
|
|
79
|
+
return _this;
|
|
80
|
+
}
|
|
81
|
+
return OperationNotSupportedException;
|
|
82
|
+
}(__BaseException));
|
|
83
|
+
export { OperationNotSupportedException };
|
|
84
|
+
var ResourceAssociatedException = (function (_super) {
|
|
85
|
+
__extends(ResourceAssociatedException, _super);
|
|
86
|
+
function ResourceAssociatedException(opts) {
|
|
87
|
+
var _this = _super.call(this, __assign({ name: "ResourceAssociatedException", $fault: "client" }, opts)) || this;
|
|
88
|
+
_this.name = "ResourceAssociatedException";
|
|
89
|
+
_this.$fault = "client";
|
|
90
|
+
Object.setPrototypeOf(_this, ResourceAssociatedException.prototype);
|
|
91
|
+
return _this;
|
|
92
|
+
}
|
|
93
|
+
return ResourceAssociatedException;
|
|
94
|
+
}(__BaseException));
|
|
95
|
+
export { ResourceAssociatedException };
|
|
96
|
+
var ResourceNotFoundException = (function (_super) {
|
|
97
|
+
__extends(ResourceNotFoundException, _super);
|
|
98
|
+
function ResourceNotFoundException(opts) {
|
|
99
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
100
|
+
_this.name = "ResourceNotFoundException";
|
|
101
|
+
_this.$fault = "client";
|
|
102
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
103
|
+
_this.ResourceId = opts.ResourceId;
|
|
104
|
+
return _this;
|
|
105
|
+
}
|
|
106
|
+
return ResourceNotFoundException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { ResourceNotFoundException };
|
|
35
109
|
export var AssociateIpGroupsRequest;
|
|
36
110
|
(function (AssociateIpGroupsRequest) {
|
|
37
111
|
AssociateIpGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -40,6 +114,18 @@ export var AssociateIpGroupsResult;
|
|
|
40
114
|
(function (AssociateIpGroupsResult) {
|
|
41
115
|
AssociateIpGroupsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
42
116
|
})(AssociateIpGroupsResult || (AssociateIpGroupsResult = {}));
|
|
117
|
+
var ResourceLimitExceededException = (function (_super) {
|
|
118
|
+
__extends(ResourceLimitExceededException, _super);
|
|
119
|
+
function ResourceLimitExceededException(opts) {
|
|
120
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
121
|
+
_this.name = "ResourceLimitExceededException";
|
|
122
|
+
_this.$fault = "client";
|
|
123
|
+
Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
|
|
124
|
+
return _this;
|
|
125
|
+
}
|
|
126
|
+
return ResourceLimitExceededException;
|
|
127
|
+
}(__BaseException));
|
|
128
|
+
export { ResourceLimitExceededException };
|
|
43
129
|
export var AssociationStatus;
|
|
44
130
|
(function (AssociationStatus) {
|
|
45
131
|
AssociationStatus["ASSOCIATED_WITH_OWNER_ACCOUNT"] = "ASSOCIATED_WITH_OWNER_ACCOUNT";
|
|
@@ -139,6 +225,31 @@ export var CopyWorkspaceImageResult;
|
|
|
139
225
|
(function (CopyWorkspaceImageResult) {
|
|
140
226
|
CopyWorkspaceImageResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
227
|
})(CopyWorkspaceImageResult || (CopyWorkspaceImageResult = {}));
|
|
228
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
229
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
230
|
+
function ResourceAlreadyExistsException(opts) {
|
|
231
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
232
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
233
|
+
_this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
235
|
+
return _this;
|
|
236
|
+
}
|
|
237
|
+
return ResourceAlreadyExistsException;
|
|
238
|
+
}(__BaseException));
|
|
239
|
+
export { ResourceAlreadyExistsException };
|
|
240
|
+
var ResourceUnavailableException = (function (_super) {
|
|
241
|
+
__extends(ResourceUnavailableException, _super);
|
|
242
|
+
function ResourceUnavailableException(opts) {
|
|
243
|
+
var _this = _super.call(this, __assign({ name: "ResourceUnavailableException", $fault: "client" }, opts)) || this;
|
|
244
|
+
_this.name = "ResourceUnavailableException";
|
|
245
|
+
_this.$fault = "client";
|
|
246
|
+
Object.setPrototypeOf(_this, ResourceUnavailableException.prototype);
|
|
247
|
+
_this.ResourceId = opts.ResourceId;
|
|
248
|
+
return _this;
|
|
249
|
+
}
|
|
250
|
+
return ResourceUnavailableException;
|
|
251
|
+
}(__BaseException));
|
|
252
|
+
export { ResourceUnavailableException };
|
|
142
253
|
export var CreateConnectClientAddInRequest;
|
|
143
254
|
(function (CreateConnectClientAddInRequest) {
|
|
144
255
|
CreateConnectClientAddInRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -147,6 +258,18 @@ export var CreateConnectClientAddInResult;
|
|
|
147
258
|
(function (CreateConnectClientAddInResult) {
|
|
148
259
|
CreateConnectClientAddInResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
260
|
})(CreateConnectClientAddInResult || (CreateConnectClientAddInResult = {}));
|
|
261
|
+
var ResourceCreationFailedException = (function (_super) {
|
|
262
|
+
__extends(ResourceCreationFailedException, _super);
|
|
263
|
+
function ResourceCreationFailedException(opts) {
|
|
264
|
+
var _this = _super.call(this, __assign({ name: "ResourceCreationFailedException", $fault: "client" }, opts)) || this;
|
|
265
|
+
_this.name = "ResourceCreationFailedException";
|
|
266
|
+
_this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(_this, ResourceCreationFailedException.prototype);
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return ResourceCreationFailedException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { ResourceCreationFailedException };
|
|
150
273
|
export var CreateConnectionAliasRequest;
|
|
151
274
|
(function (CreateConnectionAliasRequest) {
|
|
152
275
|
CreateConnectionAliasRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -565,6 +688,18 @@ export var MigrateWorkspaceResult;
|
|
|
565
688
|
(function (MigrateWorkspaceResult) {
|
|
566
689
|
MigrateWorkspaceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
690
|
})(MigrateWorkspaceResult || (MigrateWorkspaceResult = {}));
|
|
691
|
+
var OperationInProgressException = (function (_super) {
|
|
692
|
+
__extends(OperationInProgressException, _super);
|
|
693
|
+
function OperationInProgressException(opts) {
|
|
694
|
+
var _this = _super.call(this, __assign({ name: "OperationInProgressException", $fault: "client" }, opts)) || this;
|
|
695
|
+
_this.name = "OperationInProgressException";
|
|
696
|
+
_this.$fault = "client";
|
|
697
|
+
Object.setPrototypeOf(_this, OperationInProgressException.prototype);
|
|
698
|
+
return _this;
|
|
699
|
+
}
|
|
700
|
+
return OperationInProgressException;
|
|
701
|
+
}(__BaseException));
|
|
702
|
+
export { OperationInProgressException };
|
|
568
703
|
export var ModifyAccountRequest;
|
|
569
704
|
(function (ModifyAccountRequest) {
|
|
570
705
|
ModifyAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -617,6 +752,18 @@ export var ModifyWorkspacePropertiesResult;
|
|
|
617
752
|
(function (ModifyWorkspacePropertiesResult) {
|
|
618
753
|
ModifyWorkspacePropertiesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
619
754
|
})(ModifyWorkspacePropertiesResult || (ModifyWorkspacePropertiesResult = {}));
|
|
755
|
+
var UnsupportedWorkspaceConfigurationException = (function (_super) {
|
|
756
|
+
__extends(UnsupportedWorkspaceConfigurationException, _super);
|
|
757
|
+
function UnsupportedWorkspaceConfigurationException(opts) {
|
|
758
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedWorkspaceConfigurationException", $fault: "client" }, opts)) || this;
|
|
759
|
+
_this.name = "UnsupportedWorkspaceConfigurationException";
|
|
760
|
+
_this.$fault = "client";
|
|
761
|
+
Object.setPrototypeOf(_this, UnsupportedWorkspaceConfigurationException.prototype);
|
|
762
|
+
return _this;
|
|
763
|
+
}
|
|
764
|
+
return UnsupportedWorkspaceConfigurationException;
|
|
765
|
+
}(__BaseException));
|
|
766
|
+
export { UnsupportedWorkspaceConfigurationException };
|
|
620
767
|
export var TargetWorkspaceState;
|
|
621
768
|
(function (TargetWorkspaceState) {
|
|
622
769
|
TargetWorkspaceState["ADMIN_MAINTENANCE"] = "ADMIN_MAINTENANCE";
|
|
@@ -662,6 +809,30 @@ export var RegisterWorkspaceDirectoryResult;
|
|
|
662
809
|
(function (RegisterWorkspaceDirectoryResult) {
|
|
663
810
|
RegisterWorkspaceDirectoryResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
811
|
})(RegisterWorkspaceDirectoryResult || (RegisterWorkspaceDirectoryResult = {}));
|
|
812
|
+
var UnsupportedNetworkConfigurationException = (function (_super) {
|
|
813
|
+
__extends(UnsupportedNetworkConfigurationException, _super);
|
|
814
|
+
function UnsupportedNetworkConfigurationException(opts) {
|
|
815
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedNetworkConfigurationException", $fault: "client" }, opts)) || this;
|
|
816
|
+
_this.name = "UnsupportedNetworkConfigurationException";
|
|
817
|
+
_this.$fault = "client";
|
|
818
|
+
Object.setPrototypeOf(_this, UnsupportedNetworkConfigurationException.prototype);
|
|
819
|
+
return _this;
|
|
820
|
+
}
|
|
821
|
+
return UnsupportedNetworkConfigurationException;
|
|
822
|
+
}(__BaseException));
|
|
823
|
+
export { UnsupportedNetworkConfigurationException };
|
|
824
|
+
var WorkspacesDefaultRoleNotFoundException = (function (_super) {
|
|
825
|
+
__extends(WorkspacesDefaultRoleNotFoundException, _super);
|
|
826
|
+
function WorkspacesDefaultRoleNotFoundException(opts) {
|
|
827
|
+
var _this = _super.call(this, __assign({ name: "WorkspacesDefaultRoleNotFoundException", $fault: "client" }, opts)) || this;
|
|
828
|
+
_this.name = "WorkspacesDefaultRoleNotFoundException";
|
|
829
|
+
_this.$fault = "client";
|
|
830
|
+
Object.setPrototypeOf(_this, WorkspacesDefaultRoleNotFoundException.prototype);
|
|
831
|
+
return _this;
|
|
832
|
+
}
|
|
833
|
+
return WorkspacesDefaultRoleNotFoundException;
|
|
834
|
+
}(__BaseException));
|
|
835
|
+
export { WorkspacesDefaultRoleNotFoundException };
|
|
665
836
|
export var RestoreWorkspaceRequest;
|
|
666
837
|
(function (RestoreWorkspaceRequest) {
|
|
667
838
|
RestoreWorkspaceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|