@aws-sdk/client-device-farm 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DeviceFarmServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +165 -5
- package/dist-cjs/protocols/Aws_json1_1.js +724 -2680
- package/dist-es/index.js +1 -0
- package/dist-es/models/DeviceFarmServiceException.js +12 -0
- package/dist-es/models/models_0.js +149 -1
- package/dist-es/protocols/Aws_json1_1.js +1643 -2965
- package/dist-types/DeviceFarmClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DeviceFarmServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +74 -55
- 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/DeviceFarmClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DeviceFarmServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -49
- 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 +33 -33
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.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-device-farm
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **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))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-device-farm
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-device-farm
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeviceFarmServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./DeviceFarm"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./DeviceFarmClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var DeviceFarmServiceException_1 = require("./models/DeviceFarmServiceException");
|
|
11
|
+
Object.defineProperty(exports, "DeviceFarmServiceException", { enumerable: true, get: function () { return DeviceFarmServiceException_1.DeviceFarmServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DeviceFarmServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class DeviceFarmServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, DeviceFarmServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.DeviceFarmServiceException = DeviceFarmServiceException;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UpdateVPCEConfigurationResult = exports.UpdateVPCEConfigurationRequest = exports.UpdateUploadResult = exports.UpdateUploadRequest = exports.UpdateTestGridProjectResult = exports.UpdateTestGridProjectRequest = exports.UpdateProjectResult = exports.UpdateProjectRequest = exports.UpdateNetworkProfileResult = exports.UpdateNetworkProfileRequest = exports.UpdateInstanceProfileResult = exports.UpdateInstanceProfileRequest = exports.UpdateDevicePoolResult = exports.UpdateDevicePoolRequest = exports.UpdateDeviceInstanceResult = exports.UpdateDeviceInstanceRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopRunResult = exports.StopRunRequest = exports.StopRemoteAccessSessionResult = exports.StopRemoteAccessSessionRequest = exports.StopJobResult = exports.StopJobRequest = exports.ScheduleRunResult = exports.ScheduleRunRequest = exports.ExecutionConfiguration = exports.DeviceSelectionConfiguration = exports.RenewOfferingResult = void 0;
|
|
3
|
+
exports.CreateTestGridProjectResult = exports.TestGridProject = exports.CreateTestGridProjectRequest = exports.TestGridVpcConfig = exports.CreateRemoteAccessSessionResult = exports.RemoteAccessSession = exports.ExecutionStatus = exports.ExecutionResult = exports.DeviceMinutes = exports.Device = exports.Resolution = exports.DeviceInstance = exports.InstanceStatus = exports.DeviceFormFactor = exports.DeviceAvailability = exports.CreateRemoteAccessSessionRequest = exports.InteractionMode = exports.CreateRemoteAccessSessionConfiguration = exports.TagOperationException = exports.CreateProjectResult = exports.Project = exports.CreateProjectRequest = exports.CreateNetworkProfileResult = exports.NetworkProfile = exports.CreateNetworkProfileRequest = exports.NetworkProfileType = exports.CreateInstanceProfileResult = exports.InstanceProfile = exports.CreateInstanceProfileRequest = exports.ServiceAccountException = exports.NotFoundException = exports.LimitExceededException = exports.CreateDevicePoolResult = exports.DevicePool = exports.DevicePoolType = exports.CreateDevicePoolRequest = exports.Rule = exports.RuleOperator = exports.DeviceAttribute = exports.CPU = exports.Counters = exports.CannotDeleteException = exports.BillingMethod = exports.ArtifactCategory = exports.Artifact = exports.ArtifactType = exports.ArgumentException = exports.AccountSettings = exports.DevicePlatform = exports.TrialMinutes = void 0;
|
|
4
|
+
exports.GetDevicePoolCompatibilityResult = exports.DevicePoolCompatibilityResult = exports.IncompatibilityMessage = exports.GetDevicePoolCompatibilityRequest = exports.ScheduleRunTest = exports.TestType = exports.ScheduleRunConfiguration = exports.Radios = exports.Location = exports.GetDevicePoolResult = exports.GetDevicePoolRequest = exports.GetDeviceInstanceResult = exports.GetDeviceInstanceRequest = exports.GetDeviceResult = exports.GetDeviceRequest = exports.GetAccountSettingsResult = exports.GetAccountSettingsRequest = exports.InvalidOperationException = exports.DeleteVPCEConfigurationResult = exports.DeleteVPCEConfigurationRequest = exports.DeleteUploadResult = exports.DeleteUploadRequest = exports.DeleteTestGridProjectResult = exports.DeleteTestGridProjectRequest = exports.DeleteRunResult = exports.DeleteRunRequest = exports.DeleteRemoteAccessSessionResult = exports.DeleteRemoteAccessSessionRequest = exports.DeleteProjectResult = exports.DeleteProjectRequest = exports.DeleteNetworkProfileResult = exports.DeleteNetworkProfileRequest = exports.DeleteInstanceProfileResult = exports.DeleteInstanceProfileRequest = exports.DeleteDevicePoolResult = exports.DeleteDevicePoolRequest = exports.CustomerArtifactPaths = exports.CurrencyCode = exports.CreateVPCEConfigurationResult = exports.VPCEConfiguration = exports.CreateVPCEConfigurationRequest = exports.CreateUploadResult = exports.Upload = exports.UploadStatus = exports.UploadCategory = exports.CreateUploadRequest = exports.UploadType = exports.CreateTestGridUrlResult = exports.CreateTestGridUrlRequest = exports.InternalServiceException = void 0;
|
|
5
|
+
exports.ListDeviceInstancesResult = exports.ListDeviceInstancesRequest = exports.ListArtifactsResult = exports.ListArtifactsRequest = exports.InstallToRemoteAccessSessionResult = exports.InstallToRemoteAccessSessionRequest = exports.GetVPCEConfigurationResult = exports.GetVPCEConfigurationRequest = exports.GetUploadResult = exports.GetUploadRequest = exports.GetTestGridSessionResult = exports.TestGridSession = exports.TestGridSessionStatus = exports.GetTestGridSessionRequest = exports.GetTestGridProjectResult = exports.GetTestGridProjectRequest = exports.GetTestResult = exports.Test = exports.GetTestRequest = exports.GetSuiteResult = exports.Suite = exports.GetSuiteRequest = exports.GetRunResult = exports.Run = exports.ExecutionResultCode = exports.DeviceSelectionResult = exports.DeviceFilter = exports.DeviceFilterAttribute = exports.GetRunRequest = exports.GetRemoteAccessSessionResult = exports.GetRemoteAccessSessionRequest = exports.GetProjectResult = exports.GetProjectRequest = exports.NotEligibleException = exports.GetOfferingStatusResult = exports.OfferingStatus = exports.OfferingTransactionType = exports.Offering = exports.OfferingType = exports.RecurringCharge = exports.RecurringChargeFrequency = exports.MonetaryAmount = exports.GetOfferingStatusRequest = exports.GetNetworkProfileResult = exports.GetNetworkProfileRequest = exports.GetJobResult = exports.Job = exports.GetJobRequest = exports.GetInstanceProfileResult = exports.GetInstanceProfileRequest = void 0;
|
|
6
|
+
exports.Problem = exports.ProblemDetail = exports.ListUniqueProblemsRequest = exports.ListTestsResult = exports.ListTestsRequest = exports.ListTestGridSessionsResult = exports.ListTestGridSessionsRequest = exports.ListTestGridSessionArtifactsResult = exports.TestGridSessionArtifact = exports.TestGridSessionArtifactType = exports.ListTestGridSessionArtifactsRequest = exports.TestGridSessionArtifactCategory = exports.ListTestGridSessionActionsResult = exports.TestGridSessionAction = exports.ListTestGridSessionActionsRequest = exports.ListTestGridProjectsResult = exports.ListTestGridProjectsRequest = exports.ListTagsForResourceResponse = exports.Tag = exports.ListTagsForResourceRequest = exports.ListSuitesResult = exports.ListSuitesRequest = exports.ListSamplesResult = exports.Sample = exports.SampleType = exports.ListSamplesRequest = exports.ListRunsResult = exports.ListRunsRequest = exports.ListRemoteAccessSessionsResult = exports.ListRemoteAccessSessionsRequest = exports.ListProjectsResult = exports.ListProjectsRequest = exports.ListOfferingTransactionsResult = exports.OfferingTransaction = exports.ListOfferingTransactionsRequest = exports.ListOfferingsResult = exports.ListOfferingsRequest = exports.ListOfferingPromotionsResult = exports.OfferingPromotion = exports.ListOfferingPromotionsRequest = exports.ListNetworkProfilesResult = exports.ListNetworkProfilesRequest = exports.ListJobsResult = exports.ListJobsRequest = exports.ListInstanceProfilesResult = exports.ListInstanceProfilesRequest = exports.ListDevicesResult = exports.ListDevicesRequest = exports.ListDevicePoolsResult = exports.ListDevicePoolsRequest = void 0;
|
|
7
|
+
exports.UpdateVPCEConfigurationResult = exports.UpdateVPCEConfigurationRequest = exports.UpdateUploadResult = exports.UpdateUploadRequest = exports.UpdateTestGridProjectResult = exports.UpdateTestGridProjectRequest = exports.UpdateProjectResult = exports.UpdateProjectRequest = exports.UpdateNetworkProfileResult = exports.UpdateNetworkProfileRequest = exports.UpdateInstanceProfileResult = exports.UpdateInstanceProfileRequest = exports.UpdateDevicePoolResult = exports.UpdateDevicePoolRequest = exports.UpdateDeviceInstanceResult = exports.UpdateDeviceInstanceRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TooManyTagsException = exports.TagResourceResponse = exports.TagResourceRequest = exports.TagPolicyException = exports.StopRunResult = exports.StopRunRequest = exports.StopRemoteAccessSessionResult = exports.StopRemoteAccessSessionRequest = exports.StopJobResult = exports.StopJobRequest = exports.ScheduleRunResult = exports.ScheduleRunRequest = exports.ExecutionConfiguration = exports.DeviceSelectionConfiguration = exports.IdempotencyException = exports.RenewOfferingResult = exports.RenewOfferingRequest = exports.PurchaseOfferingResult = exports.PurchaseOfferingRequest = exports.ListVPCEConfigurationsResult = exports.ListVPCEConfigurationsRequest = exports.ListUploadsResult = exports.ListUploadsRequest = exports.ListUniqueProblemsResult = exports.UniqueProblem = void 0;
|
|
8
8
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
9
|
+
const DeviceFarmServiceException_1 = require("./DeviceFarmServiceException");
|
|
9
10
|
var TrialMinutes;
|
|
10
11
|
(function (TrialMinutes) {
|
|
11
12
|
TrialMinutes.filterSensitiveLog = (obj) => ({
|
|
@@ -23,6 +24,19 @@ var AccountSettings;
|
|
|
23
24
|
...obj,
|
|
24
25
|
});
|
|
25
26
|
})(AccountSettings = exports.AccountSettings || (exports.AccountSettings = {}));
|
|
27
|
+
class ArgumentException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
28
|
+
constructor(opts) {
|
|
29
|
+
super({
|
|
30
|
+
name: "ArgumentException",
|
|
31
|
+
$fault: "client",
|
|
32
|
+
...opts,
|
|
33
|
+
});
|
|
34
|
+
this.name = "ArgumentException";
|
|
35
|
+
this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(this, ArgumentException.prototype);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.ArgumentException = ArgumentException;
|
|
26
40
|
var ArtifactType;
|
|
27
41
|
(function (ArtifactType) {
|
|
28
42
|
ArtifactType["APPIUM_JAVA_OUTPUT"] = "APPIUM_JAVA_OUTPUT";
|
|
@@ -71,6 +85,19 @@ var BillingMethod;
|
|
|
71
85
|
BillingMethod["METERED"] = "METERED";
|
|
72
86
|
BillingMethod["UNMETERED"] = "UNMETERED";
|
|
73
87
|
})(BillingMethod = exports.BillingMethod || (exports.BillingMethod = {}));
|
|
88
|
+
class CannotDeleteException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "CannotDeleteException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
this.name = "CannotDeleteException";
|
|
96
|
+
this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(this, CannotDeleteException.prototype);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
exports.CannotDeleteException = CannotDeleteException;
|
|
74
101
|
var Counters;
|
|
75
102
|
(function (Counters) {
|
|
76
103
|
Counters.filterSensitiveLog = (obj) => ({
|
|
@@ -139,6 +166,45 @@ var CreateDevicePoolResult;
|
|
|
139
166
|
...obj,
|
|
140
167
|
});
|
|
141
168
|
})(CreateDevicePoolResult = exports.CreateDevicePoolResult || (exports.CreateDevicePoolResult = {}));
|
|
169
|
+
class LimitExceededException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "LimitExceededException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
this.name = "LimitExceededException";
|
|
177
|
+
this.$fault = "client";
|
|
178
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
exports.LimitExceededException = LimitExceededException;
|
|
182
|
+
class NotFoundException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
183
|
+
constructor(opts) {
|
|
184
|
+
super({
|
|
185
|
+
name: "NotFoundException",
|
|
186
|
+
$fault: "client",
|
|
187
|
+
...opts,
|
|
188
|
+
});
|
|
189
|
+
this.name = "NotFoundException";
|
|
190
|
+
this.$fault = "client";
|
|
191
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
exports.NotFoundException = NotFoundException;
|
|
195
|
+
class ServiceAccountException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
196
|
+
constructor(opts) {
|
|
197
|
+
super({
|
|
198
|
+
name: "ServiceAccountException",
|
|
199
|
+
$fault: "client",
|
|
200
|
+
...opts,
|
|
201
|
+
});
|
|
202
|
+
this.name = "ServiceAccountException";
|
|
203
|
+
this.$fault = "client";
|
|
204
|
+
Object.setPrototypeOf(this, ServiceAccountException.prototype);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
exports.ServiceAccountException = ServiceAccountException;
|
|
142
208
|
var CreateInstanceProfileRequest;
|
|
143
209
|
(function (CreateInstanceProfileRequest) {
|
|
144
210
|
CreateInstanceProfileRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -198,6 +264,20 @@ var CreateProjectResult;
|
|
|
198
264
|
...obj,
|
|
199
265
|
});
|
|
200
266
|
})(CreateProjectResult = exports.CreateProjectResult || (exports.CreateProjectResult = {}));
|
|
267
|
+
class TagOperationException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "TagOperationException",
|
|
271
|
+
$fault: "client",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
this.name = "TagOperationException";
|
|
275
|
+
this.$fault = "client";
|
|
276
|
+
Object.setPrototypeOf(this, TagOperationException.prototype);
|
|
277
|
+
this.resourceName = opts.resourceName;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
exports.TagOperationException = TagOperationException;
|
|
201
281
|
var CreateRemoteAccessSessionConfiguration;
|
|
202
282
|
(function (CreateRemoteAccessSessionConfiguration) {
|
|
203
283
|
CreateRemoteAccessSessionConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -317,6 +397,19 @@ var CreateTestGridProjectResult;
|
|
|
317
397
|
...obj,
|
|
318
398
|
});
|
|
319
399
|
})(CreateTestGridProjectResult = exports.CreateTestGridProjectResult || (exports.CreateTestGridProjectResult = {}));
|
|
400
|
+
class InternalServiceException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
401
|
+
constructor(opts) {
|
|
402
|
+
super({
|
|
403
|
+
name: "InternalServiceException",
|
|
404
|
+
$fault: "server",
|
|
405
|
+
...opts,
|
|
406
|
+
});
|
|
407
|
+
this.name = "InternalServiceException";
|
|
408
|
+
this.$fault = "server";
|
|
409
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
exports.InternalServiceException = InternalServiceException;
|
|
320
413
|
var CreateTestGridUrlRequest;
|
|
321
414
|
(function (CreateTestGridUrlRequest) {
|
|
322
415
|
CreateTestGridUrlRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -533,6 +626,19 @@ var DeleteVPCEConfigurationResult;
|
|
|
533
626
|
...obj,
|
|
534
627
|
});
|
|
535
628
|
})(DeleteVPCEConfigurationResult = exports.DeleteVPCEConfigurationResult || (exports.DeleteVPCEConfigurationResult = {}));
|
|
629
|
+
class InvalidOperationException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
630
|
+
constructor(opts) {
|
|
631
|
+
super({
|
|
632
|
+
name: "InvalidOperationException",
|
|
633
|
+
$fault: "client",
|
|
634
|
+
...opts,
|
|
635
|
+
});
|
|
636
|
+
this.name = "InvalidOperationException";
|
|
637
|
+
this.$fault = "client";
|
|
638
|
+
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
exports.InvalidOperationException = InvalidOperationException;
|
|
536
642
|
var GetAccountSettingsRequest;
|
|
537
643
|
(function (GetAccountSettingsRequest) {
|
|
538
644
|
GetAccountSettingsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -745,6 +851,19 @@ var GetOfferingStatusResult;
|
|
|
745
851
|
...obj,
|
|
746
852
|
});
|
|
747
853
|
})(GetOfferingStatusResult = exports.GetOfferingStatusResult || (exports.GetOfferingStatusResult = {}));
|
|
854
|
+
class NotEligibleException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
855
|
+
constructor(opts) {
|
|
856
|
+
super({
|
|
857
|
+
name: "NotEligibleException",
|
|
858
|
+
$fault: "client",
|
|
859
|
+
...opts,
|
|
860
|
+
});
|
|
861
|
+
this.name = "NotEligibleException";
|
|
862
|
+
this.$fault = "client";
|
|
863
|
+
Object.setPrototypeOf(this, NotEligibleException.prototype);
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
exports.NotEligibleException = NotEligibleException;
|
|
748
867
|
var GetProjectRequest;
|
|
749
868
|
(function (GetProjectRequest) {
|
|
750
869
|
GetProjectRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1329,6 +1448,19 @@ var RenewOfferingResult;
|
|
|
1329
1448
|
...obj,
|
|
1330
1449
|
});
|
|
1331
1450
|
})(RenewOfferingResult = exports.RenewOfferingResult || (exports.RenewOfferingResult = {}));
|
|
1451
|
+
class IdempotencyException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
1452
|
+
constructor(opts) {
|
|
1453
|
+
super({
|
|
1454
|
+
name: "IdempotencyException",
|
|
1455
|
+
$fault: "client",
|
|
1456
|
+
...opts,
|
|
1457
|
+
});
|
|
1458
|
+
this.name = "IdempotencyException";
|
|
1459
|
+
this.$fault = "client";
|
|
1460
|
+
Object.setPrototypeOf(this, IdempotencyException.prototype);
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
exports.IdempotencyException = IdempotencyException;
|
|
1332
1464
|
var DeviceSelectionConfiguration;
|
|
1333
1465
|
(function (DeviceSelectionConfiguration) {
|
|
1334
1466
|
DeviceSelectionConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -1389,6 +1521,20 @@ var StopRunResult;
|
|
|
1389
1521
|
...obj,
|
|
1390
1522
|
});
|
|
1391
1523
|
})(StopRunResult = exports.StopRunResult || (exports.StopRunResult = {}));
|
|
1524
|
+
class TagPolicyException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
1525
|
+
constructor(opts) {
|
|
1526
|
+
super({
|
|
1527
|
+
name: "TagPolicyException",
|
|
1528
|
+
$fault: "client",
|
|
1529
|
+
...opts,
|
|
1530
|
+
});
|
|
1531
|
+
this.name = "TagPolicyException";
|
|
1532
|
+
this.$fault = "client";
|
|
1533
|
+
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
1534
|
+
this.resourceName = opts.resourceName;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
exports.TagPolicyException = TagPolicyException;
|
|
1392
1538
|
var TagResourceRequest;
|
|
1393
1539
|
(function (TagResourceRequest) {
|
|
1394
1540
|
TagResourceRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1401,6 +1547,20 @@ var TagResourceResponse;
|
|
|
1401
1547
|
...obj,
|
|
1402
1548
|
});
|
|
1403
1549
|
})(TagResourceResponse = exports.TagResourceResponse || (exports.TagResourceResponse = {}));
|
|
1550
|
+
class TooManyTagsException extends DeviceFarmServiceException_1.DeviceFarmServiceException {
|
|
1551
|
+
constructor(opts) {
|
|
1552
|
+
super({
|
|
1553
|
+
name: "TooManyTagsException",
|
|
1554
|
+
$fault: "client",
|
|
1555
|
+
...opts,
|
|
1556
|
+
});
|
|
1557
|
+
this.name = "TooManyTagsException";
|
|
1558
|
+
this.$fault = "client";
|
|
1559
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
1560
|
+
this.resourceName = opts.resourceName;
|
|
1561
|
+
}
|
|
1562
|
+
}
|
|
1563
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1404
1564
|
var UntagResourceRequest;
|
|
1405
1565
|
(function (UntagResourceRequest) {
|
|
1406
1566
|
UntagResourceRequest.filterSensitiveLog = (obj) => ({
|