@aws-sdk/client-appstream 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/AppStreamServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +202 -4
- package/dist-cjs/protocols/Aws_json1_1.js +592 -2096
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppStreamServiceException.js +12 -0
- package/dist-es/models/models_0.js +184 -1
- package/dist-es/protocols/Aws_json1_1.js +1325 -2308
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppStreamServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +100 -43
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppStreamServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -43
- package/package.json +26 -26
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 AppStreamServiceException = (function (_super) {
|
|
4
|
+
__extends(AppStreamServiceException, _super);
|
|
5
|
+
function AppStreamServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, AppStreamServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return AppStreamServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { AppStreamServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
3
4
|
export var AccessEndpointType;
|
|
4
5
|
(function (AccessEndpointType) {
|
|
5
6
|
AccessEndpointType["STREAMING"] = "STREAMING";
|
|
@@ -64,6 +65,71 @@ export var AssociateApplicationFleetResult;
|
|
|
64
65
|
(function (AssociateApplicationFleetResult) {
|
|
65
66
|
AssociateApplicationFleetResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
66
67
|
})(AssociateApplicationFleetResult || (AssociateApplicationFleetResult = {}));
|
|
68
|
+
var ConcurrentModificationException = (function (_super) {
|
|
69
|
+
__extends(ConcurrentModificationException, _super);
|
|
70
|
+
function ConcurrentModificationException(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "ConcurrentModificationException";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
77
|
+
}
|
|
78
|
+
return ConcurrentModificationException;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { ConcurrentModificationException };
|
|
81
|
+
var InvalidParameterCombinationException = (function (_super) {
|
|
82
|
+
__extends(InvalidParameterCombinationException, _super);
|
|
83
|
+
function InvalidParameterCombinationException(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "InvalidParameterCombinationException";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
return _this;
|
|
90
|
+
}
|
|
91
|
+
return InvalidParameterCombinationException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { InvalidParameterCombinationException };
|
|
94
|
+
var LimitExceededException = (function (_super) {
|
|
95
|
+
__extends(LimitExceededException, _super);
|
|
96
|
+
function LimitExceededException(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
98
|
+
_this.name = "LimitExceededException";
|
|
99
|
+
_this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
101
|
+
_this.Message = opts.Message;
|
|
102
|
+
return _this;
|
|
103
|
+
}
|
|
104
|
+
return LimitExceededException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { LimitExceededException };
|
|
107
|
+
var OperationNotPermittedException = (function (_super) {
|
|
108
|
+
__extends(OperationNotPermittedException, _super);
|
|
109
|
+
function OperationNotPermittedException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "OperationNotPermittedException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
|
|
114
|
+
_this.Message = opts.Message;
|
|
115
|
+
return _this;
|
|
116
|
+
}
|
|
117
|
+
return OperationNotPermittedException;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { OperationNotPermittedException };
|
|
120
|
+
var ResourceNotFoundException = (function (_super) {
|
|
121
|
+
__extends(ResourceNotFoundException, _super);
|
|
122
|
+
function ResourceNotFoundException(opts) {
|
|
123
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
124
|
+
_this.name = "ResourceNotFoundException";
|
|
125
|
+
_this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
127
|
+
_this.Message = opts.Message;
|
|
128
|
+
return _this;
|
|
129
|
+
}
|
|
130
|
+
return ResourceNotFoundException;
|
|
131
|
+
}(__BaseException));
|
|
132
|
+
export { ResourceNotFoundException };
|
|
67
133
|
export var AssociateApplicationToEntitlementRequest;
|
|
68
134
|
(function (AssociateApplicationToEntitlementRequest) {
|
|
69
135
|
AssociateApplicationToEntitlementRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -72,6 +138,19 @@ export var AssociateApplicationToEntitlementResult;
|
|
|
72
138
|
(function (AssociateApplicationToEntitlementResult) {
|
|
73
139
|
AssociateApplicationToEntitlementResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
74
140
|
})(AssociateApplicationToEntitlementResult || (AssociateApplicationToEntitlementResult = {}));
|
|
141
|
+
var EntitlementNotFoundException = (function (_super) {
|
|
142
|
+
__extends(EntitlementNotFoundException, _super);
|
|
143
|
+
function EntitlementNotFoundException(opts) {
|
|
144
|
+
var _this = _super.call(this, __assign({ name: "EntitlementNotFoundException", $fault: "client" }, opts)) || this;
|
|
145
|
+
_this.name = "EntitlementNotFoundException";
|
|
146
|
+
_this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(_this, EntitlementNotFoundException.prototype);
|
|
148
|
+
_this.Message = opts.Message;
|
|
149
|
+
return _this;
|
|
150
|
+
}
|
|
151
|
+
return EntitlementNotFoundException;
|
|
152
|
+
}(__BaseException));
|
|
153
|
+
export { EntitlementNotFoundException };
|
|
75
154
|
export var AssociateFleetRequest;
|
|
76
155
|
(function (AssociateFleetRequest) {
|
|
77
156
|
AssociateFleetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -80,6 +159,32 @@ export var AssociateFleetResult;
|
|
|
80
159
|
(function (AssociateFleetResult) {
|
|
81
160
|
AssociateFleetResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
161
|
})(AssociateFleetResult || (AssociateFleetResult = {}));
|
|
162
|
+
var IncompatibleImageException = (function (_super) {
|
|
163
|
+
__extends(IncompatibleImageException, _super);
|
|
164
|
+
function IncompatibleImageException(opts) {
|
|
165
|
+
var _this = _super.call(this, __assign({ name: "IncompatibleImageException", $fault: "client" }, opts)) || this;
|
|
166
|
+
_this.name = "IncompatibleImageException";
|
|
167
|
+
_this.$fault = "client";
|
|
168
|
+
Object.setPrototypeOf(_this, IncompatibleImageException.prototype);
|
|
169
|
+
_this.Message = opts.Message;
|
|
170
|
+
return _this;
|
|
171
|
+
}
|
|
172
|
+
return IncompatibleImageException;
|
|
173
|
+
}(__BaseException));
|
|
174
|
+
export { IncompatibleImageException };
|
|
175
|
+
var InvalidAccountStatusException = (function (_super) {
|
|
176
|
+
__extends(InvalidAccountStatusException, _super);
|
|
177
|
+
function InvalidAccountStatusException(opts) {
|
|
178
|
+
var _this = _super.call(this, __assign({ name: "InvalidAccountStatusException", $fault: "client" }, opts)) || this;
|
|
179
|
+
_this.name = "InvalidAccountStatusException";
|
|
180
|
+
_this.$fault = "client";
|
|
181
|
+
Object.setPrototypeOf(_this, InvalidAccountStatusException.prototype);
|
|
182
|
+
_this.Message = opts.Message;
|
|
183
|
+
return _this;
|
|
184
|
+
}
|
|
185
|
+
return InvalidAccountStatusException;
|
|
186
|
+
}(__BaseException));
|
|
187
|
+
export { InvalidAccountStatusException };
|
|
83
188
|
export var AuthenticationType;
|
|
84
189
|
(function (AuthenticationType) {
|
|
85
190
|
AuthenticationType["API"] = "API";
|
|
@@ -139,6 +244,32 @@ export var CopyImageResponse;
|
|
|
139
244
|
(function (CopyImageResponse) {
|
|
140
245
|
CopyImageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
246
|
})(CopyImageResponse || (CopyImageResponse = {}));
|
|
247
|
+
var ResourceAlreadyExistsException = (function (_super) {
|
|
248
|
+
__extends(ResourceAlreadyExistsException, _super);
|
|
249
|
+
function ResourceAlreadyExistsException(opts) {
|
|
250
|
+
var _this = _super.call(this, __assign({ name: "ResourceAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
251
|
+
_this.name = "ResourceAlreadyExistsException";
|
|
252
|
+
_this.$fault = "client";
|
|
253
|
+
Object.setPrototypeOf(_this, ResourceAlreadyExistsException.prototype);
|
|
254
|
+
_this.Message = opts.Message;
|
|
255
|
+
return _this;
|
|
256
|
+
}
|
|
257
|
+
return ResourceAlreadyExistsException;
|
|
258
|
+
}(__BaseException));
|
|
259
|
+
export { ResourceAlreadyExistsException };
|
|
260
|
+
var ResourceNotAvailableException = (function (_super) {
|
|
261
|
+
__extends(ResourceNotAvailableException, _super);
|
|
262
|
+
function ResourceNotAvailableException(opts) {
|
|
263
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotAvailableException", $fault: "client" }, opts)) || this;
|
|
264
|
+
_this.name = "ResourceNotAvailableException";
|
|
265
|
+
_this.$fault = "client";
|
|
266
|
+
Object.setPrototypeOf(_this, ResourceNotAvailableException.prototype);
|
|
267
|
+
_this.Message = opts.Message;
|
|
268
|
+
return _this;
|
|
269
|
+
}
|
|
270
|
+
return ResourceNotAvailableException;
|
|
271
|
+
}(__BaseException));
|
|
272
|
+
export { ResourceNotAvailableException };
|
|
142
273
|
export var CreateAppBlockRequest;
|
|
143
274
|
(function (CreateAppBlockRequest) {
|
|
144
275
|
CreateAppBlockRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -175,6 +306,19 @@ export var CreateDirectoryConfigResult;
|
|
|
175
306
|
(function (CreateDirectoryConfigResult) {
|
|
176
307
|
CreateDirectoryConfigResult.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.DirectoryConfig && { DirectoryConfig: DirectoryConfig.filterSensitiveLog(obj.DirectoryConfig) }))); };
|
|
177
308
|
})(CreateDirectoryConfigResult || (CreateDirectoryConfigResult = {}));
|
|
309
|
+
var InvalidRoleException = (function (_super) {
|
|
310
|
+
__extends(InvalidRoleException, _super);
|
|
311
|
+
function InvalidRoleException(opts) {
|
|
312
|
+
var _this = _super.call(this, __assign({ name: "InvalidRoleException", $fault: "client" }, opts)) || this;
|
|
313
|
+
_this.name = "InvalidRoleException";
|
|
314
|
+
_this.$fault = "client";
|
|
315
|
+
Object.setPrototypeOf(_this, InvalidRoleException.prototype);
|
|
316
|
+
_this.Message = opts.Message;
|
|
317
|
+
return _this;
|
|
318
|
+
}
|
|
319
|
+
return InvalidRoleException;
|
|
320
|
+
}(__BaseException));
|
|
321
|
+
export { InvalidRoleException };
|
|
178
322
|
export var EntitlementAttribute;
|
|
179
323
|
(function (EntitlementAttribute) {
|
|
180
324
|
EntitlementAttribute.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -191,6 +335,19 @@ export var CreateEntitlementResult;
|
|
|
191
335
|
(function (CreateEntitlementResult) {
|
|
192
336
|
CreateEntitlementResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
337
|
})(CreateEntitlementResult || (CreateEntitlementResult = {}));
|
|
338
|
+
var EntitlementAlreadyExistsException = (function (_super) {
|
|
339
|
+
__extends(EntitlementAlreadyExistsException, _super);
|
|
340
|
+
function EntitlementAlreadyExistsException(opts) {
|
|
341
|
+
var _this = _super.call(this, __assign({ name: "EntitlementAlreadyExistsException", $fault: "client" }, opts)) || this;
|
|
342
|
+
_this.name = "EntitlementAlreadyExistsException";
|
|
343
|
+
_this.$fault = "client";
|
|
344
|
+
Object.setPrototypeOf(_this, EntitlementAlreadyExistsException.prototype);
|
|
345
|
+
_this.Message = opts.Message;
|
|
346
|
+
return _this;
|
|
347
|
+
}
|
|
348
|
+
return EntitlementAlreadyExistsException;
|
|
349
|
+
}(__BaseException));
|
|
350
|
+
export { EntitlementAlreadyExistsException };
|
|
194
351
|
export var DomainJoinInfo;
|
|
195
352
|
(function (DomainJoinInfo) {
|
|
196
353
|
DomainJoinInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -266,6 +423,19 @@ export var CreateFleetResult;
|
|
|
266
423
|
(function (CreateFleetResult) {
|
|
267
424
|
CreateFleetResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
425
|
})(CreateFleetResult || (CreateFleetResult = {}));
|
|
426
|
+
var RequestLimitExceededException = (function (_super) {
|
|
427
|
+
__extends(RequestLimitExceededException, _super);
|
|
428
|
+
function RequestLimitExceededException(opts) {
|
|
429
|
+
var _this = _super.call(this, __assign({ name: "RequestLimitExceededException", $fault: "client" }, opts)) || this;
|
|
430
|
+
_this.name = "RequestLimitExceededException";
|
|
431
|
+
_this.$fault = "client";
|
|
432
|
+
Object.setPrototypeOf(_this, RequestLimitExceededException.prototype);
|
|
433
|
+
_this.Message = opts.Message;
|
|
434
|
+
return _this;
|
|
435
|
+
}
|
|
436
|
+
return RequestLimitExceededException;
|
|
437
|
+
}(__BaseException));
|
|
438
|
+
export { RequestLimitExceededException };
|
|
269
439
|
export var CreateImageBuilderRequest;
|
|
270
440
|
(function (CreateImageBuilderRequest) {
|
|
271
441
|
CreateImageBuilderRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -440,6 +610,19 @@ export var DeleteAppBlockResult;
|
|
|
440
610
|
(function (DeleteAppBlockResult) {
|
|
441
611
|
DeleteAppBlockResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
442
612
|
})(DeleteAppBlockResult || (DeleteAppBlockResult = {}));
|
|
613
|
+
var ResourceInUseException = (function (_super) {
|
|
614
|
+
__extends(ResourceInUseException, _super);
|
|
615
|
+
function ResourceInUseException(opts) {
|
|
616
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUseException", $fault: "client" }, opts)) || this;
|
|
617
|
+
_this.name = "ResourceInUseException";
|
|
618
|
+
_this.$fault = "client";
|
|
619
|
+
Object.setPrototypeOf(_this, ResourceInUseException.prototype);
|
|
620
|
+
_this.Message = opts.Message;
|
|
621
|
+
return _this;
|
|
622
|
+
}
|
|
623
|
+
return ResourceInUseException;
|
|
624
|
+
}(__BaseException));
|
|
625
|
+
export { ResourceInUseException };
|
|
443
626
|
export var DeleteApplicationRequest;
|
|
444
627
|
(function (DeleteApplicationRequest) {
|
|
445
628
|
DeleteApplicationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|