@aws-sdk/client-device-farm 3.301.0 → 3.303.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/models/models_0.js +249 -277
- package/dist-es/models/models_0.js +249 -277
- package/dist-types/models/models_0.d.ts +391 -251
- package/dist-types/ts3.4/models/models_0.d.ts +296 -249
- package/package.json +34 -34
|
@@ -4,10 +4,12 @@ export interface TrialMinutes {
|
|
|
4
4
|
total?: number;
|
|
5
5
|
remaining?: number;
|
|
6
6
|
}
|
|
7
|
-
export declare
|
|
8
|
-
ANDROID
|
|
9
|
-
IOS
|
|
10
|
-
}
|
|
7
|
+
export declare const DevicePlatform: {
|
|
8
|
+
readonly ANDROID: "ANDROID";
|
|
9
|
+
readonly IOS: "IOS";
|
|
10
|
+
};
|
|
11
|
+
export type DevicePlatform =
|
|
12
|
+
(typeof DevicePlatform)[keyof typeof DevicePlatform];
|
|
11
13
|
export interface AccountSettings {
|
|
12
14
|
awsAccountNumber?: string;
|
|
13
15
|
unmeteredDevices?: Record<string, number>;
|
|
@@ -23,36 +25,37 @@ export declare class ArgumentException extends __BaseException {
|
|
|
23
25
|
readonly $fault: "client";
|
|
24
26
|
constructor(opts: __ExceptionOptionType<ArgumentException, __BaseException>);
|
|
25
27
|
}
|
|
26
|
-
export declare
|
|
27
|
-
APPIUM_JAVA_OUTPUT
|
|
28
|
-
APPIUM_JAVA_XML_OUTPUT
|
|
29
|
-
APPIUM_PYTHON_OUTPUT
|
|
30
|
-
APPIUM_PYTHON_XML_OUTPUT
|
|
31
|
-
APPIUM_SERVER_OUTPUT
|
|
32
|
-
APPLICATION_CRASH_REPORT
|
|
33
|
-
AUTOMATION_OUTPUT
|
|
34
|
-
CALABASH_JAVA_XML_OUTPUT
|
|
35
|
-
CALABASH_JSON_OUTPUT
|
|
36
|
-
CALABASH_PRETTY_OUTPUT
|
|
37
|
-
CALABASH_STANDARD_OUTPUT
|
|
38
|
-
CUSTOMER_ARTIFACT
|
|
39
|
-
CUSTOMER_ARTIFACT_LOG
|
|
40
|
-
DEVICE_LOG
|
|
41
|
-
EXERCISER_MONKEY_OUTPUT
|
|
42
|
-
EXPLORER_EVENT_LOG
|
|
43
|
-
EXPLORER_SUMMARY_LOG
|
|
44
|
-
INSTRUMENTATION_OUTPUT
|
|
45
|
-
MESSAGE_LOG
|
|
46
|
-
RESULT_LOG
|
|
47
|
-
SCREENSHOT
|
|
48
|
-
SERVICE_LOG
|
|
49
|
-
TESTSPEC_OUTPUT
|
|
50
|
-
UNKNOWN
|
|
51
|
-
VIDEO
|
|
52
|
-
VIDEO_LOG
|
|
53
|
-
WEBKIT_LOG
|
|
54
|
-
XCTEST_LOG
|
|
55
|
-
}
|
|
28
|
+
export declare const ArtifactType: {
|
|
29
|
+
readonly APPIUM_JAVA_OUTPUT: "APPIUM_JAVA_OUTPUT";
|
|
30
|
+
readonly APPIUM_JAVA_XML_OUTPUT: "APPIUM_JAVA_XML_OUTPUT";
|
|
31
|
+
readonly APPIUM_PYTHON_OUTPUT: "APPIUM_PYTHON_OUTPUT";
|
|
32
|
+
readonly APPIUM_PYTHON_XML_OUTPUT: "APPIUM_PYTHON_XML_OUTPUT";
|
|
33
|
+
readonly APPIUM_SERVER_OUTPUT: "APPIUM_SERVER_OUTPUT";
|
|
34
|
+
readonly APPLICATION_CRASH_REPORT: "APPLICATION_CRASH_REPORT";
|
|
35
|
+
readonly AUTOMATION_OUTPUT: "AUTOMATION_OUTPUT";
|
|
36
|
+
readonly CALABASH_JAVA_XML_OUTPUT: "CALABASH_JAVA_XML_OUTPUT";
|
|
37
|
+
readonly CALABASH_JSON_OUTPUT: "CALABASH_JSON_OUTPUT";
|
|
38
|
+
readonly CALABASH_PRETTY_OUTPUT: "CALABASH_PRETTY_OUTPUT";
|
|
39
|
+
readonly CALABASH_STANDARD_OUTPUT: "CALABASH_STANDARD_OUTPUT";
|
|
40
|
+
readonly CUSTOMER_ARTIFACT: "CUSTOMER_ARTIFACT";
|
|
41
|
+
readonly CUSTOMER_ARTIFACT_LOG: "CUSTOMER_ARTIFACT_LOG";
|
|
42
|
+
readonly DEVICE_LOG: "DEVICE_LOG";
|
|
43
|
+
readonly EXERCISER_MONKEY_OUTPUT: "EXERCISER_MONKEY_OUTPUT";
|
|
44
|
+
readonly EXPLORER_EVENT_LOG: "EXPLORER_EVENT_LOG";
|
|
45
|
+
readonly EXPLORER_SUMMARY_LOG: "EXPLORER_SUMMARY_LOG";
|
|
46
|
+
readonly INSTRUMENTATION_OUTPUT: "INSTRUMENTATION_OUTPUT";
|
|
47
|
+
readonly MESSAGE_LOG: "MESSAGE_LOG";
|
|
48
|
+
readonly RESULT_LOG: "RESULT_LOG";
|
|
49
|
+
readonly SCREENSHOT: "SCREENSHOT";
|
|
50
|
+
readonly SERVICE_LOG: "SERVICE_LOG";
|
|
51
|
+
readonly TESTSPEC_OUTPUT: "TESTSPEC_OUTPUT";
|
|
52
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
53
|
+
readonly VIDEO: "VIDEO";
|
|
54
|
+
readonly VIDEO_LOG: "VIDEO_LOG";
|
|
55
|
+
readonly WEBKIT_LOG: "WEBKIT_LOG";
|
|
56
|
+
readonly XCTEST_LOG: "XCTEST_LOG";
|
|
57
|
+
};
|
|
58
|
+
export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
|
|
56
59
|
export interface Artifact {
|
|
57
60
|
arn?: string;
|
|
58
61
|
name?: string;
|
|
@@ -60,15 +63,18 @@ export interface Artifact {
|
|
|
60
63
|
extension?: string;
|
|
61
64
|
url?: string;
|
|
62
65
|
}
|
|
63
|
-
export declare
|
|
64
|
-
FILE
|
|
65
|
-
LOG
|
|
66
|
-
SCREENSHOT
|
|
67
|
-
}
|
|
68
|
-
export
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
66
|
+
export declare const ArtifactCategory: {
|
|
67
|
+
readonly FILE: "FILE";
|
|
68
|
+
readonly LOG: "LOG";
|
|
69
|
+
readonly SCREENSHOT: "SCREENSHOT";
|
|
70
|
+
};
|
|
71
|
+
export type ArtifactCategory =
|
|
72
|
+
(typeof ArtifactCategory)[keyof typeof ArtifactCategory];
|
|
73
|
+
export declare const BillingMethod: {
|
|
74
|
+
readonly METERED: "METERED";
|
|
75
|
+
readonly UNMETERED: "UNMETERED";
|
|
76
|
+
};
|
|
77
|
+
export type BillingMethod = (typeof BillingMethod)[keyof typeof BillingMethod];
|
|
72
78
|
export declare class CannotDeleteException extends __BaseException {
|
|
73
79
|
readonly name: "CannotDeleteException";
|
|
74
80
|
readonly $fault: "client";
|
|
@@ -90,31 +96,34 @@ export interface CPU {
|
|
|
90
96
|
architecture?: string;
|
|
91
97
|
clock?: number;
|
|
92
98
|
}
|
|
93
|
-
export declare
|
|
94
|
-
APPIUM_VERSION
|
|
95
|
-
ARN
|
|
96
|
-
AVAILABILITY
|
|
97
|
-
FLEET_TYPE
|
|
98
|
-
FORM_FACTOR
|
|
99
|
-
INSTANCE_ARN
|
|
100
|
-
INSTANCE_LABELS
|
|
101
|
-
MANUFACTURER
|
|
102
|
-
MODEL
|
|
103
|
-
OS_VERSION
|
|
104
|
-
PLATFORM
|
|
105
|
-
REMOTE_ACCESS_ENABLED
|
|
106
|
-
REMOTE_DEBUG_ENABLED
|
|
107
|
-
}
|
|
108
|
-
export
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
99
|
+
export declare const DeviceAttribute: {
|
|
100
|
+
readonly APPIUM_VERSION: "APPIUM_VERSION";
|
|
101
|
+
readonly ARN: "ARN";
|
|
102
|
+
readonly AVAILABILITY: "AVAILABILITY";
|
|
103
|
+
readonly FLEET_TYPE: "FLEET_TYPE";
|
|
104
|
+
readonly FORM_FACTOR: "FORM_FACTOR";
|
|
105
|
+
readonly INSTANCE_ARN: "INSTANCE_ARN";
|
|
106
|
+
readonly INSTANCE_LABELS: "INSTANCE_LABELS";
|
|
107
|
+
readonly MANUFACTURER: "MANUFACTURER";
|
|
108
|
+
readonly MODEL: "MODEL";
|
|
109
|
+
readonly OS_VERSION: "OS_VERSION";
|
|
110
|
+
readonly PLATFORM: "PLATFORM";
|
|
111
|
+
readonly REMOTE_ACCESS_ENABLED: "REMOTE_ACCESS_ENABLED";
|
|
112
|
+
readonly REMOTE_DEBUG_ENABLED: "REMOTE_DEBUG_ENABLED";
|
|
113
|
+
};
|
|
114
|
+
export type DeviceAttribute =
|
|
115
|
+
(typeof DeviceAttribute)[keyof typeof DeviceAttribute];
|
|
116
|
+
export declare const RuleOperator: {
|
|
117
|
+
readonly CONTAINS: "CONTAINS";
|
|
118
|
+
readonly EQUALS: "EQUALS";
|
|
119
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
120
|
+
readonly GREATER_THAN_OR_EQUALS: "GREATER_THAN_OR_EQUALS";
|
|
121
|
+
readonly IN: "IN";
|
|
122
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
123
|
+
readonly LESS_THAN_OR_EQUALS: "LESS_THAN_OR_EQUALS";
|
|
124
|
+
readonly NOT_IN: "NOT_IN";
|
|
125
|
+
};
|
|
126
|
+
export type RuleOperator = (typeof RuleOperator)[keyof typeof RuleOperator];
|
|
118
127
|
export interface Rule {
|
|
119
128
|
attribute?: DeviceAttribute | string;
|
|
120
129
|
operator?: RuleOperator | string;
|
|
@@ -127,10 +136,12 @@ export interface CreateDevicePoolRequest {
|
|
|
127
136
|
rules: Rule[] | undefined;
|
|
128
137
|
maxDevices?: number;
|
|
129
138
|
}
|
|
130
|
-
export declare
|
|
131
|
-
CURATED
|
|
132
|
-
PRIVATE
|
|
133
|
-
}
|
|
139
|
+
export declare const DevicePoolType: {
|
|
140
|
+
readonly CURATED: "CURATED";
|
|
141
|
+
readonly PRIVATE: "PRIVATE";
|
|
142
|
+
};
|
|
143
|
+
export type DevicePoolType =
|
|
144
|
+
(typeof DevicePoolType)[keyof typeof DevicePoolType];
|
|
134
145
|
export interface DevicePool {
|
|
135
146
|
arn?: string;
|
|
136
147
|
name?: string;
|
|
@@ -179,10 +190,12 @@ export interface InstanceProfile {
|
|
|
179
190
|
export interface CreateInstanceProfileResult {
|
|
180
191
|
instanceProfile?: InstanceProfile;
|
|
181
192
|
}
|
|
182
|
-
export declare
|
|
183
|
-
CURATED
|
|
184
|
-
PRIVATE
|
|
185
|
-
}
|
|
193
|
+
export declare const NetworkProfileType: {
|
|
194
|
+
readonly CURATED: "CURATED";
|
|
195
|
+
readonly PRIVATE: "PRIVATE";
|
|
196
|
+
};
|
|
197
|
+
export type NetworkProfileType =
|
|
198
|
+
(typeof NetworkProfileType)[keyof typeof NetworkProfileType];
|
|
186
199
|
export interface CreateNetworkProfileRequest {
|
|
187
200
|
projectArn: string | undefined;
|
|
188
201
|
name: string | undefined;
|
|
@@ -246,11 +259,13 @@ export interface CreateRemoteAccessSessionConfiguration {
|
|
|
246
259
|
billingMethod?: BillingMethod | string;
|
|
247
260
|
vpceConfigurationArns?: string[];
|
|
248
261
|
}
|
|
249
|
-
export declare
|
|
250
|
-
INTERACTIVE
|
|
251
|
-
NO_VIDEO
|
|
252
|
-
VIDEO_ONLY
|
|
253
|
-
}
|
|
262
|
+
export declare const InteractionMode: {
|
|
263
|
+
readonly INTERACTIVE: "INTERACTIVE";
|
|
264
|
+
readonly NO_VIDEO: "NO_VIDEO";
|
|
265
|
+
readonly VIDEO_ONLY: "VIDEO_ONLY";
|
|
266
|
+
};
|
|
267
|
+
export type InteractionMode =
|
|
268
|
+
(typeof InteractionMode)[keyof typeof InteractionMode];
|
|
254
269
|
export interface CreateRemoteAccessSessionRequest {
|
|
255
270
|
projectArn: string | undefined;
|
|
256
271
|
deviceArn: string | undefined;
|
|
@@ -265,22 +280,28 @@ export interface CreateRemoteAccessSessionRequest {
|
|
|
265
280
|
interactionMode?: InteractionMode | string;
|
|
266
281
|
skipAppResign?: boolean;
|
|
267
282
|
}
|
|
268
|
-
export declare
|
|
269
|
-
AVAILABLE
|
|
270
|
-
BUSY
|
|
271
|
-
HIGHLY_AVAILABLE
|
|
272
|
-
TEMPORARY_NOT_AVAILABLE
|
|
273
|
-
}
|
|
274
|
-
export
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
283
|
+
export declare const DeviceAvailability: {
|
|
284
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
285
|
+
readonly BUSY: "BUSY";
|
|
286
|
+
readonly HIGHLY_AVAILABLE: "HIGHLY_AVAILABLE";
|
|
287
|
+
readonly TEMPORARY_NOT_AVAILABLE: "TEMPORARY_NOT_AVAILABLE";
|
|
288
|
+
};
|
|
289
|
+
export type DeviceAvailability =
|
|
290
|
+
(typeof DeviceAvailability)[keyof typeof DeviceAvailability];
|
|
291
|
+
export declare const DeviceFormFactor: {
|
|
292
|
+
readonly PHONE: "PHONE";
|
|
293
|
+
readonly TABLET: "TABLET";
|
|
294
|
+
};
|
|
295
|
+
export type DeviceFormFactor =
|
|
296
|
+
(typeof DeviceFormFactor)[keyof typeof DeviceFormFactor];
|
|
297
|
+
export declare const InstanceStatus: {
|
|
298
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
299
|
+
readonly IN_USE: "IN_USE";
|
|
300
|
+
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
301
|
+
readonly PREPARING: "PREPARING";
|
|
302
|
+
};
|
|
303
|
+
export type InstanceStatus =
|
|
304
|
+
(typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
284
305
|
export interface DeviceInstance {
|
|
285
306
|
arn?: string;
|
|
286
307
|
deviceArn?: string;
|
|
@@ -321,26 +342,30 @@ export interface DeviceMinutes {
|
|
|
321
342
|
metered?: number;
|
|
322
343
|
unmetered?: number;
|
|
323
344
|
}
|
|
324
|
-
export declare
|
|
325
|
-
ERRORED
|
|
326
|
-
FAILED
|
|
327
|
-
PASSED
|
|
328
|
-
PENDING
|
|
329
|
-
SKIPPED
|
|
330
|
-
STOPPED
|
|
331
|
-
WARNED
|
|
332
|
-
}
|
|
333
|
-
export
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
345
|
+
export declare const ExecutionResult: {
|
|
346
|
+
readonly ERRORED: "ERRORED";
|
|
347
|
+
readonly FAILED: "FAILED";
|
|
348
|
+
readonly PASSED: "PASSED";
|
|
349
|
+
readonly PENDING: "PENDING";
|
|
350
|
+
readonly SKIPPED: "SKIPPED";
|
|
351
|
+
readonly STOPPED: "STOPPED";
|
|
352
|
+
readonly WARNED: "WARNED";
|
|
353
|
+
};
|
|
354
|
+
export type ExecutionResult =
|
|
355
|
+
(typeof ExecutionResult)[keyof typeof ExecutionResult];
|
|
356
|
+
export declare const ExecutionStatus: {
|
|
357
|
+
readonly COMPLETED: "COMPLETED";
|
|
358
|
+
readonly PENDING: "PENDING";
|
|
359
|
+
readonly PENDING_CONCURRNECY: "PENDING_CONCURRENCY";
|
|
360
|
+
readonly PENDING_DEVICE: "PENDING_DEVICE";
|
|
361
|
+
readonly PREPARING: "PREPARING";
|
|
362
|
+
readonly PROCESSING: "PROCESSING";
|
|
363
|
+
readonly RUNNING: "RUNNING";
|
|
364
|
+
readonly SCHEDULING: "SCHEDULING";
|
|
365
|
+
readonly STOPPING: "STOPPING";
|
|
366
|
+
};
|
|
367
|
+
export type ExecutionStatus =
|
|
368
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
344
369
|
export interface RemoteAccessSession {
|
|
345
370
|
arn?: string;
|
|
346
371
|
name?: string;
|
|
@@ -403,56 +428,60 @@ export interface CreateTestGridUrlResult {
|
|
|
403
428
|
url?: string;
|
|
404
429
|
expires?: Date;
|
|
405
430
|
}
|
|
406
|
-
export declare
|
|
407
|
-
ANDROID_APP
|
|
408
|
-
APPIUM_JAVA_JUNIT_TEST_PACKAGE
|
|
409
|
-
APPIUM_JAVA_JUNIT_TEST_SPEC
|
|
410
|
-
APPIUM_JAVA_TESTNG_TEST_PACKAGE
|
|
411
|
-
APPIUM_JAVA_TESTNG_TEST_SPEC
|
|
412
|
-
APPIUM_NODE_TEST_PACKAGE
|
|
413
|
-
APPIUM_NODE_TEST_SPEC
|
|
414
|
-
APPIUM_PYTHON_TEST_PACKAGE
|
|
415
|
-
APPIUM_PYTHON_TEST_SPEC
|
|
416
|
-
APPIUM_RUBY_TEST_PACKAGE
|
|
417
|
-
APPIUM_RUBY_TEST_SPEC
|
|
418
|
-
APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE
|
|
419
|
-
APPIUM_WEB_JAVA_JUNIT_TEST_SPEC
|
|
420
|
-
APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE
|
|
421
|
-
APPIUM_WEB_JAVA_TESTNG_TEST_SPEC
|
|
422
|
-
APPIUM_WEB_NODE_TEST_PACKAGE
|
|
423
|
-
APPIUM_WEB_NODE_TEST_SPEC
|
|
424
|
-
APPIUM_WEB_PYTHON_TEST_PACKAGE
|
|
425
|
-
APPIUM_WEB_PYTHON_TEST_SPEC
|
|
426
|
-
APPIUM_WEB_RUBY_TEST_PACKAGE
|
|
427
|
-
APPIUM_WEB_RUBY_TEST_SPEC
|
|
428
|
-
CALABASH_TEST_PACKAGE
|
|
429
|
-
EXTERNAL_DATA
|
|
430
|
-
INSTRUMENTATION_TEST_PACKAGE
|
|
431
|
-
INSTRUMENTATION_TEST_SPEC
|
|
432
|
-
IOS_APP
|
|
433
|
-
UIAUTOMATION_TEST_PACKAGE
|
|
434
|
-
UIAUTOMATOR_TEST_PACKAGE
|
|
435
|
-
WEB_APP
|
|
436
|
-
XCTEST_TEST_PACKAGE
|
|
437
|
-
XCTEST_UI_TEST_PACKAGE
|
|
438
|
-
XCTEST_UI_TEST_SPEC
|
|
439
|
-
}
|
|
431
|
+
export declare const UploadType: {
|
|
432
|
+
readonly ANDROID_APP: "ANDROID_APP";
|
|
433
|
+
readonly APPIUM_JAVA_JUNIT_TEST_PACKAGE: "APPIUM_JAVA_JUNIT_TEST_PACKAGE";
|
|
434
|
+
readonly APPIUM_JAVA_JUNIT_TEST_SPEC: "APPIUM_JAVA_JUNIT_TEST_SPEC";
|
|
435
|
+
readonly APPIUM_JAVA_TESTNG_TEST_PACKAGE: "APPIUM_JAVA_TESTNG_TEST_PACKAGE";
|
|
436
|
+
readonly APPIUM_JAVA_TESTNG_TEST_SPEC: "APPIUM_JAVA_TESTNG_TEST_SPEC";
|
|
437
|
+
readonly APPIUM_NODE_TEST_PACKAGE: "APPIUM_NODE_TEST_PACKAGE";
|
|
438
|
+
readonly APPIUM_NODE_TEST_SPEC: "APPIUM_NODE_TEST_SPEC";
|
|
439
|
+
readonly APPIUM_PYTHON_TEST_PACKAGE: "APPIUM_PYTHON_TEST_PACKAGE";
|
|
440
|
+
readonly APPIUM_PYTHON_TEST_SPEC: "APPIUM_PYTHON_TEST_SPEC";
|
|
441
|
+
readonly APPIUM_RUBY_TEST_PACKAGE: "APPIUM_RUBY_TEST_PACKAGE";
|
|
442
|
+
readonly APPIUM_RUBY_TEST_SPEC: "APPIUM_RUBY_TEST_SPEC";
|
|
443
|
+
readonly APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE: "APPIUM_WEB_JAVA_JUNIT_TEST_PACKAGE";
|
|
444
|
+
readonly APPIUM_WEB_JAVA_JUNIT_TEST_SPEC: "APPIUM_WEB_JAVA_JUNIT_TEST_SPEC";
|
|
445
|
+
readonly APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE: "APPIUM_WEB_JAVA_TESTNG_TEST_PACKAGE";
|
|
446
|
+
readonly APPIUM_WEB_JAVA_TESTNG_TEST_SPEC: "APPIUM_WEB_JAVA_TESTNG_TEST_SPEC";
|
|
447
|
+
readonly APPIUM_WEB_NODE_TEST_PACKAGE: "APPIUM_WEB_NODE_TEST_PACKAGE";
|
|
448
|
+
readonly APPIUM_WEB_NODE_TEST_SPEC: "APPIUM_WEB_NODE_TEST_SPEC";
|
|
449
|
+
readonly APPIUM_WEB_PYTHON_TEST_PACKAGE: "APPIUM_WEB_PYTHON_TEST_PACKAGE";
|
|
450
|
+
readonly APPIUM_WEB_PYTHON_TEST_SPEC: "APPIUM_WEB_PYTHON_TEST_SPEC";
|
|
451
|
+
readonly APPIUM_WEB_RUBY_TEST_PACKAGE: "APPIUM_WEB_RUBY_TEST_PACKAGE";
|
|
452
|
+
readonly APPIUM_WEB_RUBY_TEST_SPEC: "APPIUM_WEB_RUBY_TEST_SPEC";
|
|
453
|
+
readonly CALABASH_TEST_PACKAGE: "CALABASH_TEST_PACKAGE";
|
|
454
|
+
readonly EXTERNAL_DATA: "EXTERNAL_DATA";
|
|
455
|
+
readonly INSTRUMENTATION_TEST_PACKAGE: "INSTRUMENTATION_TEST_PACKAGE";
|
|
456
|
+
readonly INSTRUMENTATION_TEST_SPEC: "INSTRUMENTATION_TEST_SPEC";
|
|
457
|
+
readonly IOS_APP: "IOS_APP";
|
|
458
|
+
readonly UIAUTOMATION_TEST_PACKAGE: "UIAUTOMATION_TEST_PACKAGE";
|
|
459
|
+
readonly UIAUTOMATOR_TEST_PACKAGE: "UIAUTOMATOR_TEST_PACKAGE";
|
|
460
|
+
readonly WEB_APP: "WEB_APP";
|
|
461
|
+
readonly XCTEST_TEST_PACKAGE: "XCTEST_TEST_PACKAGE";
|
|
462
|
+
readonly XCTEST_UI_TEST_PACKAGE: "XCTEST_UI_TEST_PACKAGE";
|
|
463
|
+
readonly XCTEST_UI_TEST_SPEC: "XCTEST_UI_TEST_SPEC";
|
|
464
|
+
};
|
|
465
|
+
export type UploadType = (typeof UploadType)[keyof typeof UploadType];
|
|
440
466
|
export interface CreateUploadRequest {
|
|
441
467
|
projectArn: string | undefined;
|
|
442
468
|
name: string | undefined;
|
|
443
469
|
type: UploadType | string | undefined;
|
|
444
470
|
contentType?: string;
|
|
445
471
|
}
|
|
446
|
-
export declare
|
|
447
|
-
CURATED
|
|
448
|
-
PRIVATE
|
|
449
|
-
}
|
|
450
|
-
export
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
472
|
+
export declare const UploadCategory: {
|
|
473
|
+
readonly CURATED: "CURATED";
|
|
474
|
+
readonly PRIVATE: "PRIVATE";
|
|
475
|
+
};
|
|
476
|
+
export type UploadCategory =
|
|
477
|
+
(typeof UploadCategory)[keyof typeof UploadCategory];
|
|
478
|
+
export declare const UploadStatus: {
|
|
479
|
+
readonly FAILED: "FAILED";
|
|
480
|
+
readonly INITIALIZED: "INITIALIZED";
|
|
481
|
+
readonly PROCESSING: "PROCESSING";
|
|
482
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
483
|
+
};
|
|
484
|
+
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
456
485
|
export interface Upload {
|
|
457
486
|
arn?: string;
|
|
458
487
|
name?: string;
|
|
@@ -484,9 +513,10 @@ export interface VPCEConfiguration {
|
|
|
484
513
|
export interface CreateVPCEConfigurationResult {
|
|
485
514
|
vpceConfiguration?: VPCEConfiguration;
|
|
486
515
|
}
|
|
487
|
-
export declare
|
|
488
|
-
USD
|
|
489
|
-
}
|
|
516
|
+
export declare const CurrencyCode: {
|
|
517
|
+
readonly USD: "USD";
|
|
518
|
+
};
|
|
519
|
+
export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
|
|
490
520
|
export interface CustomerArtifactPaths {
|
|
491
521
|
iosPaths?: string[];
|
|
492
522
|
androidPaths?: string[];
|
|
@@ -578,29 +608,30 @@ export interface ScheduleRunConfiguration {
|
|
|
578
608
|
auxiliaryApps?: string[];
|
|
579
609
|
billingMethod?: BillingMethod | string;
|
|
580
610
|
}
|
|
581
|
-
export declare
|
|
582
|
-
APPIUM_JAVA_JUNIT
|
|
583
|
-
APPIUM_JAVA_TESTNG
|
|
584
|
-
APPIUM_NODE
|
|
585
|
-
APPIUM_PYTHON
|
|
586
|
-
APPIUM_RUBY
|
|
587
|
-
APPIUM_WEB_JAVA_JUNIT
|
|
588
|
-
APPIUM_WEB_JAVA_TESTNG
|
|
589
|
-
APPIUM_WEB_NODE
|
|
590
|
-
APPIUM_WEB_PYTHON
|
|
591
|
-
APPIUM_WEB_RUBY
|
|
592
|
-
BUILTIN_EXPLORER
|
|
593
|
-
BUILTIN_FUZZ
|
|
594
|
-
CALABASH
|
|
595
|
-
INSTRUMENTATION
|
|
596
|
-
REMOTE_ACCESS_RECORD
|
|
597
|
-
REMOTE_ACCESS_REPLAY
|
|
598
|
-
UIAUTOMATION
|
|
599
|
-
UIAUTOMATOR
|
|
600
|
-
WEB_PERFORMANCE_PROFILE
|
|
601
|
-
XCTEST
|
|
602
|
-
XCTEST_UI
|
|
603
|
-
}
|
|
611
|
+
export declare const TestType: {
|
|
612
|
+
readonly APPIUM_JAVA_JUNIT: "APPIUM_JAVA_JUNIT";
|
|
613
|
+
readonly APPIUM_JAVA_TESTNG: "APPIUM_JAVA_TESTNG";
|
|
614
|
+
readonly APPIUM_NODE: "APPIUM_NODE";
|
|
615
|
+
readonly APPIUM_PYTHON: "APPIUM_PYTHON";
|
|
616
|
+
readonly APPIUM_RUBY: "APPIUM_RUBY";
|
|
617
|
+
readonly APPIUM_WEB_JAVA_JUNIT: "APPIUM_WEB_JAVA_JUNIT";
|
|
618
|
+
readonly APPIUM_WEB_JAVA_TESTNG: "APPIUM_WEB_JAVA_TESTNG";
|
|
619
|
+
readonly APPIUM_WEB_NODE: "APPIUM_WEB_NODE";
|
|
620
|
+
readonly APPIUM_WEB_PYTHON: "APPIUM_WEB_PYTHON";
|
|
621
|
+
readonly APPIUM_WEB_RUBY: "APPIUM_WEB_RUBY";
|
|
622
|
+
readonly BUILTIN_EXPLORER: "BUILTIN_EXPLORER";
|
|
623
|
+
readonly BUILTIN_FUZZ: "BUILTIN_FUZZ";
|
|
624
|
+
readonly CALABASH: "CALABASH";
|
|
625
|
+
readonly INSTRUMENTATION: "INSTRUMENTATION";
|
|
626
|
+
readonly REMOTE_ACCESS_RECORD: "REMOTE_ACCESS_RECORD";
|
|
627
|
+
readonly REMOTE_ACCESS_REPLAY: "REMOTE_ACCESS_REPLAY";
|
|
628
|
+
readonly UIAUTOMATION: "UIAUTOMATION";
|
|
629
|
+
readonly UIAUTOMATOR: "UIAUTOMATOR";
|
|
630
|
+
readonly WEB_PERFORMANCE_PROFILE: "WEB_PERFORMANCE_PROFILE";
|
|
631
|
+
readonly XCTEST: "XCTEST";
|
|
632
|
+
readonly XCTEST_UI: "XCTEST_UI";
|
|
633
|
+
};
|
|
634
|
+
export type TestType = (typeof TestType)[keyof typeof TestType];
|
|
604
635
|
export interface ScheduleRunTest {
|
|
605
636
|
type: TestType | string | undefined;
|
|
606
637
|
testPackageArn?: string;
|
|
@@ -670,16 +701,19 @@ export interface MonetaryAmount {
|
|
|
670
701
|
amount?: number;
|
|
671
702
|
currencyCode?: CurrencyCode | string;
|
|
672
703
|
}
|
|
673
|
-
export declare
|
|
674
|
-
MONTHLY
|
|
675
|
-
}
|
|
704
|
+
export declare const RecurringChargeFrequency: {
|
|
705
|
+
readonly MONTHLY: "MONTHLY";
|
|
706
|
+
};
|
|
707
|
+
export type RecurringChargeFrequency =
|
|
708
|
+
(typeof RecurringChargeFrequency)[keyof typeof RecurringChargeFrequency];
|
|
676
709
|
export interface RecurringCharge {
|
|
677
710
|
cost?: MonetaryAmount;
|
|
678
711
|
frequency?: RecurringChargeFrequency | string;
|
|
679
712
|
}
|
|
680
|
-
export declare
|
|
681
|
-
RECURRING
|
|
682
|
-
}
|
|
713
|
+
export declare const OfferingType: {
|
|
714
|
+
readonly RECURRING: "RECURRING";
|
|
715
|
+
};
|
|
716
|
+
export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
|
|
683
717
|
export interface Offering {
|
|
684
718
|
id?: string;
|
|
685
719
|
description?: string;
|
|
@@ -687,11 +721,13 @@ export interface Offering {
|
|
|
687
721
|
platform?: DevicePlatform | string;
|
|
688
722
|
recurringCharges?: RecurringCharge[];
|
|
689
723
|
}
|
|
690
|
-
export declare
|
|
691
|
-
PURCHASE
|
|
692
|
-
RENEW
|
|
693
|
-
SYSTEM
|
|
694
|
-
}
|
|
724
|
+
export declare const OfferingTransactionType: {
|
|
725
|
+
readonly PURCHASE: "PURCHASE";
|
|
726
|
+
readonly RENEW: "RENEW";
|
|
727
|
+
readonly SYSTEM: "SYSTEM";
|
|
728
|
+
};
|
|
729
|
+
export type OfferingTransactionType =
|
|
730
|
+
(typeof OfferingTransactionType)[keyof typeof OfferingTransactionType];
|
|
695
731
|
export interface OfferingStatus {
|
|
696
732
|
type?: OfferingTransactionType | string;
|
|
697
733
|
offering?: Offering;
|
|
@@ -725,20 +761,22 @@ export interface GetRemoteAccessSessionResult {
|
|
|
725
761
|
export interface GetRunRequest {
|
|
726
762
|
arn: string | undefined;
|
|
727
763
|
}
|
|
728
|
-
export declare
|
|
729
|
-
ARN
|
|
730
|
-
AVAILABILITY
|
|
731
|
-
FLEET_TYPE
|
|
732
|
-
FORM_FACTOR
|
|
733
|
-
INSTANCE_ARN
|
|
734
|
-
INSTANCE_LABELS
|
|
735
|
-
MANUFACTURER
|
|
736
|
-
MODEL
|
|
737
|
-
OS_VERSION
|
|
738
|
-
PLATFORM
|
|
739
|
-
REMOTE_ACCESS_ENABLED
|
|
740
|
-
REMOTE_DEBUG_ENABLED
|
|
741
|
-
}
|
|
764
|
+
export declare const DeviceFilterAttribute: {
|
|
765
|
+
readonly ARN: "ARN";
|
|
766
|
+
readonly AVAILABILITY: "AVAILABILITY";
|
|
767
|
+
readonly FLEET_TYPE: "FLEET_TYPE";
|
|
768
|
+
readonly FORM_FACTOR: "FORM_FACTOR";
|
|
769
|
+
readonly INSTANCE_ARN: "INSTANCE_ARN";
|
|
770
|
+
readonly INSTANCE_LABELS: "INSTANCE_LABELS";
|
|
771
|
+
readonly MANUFACTURER: "MANUFACTURER";
|
|
772
|
+
readonly MODEL: "MODEL";
|
|
773
|
+
readonly OS_VERSION: "OS_VERSION";
|
|
774
|
+
readonly PLATFORM: "PLATFORM";
|
|
775
|
+
readonly REMOTE_ACCESS_ENABLED: "REMOTE_ACCESS_ENABLED";
|
|
776
|
+
readonly REMOTE_DEBUG_ENABLED: "REMOTE_DEBUG_ENABLED";
|
|
777
|
+
};
|
|
778
|
+
export type DeviceFilterAttribute =
|
|
779
|
+
(typeof DeviceFilterAttribute)[keyof typeof DeviceFilterAttribute];
|
|
742
780
|
export interface DeviceFilter {
|
|
743
781
|
attribute: DeviceFilterAttribute | string | undefined;
|
|
744
782
|
operator: RuleOperator | string | undefined;
|
|
@@ -749,10 +787,12 @@ export interface DeviceSelectionResult {
|
|
|
749
787
|
matchedDevicesCount?: number;
|
|
750
788
|
maxDevices?: number;
|
|
751
789
|
}
|
|
752
|
-
export declare
|
|
753
|
-
PARSING_FAILED
|
|
754
|
-
VPC_ENDPOINT_SETUP_FAILED
|
|
755
|
-
}
|
|
790
|
+
export declare const ExecutionResultCode: {
|
|
791
|
+
readonly PARSING_FAILED: "PARSING_FAILED";
|
|
792
|
+
readonly VPC_ENDPOINT_SETUP_FAILED: "VPC_ENDPOINT_SETUP_FAILED";
|
|
793
|
+
};
|
|
794
|
+
export type ExecutionResultCode =
|
|
795
|
+
(typeof ExecutionResultCode)[keyof typeof ExecutionResultCode];
|
|
756
796
|
export interface Run {
|
|
757
797
|
arn?: string;
|
|
758
798
|
name?: string;
|
|
@@ -839,11 +879,13 @@ export interface GetTestGridSessionRequest {
|
|
|
839
879
|
sessionId?: string;
|
|
840
880
|
sessionArn?: string;
|
|
841
881
|
}
|
|
842
|
-
export declare
|
|
843
|
-
ACTIVE
|
|
844
|
-
CLOSED
|
|
845
|
-
ERRORED
|
|
846
|
-
}
|
|
882
|
+
export declare const TestGridSessionStatus: {
|
|
883
|
+
readonly ACTIVE: "ACTIVE";
|
|
884
|
+
readonly CLOSED: "CLOSED";
|
|
885
|
+
readonly ERRORED: "ERRORED";
|
|
886
|
+
};
|
|
887
|
+
export type TestGridSessionStatus =
|
|
888
|
+
(typeof TestGridSessionStatus)[keyof typeof TestGridSessionStatus];
|
|
847
889
|
export interface TestGridSession {
|
|
848
890
|
arn?: string;
|
|
849
891
|
status?: TestGridSessionStatus | string;
|
|
@@ -994,25 +1036,26 @@ export interface ListSamplesRequest {
|
|
|
994
1036
|
arn: string | undefined;
|
|
995
1037
|
nextToken?: string;
|
|
996
1038
|
}
|
|
997
|
-
export declare
|
|
998
|
-
CPU
|
|
999
|
-
MEMORY
|
|
1000
|
-
NATIVE_AVG_DRAWTIME
|
|
1001
|
-
NATIVE_FPS
|
|
1002
|
-
NATIVE_FRAMES
|
|
1003
|
-
NATIVE_MAX_DRAWTIME
|
|
1004
|
-
NATIVE_MIN_DRAWTIME
|
|
1005
|
-
OPENGL_AVG_DRAWTIME
|
|
1006
|
-
OPENGL_FPS
|
|
1007
|
-
OPENGL_FRAMES
|
|
1008
|
-
OPENGL_MAX_DRAWTIME
|
|
1009
|
-
OPENGL_MIN_DRAWTIME
|
|
1010
|
-
RX
|
|
1011
|
-
RX_RATE
|
|
1012
|
-
THREADS
|
|
1013
|
-
TX
|
|
1014
|
-
TX_RATE
|
|
1015
|
-
}
|
|
1039
|
+
export declare const SampleType: {
|
|
1040
|
+
readonly CPU: "CPU";
|
|
1041
|
+
readonly MEMORY: "MEMORY";
|
|
1042
|
+
readonly NATIVE_AVG_DRAWTIME: "NATIVE_AVG_DRAWTIME";
|
|
1043
|
+
readonly NATIVE_FPS: "NATIVE_FPS";
|
|
1044
|
+
readonly NATIVE_FRAMES: "NATIVE_FRAMES";
|
|
1045
|
+
readonly NATIVE_MAX_DRAWTIME: "NATIVE_MAX_DRAWTIME";
|
|
1046
|
+
readonly NATIVE_MIN_DRAWTIME: "NATIVE_MIN_DRAWTIME";
|
|
1047
|
+
readonly OPENGL_AVG_DRAWTIME: "OPENGL_AVG_DRAWTIME";
|
|
1048
|
+
readonly OPENGL_FPS: "OPENGL_FPS";
|
|
1049
|
+
readonly OPENGL_FRAMES: "OPENGL_FRAMES";
|
|
1050
|
+
readonly OPENGL_MAX_DRAWTIME: "OPENGL_MAX_DRAWTIME";
|
|
1051
|
+
readonly OPENGL_MIN_DRAWTIME: "OPENGL_MIN_DRAWTIME";
|
|
1052
|
+
readonly RX: "RX";
|
|
1053
|
+
readonly RX_RATE: "RX_RATE";
|
|
1054
|
+
readonly THREADS: "THREADS";
|
|
1055
|
+
readonly TX: "TX";
|
|
1056
|
+
readonly TX_RATE: "TX_RATE";
|
|
1057
|
+
};
|
|
1058
|
+
export type SampleType = (typeof SampleType)[keyof typeof SampleType];
|
|
1016
1059
|
export interface Sample {
|
|
1017
1060
|
arn?: string;
|
|
1018
1061
|
type?: SampleType | string;
|
|
@@ -1064,21 +1107,25 @@ export interface ListTestGridSessionActionsResult {
|
|
|
1064
1107
|
actions?: TestGridSessionAction[];
|
|
1065
1108
|
nextToken?: string;
|
|
1066
1109
|
}
|
|
1067
|
-
export declare
|
|
1068
|
-
LOG
|
|
1069
|
-
VIDEO
|
|
1070
|
-
}
|
|
1110
|
+
export declare const TestGridSessionArtifactCategory: {
|
|
1111
|
+
readonly LOG: "LOG";
|
|
1112
|
+
readonly VIDEO: "VIDEO";
|
|
1113
|
+
};
|
|
1114
|
+
export type TestGridSessionArtifactCategory =
|
|
1115
|
+
(typeof TestGridSessionArtifactCategory)[keyof typeof TestGridSessionArtifactCategory];
|
|
1071
1116
|
export interface ListTestGridSessionArtifactsRequest {
|
|
1072
1117
|
sessionArn: string | undefined;
|
|
1073
1118
|
type?: TestGridSessionArtifactCategory | string;
|
|
1074
1119
|
maxResult?: number;
|
|
1075
1120
|
nextToken?: string;
|
|
1076
1121
|
}
|
|
1077
|
-
export declare
|
|
1078
|
-
SELENIUM_LOG
|
|
1079
|
-
UNKNOWN
|
|
1080
|
-
VIDEO
|
|
1081
|
-
}
|
|
1122
|
+
export declare const TestGridSessionArtifactType: {
|
|
1123
|
+
readonly SELENIUM_LOG: "SELENIUM_LOG";
|
|
1124
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1125
|
+
readonly VIDEO: "VIDEO";
|
|
1126
|
+
};
|
|
1127
|
+
export type TestGridSessionArtifactType =
|
|
1128
|
+
(typeof TestGridSessionArtifactType)[keyof typeof TestGridSessionArtifactType];
|
|
1082
1129
|
export interface TestGridSessionArtifact {
|
|
1083
1130
|
filename?: string;
|
|
1084
1131
|
type?: TestGridSessionArtifactType | string;
|