@aws-sdk/client-workspaces-web 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/WorkSpacesWebServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +123 -3
- package/dist-cjs/protocols/Aws_restJson1.js +477 -1885
- package/dist-es/index.js +1 -0
- package/dist-es/models/WorkSpacesWebServiceException.js +12 -0
- package/dist-es/models/models_0.js +113 -1
- package/dist-es/protocols/Aws_restJson1.js +1041 -2070
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/WorkSpacesWebServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -33
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/WorkSpacesWebServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -33
- package/package.json +25 -25
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 WorkSpacesWebServiceException = (function (_super) {
|
|
4
|
+
__extends(WorkSpacesWebServiceException, _super);
|
|
5
|
+
function WorkSpacesWebServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, WorkSpacesWebServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return WorkSpacesWebServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { WorkSpacesWebServiceException };
|
|
@@ -1,4 +1,17 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { WorkSpacesWebServiceException as __BaseException } from "./WorkSpacesWebServiceException";
|
|
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 AssociateBrowserSettingsRequest;
|
|
3
16
|
(function (AssociateBrowserSettingsRequest) {
|
|
4
17
|
AssociateBrowserSettingsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +20,62 @@ export var AssociateBrowserSettingsResponse;
|
|
|
7
20
|
(function (AssociateBrowserSettingsResponse) {
|
|
8
21
|
AssociateBrowserSettingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
22
|
})(AssociateBrowserSettingsResponse || (AssociateBrowserSettingsResponse = {}));
|
|
23
|
+
var ConflictException = (function (_super) {
|
|
24
|
+
__extends(ConflictException, _super);
|
|
25
|
+
function ConflictException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
27
|
+
_this.name = "ConflictException";
|
|
28
|
+
_this.$fault = "client";
|
|
29
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
30
|
+
_this.resourceId = opts.resourceId;
|
|
31
|
+
_this.resourceType = opts.resourceType;
|
|
32
|
+
return _this;
|
|
33
|
+
}
|
|
34
|
+
return ConflictException;
|
|
35
|
+
}(__BaseException));
|
|
36
|
+
export { ConflictException };
|
|
37
|
+
var InternalServerException = (function (_super) {
|
|
38
|
+
__extends(InternalServerException, _super);
|
|
39
|
+
function InternalServerException(opts) {
|
|
40
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
41
|
+
_this.name = "InternalServerException";
|
|
42
|
+
_this.$fault = "server";
|
|
43
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
44
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
45
|
+
return _this;
|
|
46
|
+
}
|
|
47
|
+
return InternalServerException;
|
|
48
|
+
}(__BaseException));
|
|
49
|
+
export { InternalServerException };
|
|
50
|
+
var ResourceNotFoundException = (function (_super) {
|
|
51
|
+
__extends(ResourceNotFoundException, _super);
|
|
52
|
+
function ResourceNotFoundException(opts) {
|
|
53
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
54
|
+
_this.name = "ResourceNotFoundException";
|
|
55
|
+
_this.$fault = "client";
|
|
56
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
57
|
+
_this.resourceId = opts.resourceId;
|
|
58
|
+
_this.resourceType = opts.resourceType;
|
|
59
|
+
return _this;
|
|
60
|
+
}
|
|
61
|
+
return ResourceNotFoundException;
|
|
62
|
+
}(__BaseException));
|
|
63
|
+
export { ResourceNotFoundException };
|
|
64
|
+
var ThrottlingException = (function (_super) {
|
|
65
|
+
__extends(ThrottlingException, _super);
|
|
66
|
+
function ThrottlingException(opts) {
|
|
67
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
68
|
+
_this.name = "ThrottlingException";
|
|
69
|
+
_this.$fault = "client";
|
|
70
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
71
|
+
_this.serviceCode = opts.serviceCode;
|
|
72
|
+
_this.quotaCode = opts.quotaCode;
|
|
73
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
return ThrottlingException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { ThrottlingException };
|
|
10
79
|
export var ValidationExceptionField;
|
|
11
80
|
(function (ValidationExceptionField) {
|
|
12
81
|
ValidationExceptionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -18,6 +87,20 @@ export var ValidationExceptionReason;
|
|
|
18
87
|
ValidationExceptionReason["OTHER"] = "other";
|
|
19
88
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "unknownOperation";
|
|
20
89
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
90
|
+
var ValidationException = (function (_super) {
|
|
91
|
+
__extends(ValidationException, _super);
|
|
92
|
+
function ValidationException(opts) {
|
|
93
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
94
|
+
_this.name = "ValidationException";
|
|
95
|
+
_this.$fault = "client";
|
|
96
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
97
|
+
_this.reason = opts.reason;
|
|
98
|
+
_this.fieldList = opts.fieldList;
|
|
99
|
+
return _this;
|
|
100
|
+
}
|
|
101
|
+
return ValidationException;
|
|
102
|
+
}(__BaseException));
|
|
103
|
+
export { ValidationException };
|
|
21
104
|
export var AssociateNetworkSettingsRequest;
|
|
22
105
|
(function (AssociateNetworkSettingsRequest) {
|
|
23
106
|
AssociateNetworkSettingsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -54,6 +137,22 @@ export var CreateBrowserSettingsResponse;
|
|
|
54
137
|
(function (CreateBrowserSettingsResponse) {
|
|
55
138
|
CreateBrowserSettingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
56
139
|
})(CreateBrowserSettingsResponse || (CreateBrowserSettingsResponse = {}));
|
|
140
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
141
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
142
|
+
function ServiceQuotaExceededException(opts) {
|
|
143
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
144
|
+
_this.name = "ServiceQuotaExceededException";
|
|
145
|
+
_this.$fault = "client";
|
|
146
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
147
|
+
_this.resourceId = opts.resourceId;
|
|
148
|
+
_this.resourceType = opts.resourceType;
|
|
149
|
+
_this.serviceCode = opts.serviceCode;
|
|
150
|
+
_this.quotaCode = opts.quotaCode;
|
|
151
|
+
return _this;
|
|
152
|
+
}
|
|
153
|
+
return ServiceQuotaExceededException;
|
|
154
|
+
}(__BaseException));
|
|
155
|
+
export { ServiceQuotaExceededException };
|
|
57
156
|
export var IdentityProviderType;
|
|
58
157
|
(function (IdentityProviderType) {
|
|
59
158
|
IdentityProviderType["Facebook"] = "Facebook";
|
|
@@ -394,6 +493,19 @@ export var TagResourceResponse;
|
|
|
394
493
|
(function (TagResourceResponse) {
|
|
395
494
|
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
396
495
|
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
496
|
+
var TooManyTagsException = (function (_super) {
|
|
497
|
+
__extends(TooManyTagsException, _super);
|
|
498
|
+
function TooManyTagsException(opts) {
|
|
499
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
500
|
+
_this.name = "TooManyTagsException";
|
|
501
|
+
_this.$fault = "client";
|
|
502
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
503
|
+
_this.resourceName = opts.resourceName;
|
|
504
|
+
return _this;
|
|
505
|
+
}
|
|
506
|
+
return TooManyTagsException;
|
|
507
|
+
}(__BaseException));
|
|
508
|
+
export { TooManyTagsException };
|
|
397
509
|
export var UntagResourceRequest;
|
|
398
510
|
(function (UntagResourceRequest) {
|
|
399
511
|
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|