@aws-sdk/client-appstream 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/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/AppStreamClient.d.ts +2 -2
- 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/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/AppStreamClient.d.ts +2 -2
- 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/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 +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appstream
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appstream
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-appstream
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppStreamServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./AppStream"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./AppStreamClient"), exports);
|
|
@@ -7,3 +8,5 @@ tslib_1.__exportStar(require("./commands"), exports);
|
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
10
|
tslib_1.__exportStar(require("./waiters"), exports);
|
|
11
|
+
var AppStreamServiceException_1 = require("./models/AppStreamServiceException");
|
|
12
|
+
Object.defineProperty(exports, "AppStreamServiceException", { enumerable: true, get: function () { return AppStreamServiceException_1.AppStreamServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppStreamServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class AppStreamServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, AppStreamServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.AppStreamServiceException = AppStreamServiceException;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
3
|
+
exports.EntitlementAttribute = exports.InvalidRoleException = exports.CreateDirectoryConfigResult = exports.DirectoryConfig = exports.CreateDirectoryConfigRequest = exports.ServiceAccountCredentials = exports.CreateApplicationResult = exports.CreateApplicationRequest = exports.CreateAppBlockResult = exports.CreateAppBlockRequest = exports.ResourceNotAvailableException = exports.ResourceAlreadyExistsException = exports.CopyImageResponse = exports.CopyImageRequest = exports.ComputeCapacityStatus = exports.ComputeCapacity = exports.BatchDisassociateUserStackResult = exports.BatchDisassociateUserStackRequest = exports.BatchAssociateUserStackResult = exports.UserStackAssociationError = exports.UserStackAssociationErrorCode = exports.BatchAssociateUserStackRequest = exports.UserStackAssociation = exports.AuthenticationType = exports.InvalidAccountStatusException = exports.IncompatibleImageException = exports.AssociateFleetResult = exports.AssociateFleetRequest = exports.EntitlementNotFoundException = exports.AssociateApplicationToEntitlementResult = exports.AssociateApplicationToEntitlementRequest = exports.ResourceNotFoundException = exports.OperationNotPermittedException = exports.LimitExceededException = exports.InvalidParameterCombinationException = exports.ConcurrentModificationException = exports.AssociateApplicationFleetResult = exports.AssociateApplicationFleetRequest = exports.AppVisibility = exports.ApplicationSettingsResponse = exports.ApplicationSettings = exports.ApplicationFleetAssociation = exports.ApplicationAttribute = exports.Application = exports.AppBlock = exports.ScriptDetails = exports.S3Location = exports.Action = exports.AccessEndpoint = exports.AccessEndpointType = void 0;
|
|
4
|
+
exports.CreateUserResult = exports.CreateUserRequest = exports.MessageAction = exports.CreateUsageReportSubscriptionResult = exports.UsageReportSchedule = exports.CreateUsageReportSubscriptionRequest = exports.CreateUpdatedImageResult = exports.Image = exports.VisibilityType = exports.ImageStateChangeReason = exports.ImageStateChangeReasonCode = exports.ImageState = exports.ImagePermissions = exports.CreateUpdatedImageRequest = exports.CreateStreamingURLResult = exports.CreateStreamingURLRequest = exports.CreateStackResult = exports.Stack = exports.StackError = exports.StackErrorCode = exports.CreateStackRequest = exports.UserSetting = exports.Permission = exports.StorageConnector = exports.StorageConnectorType = exports.CreateImageBuilderStreamingURLResult = exports.CreateImageBuilderStreamingURLRequest = exports.CreateImageBuilderResult = exports.ImageBuilder = exports.ImageBuilderStateChangeReason = exports.ImageBuilderStateChangeReasonCode = exports.ImageBuilderState = exports.NetworkAccessConfiguration = exports.ResourceError = exports.CreateImageBuilderRequest = exports.RequestLimitExceededException = exports.CreateFleetResult = exports.Fleet = exports.FleetState = exports.FleetError = exports.FleetErrorCode = exports.CreateFleetRequest = exports.VpcConfig = exports.StreamView = exports.FleetType = exports.DomainJoinInfo = exports.EntitlementAlreadyExistsException = exports.CreateEntitlementResult = exports.Entitlement = exports.CreateEntitlementRequest = void 0;
|
|
5
|
+
exports.DescribeUsageReportSubscriptionsRequest = exports.DescribeStacksResult = exports.DescribeStacksRequest = exports.DescribeSessionsResult = exports.Session = exports.SessionState = exports.SessionConnectionState = exports.DescribeSessionsRequest = exports.DescribeImagesResult = exports.DescribeImagesRequest = exports.DescribeImagePermissionsResult = exports.SharedImagePermissions = exports.DescribeImagePermissionsRequest = exports.DescribeImageBuildersResult = exports.DescribeImageBuildersRequest = exports.DescribeFleetsResult = exports.DescribeFleetsRequest = exports.DescribeEntitlementsResult = exports.DescribeEntitlementsRequest = exports.DescribeDirectoryConfigsResult = exports.DescribeDirectoryConfigsRequest = exports.DescribeApplicationsResult = exports.DescribeApplicationsRequest = exports.DescribeApplicationFleetAssociationsResult = exports.DescribeApplicationFleetAssociationsRequest = exports.DescribeAppBlocksResult = exports.DescribeAppBlocksRequest = exports.DeleteUserResult = exports.DeleteUserRequest = exports.DeleteUsageReportSubscriptionResult = exports.DeleteUsageReportSubscriptionRequest = exports.DeleteStackResult = exports.DeleteStackRequest = exports.DeleteImagePermissionsResult = exports.DeleteImagePermissionsRequest = exports.DeleteImageBuilderResult = exports.DeleteImageBuilderRequest = exports.DeleteImageResult = exports.DeleteImageRequest = exports.DeleteFleetResult = exports.DeleteFleetRequest = exports.DeleteEntitlementResult = exports.DeleteEntitlementRequest = exports.DeleteDirectoryConfigResult = exports.DeleteDirectoryConfigRequest = exports.DeleteApplicationResult = exports.DeleteApplicationRequest = exports.ResourceInUseException = exports.DeleteAppBlockResult = exports.DeleteAppBlockRequest = void 0;
|
|
6
|
+
exports.UpdateFleetRequest = exports.UpdateEntitlementResult = exports.UpdateEntitlementRequest = exports.UpdateDirectoryConfigResult = exports.UpdateDirectoryConfigRequest = exports.UpdateApplicationResult = exports.UpdateApplicationRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopImageBuilderResult = exports.StopImageBuilderRequest = exports.StopFleetResult = exports.StopFleetRequest = exports.StartImageBuilderResult = exports.StartImageBuilderRequest = exports.StartFleetResult = exports.StartFleetRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListEntitledApplicationsResult = exports.ListEntitledApplicationsRequest = exports.ListAssociatedStacksResult = exports.ListAssociatedStacksRequest = exports.ListAssociatedFleetsResult = exports.ListAssociatedFleetsRequest = exports.FleetAttribute = exports.ExpireSessionResult = exports.ExpireSessionRequest = exports.EntitledApplication = exports.EnableUserResult = exports.EnableUserRequest = exports.DisassociateFleetResult = exports.DisassociateFleetRequest = exports.DisassociateApplicationFromEntitlementResult = exports.DisassociateApplicationFromEntitlementRequest = exports.DisassociateApplicationFleetResult = exports.DisassociateApplicationFleetRequest = exports.DisableUserResult = exports.DisableUserRequest = exports.DescribeUserStackAssociationsResult = exports.DescribeUserStackAssociationsRequest = exports.DescribeUsersResult = exports.User = exports.DescribeUsersRequest = exports.DescribeUsageReportSubscriptionsResult = exports.UsageReportSubscription = exports.LastReportGenerationExecutionError = exports.UsageReportExecutionErrorCode = void 0;
|
|
7
|
+
exports.UpdateStackResult = exports.UpdateStackRequest = exports.StackAttribute = exports.UpdateImagePermissionsResult = exports.UpdateImagePermissionsRequest = exports.UpdateFleetResult = void 0;
|
|
7
8
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
9
|
+
const AppStreamServiceException_1 = require("./AppStreamServiceException");
|
|
8
10
|
var AccessEndpointType;
|
|
9
11
|
(function (AccessEndpointType) {
|
|
10
12
|
AccessEndpointType["STREAMING"] = "STREAMING";
|
|
@@ -89,6 +91,76 @@ var AssociateApplicationFleetResult;
|
|
|
89
91
|
...obj,
|
|
90
92
|
});
|
|
91
93
|
})(AssociateApplicationFleetResult = exports.AssociateApplicationFleetResult || (exports.AssociateApplicationFleetResult = {}));
|
|
94
|
+
class ConcurrentModificationException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
95
|
+
constructor(opts) {
|
|
96
|
+
super({
|
|
97
|
+
name: "ConcurrentModificationException",
|
|
98
|
+
$fault: "client",
|
|
99
|
+
...opts,
|
|
100
|
+
});
|
|
101
|
+
this.name = "ConcurrentModificationException";
|
|
102
|
+
this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
104
|
+
this.Message = opts.Message;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
108
|
+
class InvalidParameterCombinationException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
109
|
+
constructor(opts) {
|
|
110
|
+
super({
|
|
111
|
+
name: "InvalidParameterCombinationException",
|
|
112
|
+
$fault: "client",
|
|
113
|
+
...opts,
|
|
114
|
+
});
|
|
115
|
+
this.name = "InvalidParameterCombinationException";
|
|
116
|
+
this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
118
|
+
this.Message = opts.Message;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
|
|
122
|
+
class LimitExceededException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
123
|
+
constructor(opts) {
|
|
124
|
+
super({
|
|
125
|
+
name: "LimitExceededException",
|
|
126
|
+
$fault: "client",
|
|
127
|
+
...opts,
|
|
128
|
+
});
|
|
129
|
+
this.name = "LimitExceededException";
|
|
130
|
+
this.$fault = "client";
|
|
131
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
132
|
+
this.Message = opts.Message;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
exports.LimitExceededException = LimitExceededException;
|
|
136
|
+
class OperationNotPermittedException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "OperationNotPermittedException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
this.name = "OperationNotPermittedException";
|
|
144
|
+
this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
146
|
+
this.Message = opts.Message;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
exports.OperationNotPermittedException = OperationNotPermittedException;
|
|
150
|
+
class ResourceNotFoundException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "ResourceNotFoundException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
this.name = "ResourceNotFoundException";
|
|
158
|
+
this.$fault = "client";
|
|
159
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
160
|
+
this.Message = opts.Message;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
92
164
|
var AssociateApplicationToEntitlementRequest;
|
|
93
165
|
(function (AssociateApplicationToEntitlementRequest) {
|
|
94
166
|
AssociateApplicationToEntitlementRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -101,6 +173,20 @@ var AssociateApplicationToEntitlementResult;
|
|
|
101
173
|
...obj,
|
|
102
174
|
});
|
|
103
175
|
})(AssociateApplicationToEntitlementResult = exports.AssociateApplicationToEntitlementResult || (exports.AssociateApplicationToEntitlementResult = {}));
|
|
176
|
+
class EntitlementNotFoundException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
177
|
+
constructor(opts) {
|
|
178
|
+
super({
|
|
179
|
+
name: "EntitlementNotFoundException",
|
|
180
|
+
$fault: "client",
|
|
181
|
+
...opts,
|
|
182
|
+
});
|
|
183
|
+
this.name = "EntitlementNotFoundException";
|
|
184
|
+
this.$fault = "client";
|
|
185
|
+
Object.setPrototypeOf(this, EntitlementNotFoundException.prototype);
|
|
186
|
+
this.Message = opts.Message;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
exports.EntitlementNotFoundException = EntitlementNotFoundException;
|
|
104
190
|
var AssociateFleetRequest;
|
|
105
191
|
(function (AssociateFleetRequest) {
|
|
106
192
|
AssociateFleetRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -113,6 +199,34 @@ var AssociateFleetResult;
|
|
|
113
199
|
...obj,
|
|
114
200
|
});
|
|
115
201
|
})(AssociateFleetResult = exports.AssociateFleetResult || (exports.AssociateFleetResult = {}));
|
|
202
|
+
class IncompatibleImageException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
203
|
+
constructor(opts) {
|
|
204
|
+
super({
|
|
205
|
+
name: "IncompatibleImageException",
|
|
206
|
+
$fault: "client",
|
|
207
|
+
...opts,
|
|
208
|
+
});
|
|
209
|
+
this.name = "IncompatibleImageException";
|
|
210
|
+
this.$fault = "client";
|
|
211
|
+
Object.setPrototypeOf(this, IncompatibleImageException.prototype);
|
|
212
|
+
this.Message = opts.Message;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
exports.IncompatibleImageException = IncompatibleImageException;
|
|
216
|
+
class InvalidAccountStatusException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
217
|
+
constructor(opts) {
|
|
218
|
+
super({
|
|
219
|
+
name: "InvalidAccountStatusException",
|
|
220
|
+
$fault: "client",
|
|
221
|
+
...opts,
|
|
222
|
+
});
|
|
223
|
+
this.name = "InvalidAccountStatusException";
|
|
224
|
+
this.$fault = "client";
|
|
225
|
+
Object.setPrototypeOf(this, InvalidAccountStatusException.prototype);
|
|
226
|
+
this.Message = opts.Message;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
exports.InvalidAccountStatusException = InvalidAccountStatusException;
|
|
116
230
|
var AuthenticationType;
|
|
117
231
|
(function (AuthenticationType) {
|
|
118
232
|
AuthenticationType["API"] = "API";
|
|
@@ -198,6 +312,34 @@ var CopyImageResponse;
|
|
|
198
312
|
...obj,
|
|
199
313
|
});
|
|
200
314
|
})(CopyImageResponse = exports.CopyImageResponse || (exports.CopyImageResponse = {}));
|
|
315
|
+
class ResourceAlreadyExistsException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
316
|
+
constructor(opts) {
|
|
317
|
+
super({
|
|
318
|
+
name: "ResourceAlreadyExistsException",
|
|
319
|
+
$fault: "client",
|
|
320
|
+
...opts,
|
|
321
|
+
});
|
|
322
|
+
this.name = "ResourceAlreadyExistsException";
|
|
323
|
+
this.$fault = "client";
|
|
324
|
+
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
325
|
+
this.Message = opts.Message;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
329
|
+
class ResourceNotAvailableException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
330
|
+
constructor(opts) {
|
|
331
|
+
super({
|
|
332
|
+
name: "ResourceNotAvailableException",
|
|
333
|
+
$fault: "client",
|
|
334
|
+
...opts,
|
|
335
|
+
});
|
|
336
|
+
this.name = "ResourceNotAvailableException";
|
|
337
|
+
this.$fault = "client";
|
|
338
|
+
Object.setPrototypeOf(this, ResourceNotAvailableException.prototype);
|
|
339
|
+
this.Message = opts.Message;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
exports.ResourceNotAvailableException = ResourceNotAvailableException;
|
|
201
343
|
var CreateAppBlockRequest;
|
|
202
344
|
(function (CreateAppBlockRequest) {
|
|
203
345
|
CreateAppBlockRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -255,6 +397,20 @@ var CreateDirectoryConfigResult;
|
|
|
255
397
|
...(obj.DirectoryConfig && { DirectoryConfig: DirectoryConfig.filterSensitiveLog(obj.DirectoryConfig) }),
|
|
256
398
|
});
|
|
257
399
|
})(CreateDirectoryConfigResult = exports.CreateDirectoryConfigResult || (exports.CreateDirectoryConfigResult = {}));
|
|
400
|
+
class InvalidRoleException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
401
|
+
constructor(opts) {
|
|
402
|
+
super({
|
|
403
|
+
name: "InvalidRoleException",
|
|
404
|
+
$fault: "client",
|
|
405
|
+
...opts,
|
|
406
|
+
});
|
|
407
|
+
this.name = "InvalidRoleException";
|
|
408
|
+
this.$fault = "client";
|
|
409
|
+
Object.setPrototypeOf(this, InvalidRoleException.prototype);
|
|
410
|
+
this.Message = opts.Message;
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
exports.InvalidRoleException = InvalidRoleException;
|
|
258
414
|
var EntitlementAttribute;
|
|
259
415
|
(function (EntitlementAttribute) {
|
|
260
416
|
EntitlementAttribute.filterSensitiveLog = (obj) => ({
|
|
@@ -279,6 +435,20 @@ var CreateEntitlementResult;
|
|
|
279
435
|
...obj,
|
|
280
436
|
});
|
|
281
437
|
})(CreateEntitlementResult = exports.CreateEntitlementResult || (exports.CreateEntitlementResult = {}));
|
|
438
|
+
class EntitlementAlreadyExistsException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
439
|
+
constructor(opts) {
|
|
440
|
+
super({
|
|
441
|
+
name: "EntitlementAlreadyExistsException",
|
|
442
|
+
$fault: "client",
|
|
443
|
+
...opts,
|
|
444
|
+
});
|
|
445
|
+
this.name = "EntitlementAlreadyExistsException";
|
|
446
|
+
this.$fault = "client";
|
|
447
|
+
Object.setPrototypeOf(this, EntitlementAlreadyExistsException.prototype);
|
|
448
|
+
this.Message = opts.Message;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
exports.EntitlementAlreadyExistsException = EntitlementAlreadyExistsException;
|
|
282
452
|
var DomainJoinInfo;
|
|
283
453
|
(function (DomainJoinInfo) {
|
|
284
454
|
DomainJoinInfo.filterSensitiveLog = (obj) => ({
|
|
@@ -366,6 +536,20 @@ var CreateFleetResult;
|
|
|
366
536
|
...obj,
|
|
367
537
|
});
|
|
368
538
|
})(CreateFleetResult = exports.CreateFleetResult || (exports.CreateFleetResult = {}));
|
|
539
|
+
class RequestLimitExceededException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
540
|
+
constructor(opts) {
|
|
541
|
+
super({
|
|
542
|
+
name: "RequestLimitExceededException",
|
|
543
|
+
$fault: "client",
|
|
544
|
+
...opts,
|
|
545
|
+
});
|
|
546
|
+
this.name = "RequestLimitExceededException";
|
|
547
|
+
this.$fault = "client";
|
|
548
|
+
Object.setPrototypeOf(this, RequestLimitExceededException.prototype);
|
|
549
|
+
this.Message = opts.Message;
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
exports.RequestLimitExceededException = RequestLimitExceededException;
|
|
369
553
|
var CreateImageBuilderRequest;
|
|
370
554
|
(function (CreateImageBuilderRequest) {
|
|
371
555
|
CreateImageBuilderRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -597,6 +781,20 @@ var DeleteAppBlockResult;
|
|
|
597
781
|
...obj,
|
|
598
782
|
});
|
|
599
783
|
})(DeleteAppBlockResult = exports.DeleteAppBlockResult || (exports.DeleteAppBlockResult = {}));
|
|
784
|
+
class ResourceInUseException extends AppStreamServiceException_1.AppStreamServiceException {
|
|
785
|
+
constructor(opts) {
|
|
786
|
+
super({
|
|
787
|
+
name: "ResourceInUseException",
|
|
788
|
+
$fault: "client",
|
|
789
|
+
...opts,
|
|
790
|
+
});
|
|
791
|
+
this.name = "ResourceInUseException";
|
|
792
|
+
this.$fault = "client";
|
|
793
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
794
|
+
this.Message = opts.Message;
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
600
798
|
var DeleteApplicationRequest;
|
|
601
799
|
(function (DeleteApplicationRequest) {
|
|
602
800
|
DeleteApplicationRequest.filterSensitiveLog = (obj) => ({
|