@aws-sdk/client-device-farm 3.934.0 → 3.935.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/dist-cjs/index.js +243 -242
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +242 -0
- package/dist-es/models/errors.js +151 -0
- package/dist-es/models/models_0.js +1 -393
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +466 -0
- package/dist-types/models/errors.d.ts +154 -0
- package/dist-types/models/models_0.d.ts +1 -620
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +289 -0
- package/dist-types/ts3.4/models/errors.d.ts +83 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -372
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,15 +1,37 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
ArtifactCategory,
|
|
3
|
+
ArtifactType,
|
|
4
|
+
BillingMethod,
|
|
5
|
+
CurrencyCode,
|
|
6
|
+
DeviceAttribute,
|
|
7
|
+
DeviceAvailability,
|
|
8
|
+
DeviceFilterAttribute,
|
|
9
|
+
DeviceFormFactor,
|
|
10
|
+
DevicePlatform,
|
|
11
|
+
DevicePoolType,
|
|
12
|
+
ExecutionResult,
|
|
13
|
+
ExecutionResultCode,
|
|
14
|
+
ExecutionStatus,
|
|
15
|
+
InstanceStatus,
|
|
16
|
+
InteractionMode,
|
|
17
|
+
NetworkProfileType,
|
|
18
|
+
OfferingTransactionType,
|
|
19
|
+
OfferingType,
|
|
20
|
+
RecurringChargeFrequency,
|
|
21
|
+
RuleOperator,
|
|
22
|
+
SampleType,
|
|
23
|
+
TestGridSessionArtifactCategory,
|
|
24
|
+
TestGridSessionArtifactType,
|
|
25
|
+
TestGridSessionStatus,
|
|
26
|
+
TestType,
|
|
27
|
+
UploadCategory,
|
|
28
|
+
UploadStatus,
|
|
29
|
+
UploadType,
|
|
30
|
+
} from "./enums";
|
|
3
31
|
export interface TrialMinutes {
|
|
4
32
|
total?: number | undefined;
|
|
5
33
|
remaining?: number | undefined;
|
|
6
34
|
}
|
|
7
|
-
export declare const DevicePlatform: {
|
|
8
|
-
readonly ANDROID: "ANDROID";
|
|
9
|
-
readonly IOS: "IOS";
|
|
10
|
-
};
|
|
11
|
-
export type DevicePlatform =
|
|
12
|
-
(typeof DevicePlatform)[keyof typeof DevicePlatform];
|
|
13
35
|
export interface AccountSettings {
|
|
14
36
|
awsAccountNumber?: string | undefined;
|
|
15
37
|
unmeteredDevices?: Partial<Record<DevicePlatform, number>> | undefined;
|
|
@@ -22,42 +44,6 @@ export interface AccountSettings {
|
|
|
22
44
|
defaultJobTimeoutMinutes?: number | undefined;
|
|
23
45
|
skipAppResign?: boolean | undefined;
|
|
24
46
|
}
|
|
25
|
-
export declare class ArgumentException extends __BaseException {
|
|
26
|
-
readonly name: "ArgumentException";
|
|
27
|
-
readonly $fault: "client";
|
|
28
|
-
constructor(opts: __ExceptionOptionType<ArgumentException, __BaseException>);
|
|
29
|
-
}
|
|
30
|
-
export declare const ArtifactType: {
|
|
31
|
-
readonly APPIUM_JAVA_OUTPUT: "APPIUM_JAVA_OUTPUT";
|
|
32
|
-
readonly APPIUM_JAVA_XML_OUTPUT: "APPIUM_JAVA_XML_OUTPUT";
|
|
33
|
-
readonly APPIUM_PYTHON_OUTPUT: "APPIUM_PYTHON_OUTPUT";
|
|
34
|
-
readonly APPIUM_PYTHON_XML_OUTPUT: "APPIUM_PYTHON_XML_OUTPUT";
|
|
35
|
-
readonly APPIUM_SERVER_OUTPUT: "APPIUM_SERVER_OUTPUT";
|
|
36
|
-
readonly APPLICATION_CRASH_REPORT: "APPLICATION_CRASH_REPORT";
|
|
37
|
-
readonly AUTOMATION_OUTPUT: "AUTOMATION_OUTPUT";
|
|
38
|
-
readonly CALABASH_JAVA_XML_OUTPUT: "CALABASH_JAVA_XML_OUTPUT";
|
|
39
|
-
readonly CALABASH_JSON_OUTPUT: "CALABASH_JSON_OUTPUT";
|
|
40
|
-
readonly CALABASH_PRETTY_OUTPUT: "CALABASH_PRETTY_OUTPUT";
|
|
41
|
-
readonly CALABASH_STANDARD_OUTPUT: "CALABASH_STANDARD_OUTPUT";
|
|
42
|
-
readonly CUSTOMER_ARTIFACT: "CUSTOMER_ARTIFACT";
|
|
43
|
-
readonly CUSTOMER_ARTIFACT_LOG: "CUSTOMER_ARTIFACT_LOG";
|
|
44
|
-
readonly DEVICE_LOG: "DEVICE_LOG";
|
|
45
|
-
readonly EXERCISER_MONKEY_OUTPUT: "EXERCISER_MONKEY_OUTPUT";
|
|
46
|
-
readonly EXPLORER_EVENT_LOG: "EXPLORER_EVENT_LOG";
|
|
47
|
-
readonly EXPLORER_SUMMARY_LOG: "EXPLORER_SUMMARY_LOG";
|
|
48
|
-
readonly INSTRUMENTATION_OUTPUT: "INSTRUMENTATION_OUTPUT";
|
|
49
|
-
readonly MESSAGE_LOG: "MESSAGE_LOG";
|
|
50
|
-
readonly RESULT_LOG: "RESULT_LOG";
|
|
51
|
-
readonly SCREENSHOT: "SCREENSHOT";
|
|
52
|
-
readonly SERVICE_LOG: "SERVICE_LOG";
|
|
53
|
-
readonly TESTSPEC_OUTPUT: "TESTSPEC_OUTPUT";
|
|
54
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
55
|
-
readonly VIDEO: "VIDEO";
|
|
56
|
-
readonly VIDEO_LOG: "VIDEO_LOG";
|
|
57
|
-
readonly WEBKIT_LOG: "WEBKIT_LOG";
|
|
58
|
-
readonly XCTEST_LOG: "XCTEST_LOG";
|
|
59
|
-
};
|
|
60
|
-
export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
|
|
61
47
|
export interface Artifact {
|
|
62
48
|
arn?: string | undefined;
|
|
63
49
|
name?: string | undefined;
|
|
@@ -65,25 +51,6 @@ export interface Artifact {
|
|
|
65
51
|
extension?: string | undefined;
|
|
66
52
|
url?: string | undefined;
|
|
67
53
|
}
|
|
68
|
-
export declare const ArtifactCategory: {
|
|
69
|
-
readonly FILE: "FILE";
|
|
70
|
-
readonly LOG: "LOG";
|
|
71
|
-
readonly SCREENSHOT: "SCREENSHOT";
|
|
72
|
-
};
|
|
73
|
-
export type ArtifactCategory =
|
|
74
|
-
(typeof ArtifactCategory)[keyof typeof ArtifactCategory];
|
|
75
|
-
export declare const BillingMethod: {
|
|
76
|
-
readonly METERED: "METERED";
|
|
77
|
-
readonly UNMETERED: "UNMETERED";
|
|
78
|
-
};
|
|
79
|
-
export type BillingMethod = (typeof BillingMethod)[keyof typeof BillingMethod];
|
|
80
|
-
export declare class CannotDeleteException extends __BaseException {
|
|
81
|
-
readonly name: "CannotDeleteException";
|
|
82
|
-
readonly $fault: "client";
|
|
83
|
-
constructor(
|
|
84
|
-
opts: __ExceptionOptionType<CannotDeleteException, __BaseException>
|
|
85
|
-
);
|
|
86
|
-
}
|
|
87
54
|
export interface Counters {
|
|
88
55
|
total?: number | undefined;
|
|
89
56
|
passed?: number | undefined;
|
|
@@ -98,34 +65,6 @@ export interface CPU {
|
|
|
98
65
|
architecture?: string | undefined;
|
|
99
66
|
clock?: number | undefined;
|
|
100
67
|
}
|
|
101
|
-
export declare const DeviceAttribute: {
|
|
102
|
-
readonly APPIUM_VERSION: "APPIUM_VERSION";
|
|
103
|
-
readonly ARN: "ARN";
|
|
104
|
-
readonly AVAILABILITY: "AVAILABILITY";
|
|
105
|
-
readonly FLEET_TYPE: "FLEET_TYPE";
|
|
106
|
-
readonly FORM_FACTOR: "FORM_FACTOR";
|
|
107
|
-
readonly INSTANCE_ARN: "INSTANCE_ARN";
|
|
108
|
-
readonly INSTANCE_LABELS: "INSTANCE_LABELS";
|
|
109
|
-
readonly MANUFACTURER: "MANUFACTURER";
|
|
110
|
-
readonly MODEL: "MODEL";
|
|
111
|
-
readonly OS_VERSION: "OS_VERSION";
|
|
112
|
-
readonly PLATFORM: "PLATFORM";
|
|
113
|
-
readonly REMOTE_ACCESS_ENABLED: "REMOTE_ACCESS_ENABLED";
|
|
114
|
-
readonly REMOTE_DEBUG_ENABLED: "REMOTE_DEBUG_ENABLED";
|
|
115
|
-
};
|
|
116
|
-
export type DeviceAttribute =
|
|
117
|
-
(typeof DeviceAttribute)[keyof typeof DeviceAttribute];
|
|
118
|
-
export declare const RuleOperator: {
|
|
119
|
-
readonly CONTAINS: "CONTAINS";
|
|
120
|
-
readonly EQUALS: "EQUALS";
|
|
121
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
122
|
-
readonly GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS";
|
|
123
|
-
readonly IN: "IN";
|
|
124
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
125
|
-
readonly LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS";
|
|
126
|
-
readonly NOT_IN: "NOT_IN";
|
|
127
|
-
};
|
|
128
|
-
export type RuleOperator = (typeof RuleOperator)[keyof typeof RuleOperator];
|
|
129
68
|
export interface Rule {
|
|
130
69
|
attribute?: DeviceAttribute | undefined;
|
|
131
70
|
operator?: RuleOperator | undefined;
|
|
@@ -138,12 +77,6 @@ export interface CreateDevicePoolRequest {
|
|
|
138
77
|
rules: Rule[] | undefined;
|
|
139
78
|
maxDevices?: number | undefined;
|
|
140
79
|
}
|
|
141
|
-
export declare const DevicePoolType: {
|
|
142
|
-
readonly CURATED: "CURATED";
|
|
143
|
-
readonly PRIVATE: "PRIVATE";
|
|
144
|
-
};
|
|
145
|
-
export type DevicePoolType =
|
|
146
|
-
(typeof DevicePoolType)[keyof typeof DevicePoolType];
|
|
147
80
|
export interface DevicePool {
|
|
148
81
|
arn?: string | undefined;
|
|
149
82
|
name?: string | undefined;
|
|
@@ -155,25 +88,6 @@ export interface DevicePool {
|
|
|
155
88
|
export interface CreateDevicePoolResult {
|
|
156
89
|
devicePool?: DevicePool | undefined;
|
|
157
90
|
}
|
|
158
|
-
export declare class LimitExceededException extends __BaseException {
|
|
159
|
-
readonly name: "LimitExceededException";
|
|
160
|
-
readonly $fault: "client";
|
|
161
|
-
constructor(
|
|
162
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
163
|
-
);
|
|
164
|
-
}
|
|
165
|
-
export declare class NotFoundException extends __BaseException {
|
|
166
|
-
readonly name: "NotFoundException";
|
|
167
|
-
readonly $fault: "client";
|
|
168
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
169
|
-
}
|
|
170
|
-
export declare class ServiceAccountException extends __BaseException {
|
|
171
|
-
readonly name: "ServiceAccountException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
constructor(
|
|
174
|
-
opts: __ExceptionOptionType<ServiceAccountException, __BaseException>
|
|
175
|
-
);
|
|
176
|
-
}
|
|
177
91
|
export interface CreateInstanceProfileRequest {
|
|
178
92
|
name: string | undefined;
|
|
179
93
|
description?: string | undefined;
|
|
@@ -192,12 +106,6 @@ export interface InstanceProfile {
|
|
|
192
106
|
export interface CreateInstanceProfileResult {
|
|
193
107
|
instanceProfile?: InstanceProfile | undefined;
|
|
194
108
|
}
|
|
195
|
-
export declare const NetworkProfileType: {
|
|
196
|
-
readonly CURATED: "CURATED";
|
|
197
|
-
readonly PRIVATE: "PRIVATE";
|
|
198
|
-
};
|
|
199
|
-
export type NetworkProfileType =
|
|
200
|
-
(typeof NetworkProfileType)[keyof typeof NetworkProfileType];
|
|
201
109
|
export interface CreateNetworkProfileRequest {
|
|
202
110
|
projectArn: string | undefined;
|
|
203
111
|
name: string | undefined;
|
|
@@ -249,14 +157,6 @@ export interface Project {
|
|
|
249
157
|
export interface CreateProjectResult {
|
|
250
158
|
project?: Project | undefined;
|
|
251
159
|
}
|
|
252
|
-
export declare class TagOperationException extends __BaseException {
|
|
253
|
-
readonly name: "TagOperationException";
|
|
254
|
-
readonly $fault: "client";
|
|
255
|
-
resourceName?: string | undefined;
|
|
256
|
-
constructor(
|
|
257
|
-
opts: __ExceptionOptionType<TagOperationException, __BaseException>
|
|
258
|
-
);
|
|
259
|
-
}
|
|
260
160
|
export interface DeviceProxy {
|
|
261
161
|
host: string | undefined;
|
|
262
162
|
port: number | undefined;
|
|
@@ -267,13 +167,6 @@ export interface CreateRemoteAccessSessionConfiguration {
|
|
|
267
167
|
vpceConfigurationArns?: string[] | undefined;
|
|
268
168
|
deviceProxy?: DeviceProxy | undefined;
|
|
269
169
|
}
|
|
270
|
-
export declare const InteractionMode: {
|
|
271
|
-
readonly INTERACTIVE: "INTERACTIVE";
|
|
272
|
-
readonly NO_VIDEO: "NO_VIDEO";
|
|
273
|
-
readonly VIDEO_ONLY: "VIDEO_ONLY";
|
|
274
|
-
};
|
|
275
|
-
export type InteractionMode =
|
|
276
|
-
(typeof InteractionMode)[keyof typeof InteractionMode];
|
|
277
170
|
export interface CreateRemoteAccessSessionRequest {
|
|
278
171
|
projectArn: string | undefined;
|
|
279
172
|
deviceArn: string | undefined;
|
|
@@ -284,28 +177,6 @@ export interface CreateRemoteAccessSessionRequest {
|
|
|
284
177
|
interactionMode?: InteractionMode | undefined;
|
|
285
178
|
skipAppResign?: boolean | undefined;
|
|
286
179
|
}
|
|
287
|
-
export declare const DeviceAvailability: {
|
|
288
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
289
|
-
readonly BUSY: "BUSY";
|
|
290
|
-
readonly HIGHLY_AVAILABLE: "HIGHLY_AVAILABLE";
|
|
291
|
-
readonly TEMPORARY_NOT_AVAILABLE: "TEMPORARY_NOT_AVAILABLE";
|
|
292
|
-
};
|
|
293
|
-
export type DeviceAvailability =
|
|
294
|
-
(typeof DeviceAvailability)[keyof typeof DeviceAvailability];
|
|
295
|
-
export declare const DeviceFormFactor: {
|
|
296
|
-
readonly PHONE: "PHONE";
|
|
297
|
-
readonly TABLET: "TABLET";
|
|
298
|
-
};
|
|
299
|
-
export type DeviceFormFactor =
|
|
300
|
-
(typeof DeviceFormFactor)[keyof typeof DeviceFormFactor];
|
|
301
|
-
export declare const InstanceStatus: {
|
|
302
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
303
|
-
readonly IN_USE: "IN_USE";
|
|
304
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
305
|
-
readonly PREPARING: "PREPARING";
|
|
306
|
-
};
|
|
307
|
-
export type InstanceStatus =
|
|
308
|
-
(typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
309
180
|
export interface DeviceInstance {
|
|
310
181
|
arn?: string | undefined;
|
|
311
182
|
deviceArn?: string | undefined;
|
|
@@ -350,30 +221,6 @@ export interface RemoteAccessEndpoints {
|
|
|
350
221
|
remoteDriverEndpoint?: string | undefined;
|
|
351
222
|
interactiveEndpoint?: string | undefined;
|
|
352
223
|
}
|
|
353
|
-
export declare const ExecutionResult: {
|
|
354
|
-
readonly ERRORED: "ERRORED";
|
|
355
|
-
readonly FAILED: "FAILED";
|
|
356
|
-
readonly PASSED: "PASSED";
|
|
357
|
-
readonly PENDING: "PENDING";
|
|
358
|
-
readonly SKIPPED: "SKIPPED";
|
|
359
|
-
readonly STOPPED: "STOPPED";
|
|
360
|
-
readonly WARNED: "WARNED";
|
|
361
|
-
};
|
|
362
|
-
export type ExecutionResult =
|
|
363
|
-
(typeof ExecutionResult)[keyof typeof ExecutionResult];
|
|
364
|
-
export declare const ExecutionStatus: {
|
|
365
|
-
readonly COMPLETED: "COMPLETED";
|
|
366
|
-
readonly PENDING: "PENDING";
|
|
367
|
-
readonly PENDING_CONCURRNECY: "PENDING_CONCURRENCY";
|
|
368
|
-
readonly PENDING_DEVICE: "PENDING_DEVICE";
|
|
369
|
-
readonly PREPARING: "PREPARING";
|
|
370
|
-
readonly PROCESSING: "PROCESSING";
|
|
371
|
-
readonly RUNNING: "RUNNING";
|
|
372
|
-
readonly SCHEDULING: "SCHEDULING";
|
|
373
|
-
readonly STOPPING: "STOPPING";
|
|
374
|
-
};
|
|
375
|
-
export type ExecutionStatus =
|
|
376
|
-
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
377
224
|
export interface RemoteAccessSession {
|
|
378
225
|
arn?: string | undefined;
|
|
379
226
|
name?: string | undefined;
|
|
@@ -419,13 +266,6 @@ export interface TestGridProject {
|
|
|
419
266
|
export interface CreateTestGridProjectResult {
|
|
420
267
|
testGridProject?: TestGridProject | undefined;
|
|
421
268
|
}
|
|
422
|
-
export declare class InternalServiceException extends __BaseException {
|
|
423
|
-
readonly name: "InternalServiceException";
|
|
424
|
-
readonly $fault: "server";
|
|
425
|
-
constructor(
|
|
426
|
-
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
427
|
-
);
|
|
428
|
-
}
|
|
429
269
|
export interface CreateTestGridUrlRequest {
|
|
430
270
|
projectArn: string | undefined;
|
|
431
271
|
expiresInSeconds: number | undefined;
|
|
@@ -434,60 +274,12 @@ export interface CreateTestGridUrlResult {
|
|
|
434
274
|
url?: string | undefined;
|
|
435
275
|
expires?: Date | undefined;
|
|
436
276
|
}
|
|
437
|
-
export declare const UploadType: {
|
|
438
|
-
readonly ANDROID_APP: "ANDROID_APP";
|
|
439
|
-
readonly APPIUM_JAVA_JUNIT_TEST_PACKAGE: "APPIUM_JAVA_JUNIT_TEST_PACKAGE";
|
|
440
|
-
readonly APPIUM_JAVA_JUNIT_TEST_SPEC: "APPIUM_JAVA_JUNIT_TEST_SPEC";
|
|
441
|
-
readonly APPIUM_JAVA_TESTNG_TEST_PACKAGE: "APPIUM_JAVA_TESTNG_TEST_PACKAGE";
|
|
442
|
-
readonly APPIUM_JAVA_TESTNG_TEST_SPEC: "APPIUM_JAVA_TESTNG_TEST_SPEC";
|
|
443
|
-
readonly APPIUM_NODE_TEST_PACKAGE: "APPIUM_NODE_TEST_PACKAGE";
|
|
444
|
-
readonly APPIUM_NODE_TEST_SPEC: "APPIUM_NODE_TEST_SPEC";
|
|
445
|
-
readonly APPIUM_PYTHON_TEST_PACKAGE: "APPIUM_PYTHON_TEST_PACKAGE";
|
|
446
|
-
readonly APPIUM_PYTHON_TEST_SPEC: "APPIUM_PYTHON_TEST_SPEC";
|
|
447
|
-
readonly APPIUM_RUBY_TEST_PACKAGE: "APPIUM_RUBY_TEST_PACKAGE";
|
|
448
|
-
readonly APPIUM_RUBY_TEST_SPEC: "APPIUM_RUBY_TEST_SPEC";
|
|
449
|
-
readonly APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE";
|
|
450
|
-
readonly APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC";
|
|
451
|
-
readonly APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE";
|
|
452
|
-
readonly APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC";
|
|
453
|
-
readonly APPIUM_WEB_NODE_TEST_PACKAGE: "APPIUM_WEB_NODE_TEST_PACKAGE";
|
|
454
|
-
readonly APPIUM_WEB_NODE_TEST_SPEC: "APPIUM_WEB_NODE_TEST_SPEC";
|
|
455
|
-
readonly APPIUM_WEB_PYTHON_TEST_PACKAGE: "APPIUM_WEB_PYTHON_TEST_PACKAGE";
|
|
456
|
-
readonly APPIUM_WEB_PYTHON_TEST_SPEC: "APPIUM_WEB_PYTHON_TEST_SPEC";
|
|
457
|
-
readonly APPIUM_WEB_RUBY_TEST_PACKAGE: "APPIUM_WEB_RUBY_TEST_PACKAGE";
|
|
458
|
-
readonly APPIUM_WEB_RUBY_TEST_SPEC: "APPIUM_WEB_RUBY_TEST_SPEC";
|
|
459
|
-
readonly CALABASH_TEST_PACKAGE: "CALABASH_TEST_PACKAGE";
|
|
460
|
-
readonly EXTERNAL_DATA: "EXTERNAL_DATA";
|
|
461
|
-
readonly INSTRUMENTATION_TEST_PACKAGE: "INSTRUMENTATION_TEST_PACKAGE";
|
|
462
|
-
readonly INSTRUMENTATION_TEST_SPEC: "INSTRUMENTATION_TEST_SPEC";
|
|
463
|
-
readonly IOS_APP: "IOS_APP";
|
|
464
|
-
readonly UIAUTOMATION_TEST_PACKAGE: "UIAUTOMATION_TEST_PACKAGE";
|
|
465
|
-
readonly UIAUTOMATOR_TEST_PACKAGE: "UIAUTOMATOR_TEST_PACKAGE";
|
|
466
|
-
readonly WEB_APP: "WEB_APP";
|
|
467
|
-
readonly XCTEST_TEST_PACKAGE: "XCTEST_TEST_PACKAGE";
|
|
468
|
-
readonly XCTEST_UI_TEST_PACKAGE: "XCTEST_UI_TEST_PACKAGE";
|
|
469
|
-
readonly XCTEST_UI_TEST_SPEC: "XCTEST_UI_TEST_SPEC";
|
|
470
|
-
};
|
|
471
|
-
export type UploadType = (typeof UploadType)[keyof typeof UploadType];
|
|
472
277
|
export interface CreateUploadRequest {
|
|
473
278
|
projectArn: string | undefined;
|
|
474
279
|
name: string | undefined;
|
|
475
280
|
type: UploadType | undefined;
|
|
476
281
|
contentType?: string | undefined;
|
|
477
282
|
}
|
|
478
|
-
export declare const UploadCategory: {
|
|
479
|
-
readonly CURATED: "CURATED";
|
|
480
|
-
readonly PRIVATE: "PRIVATE";
|
|
481
|
-
};
|
|
482
|
-
export type UploadCategory =
|
|
483
|
-
(typeof UploadCategory)[keyof typeof UploadCategory];
|
|
484
|
-
export declare const UploadStatus: {
|
|
485
|
-
readonly FAILED: "FAILED";
|
|
486
|
-
readonly INITIALIZED: "INITIALIZED";
|
|
487
|
-
readonly PROCESSING: "PROCESSING";
|
|
488
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
489
|
-
};
|
|
490
|
-
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
491
283
|
export interface Upload {
|
|
492
284
|
arn?: string | undefined;
|
|
493
285
|
name?: string | undefined;
|
|
@@ -519,10 +311,6 @@ export interface VPCEConfiguration {
|
|
|
519
311
|
export interface CreateVPCEConfigurationResult {
|
|
520
312
|
vpceConfiguration?: VPCEConfiguration | undefined;
|
|
521
313
|
}
|
|
522
|
-
export declare const CurrencyCode: {
|
|
523
|
-
readonly USD: "USD";
|
|
524
|
-
};
|
|
525
|
-
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
526
314
|
export interface CustomerArtifactPaths {
|
|
527
315
|
iosPaths?: string[] | undefined;
|
|
528
316
|
androidPaths?: string[] | undefined;
|
|
@@ -564,13 +352,6 @@ export interface DeleteVPCEConfigurationRequest {
|
|
|
564
352
|
arn: string | undefined;
|
|
565
353
|
}
|
|
566
354
|
export interface DeleteVPCEConfigurationResult {}
|
|
567
|
-
export declare class InvalidOperationException extends __BaseException {
|
|
568
|
-
readonly name: "InvalidOperationException";
|
|
569
|
-
readonly $fault: "client";
|
|
570
|
-
constructor(
|
|
571
|
-
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
|
572
|
-
);
|
|
573
|
-
}
|
|
574
355
|
export interface GetAccountSettingsRequest {}
|
|
575
356
|
export interface GetAccountSettingsResult {
|
|
576
357
|
accountSettings?: AccountSettings | undefined;
|
|
@@ -615,23 +396,6 @@ export interface ScheduleRunConfiguration {
|
|
|
615
396
|
auxiliaryApps?: string[] | undefined;
|
|
616
397
|
billingMethod?: BillingMethod | undefined;
|
|
617
398
|
}
|
|
618
|
-
export declare const TestType: {
|
|
619
|
-
readonly APPIUM_JAVA_JUNIT: "APPIUM_JAVA_JUNIT";
|
|
620
|
-
readonly APPIUM_JAVA_TESTNG: "APPIUM_JAVA_TESTNG";
|
|
621
|
-
readonly APPIUM_NODE: "APPIUM_NODE";
|
|
622
|
-
readonly APPIUM_PYTHON: "APPIUM_PYTHON";
|
|
623
|
-
readonly APPIUM_RUBY: "APPIUM_RUBY";
|
|
624
|
-
readonly APPIUM_WEB_JAVA_JUNIT: "APPIUM_WEB_JAVA_JUNIT";
|
|
625
|
-
readonly APPIUM_WEB_JAVA_TESTNG: "APPIUM_WEB_JAVA_TESTNG";
|
|
626
|
-
readonly APPIUM_WEB_NODE: "APPIUM_WEB_NODE";
|
|
627
|
-
readonly APPIUM_WEB_PYTHON: "APPIUM_WEB_PYTHON";
|
|
628
|
-
readonly APPIUM_WEB_RUBY: "APPIUM_WEB_RUBY";
|
|
629
|
-
readonly BUILTIN_FUZZ: "BUILTIN_FUZZ";
|
|
630
|
-
readonly INSTRUMENTATION: "INSTRUMENTATION";
|
|
631
|
-
readonly XCTEST: "XCTEST";
|
|
632
|
-
readonly XCTEST_UI: "XCTEST_UI";
|
|
633
|
-
};
|
|
634
|
-
export type TestType = (typeof TestType)[keyof typeof TestType];
|
|
635
399
|
export interface ScheduleRunTest {
|
|
636
400
|
type: TestType | undefined;
|
|
637
401
|
testPackageArn?: string | undefined;
|
|
@@ -702,19 +466,10 @@ export interface MonetaryAmount {
|
|
|
702
466
|
amount?: number | undefined;
|
|
703
467
|
currencyCode?: CurrencyCode | undefined;
|
|
704
468
|
}
|
|
705
|
-
export declare const RecurringChargeFrequency: {
|
|
706
|
-
readonly MONTHLY: "MONTHLY";
|
|
707
|
-
};
|
|
708
|
-
export type RecurringChargeFrequency =
|
|
709
|
-
(typeof RecurringChargeFrequency)[keyof typeof RecurringChargeFrequency];
|
|
710
469
|
export interface RecurringCharge {
|
|
711
470
|
cost?: MonetaryAmount | undefined;
|
|
712
471
|
frequency?: RecurringChargeFrequency | undefined;
|
|
713
472
|
}
|
|
714
|
-
export declare const OfferingType: {
|
|
715
|
-
readonly RECURRING: "RECURRING";
|
|
716
|
-
};
|
|
717
|
-
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
718
473
|
export interface Offering {
|
|
719
474
|
id?: string | undefined;
|
|
720
475
|
description?: string | undefined;
|
|
@@ -722,13 +477,6 @@ export interface Offering {
|
|
|
722
477
|
platform?: DevicePlatform | undefined;
|
|
723
478
|
recurringCharges?: RecurringCharge[] | undefined;
|
|
724
479
|
}
|
|
725
|
-
export declare const OfferingTransactionType: {
|
|
726
|
-
readonly PURCHASE: "PURCHASE";
|
|
727
|
-
readonly RENEW: "RENEW";
|
|
728
|
-
readonly SYSTEM: "SYSTEM";
|
|
729
|
-
};
|
|
730
|
-
export type OfferingTransactionType =
|
|
731
|
-
(typeof OfferingTransactionType)[keyof typeof OfferingTransactionType];
|
|
732
480
|
export interface OfferingStatus {
|
|
733
481
|
type?: OfferingTransactionType | undefined;
|
|
734
482
|
offering?: Offering | undefined;
|
|
@@ -740,13 +488,6 @@ export interface GetOfferingStatusResult {
|
|
|
740
488
|
nextPeriod?: Record<string, OfferingStatus> | undefined;
|
|
741
489
|
nextToken?: string | undefined;
|
|
742
490
|
}
|
|
743
|
-
export declare class NotEligibleException extends __BaseException {
|
|
744
|
-
readonly name: "NotEligibleException";
|
|
745
|
-
readonly $fault: "client";
|
|
746
|
-
constructor(
|
|
747
|
-
opts: __ExceptionOptionType<NotEligibleException, __BaseException>
|
|
748
|
-
);
|
|
749
|
-
}
|
|
750
491
|
export interface GetProjectRequest {
|
|
751
492
|
arn: string | undefined;
|
|
752
493
|
}
|
|
@@ -762,22 +503,6 @@ export interface GetRemoteAccessSessionResult {
|
|
|
762
503
|
export interface GetRunRequest {
|
|
763
504
|
arn: string | undefined;
|
|
764
505
|
}
|
|
765
|
-
export declare const DeviceFilterAttribute: {
|
|
766
|
-
readonly ARN: "ARN";
|
|
767
|
-
readonly AVAILABILITY: "AVAILABILITY";
|
|
768
|
-
readonly FLEET_TYPE: "FLEET_TYPE";
|
|
769
|
-
readonly FORM_FACTOR: "FORM_FACTOR";
|
|
770
|
-
readonly INSTANCE_ARN: "INSTANCE_ARN";
|
|
771
|
-
readonly INSTANCE_LABELS: "INSTANCE_LABELS";
|
|
772
|
-
readonly MANUFACTURER: "MANUFACTURER";
|
|
773
|
-
readonly MODEL: "MODEL";
|
|
774
|
-
readonly OS_VERSION: "OS_VERSION";
|
|
775
|
-
readonly PLATFORM: "PLATFORM";
|
|
776
|
-
readonly REMOTE_ACCESS_ENABLED: "REMOTE_ACCESS_ENABLED";
|
|
777
|
-
readonly REMOTE_DEBUG_ENABLED: "REMOTE_DEBUG_ENABLED";
|
|
778
|
-
};
|
|
779
|
-
export type DeviceFilterAttribute =
|
|
780
|
-
(typeof DeviceFilterAttribute)[keyof typeof DeviceFilterAttribute];
|
|
781
506
|
export interface DeviceFilter {
|
|
782
507
|
attribute: DeviceFilterAttribute | undefined;
|
|
783
508
|
operator: RuleOperator | undefined;
|
|
@@ -788,12 +513,6 @@ export interface DeviceSelectionResult {
|
|
|
788
513
|
matchedDevicesCount?: number | undefined;
|
|
789
514
|
maxDevices?: number | undefined;
|
|
790
515
|
}
|
|
791
|
-
export declare const ExecutionResultCode: {
|
|
792
|
-
readonly PARSING_FAILED: "PARSING_FAILED";
|
|
793
|
-
readonly VPC_ENDPOINT_SETUP_FAILED: "VPC_ENDPOINT_SETUP_FAILED";
|
|
794
|
-
};
|
|
795
|
-
export type ExecutionResultCode =
|
|
796
|
-
(typeof ExecutionResultCode)[keyof typeof ExecutionResultCode];
|
|
797
516
|
export interface Run {
|
|
798
517
|
arn?: string | undefined;
|
|
799
518
|
name?: string | undefined;
|
|
@@ -881,13 +600,6 @@ export interface GetTestGridSessionRequest {
|
|
|
881
600
|
sessionId?: string | undefined;
|
|
882
601
|
sessionArn?: string | undefined;
|
|
883
602
|
}
|
|
884
|
-
export declare const TestGridSessionStatus: {
|
|
885
|
-
readonly ACTIVE: "ACTIVE";
|
|
886
|
-
readonly CLOSED: "CLOSED";
|
|
887
|
-
readonly ERRORED: "ERRORED";
|
|
888
|
-
};
|
|
889
|
-
export type TestGridSessionStatus =
|
|
890
|
-
(typeof TestGridSessionStatus)[keyof typeof TestGridSessionStatus];
|
|
891
603
|
export interface TestGridSession {
|
|
892
604
|
arn?: string | undefined;
|
|
893
605
|
status?: TestGridSessionStatus | undefined;
|
|
@@ -1038,26 +750,6 @@ export interface ListSamplesRequest {
|
|
|
1038
750
|
arn: string | undefined;
|
|
1039
751
|
nextToken?: string | undefined;
|
|
1040
752
|
}
|
|
1041
|
-
export declare const SampleType: {
|
|
1042
|
-
readonly CPU: "CPU";
|
|
1043
|
-
readonly MEMORY: "MEMORY";
|
|
1044
|
-
readonly NATIVE_AVG_DRAWTIME: "NATIVE_AVG_DRAWTIME";
|
|
1045
|
-
readonly NATIVE_FPS: "NATIVE_FPS";
|
|
1046
|
-
readonly NATIVE_FRAMES: "NATIVE_FRAMES";
|
|
1047
|
-
readonly NATIVE_MAX_DRAWTIME: "NATIVE_MAX_DRAWTIME";
|
|
1048
|
-
readonly NATIVE_MIN_DRAWTIME: "NATIVE_MIN_DRAWTIME";
|
|
1049
|
-
readonly OPENGL_AVG_DRAWTIME: "OPENGL_AVG_DRAWTIME";
|
|
1050
|
-
readonly OPENGL_FPS: "OPENGL_FPS";
|
|
1051
|
-
readonly OPENGL_FRAMES: "OPENGL_FRAMES";
|
|
1052
|
-
readonly OPENGL_MAX_DRAWTIME: "OPENGL_MAX_DRAWTIME";
|
|
1053
|
-
readonly OPENGL_MIN_DRAWTIME: "OPENGL_MIN_DRAWTIME";
|
|
1054
|
-
readonly RX: "RX";
|
|
1055
|
-
readonly RX_RATE: "RX_RATE";
|
|
1056
|
-
readonly THREADS: "THREADS";
|
|
1057
|
-
readonly TX: "TX";
|
|
1058
|
-
readonly TX_RATE: "TX_RATE";
|
|
1059
|
-
};
|
|
1060
|
-
export type SampleType = (typeof SampleType)[keyof typeof SampleType];
|
|
1061
753
|
export interface Sample {
|
|
1062
754
|
arn?: string | undefined;
|
|
1063
755
|
type?: SampleType | undefined;
|
|
@@ -1109,25 +801,12 @@ export interface ListTestGridSessionActionsResult {
|
|
|
1109
801
|
actions?: TestGridSessionAction[] | undefined;
|
|
1110
802
|
nextToken?: string | undefined;
|
|
1111
803
|
}
|
|
1112
|
-
export declare const TestGridSessionArtifactCategory: {
|
|
1113
|
-
readonly LOG: "LOG";
|
|
1114
|
-
readonly VIDEO: "VIDEO";
|
|
1115
|
-
};
|
|
1116
|
-
export type TestGridSessionArtifactCategory =
|
|
1117
|
-
(typeof TestGridSessionArtifactCategory)[keyof typeof TestGridSessionArtifactCategory];
|
|
1118
804
|
export interface ListTestGridSessionArtifactsRequest {
|
|
1119
805
|
sessionArn: string | undefined;
|
|
1120
806
|
type?: TestGridSessionArtifactCategory | undefined;
|
|
1121
807
|
maxResult?: number | undefined;
|
|
1122
808
|
nextToken?: string | undefined;
|
|
1123
809
|
}
|
|
1124
|
-
export declare const TestGridSessionArtifactType: {
|
|
1125
|
-
readonly SELENIUM_LOG: "SELENIUM_LOG";
|
|
1126
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
1127
|
-
readonly VIDEO: "VIDEO";
|
|
1128
|
-
};
|
|
1129
|
-
export type TestGridSessionArtifactType =
|
|
1130
|
-
(typeof TestGridSessionArtifactType)[keyof typeof TestGridSessionArtifactType];
|
|
1131
810
|
export interface TestGridSessionArtifact {
|
|
1132
811
|
filename?: string | undefined;
|
|
1133
812
|
type?: TestGridSessionArtifactType | undefined;
|
|
@@ -1218,13 +897,6 @@ export interface RenewOfferingRequest {
|
|
|
1218
897
|
export interface RenewOfferingResult {
|
|
1219
898
|
offeringTransaction?: OfferingTransaction | undefined;
|
|
1220
899
|
}
|
|
1221
|
-
export declare class IdempotencyException extends __BaseException {
|
|
1222
|
-
readonly name: "IdempotencyException";
|
|
1223
|
-
readonly $fault: "client";
|
|
1224
|
-
constructor(
|
|
1225
|
-
opts: __ExceptionOptionType<IdempotencyException, __BaseException>
|
|
1226
|
-
);
|
|
1227
|
-
}
|
|
1228
900
|
export interface DeviceSelectionConfiguration {
|
|
1229
901
|
filters: DeviceFilter[] | undefined;
|
|
1230
902
|
maxDevices: number | undefined;
|
|
@@ -1267,25 +939,11 @@ export interface StopRunRequest {
|
|
|
1267
939
|
export interface StopRunResult {
|
|
1268
940
|
run?: Run | undefined;
|
|
1269
941
|
}
|
|
1270
|
-
export declare class TagPolicyException extends __BaseException {
|
|
1271
|
-
readonly name: "TagPolicyException";
|
|
1272
|
-
readonly $fault: "client";
|
|
1273
|
-
resourceName?: string | undefined;
|
|
1274
|
-
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
1275
|
-
}
|
|
1276
942
|
export interface TagResourceRequest {
|
|
1277
943
|
ResourceARN: string | undefined;
|
|
1278
944
|
Tags: Tag[] | undefined;
|
|
1279
945
|
}
|
|
1280
946
|
export interface TagResourceResponse {}
|
|
1281
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1282
|
-
readonly name: "TooManyTagsException";
|
|
1283
|
-
readonly $fault: "client";
|
|
1284
|
-
resourceName?: string | undefined;
|
|
1285
|
-
constructor(
|
|
1286
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
1287
|
-
);
|
|
1288
|
-
}
|
|
1289
947
|
export interface UntagResourceRequest {
|
|
1290
948
|
ResourceARN: string | undefined;
|
|
1291
949
|
TagKeys: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-device-farm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Device Farm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-device-farm",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|