@aws-sdk/client-device-farm 3.686.0 → 3.691.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.
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { DeviceFarmServiceException as __BaseException } from "./DeviceFarmServiceException";
3
3
  export interface TrialMinutes {
4
- total?: number;
5
- remaining?: number;
4
+ total?: number | undefined;
5
+ remaining?: number | undefined;
6
6
  }
7
7
  export declare const DevicePlatform: {
8
8
  readonly ANDROID: "ANDROID";
@@ -11,14 +11,16 @@ export declare const DevicePlatform: {
11
11
  export type DevicePlatform =
12
12
  (typeof DevicePlatform)[keyof typeof DevicePlatform];
13
13
  export interface AccountSettings {
14
- awsAccountNumber?: string;
15
- unmeteredDevices?: Partial<Record<DevicePlatform, number>>;
16
- unmeteredRemoteAccessDevices?: Partial<Record<DevicePlatform, number>>;
17
- maxJobTimeoutMinutes?: number;
18
- trialMinutes?: TrialMinutes;
19
- maxSlots?: Record<string, number>;
20
- defaultJobTimeoutMinutes?: number;
21
- skipAppResign?: boolean;
14
+ awsAccountNumber?: string | undefined;
15
+ unmeteredDevices?: Partial<Record<DevicePlatform, number>> | undefined;
16
+ unmeteredRemoteAccessDevices?:
17
+ | Partial<Record<DevicePlatform, number>>
18
+ | undefined;
19
+ maxJobTimeoutMinutes?: number | undefined;
20
+ trialMinutes?: TrialMinutes | undefined;
21
+ maxSlots?: Record<string, number> | undefined;
22
+ defaultJobTimeoutMinutes?: number | undefined;
23
+ skipAppResign?: boolean | undefined;
22
24
  }
23
25
  export declare class ArgumentException extends __BaseException {
24
26
  readonly name: "ArgumentException";
@@ -57,11 +59,11 @@ export declare const ArtifactType: {
57
59
  };
58
60
  export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
59
61
  export interface Artifact {
60
- arn?: string;
61
- name?: string;
62
- type?: ArtifactType;
63
- extension?: string;
64
- url?: string;
62
+ arn?: string | undefined;
63
+ name?: string | undefined;
64
+ type?: ArtifactType | undefined;
65
+ extension?: string | undefined;
66
+ url?: string | undefined;
65
67
  }
66
68
  export declare const ArtifactCategory: {
67
69
  readonly FILE: "FILE";
@@ -83,18 +85,18 @@ export declare class CannotDeleteException extends __BaseException {
83
85
  );
84
86
  }
85
87
  export interface Counters {
86
- total?: number;
87
- passed?: number;
88
- failed?: number;
89
- warned?: number;
90
- errored?: number;
91
- stopped?: number;
92
- skipped?: number;
88
+ total?: number | undefined;
89
+ passed?: number | undefined;
90
+ failed?: number | undefined;
91
+ warned?: number | undefined;
92
+ errored?: number | undefined;
93
+ stopped?: number | undefined;
94
+ skipped?: number | undefined;
93
95
  }
94
96
  export interface CPU {
95
- frequency?: string;
96
- architecture?: string;
97
- clock?: number;
97
+ frequency?: string | undefined;
98
+ architecture?: string | undefined;
99
+ clock?: number | undefined;
98
100
  }
99
101
  export declare const DeviceAttribute: {
100
102
  readonly APPIUM_VERSION: "APPIUM_VERSION";
@@ -125,16 +127,16 @@ export declare const RuleOperator: {
125
127
  };
126
128
  export type RuleOperator = (typeof RuleOperator)[keyof typeof RuleOperator];
127
129
  export interface Rule {
128
- attribute?: DeviceAttribute;
129
- operator?: RuleOperator;
130
- value?: string;
130
+ attribute?: DeviceAttribute | undefined;
131
+ operator?: RuleOperator | undefined;
132
+ value?: string | undefined;
131
133
  }
132
134
  export interface CreateDevicePoolRequest {
133
135
  projectArn: string | undefined;
134
136
  name: string | undefined;
135
- description?: string;
137
+ description?: string | undefined;
136
138
  rules: Rule[] | undefined;
137
- maxDevices?: number;
139
+ maxDevices?: number | undefined;
138
140
  }
139
141
  export declare const DevicePoolType: {
140
142
  readonly CURATED: "CURATED";
@@ -143,15 +145,15 @@ export declare const DevicePoolType: {
143
145
  export type DevicePoolType =
144
146
  (typeof DevicePoolType)[keyof typeof DevicePoolType];
145
147
  export interface DevicePool {
146
- arn?: string;
147
- name?: string;
148
- description?: string;
149
- type?: DevicePoolType;
150
- rules?: Rule[];
151
- maxDevices?: number;
148
+ arn?: string | undefined;
149
+ name?: string | undefined;
150
+ description?: string | undefined;
151
+ type?: DevicePoolType | undefined;
152
+ rules?: Rule[] | undefined;
153
+ maxDevices?: number | undefined;
152
154
  }
153
155
  export interface CreateDevicePoolResult {
154
- devicePool?: DevicePool;
156
+ devicePool?: DevicePool | undefined;
155
157
  }
156
158
  export declare class LimitExceededException extends __BaseException {
157
159
  readonly name: "LimitExceededException";
@@ -174,21 +176,21 @@ export declare class ServiceAccountException extends __BaseException {
174
176
  }
175
177
  export interface CreateInstanceProfileRequest {
176
178
  name: string | undefined;
177
- description?: string;
178
- packageCleanup?: boolean;
179
- excludeAppPackagesFromCleanup?: string[];
180
- rebootAfterUse?: boolean;
179
+ description?: string | undefined;
180
+ packageCleanup?: boolean | undefined;
181
+ excludeAppPackagesFromCleanup?: string[] | undefined;
182
+ rebootAfterUse?: boolean | undefined;
181
183
  }
182
184
  export interface InstanceProfile {
183
- arn?: string;
184
- packageCleanup?: boolean;
185
- excludeAppPackagesFromCleanup?: string[];
186
- rebootAfterUse?: boolean;
187
- name?: string;
188
- description?: string;
185
+ arn?: string | undefined;
186
+ packageCleanup?: boolean | undefined;
187
+ excludeAppPackagesFromCleanup?: string[] | undefined;
188
+ rebootAfterUse?: boolean | undefined;
189
+ name?: string | undefined;
190
+ description?: string | undefined;
189
191
  }
190
192
  export interface CreateInstanceProfileResult {
191
- instanceProfile?: InstanceProfile;
193
+ instanceProfile?: InstanceProfile | undefined;
192
194
  }
193
195
  export declare const NetworkProfileType: {
194
196
  readonly CURATED: "CURATED";
@@ -199,33 +201,33 @@ export type NetworkProfileType =
199
201
  export interface CreateNetworkProfileRequest {
200
202
  projectArn: string | undefined;
201
203
  name: string | undefined;
202
- description?: string;
203
- type?: NetworkProfileType;
204
- uplinkBandwidthBits?: number;
205
- downlinkBandwidthBits?: number;
206
- uplinkDelayMs?: number;
207
- downlinkDelayMs?: number;
208
- uplinkJitterMs?: number;
209
- downlinkJitterMs?: number;
210
- uplinkLossPercent?: number;
211
- downlinkLossPercent?: number;
204
+ description?: string | undefined;
205
+ type?: NetworkProfileType | undefined;
206
+ uplinkBandwidthBits?: number | undefined;
207
+ downlinkBandwidthBits?: number | undefined;
208
+ uplinkDelayMs?: number | undefined;
209
+ downlinkDelayMs?: number | undefined;
210
+ uplinkJitterMs?: number | undefined;
211
+ downlinkJitterMs?: number | undefined;
212
+ uplinkLossPercent?: number | undefined;
213
+ downlinkLossPercent?: number | undefined;
212
214
  }
213
215
  export interface NetworkProfile {
214
- arn?: string;
215
- name?: string;
216
- description?: string;
217
- type?: NetworkProfileType;
218
- uplinkBandwidthBits?: number;
219
- downlinkBandwidthBits?: number;
220
- uplinkDelayMs?: number;
221
- downlinkDelayMs?: number;
222
- uplinkJitterMs?: number;
223
- downlinkJitterMs?: number;
224
- uplinkLossPercent?: number;
225
- downlinkLossPercent?: number;
216
+ arn?: string | undefined;
217
+ name?: string | undefined;
218
+ description?: string | undefined;
219
+ type?: NetworkProfileType | undefined;
220
+ uplinkBandwidthBits?: number | undefined;
221
+ downlinkBandwidthBits?: number | undefined;
222
+ uplinkDelayMs?: number | undefined;
223
+ downlinkDelayMs?: number | undefined;
224
+ uplinkJitterMs?: number | undefined;
225
+ downlinkJitterMs?: number | undefined;
226
+ uplinkLossPercent?: number | undefined;
227
+ downlinkLossPercent?: number | undefined;
226
228
  }
227
229
  export interface CreateNetworkProfileResult {
228
- networkProfile?: NetworkProfile;
230
+ networkProfile?: NetworkProfile | undefined;
229
231
  }
230
232
  export interface VpcConfig {
231
233
  securityGroupIds: string[] | undefined;
@@ -234,30 +236,30 @@ export interface VpcConfig {
234
236
  }
235
237
  export interface CreateProjectRequest {
236
238
  name: string | undefined;
237
- defaultJobTimeoutMinutes?: number;
238
- vpcConfig?: VpcConfig;
239
+ defaultJobTimeoutMinutes?: number | undefined;
240
+ vpcConfig?: VpcConfig | undefined;
239
241
  }
240
242
  export interface Project {
241
- arn?: string;
242
- name?: string;
243
- defaultJobTimeoutMinutes?: number;
244
- created?: Date;
245
- vpcConfig?: VpcConfig;
243
+ arn?: string | undefined;
244
+ name?: string | undefined;
245
+ defaultJobTimeoutMinutes?: number | undefined;
246
+ created?: Date | undefined;
247
+ vpcConfig?: VpcConfig | undefined;
246
248
  }
247
249
  export interface CreateProjectResult {
248
- project?: Project;
250
+ project?: Project | undefined;
249
251
  }
250
252
  export declare class TagOperationException extends __BaseException {
251
253
  readonly name: "TagOperationException";
252
254
  readonly $fault: "client";
253
- resourceName?: string;
255
+ resourceName?: string | undefined;
254
256
  constructor(
255
257
  opts: __ExceptionOptionType<TagOperationException, __BaseException>
256
258
  );
257
259
  }
258
260
  export interface CreateRemoteAccessSessionConfiguration {
259
- billingMethod?: BillingMethod;
260
- vpceConfigurationArns?: string[];
261
+ billingMethod?: BillingMethod | undefined;
262
+ vpceConfigurationArns?: string[] | undefined;
261
263
  }
262
264
  export declare const InteractionMode: {
263
265
  readonly INTERACTIVE: "INTERACTIVE";
@@ -269,16 +271,16 @@ export type InteractionMode =
269
271
  export interface CreateRemoteAccessSessionRequest {
270
272
  projectArn: string | undefined;
271
273
  deviceArn: string | undefined;
272
- instanceArn?: string;
273
- sshPublicKey?: string;
274
- remoteDebugEnabled?: boolean;
275
- remoteRecordEnabled?: boolean;
276
- remoteRecordAppArn?: string;
277
- name?: string;
278
- clientId?: string;
279
- configuration?: CreateRemoteAccessSessionConfiguration;
280
- interactionMode?: InteractionMode;
281
- skipAppResign?: boolean;
274
+ instanceArn?: string | undefined;
275
+ sshPublicKey?: string | undefined;
276
+ remoteDebugEnabled?: boolean | undefined;
277
+ remoteRecordEnabled?: boolean | undefined;
278
+ remoteRecordAppArn?: string | undefined;
279
+ name?: string | undefined;
280
+ clientId?: string | undefined;
281
+ configuration?: CreateRemoteAccessSessionConfiguration | undefined;
282
+ interactionMode?: InteractionMode | undefined;
283
+ skipAppResign?: boolean | undefined;
282
284
  }
283
285
  export declare const DeviceAvailability: {
284
286
  readonly AVAILABLE: "AVAILABLE";
@@ -303,44 +305,44 @@ export declare const InstanceStatus: {
303
305
  export type InstanceStatus =
304
306
  (typeof InstanceStatus)[keyof typeof InstanceStatus];
305
307
  export interface DeviceInstance {
306
- arn?: string;
307
- deviceArn?: string;
308
- labels?: string[];
309
- status?: InstanceStatus;
310
- udid?: string;
311
- instanceProfile?: InstanceProfile;
308
+ arn?: string | undefined;
309
+ deviceArn?: string | undefined;
310
+ labels?: string[] | undefined;
311
+ status?: InstanceStatus | undefined;
312
+ udid?: string | undefined;
313
+ instanceProfile?: InstanceProfile | undefined;
312
314
  }
313
315
  export interface Resolution {
314
- width?: number;
315
- height?: number;
316
+ width?: number | undefined;
317
+ height?: number | undefined;
316
318
  }
317
319
  export interface Device {
318
- arn?: string;
319
- name?: string;
320
- manufacturer?: string;
321
- model?: string;
322
- modelId?: string;
323
- formFactor?: DeviceFormFactor;
324
- platform?: DevicePlatform;
325
- os?: string;
326
- cpu?: CPU;
327
- resolution?: Resolution;
328
- heapSize?: number;
329
- memory?: number;
330
- image?: string;
331
- carrier?: string;
332
- radio?: string;
333
- remoteAccessEnabled?: boolean;
334
- remoteDebugEnabled?: boolean;
335
- fleetType?: string;
336
- fleetName?: string;
337
- instances?: DeviceInstance[];
338
- availability?: DeviceAvailability;
320
+ arn?: string | undefined;
321
+ name?: string | undefined;
322
+ manufacturer?: string | undefined;
323
+ model?: string | undefined;
324
+ modelId?: string | undefined;
325
+ formFactor?: DeviceFormFactor | undefined;
326
+ platform?: DevicePlatform | undefined;
327
+ os?: string | undefined;
328
+ cpu?: CPU | undefined;
329
+ resolution?: Resolution | undefined;
330
+ heapSize?: number | undefined;
331
+ memory?: number | undefined;
332
+ image?: string | undefined;
333
+ carrier?: string | undefined;
334
+ radio?: string | undefined;
335
+ remoteAccessEnabled?: boolean | undefined;
336
+ remoteDebugEnabled?: boolean | undefined;
337
+ fleetType?: string | undefined;
338
+ fleetName?: string | undefined;
339
+ instances?: DeviceInstance[] | undefined;
340
+ availability?: DeviceAvailability | undefined;
339
341
  }
340
342
  export interface DeviceMinutes {
341
- total?: number;
342
- metered?: number;
343
- unmetered?: number;
343
+ total?: number | undefined;
344
+ metered?: number | undefined;
345
+ unmetered?: number | undefined;
344
346
  }
345
347
  export declare const ExecutionResult: {
346
348
  readonly ERRORED: "ERRORED";
@@ -367,31 +369,31 @@ export declare const ExecutionStatus: {
367
369
  export type ExecutionStatus =
368
370
  (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
369
371
  export interface RemoteAccessSession {
370
- arn?: string;
371
- name?: string;
372
- created?: Date;
373
- status?: ExecutionStatus;
374
- result?: ExecutionResult;
375
- message?: string;
376
- started?: Date;
377
- stopped?: Date;
378
- device?: Device;
379
- instanceArn?: string;
380
- remoteDebugEnabled?: boolean;
381
- remoteRecordEnabled?: boolean;
382
- remoteRecordAppArn?: string;
383
- hostAddress?: string;
384
- clientId?: string;
385
- billingMethod?: BillingMethod;
386
- deviceMinutes?: DeviceMinutes;
387
- endpoint?: string;
388
- deviceUdid?: string;
389
- interactionMode?: InteractionMode;
390
- skipAppResign?: boolean;
391
- vpcConfig?: VpcConfig;
372
+ arn?: string | undefined;
373
+ name?: string | undefined;
374
+ created?: Date | undefined;
375
+ status?: ExecutionStatus | undefined;
376
+ result?: ExecutionResult | undefined;
377
+ message?: string | undefined;
378
+ started?: Date | undefined;
379
+ stopped?: Date | undefined;
380
+ device?: Device | undefined;
381
+ instanceArn?: string | undefined;
382
+ remoteDebugEnabled?: boolean | undefined;
383
+ remoteRecordEnabled?: boolean | undefined;
384
+ remoteRecordAppArn?: string | undefined;
385
+ hostAddress?: string | undefined;
386
+ clientId?: string | undefined;
387
+ billingMethod?: BillingMethod | undefined;
388
+ deviceMinutes?: DeviceMinutes | undefined;
389
+ endpoint?: string | undefined;
390
+ deviceUdid?: string | undefined;
391
+ interactionMode?: InteractionMode | undefined;
392
+ skipAppResign?: boolean | undefined;
393
+ vpcConfig?: VpcConfig | undefined;
392
394
  }
393
395
  export interface CreateRemoteAccessSessionResult {
394
- remoteAccessSession?: RemoteAccessSession;
396
+ remoteAccessSession?: RemoteAccessSession | undefined;
395
397
  }
396
398
  export interface TestGridVpcConfig {
397
399
  securityGroupIds: string[] | undefined;
@@ -400,18 +402,18 @@ export interface TestGridVpcConfig {
400
402
  }
401
403
  export interface CreateTestGridProjectRequest {
402
404
  name: string | undefined;
403
- description?: string;
404
- vpcConfig?: TestGridVpcConfig;
405
+ description?: string | undefined;
406
+ vpcConfig?: TestGridVpcConfig | undefined;
405
407
  }
406
408
  export interface TestGridProject {
407
- arn?: string;
408
- name?: string;
409
- description?: string;
410
- vpcConfig?: TestGridVpcConfig;
411
- created?: Date;
409
+ arn?: string | undefined;
410
+ name?: string | undefined;
411
+ description?: string | undefined;
412
+ vpcConfig?: TestGridVpcConfig | undefined;
413
+ created?: Date | undefined;
412
414
  }
413
415
  export interface CreateTestGridProjectResult {
414
- testGridProject?: TestGridProject;
416
+ testGridProject?: TestGridProject | undefined;
415
417
  }
416
418
  export declare class InternalServiceException extends __BaseException {
417
419
  readonly name: "InternalServiceException";
@@ -425,8 +427,8 @@ export interface CreateTestGridUrlRequest {
425
427
  expiresInSeconds: number | undefined;
426
428
  }
427
429
  export interface CreateTestGridUrlResult {
428
- url?: string;
429
- expires?: Date;
430
+ url?: string | undefined;
431
+ expires?: Date | undefined;
430
432
  }
431
433
  export declare const UploadType: {
432
434
  readonly ANDROID_APP: "ANDROID_APP";
@@ -467,7 +469,7 @@ export interface CreateUploadRequest {
467
469
  projectArn: string | undefined;
468
470
  name: string | undefined;
469
471
  type: UploadType | undefined;
470
- contentType?: string;
472
+ contentType?: string | undefined;
471
473
  }
472
474
  export declare const UploadCategory: {
473
475
  readonly CURATED: "CURATED";
@@ -483,44 +485,44 @@ export declare const UploadStatus: {
483
485
  };
484
486
  export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
485
487
  export interface Upload {
486
- arn?: string;
487
- name?: string;
488
- created?: Date;
489
- type?: UploadType;
490
- status?: UploadStatus;
491
- url?: string;
492
- metadata?: string;
493
- contentType?: string;
494
- message?: string;
495
- category?: UploadCategory;
488
+ arn?: string | undefined;
489
+ name?: string | undefined;
490
+ created?: Date | undefined;
491
+ type?: UploadType | undefined;
492
+ status?: UploadStatus | undefined;
493
+ url?: string | undefined;
494
+ metadata?: string | undefined;
495
+ contentType?: string | undefined;
496
+ message?: string | undefined;
497
+ category?: UploadCategory | undefined;
496
498
  }
497
499
  export interface CreateUploadResult {
498
- upload?: Upload;
500
+ upload?: Upload | undefined;
499
501
  }
500
502
  export interface CreateVPCEConfigurationRequest {
501
503
  vpceConfigurationName: string | undefined;
502
504
  vpceServiceName: string | undefined;
503
505
  serviceDnsName: string | undefined;
504
- vpceConfigurationDescription?: string;
506
+ vpceConfigurationDescription?: string | undefined;
505
507
  }
506
508
  export interface VPCEConfiguration {
507
- arn?: string;
508
- vpceConfigurationName?: string;
509
- vpceServiceName?: string;
510
- serviceDnsName?: string;
511
- vpceConfigurationDescription?: string;
509
+ arn?: string | undefined;
510
+ vpceConfigurationName?: string | undefined;
511
+ vpceServiceName?: string | undefined;
512
+ serviceDnsName?: string | undefined;
513
+ vpceConfigurationDescription?: string | undefined;
512
514
  }
513
515
  export interface CreateVPCEConfigurationResult {
514
- vpceConfiguration?: VPCEConfiguration;
516
+ vpceConfiguration?: VPCEConfiguration | undefined;
515
517
  }
516
518
  export declare const CurrencyCode: {
517
519
  readonly USD: "USD";
518
520
  };
519
521
  export type CurrencyCode = (typeof CurrencyCode)[keyof typeof CurrencyCode];
520
522
  export interface CustomerArtifactPaths {
521
- iosPaths?: string[];
522
- androidPaths?: string[];
523
- deviceHostPaths?: string[];
523
+ iosPaths?: string[] | undefined;
524
+ androidPaths?: string[] | undefined;
525
+ deviceHostPaths?: string[] | undefined;
524
526
  }
525
527
  export interface DeleteDevicePoolRequest {
526
528
  arn: string | undefined;
@@ -567,46 +569,46 @@ export declare class InvalidOperationException extends __BaseException {
567
569
  }
568
570
  export interface GetAccountSettingsRequest {}
569
571
  export interface GetAccountSettingsResult {
570
- accountSettings?: AccountSettings;
572
+ accountSettings?: AccountSettings | undefined;
571
573
  }
572
574
  export interface GetDeviceRequest {
573
575
  arn: string | undefined;
574
576
  }
575
577
  export interface GetDeviceResult {
576
- device?: Device;
578
+ device?: Device | undefined;
577
579
  }
578
580
  export interface GetDeviceInstanceRequest {
579
581
  arn: string | undefined;
580
582
  }
581
583
  export interface GetDeviceInstanceResult {
582
- deviceInstance?: DeviceInstance;
584
+ deviceInstance?: DeviceInstance | undefined;
583
585
  }
584
586
  export interface GetDevicePoolRequest {
585
587
  arn: string | undefined;
586
588
  }
587
589
  export interface GetDevicePoolResult {
588
- devicePool?: DevicePool;
590
+ devicePool?: DevicePool | undefined;
589
591
  }
590
592
  export interface Location {
591
593
  latitude: number | undefined;
592
594
  longitude: number | undefined;
593
595
  }
594
596
  export interface Radios {
595
- wifi?: boolean;
596
- bluetooth?: boolean;
597
- nfc?: boolean;
598
- gps?: boolean;
597
+ wifi?: boolean | undefined;
598
+ bluetooth?: boolean | undefined;
599
+ nfc?: boolean | undefined;
600
+ gps?: boolean | undefined;
599
601
  }
600
602
  export interface ScheduleRunConfiguration {
601
- extraDataPackageArn?: string;
602
- networkProfileArn?: string;
603
- locale?: string;
604
- location?: Location;
605
- vpceConfigurationArns?: string[];
606
- customerArtifactPaths?: CustomerArtifactPaths;
607
- radios?: Radios;
608
- auxiliaryApps?: string[];
609
- billingMethod?: BillingMethod;
603
+ extraDataPackageArn?: string | undefined;
604
+ networkProfileArn?: string | undefined;
605
+ locale?: string | undefined;
606
+ location?: Location | undefined;
607
+ vpceConfigurationArns?: string[] | undefined;
608
+ customerArtifactPaths?: CustomerArtifactPaths | undefined;
609
+ radios?: Radios | undefined;
610
+ auxiliaryApps?: string[] | undefined;
611
+ billingMethod?: BillingMethod | undefined;
610
612
  }
611
613
  export declare const TestType: {
612
614
  readonly APPIUM_JAVA_JUNIT: "APPIUM_JAVA_JUNIT";
@@ -627,72 +629,72 @@ export declare const TestType: {
627
629
  export type TestType = (typeof TestType)[keyof typeof TestType];
628
630
  export interface ScheduleRunTest {
629
631
  type: TestType | undefined;
630
- testPackageArn?: string;
631
- testSpecArn?: string;
632
- filter?: string;
633
- parameters?: Record<string, string>;
632
+ testPackageArn?: string | undefined;
633
+ testSpecArn?: string | undefined;
634
+ filter?: string | undefined;
635
+ parameters?: Record<string, string> | undefined;
634
636
  }
635
637
  export interface GetDevicePoolCompatibilityRequest {
636
638
  devicePoolArn: string | undefined;
637
- appArn?: string;
638
- testType?: TestType;
639
- test?: ScheduleRunTest;
640
- configuration?: ScheduleRunConfiguration;
639
+ appArn?: string | undefined;
640
+ testType?: TestType | undefined;
641
+ test?: ScheduleRunTest | undefined;
642
+ configuration?: ScheduleRunConfiguration | undefined;
641
643
  }
642
644
  export interface IncompatibilityMessage {
643
- message?: string;
644
- type?: DeviceAttribute;
645
+ message?: string | undefined;
646
+ type?: DeviceAttribute | undefined;
645
647
  }
646
648
  export interface DevicePoolCompatibilityResult {
647
- device?: Device;
648
- compatible?: boolean;
649
- incompatibilityMessages?: IncompatibilityMessage[];
649
+ device?: Device | undefined;
650
+ compatible?: boolean | undefined;
651
+ incompatibilityMessages?: IncompatibilityMessage[] | undefined;
650
652
  }
651
653
  export interface GetDevicePoolCompatibilityResult {
652
- compatibleDevices?: DevicePoolCompatibilityResult[];
653
- incompatibleDevices?: DevicePoolCompatibilityResult[];
654
+ compatibleDevices?: DevicePoolCompatibilityResult[] | undefined;
655
+ incompatibleDevices?: DevicePoolCompatibilityResult[] | undefined;
654
656
  }
655
657
  export interface GetInstanceProfileRequest {
656
658
  arn: string | undefined;
657
659
  }
658
660
  export interface GetInstanceProfileResult {
659
- instanceProfile?: InstanceProfile;
661
+ instanceProfile?: InstanceProfile | undefined;
660
662
  }
661
663
  export interface GetJobRequest {
662
664
  arn: string | undefined;
663
665
  }
664
666
  export interface Job {
665
- arn?: string;
666
- name?: string;
667
- type?: TestType;
668
- created?: Date;
669
- status?: ExecutionStatus;
670
- result?: ExecutionResult;
671
- started?: Date;
672
- stopped?: Date;
673
- counters?: Counters;
674
- message?: string;
675
- device?: Device;
676
- instanceArn?: string;
677
- deviceMinutes?: DeviceMinutes;
678
- videoEndpoint?: string;
679
- videoCapture?: boolean;
667
+ arn?: string | undefined;
668
+ name?: string | undefined;
669
+ type?: TestType | undefined;
670
+ created?: Date | undefined;
671
+ status?: ExecutionStatus | undefined;
672
+ result?: ExecutionResult | undefined;
673
+ started?: Date | undefined;
674
+ stopped?: Date | undefined;
675
+ counters?: Counters | undefined;
676
+ message?: string | undefined;
677
+ device?: Device | undefined;
678
+ instanceArn?: string | undefined;
679
+ deviceMinutes?: DeviceMinutes | undefined;
680
+ videoEndpoint?: string | undefined;
681
+ videoCapture?: boolean | undefined;
680
682
  }
681
683
  export interface GetJobResult {
682
- job?: Job;
684
+ job?: Job | undefined;
683
685
  }
684
686
  export interface GetNetworkProfileRequest {
685
687
  arn: string | undefined;
686
688
  }
687
689
  export interface GetNetworkProfileResult {
688
- networkProfile?: NetworkProfile;
690
+ networkProfile?: NetworkProfile | undefined;
689
691
  }
690
692
  export interface GetOfferingStatusRequest {
691
- nextToken?: string;
693
+ nextToken?: string | undefined;
692
694
  }
693
695
  export interface MonetaryAmount {
694
- amount?: number;
695
- currencyCode?: CurrencyCode;
696
+ amount?: number | undefined;
697
+ currencyCode?: CurrencyCode | undefined;
696
698
  }
697
699
  export declare const RecurringChargeFrequency: {
698
700
  readonly MONTHLY: "MONTHLY";
@@ -700,19 +702,19 @@ export declare const RecurringChargeFrequency: {
700
702
  export type RecurringChargeFrequency =
701
703
  (typeof RecurringChargeFrequency)[keyof typeof RecurringChargeFrequency];
702
704
  export interface RecurringCharge {
703
- cost?: MonetaryAmount;
704
- frequency?: RecurringChargeFrequency;
705
+ cost?: MonetaryAmount | undefined;
706
+ frequency?: RecurringChargeFrequency | undefined;
705
707
  }
706
708
  export declare const OfferingType: {
707
709
  readonly RECURRING: "RECURRING";
708
710
  };
709
711
  export type OfferingType = (typeof OfferingType)[keyof typeof OfferingType];
710
712
  export interface Offering {
711
- id?: string;
712
- description?: string;
713
- type?: OfferingType;
714
- platform?: DevicePlatform;
715
- recurringCharges?: RecurringCharge[];
713
+ id?: string | undefined;
714
+ description?: string | undefined;
715
+ type?: OfferingType | undefined;
716
+ platform?: DevicePlatform | undefined;
717
+ recurringCharges?: RecurringCharge[] | undefined;
716
718
  }
717
719
  export declare const OfferingTransactionType: {
718
720
  readonly PURCHASE: "PURCHASE";
@@ -722,15 +724,15 @@ export declare const OfferingTransactionType: {
722
724
  export type OfferingTransactionType =
723
725
  (typeof OfferingTransactionType)[keyof typeof OfferingTransactionType];
724
726
  export interface OfferingStatus {
725
- type?: OfferingTransactionType;
726
- offering?: Offering;
727
- quantity?: number;
728
- effectiveOn?: Date;
727
+ type?: OfferingTransactionType | undefined;
728
+ offering?: Offering | undefined;
729
+ quantity?: number | undefined;
730
+ effectiveOn?: Date | undefined;
729
731
  }
730
732
  export interface GetOfferingStatusResult {
731
- current?: Record<string, OfferingStatus>;
732
- nextPeriod?: Record<string, OfferingStatus>;
733
- nextToken?: string;
733
+ current?: Record<string, OfferingStatus> | undefined;
734
+ nextPeriod?: Record<string, OfferingStatus> | undefined;
735
+ nextToken?: string | undefined;
734
736
  }
735
737
  export declare class NotEligibleException extends __BaseException {
736
738
  readonly name: "NotEligibleException";
@@ -743,13 +745,13 @@ export interface GetProjectRequest {
743
745
  arn: string | undefined;
744
746
  }
745
747
  export interface GetProjectResult {
746
- project?: Project;
748
+ project?: Project | undefined;
747
749
  }
748
750
  export interface GetRemoteAccessSessionRequest {
749
751
  arn: string | undefined;
750
752
  }
751
753
  export interface GetRemoteAccessSessionResult {
752
- remoteAccessSession?: RemoteAccessSession;
754
+ remoteAccessSession?: RemoteAccessSession | undefined;
753
755
  }
754
756
  export interface GetRunRequest {
755
757
  arn: string | undefined;
@@ -776,9 +778,9 @@ export interface DeviceFilter {
776
778
  values: string[] | undefined;
777
779
  }
778
780
  export interface DeviceSelectionResult {
779
- filters?: DeviceFilter[];
780
- matchedDevicesCount?: number;
781
- maxDevices?: number;
781
+ filters?: DeviceFilter[] | undefined;
782
+ matchedDevicesCount?: number | undefined;
783
+ maxDevices?: number | undefined;
782
784
  }
783
785
  export declare const ExecutionResultCode: {
784
786
  readonly PARSING_FAILED: "PARSING_FAILED";
@@ -787,90 +789,90 @@ export declare const ExecutionResultCode: {
787
789
  export type ExecutionResultCode =
788
790
  (typeof ExecutionResultCode)[keyof typeof ExecutionResultCode];
789
791
  export interface Run {
790
- arn?: string;
791
- name?: string;
792
- type?: TestType;
793
- platform?: DevicePlatform;
794
- created?: Date;
795
- status?: ExecutionStatus;
796
- result?: ExecutionResult;
797
- started?: Date;
798
- stopped?: Date;
799
- counters?: Counters;
800
- message?: string;
801
- totalJobs?: number;
802
- completedJobs?: number;
803
- billingMethod?: BillingMethod;
804
- deviceMinutes?: DeviceMinutes;
805
- networkProfile?: NetworkProfile;
806
- parsingResultUrl?: string;
807
- resultCode?: ExecutionResultCode;
808
- seed?: number;
809
- appUpload?: string;
810
- eventCount?: number;
811
- jobTimeoutMinutes?: number;
812
- devicePoolArn?: string;
813
- locale?: string;
814
- radios?: Radios;
815
- location?: Location;
816
- customerArtifactPaths?: CustomerArtifactPaths;
817
- webUrl?: string;
818
- skipAppResign?: boolean;
819
- testSpecArn?: string;
820
- deviceSelectionResult?: DeviceSelectionResult;
821
- vpcConfig?: VpcConfig;
792
+ arn?: string | undefined;
793
+ name?: string | undefined;
794
+ type?: TestType | undefined;
795
+ platform?: DevicePlatform | undefined;
796
+ created?: Date | undefined;
797
+ status?: ExecutionStatus | undefined;
798
+ result?: ExecutionResult | undefined;
799
+ started?: Date | undefined;
800
+ stopped?: Date | undefined;
801
+ counters?: Counters | undefined;
802
+ message?: string | undefined;
803
+ totalJobs?: number | undefined;
804
+ completedJobs?: number | undefined;
805
+ billingMethod?: BillingMethod | undefined;
806
+ deviceMinutes?: DeviceMinutes | undefined;
807
+ networkProfile?: NetworkProfile | undefined;
808
+ parsingResultUrl?: string | undefined;
809
+ resultCode?: ExecutionResultCode | undefined;
810
+ seed?: number | undefined;
811
+ appUpload?: string | undefined;
812
+ eventCount?: number | undefined;
813
+ jobTimeoutMinutes?: number | undefined;
814
+ devicePoolArn?: string | undefined;
815
+ locale?: string | undefined;
816
+ radios?: Radios | undefined;
817
+ location?: Location | undefined;
818
+ customerArtifactPaths?: CustomerArtifactPaths | undefined;
819
+ webUrl?: string | undefined;
820
+ skipAppResign?: boolean | undefined;
821
+ testSpecArn?: string | undefined;
822
+ deviceSelectionResult?: DeviceSelectionResult | undefined;
823
+ vpcConfig?: VpcConfig | undefined;
822
824
  }
823
825
  export interface GetRunResult {
824
- run?: Run;
826
+ run?: Run | undefined;
825
827
  }
826
828
  export interface GetSuiteRequest {
827
829
  arn: string | undefined;
828
830
  }
829
831
  export interface Suite {
830
- arn?: string;
831
- name?: string;
832
- type?: TestType;
833
- created?: Date;
834
- status?: ExecutionStatus;
835
- result?: ExecutionResult;
836
- started?: Date;
837
- stopped?: Date;
838
- counters?: Counters;
839
- message?: string;
840
- deviceMinutes?: DeviceMinutes;
832
+ arn?: string | undefined;
833
+ name?: string | undefined;
834
+ type?: TestType | undefined;
835
+ created?: Date | undefined;
836
+ status?: ExecutionStatus | undefined;
837
+ result?: ExecutionResult | undefined;
838
+ started?: Date | undefined;
839
+ stopped?: Date | undefined;
840
+ counters?: Counters | undefined;
841
+ message?: string | undefined;
842
+ deviceMinutes?: DeviceMinutes | undefined;
841
843
  }
842
844
  export interface GetSuiteResult {
843
- suite?: Suite;
845
+ suite?: Suite | undefined;
844
846
  }
845
847
  export interface GetTestRequest {
846
848
  arn: string | undefined;
847
849
  }
848
850
  export interface Test {
849
- arn?: string;
850
- name?: string;
851
- type?: TestType;
852
- created?: Date;
853
- status?: ExecutionStatus;
854
- result?: ExecutionResult;
855
- started?: Date;
856
- stopped?: Date;
857
- counters?: Counters;
858
- message?: string;
859
- deviceMinutes?: DeviceMinutes;
851
+ arn?: string | undefined;
852
+ name?: string | undefined;
853
+ type?: TestType | undefined;
854
+ created?: Date | undefined;
855
+ status?: ExecutionStatus | undefined;
856
+ result?: ExecutionResult | undefined;
857
+ started?: Date | undefined;
858
+ stopped?: Date | undefined;
859
+ counters?: Counters | undefined;
860
+ message?: string | undefined;
861
+ deviceMinutes?: DeviceMinutes | undefined;
860
862
  }
861
863
  export interface GetTestResult {
862
- test?: Test;
864
+ test?: Test | undefined;
863
865
  }
864
866
  export interface GetTestGridProjectRequest {
865
867
  projectArn: string | undefined;
866
868
  }
867
869
  export interface GetTestGridProjectResult {
868
- testGridProject?: TestGridProject;
870
+ testGridProject?: TestGridProject | undefined;
869
871
  }
870
872
  export interface GetTestGridSessionRequest {
871
- projectArn?: string;
872
- sessionId?: string;
873
- sessionArn?: string;
873
+ projectArn?: string | undefined;
874
+ sessionId?: string | undefined;
875
+ sessionArn?: string | undefined;
874
876
  }
875
877
  export declare const TestGridSessionStatus: {
876
878
  readonly ACTIVE: "ACTIVE";
@@ -880,154 +882,154 @@ export declare const TestGridSessionStatus: {
880
882
  export type TestGridSessionStatus =
881
883
  (typeof TestGridSessionStatus)[keyof typeof TestGridSessionStatus];
882
884
  export interface TestGridSession {
883
- arn?: string;
884
- status?: TestGridSessionStatus;
885
- created?: Date;
886
- ended?: Date;
887
- billingMinutes?: number;
888
- seleniumProperties?: string;
885
+ arn?: string | undefined;
886
+ status?: TestGridSessionStatus | undefined;
887
+ created?: Date | undefined;
888
+ ended?: Date | undefined;
889
+ billingMinutes?: number | undefined;
890
+ seleniumProperties?: string | undefined;
889
891
  }
890
892
  export interface GetTestGridSessionResult {
891
- testGridSession?: TestGridSession;
893
+ testGridSession?: TestGridSession | undefined;
892
894
  }
893
895
  export interface GetUploadRequest {
894
896
  arn: string | undefined;
895
897
  }
896
898
  export interface GetUploadResult {
897
- upload?: Upload;
899
+ upload?: Upload | undefined;
898
900
  }
899
901
  export interface GetVPCEConfigurationRequest {
900
902
  arn: string | undefined;
901
903
  }
902
904
  export interface GetVPCEConfigurationResult {
903
- vpceConfiguration?: VPCEConfiguration;
905
+ vpceConfiguration?: VPCEConfiguration | undefined;
904
906
  }
905
907
  export interface InstallToRemoteAccessSessionRequest {
906
908
  remoteAccessSessionArn: string | undefined;
907
909
  appArn: string | undefined;
908
910
  }
909
911
  export interface InstallToRemoteAccessSessionResult {
910
- appUpload?: Upload;
912
+ appUpload?: Upload | undefined;
911
913
  }
912
914
  export interface ListArtifactsRequest {
913
915
  arn: string | undefined;
914
916
  type: ArtifactCategory | undefined;
915
- nextToken?: string;
917
+ nextToken?: string | undefined;
916
918
  }
917
919
  export interface ListArtifactsResult {
918
- artifacts?: Artifact[];
919
- nextToken?: string;
920
+ artifacts?: Artifact[] | undefined;
921
+ nextToken?: string | undefined;
920
922
  }
921
923
  export interface ListDeviceInstancesRequest {
922
- maxResults?: number;
923
- nextToken?: string;
924
+ maxResults?: number | undefined;
925
+ nextToken?: string | undefined;
924
926
  }
925
927
  export interface ListDeviceInstancesResult {
926
- deviceInstances?: DeviceInstance[];
927
- nextToken?: string;
928
+ deviceInstances?: DeviceInstance[] | undefined;
929
+ nextToken?: string | undefined;
928
930
  }
929
931
  export interface ListDevicePoolsRequest {
930
932
  arn: string | undefined;
931
- type?: DevicePoolType;
932
- nextToken?: string;
933
+ type?: DevicePoolType | undefined;
934
+ nextToken?: string | undefined;
933
935
  }
934
936
  export interface ListDevicePoolsResult {
935
- devicePools?: DevicePool[];
936
- nextToken?: string;
937
+ devicePools?: DevicePool[] | undefined;
938
+ nextToken?: string | undefined;
937
939
  }
938
940
  export interface ListDevicesRequest {
939
- arn?: string;
940
- nextToken?: string;
941
- filters?: DeviceFilter[];
941
+ arn?: string | undefined;
942
+ nextToken?: string | undefined;
943
+ filters?: DeviceFilter[] | undefined;
942
944
  }
943
945
  export interface ListDevicesResult {
944
- devices?: Device[];
945
- nextToken?: string;
946
+ devices?: Device[] | undefined;
947
+ nextToken?: string | undefined;
946
948
  }
947
949
  export interface ListInstanceProfilesRequest {
948
- maxResults?: number;
949
- nextToken?: string;
950
+ maxResults?: number | undefined;
951
+ nextToken?: string | undefined;
950
952
  }
951
953
  export interface ListInstanceProfilesResult {
952
- instanceProfiles?: InstanceProfile[];
953
- nextToken?: string;
954
+ instanceProfiles?: InstanceProfile[] | undefined;
955
+ nextToken?: string | undefined;
954
956
  }
955
957
  export interface ListJobsRequest {
956
958
  arn: string | undefined;
957
- nextToken?: string;
959
+ nextToken?: string | undefined;
958
960
  }
959
961
  export interface ListJobsResult {
960
- jobs?: Job[];
961
- nextToken?: string;
962
+ jobs?: Job[] | undefined;
963
+ nextToken?: string | undefined;
962
964
  }
963
965
  export interface ListNetworkProfilesRequest {
964
966
  arn: string | undefined;
965
- type?: NetworkProfileType;
966
- nextToken?: string;
967
+ type?: NetworkProfileType | undefined;
968
+ nextToken?: string | undefined;
967
969
  }
968
970
  export interface ListNetworkProfilesResult {
969
- networkProfiles?: NetworkProfile[];
970
- nextToken?: string;
971
+ networkProfiles?: NetworkProfile[] | undefined;
972
+ nextToken?: string | undefined;
971
973
  }
972
974
  export interface ListOfferingPromotionsRequest {
973
- nextToken?: string;
975
+ nextToken?: string | undefined;
974
976
  }
975
977
  export interface OfferingPromotion {
976
- id?: string;
977
- description?: string;
978
+ id?: string | undefined;
979
+ description?: string | undefined;
978
980
  }
979
981
  export interface ListOfferingPromotionsResult {
980
- offeringPromotions?: OfferingPromotion[];
981
- nextToken?: string;
982
+ offeringPromotions?: OfferingPromotion[] | undefined;
983
+ nextToken?: string | undefined;
982
984
  }
983
985
  export interface ListOfferingsRequest {
984
- nextToken?: string;
986
+ nextToken?: string | undefined;
985
987
  }
986
988
  export interface ListOfferingsResult {
987
- offerings?: Offering[];
988
- nextToken?: string;
989
+ offerings?: Offering[] | undefined;
990
+ nextToken?: string | undefined;
989
991
  }
990
992
  export interface ListOfferingTransactionsRequest {
991
- nextToken?: string;
993
+ nextToken?: string | undefined;
992
994
  }
993
995
  export interface OfferingTransaction {
994
- offeringStatus?: OfferingStatus;
995
- transactionId?: string;
996
- offeringPromotionId?: string;
997
- createdOn?: Date;
998
- cost?: MonetaryAmount;
996
+ offeringStatus?: OfferingStatus | undefined;
997
+ transactionId?: string | undefined;
998
+ offeringPromotionId?: string | undefined;
999
+ createdOn?: Date | undefined;
1000
+ cost?: MonetaryAmount | undefined;
999
1001
  }
1000
1002
  export interface ListOfferingTransactionsResult {
1001
- offeringTransactions?: OfferingTransaction[];
1002
- nextToken?: string;
1003
+ offeringTransactions?: OfferingTransaction[] | undefined;
1004
+ nextToken?: string | undefined;
1003
1005
  }
1004
1006
  export interface ListProjectsRequest {
1005
- arn?: string;
1006
- nextToken?: string;
1007
+ arn?: string | undefined;
1008
+ nextToken?: string | undefined;
1007
1009
  }
1008
1010
  export interface ListProjectsResult {
1009
- projects?: Project[];
1010
- nextToken?: string;
1011
+ projects?: Project[] | undefined;
1012
+ nextToken?: string | undefined;
1011
1013
  }
1012
1014
  export interface ListRemoteAccessSessionsRequest {
1013
1015
  arn: string | undefined;
1014
- nextToken?: string;
1016
+ nextToken?: string | undefined;
1015
1017
  }
1016
1018
  export interface ListRemoteAccessSessionsResult {
1017
- remoteAccessSessions?: RemoteAccessSession[];
1018
- nextToken?: string;
1019
+ remoteAccessSessions?: RemoteAccessSession[] | undefined;
1020
+ nextToken?: string | undefined;
1019
1021
  }
1020
1022
  export interface ListRunsRequest {
1021
1023
  arn: string | undefined;
1022
- nextToken?: string;
1024
+ nextToken?: string | undefined;
1023
1025
  }
1024
1026
  export interface ListRunsResult {
1025
- runs?: Run[];
1026
- nextToken?: string;
1027
+ runs?: Run[] | undefined;
1028
+ nextToken?: string | undefined;
1027
1029
  }
1028
1030
  export interface ListSamplesRequest {
1029
1031
  arn: string | undefined;
1030
- nextToken?: string;
1032
+ nextToken?: string | undefined;
1031
1033
  }
1032
1034
  export declare const SampleType: {
1033
1035
  readonly CPU: "CPU";
@@ -1050,21 +1052,21 @@ export declare const SampleType: {
1050
1052
  };
1051
1053
  export type SampleType = (typeof SampleType)[keyof typeof SampleType];
1052
1054
  export interface Sample {
1053
- arn?: string;
1054
- type?: SampleType;
1055
- url?: string;
1055
+ arn?: string | undefined;
1056
+ type?: SampleType | undefined;
1057
+ url?: string | undefined;
1056
1058
  }
1057
1059
  export interface ListSamplesResult {
1058
- samples?: Sample[];
1059
- nextToken?: string;
1060
+ samples?: Sample[] | undefined;
1061
+ nextToken?: string | undefined;
1060
1062
  }
1061
1063
  export interface ListSuitesRequest {
1062
1064
  arn: string | undefined;
1063
- nextToken?: string;
1065
+ nextToken?: string | undefined;
1064
1066
  }
1065
1067
  export interface ListSuitesResult {
1066
- suites?: Suite[];
1067
- nextToken?: string;
1068
+ suites?: Suite[] | undefined;
1069
+ nextToken?: string | undefined;
1068
1070
  }
1069
1071
  export interface ListTagsForResourceRequest {
1070
1072
  ResourceARN: string | undefined;
@@ -1074,31 +1076,31 @@ export interface Tag {
1074
1076
  Value: string | undefined;
1075
1077
  }
1076
1078
  export interface ListTagsForResourceResponse {
1077
- Tags?: Tag[];
1079
+ Tags?: Tag[] | undefined;
1078
1080
  }
1079
1081
  export interface ListTestGridProjectsRequest {
1080
- maxResult?: number;
1081
- nextToken?: string;
1082
+ maxResult?: number | undefined;
1083
+ nextToken?: string | undefined;
1082
1084
  }
1083
1085
  export interface ListTestGridProjectsResult {
1084
- testGridProjects?: TestGridProject[];
1085
- nextToken?: string;
1086
+ testGridProjects?: TestGridProject[] | undefined;
1087
+ nextToken?: string | undefined;
1086
1088
  }
1087
1089
  export interface ListTestGridSessionActionsRequest {
1088
1090
  sessionArn: string | undefined;
1089
- maxResult?: number;
1090
- nextToken?: string;
1091
+ maxResult?: number | undefined;
1092
+ nextToken?: string | undefined;
1091
1093
  }
1092
1094
  export interface TestGridSessionAction {
1093
- action?: string;
1094
- started?: Date;
1095
- duration?: number;
1096
- statusCode?: string;
1097
- requestMethod?: string;
1095
+ action?: string | undefined;
1096
+ started?: Date | undefined;
1097
+ duration?: number | undefined;
1098
+ statusCode?: string | undefined;
1099
+ requestMethod?: string | undefined;
1098
1100
  }
1099
1101
  export interface ListTestGridSessionActionsResult {
1100
- actions?: TestGridSessionAction[];
1101
- nextToken?: string;
1102
+ actions?: TestGridSessionAction[] | undefined;
1103
+ nextToken?: string | undefined;
1102
1104
  }
1103
1105
  export declare const TestGridSessionArtifactCategory: {
1104
1106
  readonly LOG: "LOG";
@@ -1108,9 +1110,9 @@ export type TestGridSessionArtifactCategory =
1108
1110
  (typeof TestGridSessionArtifactCategory)[keyof typeof TestGridSessionArtifactCategory];
1109
1111
  export interface ListTestGridSessionArtifactsRequest {
1110
1112
  sessionArn: string | undefined;
1111
- type?: TestGridSessionArtifactCategory;
1112
- maxResult?: number;
1113
- nextToken?: string;
1113
+ type?: TestGridSessionArtifactCategory | undefined;
1114
+ maxResult?: number | undefined;
1115
+ nextToken?: string | undefined;
1114
1116
  }
1115
1117
  export declare const TestGridSessionArtifactType: {
1116
1118
  readonly SELENIUM_LOG: "SELENIUM_LOG";
@@ -1120,92 +1122,94 @@ export declare const TestGridSessionArtifactType: {
1120
1122
  export type TestGridSessionArtifactType =
1121
1123
  (typeof TestGridSessionArtifactType)[keyof typeof TestGridSessionArtifactType];
1122
1124
  export interface TestGridSessionArtifact {
1123
- filename?: string;
1124
- type?: TestGridSessionArtifactType;
1125
- url?: string;
1125
+ filename?: string | undefined;
1126
+ type?: TestGridSessionArtifactType | undefined;
1127
+ url?: string | undefined;
1126
1128
  }
1127
1129
  export interface ListTestGridSessionArtifactsResult {
1128
- artifacts?: TestGridSessionArtifact[];
1129
- nextToken?: string;
1130
+ artifacts?: TestGridSessionArtifact[] | undefined;
1131
+ nextToken?: string | undefined;
1130
1132
  }
1131
1133
  export interface ListTestGridSessionsRequest {
1132
1134
  projectArn: string | undefined;
1133
- status?: TestGridSessionStatus;
1134
- creationTimeAfter?: Date;
1135
- creationTimeBefore?: Date;
1136
- endTimeAfter?: Date;
1137
- endTimeBefore?: Date;
1138
- maxResult?: number;
1139
- nextToken?: string;
1135
+ status?: TestGridSessionStatus | undefined;
1136
+ creationTimeAfter?: Date | undefined;
1137
+ creationTimeBefore?: Date | undefined;
1138
+ endTimeAfter?: Date | undefined;
1139
+ endTimeBefore?: Date | undefined;
1140
+ maxResult?: number | undefined;
1141
+ nextToken?: string | undefined;
1140
1142
  }
1141
1143
  export interface ListTestGridSessionsResult {
1142
- testGridSessions?: TestGridSession[];
1143
- nextToken?: string;
1144
+ testGridSessions?: TestGridSession[] | undefined;
1145
+ nextToken?: string | undefined;
1144
1146
  }
1145
1147
  export interface ListTestsRequest {
1146
1148
  arn: string | undefined;
1147
- nextToken?: string;
1149
+ nextToken?: string | undefined;
1148
1150
  }
1149
1151
  export interface ListTestsResult {
1150
- tests?: Test[];
1151
- nextToken?: string;
1152
+ tests?: Test[] | undefined;
1153
+ nextToken?: string | undefined;
1152
1154
  }
1153
1155
  export interface ListUniqueProblemsRequest {
1154
1156
  arn: string | undefined;
1155
- nextToken?: string;
1157
+ nextToken?: string | undefined;
1156
1158
  }
1157
1159
  export interface ProblemDetail {
1158
- arn?: string;
1159
- name?: string;
1160
+ arn?: string | undefined;
1161
+ name?: string | undefined;
1160
1162
  }
1161
1163
  export interface Problem {
1162
- run?: ProblemDetail;
1163
- job?: ProblemDetail;
1164
- suite?: ProblemDetail;
1165
- test?: ProblemDetail;
1166
- device?: Device;
1167
- result?: ExecutionResult;
1168
- message?: string;
1164
+ run?: ProblemDetail | undefined;
1165
+ job?: ProblemDetail | undefined;
1166
+ suite?: ProblemDetail | undefined;
1167
+ test?: ProblemDetail | undefined;
1168
+ device?: Device | undefined;
1169
+ result?: ExecutionResult | undefined;
1170
+ message?: string | undefined;
1169
1171
  }
1170
1172
  export interface UniqueProblem {
1171
- message?: string;
1172
- problems?: Problem[];
1173
+ message?: string | undefined;
1174
+ problems?: Problem[] | undefined;
1173
1175
  }
1174
1176
  export interface ListUniqueProblemsResult {
1175
- uniqueProblems?: Partial<Record<ExecutionResult, UniqueProblem[]>>;
1176
- nextToken?: string;
1177
+ uniqueProblems?:
1178
+ | Partial<Record<ExecutionResult, UniqueProblem[]>>
1179
+ | undefined;
1180
+ nextToken?: string | undefined;
1177
1181
  }
1178
1182
  export interface ListUploadsRequest {
1179
1183
  arn: string | undefined;
1180
- type?: UploadType;
1181
- nextToken?: string;
1184
+ type?: UploadType | undefined;
1185
+ nextToken?: string | undefined;
1182
1186
  }
1183
1187
  export interface ListUploadsResult {
1184
- uploads?: Upload[];
1185
- nextToken?: string;
1188
+ uploads?: Upload[] | undefined;
1189
+ nextToken?: string | undefined;
1186
1190
  }
1187
1191
  export interface ListVPCEConfigurationsRequest {
1188
- maxResults?: number;
1189
- nextToken?: string;
1192
+ maxResults?: number | undefined;
1193
+ nextToken?: string | undefined;
1190
1194
  }
1191
1195
  export interface ListVPCEConfigurationsResult {
1192
- vpceConfigurations?: VPCEConfiguration[];
1193
- nextToken?: string;
1196
+ vpceConfigurations?: VPCEConfiguration[] | undefined;
1197
+ nextToken?: string | undefined;
1194
1198
  }
1195
1199
  export interface PurchaseOfferingRequest {
1196
1200
  offeringId: string | undefined;
1197
1201
  quantity: number | undefined;
1198
- offeringPromotionId?: string;
1202
+ offeringPromotionId?: string | undefined;
1199
1203
  }
1200
1204
  export interface PurchaseOfferingResult {
1201
- offeringTransaction?: OfferingTransaction;
1205
+ offeringTransaction?: OfferingTransaction | undefined;
1202
1206
  }
1203
1207
  export interface RenewOfferingRequest {
1204
1208
  offeringId: string | undefined;
1205
1209
  quantity: number | undefined;
1206
1210
  }
1207
1211
  export interface RenewOfferingResult {
1208
- offeringTransaction?: OfferingTransaction;
1212
+ offeringTransaction?: OfferingTransaction | undefined;
1209
1213
  }
1210
1214
  export declare class IdempotencyException extends __BaseException {
1211
1215
  readonly name: "IdempotencyException";
@@ -1219,47 +1223,47 @@ export interface DeviceSelectionConfiguration {
1219
1223
  maxDevices: number | undefined;
1220
1224
  }
1221
1225
  export interface ExecutionConfiguration {
1222
- jobTimeoutMinutes?: number;
1223
- accountsCleanup?: boolean;
1224
- appPackagesCleanup?: boolean;
1225
- videoCapture?: boolean;
1226
- skipAppResign?: boolean;
1226
+ jobTimeoutMinutes?: number | undefined;
1227
+ accountsCleanup?: boolean | undefined;
1228
+ appPackagesCleanup?: boolean | undefined;
1229
+ videoCapture?: boolean | undefined;
1230
+ skipAppResign?: boolean | undefined;
1227
1231
  }
1228
1232
  export interface ScheduleRunRequest {
1229
1233
  projectArn: string | undefined;
1230
- appArn?: string;
1231
- devicePoolArn?: string;
1232
- deviceSelectionConfiguration?: DeviceSelectionConfiguration;
1233
- name?: string;
1234
+ appArn?: string | undefined;
1235
+ devicePoolArn?: string | undefined;
1236
+ deviceSelectionConfiguration?: DeviceSelectionConfiguration | undefined;
1237
+ name?: string | undefined;
1234
1238
  test: ScheduleRunTest | undefined;
1235
- configuration?: ScheduleRunConfiguration;
1236
- executionConfiguration?: ExecutionConfiguration;
1239
+ configuration?: ScheduleRunConfiguration | undefined;
1240
+ executionConfiguration?: ExecutionConfiguration | undefined;
1237
1241
  }
1238
1242
  export interface ScheduleRunResult {
1239
- run?: Run;
1243
+ run?: Run | undefined;
1240
1244
  }
1241
1245
  export interface StopJobRequest {
1242
1246
  arn: string | undefined;
1243
1247
  }
1244
1248
  export interface StopJobResult {
1245
- job?: Job;
1249
+ job?: Job | undefined;
1246
1250
  }
1247
1251
  export interface StopRemoteAccessSessionRequest {
1248
1252
  arn: string | undefined;
1249
1253
  }
1250
1254
  export interface StopRemoteAccessSessionResult {
1251
- remoteAccessSession?: RemoteAccessSession;
1255
+ remoteAccessSession?: RemoteAccessSession | undefined;
1252
1256
  }
1253
1257
  export interface StopRunRequest {
1254
1258
  arn: string | undefined;
1255
1259
  }
1256
1260
  export interface StopRunResult {
1257
- run?: Run;
1261
+ run?: Run | undefined;
1258
1262
  }
1259
1263
  export declare class TagPolicyException extends __BaseException {
1260
1264
  readonly name: "TagPolicyException";
1261
1265
  readonly $fault: "client";
1262
- resourceName?: string;
1266
+ resourceName?: string | undefined;
1263
1267
  constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
1264
1268
  }
1265
1269
  export interface TagResourceRequest {
@@ -1270,7 +1274,7 @@ export interface TagResourceResponse {}
1270
1274
  export declare class TooManyTagsException extends __BaseException {
1271
1275
  readonly name: "TooManyTagsException";
1272
1276
  readonly $fault: "client";
1273
- resourceName?: string;
1277
+ resourceName?: string | undefined;
1274
1278
  constructor(
1275
1279
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
1276
1280
  );
@@ -1282,87 +1286,87 @@ export interface UntagResourceRequest {
1282
1286
  export interface UntagResourceResponse {}
1283
1287
  export interface UpdateDeviceInstanceRequest {
1284
1288
  arn: string | undefined;
1285
- profileArn?: string;
1286
- labels?: string[];
1289
+ profileArn?: string | undefined;
1290
+ labels?: string[] | undefined;
1287
1291
  }
1288
1292
  export interface UpdateDeviceInstanceResult {
1289
- deviceInstance?: DeviceInstance;
1293
+ deviceInstance?: DeviceInstance | undefined;
1290
1294
  }
1291
1295
  export interface UpdateDevicePoolRequest {
1292
1296
  arn: string | undefined;
1293
- name?: string;
1294
- description?: string;
1295
- rules?: Rule[];
1296
- maxDevices?: number;
1297
- clearMaxDevices?: boolean;
1297
+ name?: string | undefined;
1298
+ description?: string | undefined;
1299
+ rules?: Rule[] | undefined;
1300
+ maxDevices?: number | undefined;
1301
+ clearMaxDevices?: boolean | undefined;
1298
1302
  }
1299
1303
  export interface UpdateDevicePoolResult {
1300
- devicePool?: DevicePool;
1304
+ devicePool?: DevicePool | undefined;
1301
1305
  }
1302
1306
  export interface UpdateInstanceProfileRequest {
1303
1307
  arn: string | undefined;
1304
- name?: string;
1305
- description?: string;
1306
- packageCleanup?: boolean;
1307
- excludeAppPackagesFromCleanup?: string[];
1308
- rebootAfterUse?: boolean;
1308
+ name?: string | undefined;
1309
+ description?: string | undefined;
1310
+ packageCleanup?: boolean | undefined;
1311
+ excludeAppPackagesFromCleanup?: string[] | undefined;
1312
+ rebootAfterUse?: boolean | undefined;
1309
1313
  }
1310
1314
  export interface UpdateInstanceProfileResult {
1311
- instanceProfile?: InstanceProfile;
1315
+ instanceProfile?: InstanceProfile | undefined;
1312
1316
  }
1313
1317
  export interface UpdateNetworkProfileRequest {
1314
1318
  arn: string | undefined;
1315
- name?: string;
1316
- description?: string;
1317
- type?: NetworkProfileType;
1318
- uplinkBandwidthBits?: number;
1319
- downlinkBandwidthBits?: number;
1320
- uplinkDelayMs?: number;
1321
- downlinkDelayMs?: number;
1322
- uplinkJitterMs?: number;
1323
- downlinkJitterMs?: number;
1324
- uplinkLossPercent?: number;
1325
- downlinkLossPercent?: number;
1319
+ name?: string | undefined;
1320
+ description?: string | undefined;
1321
+ type?: NetworkProfileType | undefined;
1322
+ uplinkBandwidthBits?: number | undefined;
1323
+ downlinkBandwidthBits?: number | undefined;
1324
+ uplinkDelayMs?: number | undefined;
1325
+ downlinkDelayMs?: number | undefined;
1326
+ uplinkJitterMs?: number | undefined;
1327
+ downlinkJitterMs?: number | undefined;
1328
+ uplinkLossPercent?: number | undefined;
1329
+ downlinkLossPercent?: number | undefined;
1326
1330
  }
1327
1331
  export interface UpdateNetworkProfileResult {
1328
- networkProfile?: NetworkProfile;
1332
+ networkProfile?: NetworkProfile | undefined;
1329
1333
  }
1330
1334
  export interface UpdateProjectRequest {
1331
1335
  arn: string | undefined;
1332
- name?: string;
1333
- defaultJobTimeoutMinutes?: number;
1334
- vpcConfig?: VpcConfig;
1336
+ name?: string | undefined;
1337
+ defaultJobTimeoutMinutes?: number | undefined;
1338
+ vpcConfig?: VpcConfig | undefined;
1335
1339
  }
1336
1340
  export interface UpdateProjectResult {
1337
- project?: Project;
1341
+ project?: Project | undefined;
1338
1342
  }
1339
1343
  export interface UpdateTestGridProjectRequest {
1340
1344
  projectArn: string | undefined;
1341
- name?: string;
1342
- description?: string;
1343
- vpcConfig?: TestGridVpcConfig;
1345
+ name?: string | undefined;
1346
+ description?: string | undefined;
1347
+ vpcConfig?: TestGridVpcConfig | undefined;
1344
1348
  }
1345
1349
  export interface UpdateTestGridProjectResult {
1346
- testGridProject?: TestGridProject;
1350
+ testGridProject?: TestGridProject | undefined;
1347
1351
  }
1348
1352
  export interface UpdateUploadRequest {
1349
1353
  arn: string | undefined;
1350
- name?: string;
1351
- contentType?: string;
1352
- editContent?: boolean;
1354
+ name?: string | undefined;
1355
+ contentType?: string | undefined;
1356
+ editContent?: boolean | undefined;
1353
1357
  }
1354
1358
  export interface UpdateUploadResult {
1355
- upload?: Upload;
1359
+ upload?: Upload | undefined;
1356
1360
  }
1357
1361
  export interface UpdateVPCEConfigurationRequest {
1358
1362
  arn: string | undefined;
1359
- vpceConfigurationName?: string;
1360
- vpceServiceName?: string;
1361
- serviceDnsName?: string;
1362
- vpceConfigurationDescription?: string;
1363
+ vpceConfigurationName?: string | undefined;
1364
+ vpceServiceName?: string | undefined;
1365
+ serviceDnsName?: string | undefined;
1366
+ vpceConfigurationDescription?: string | undefined;
1363
1367
  }
1364
1368
  export interface UpdateVPCEConfigurationResult {
1365
- vpceConfiguration?: VPCEConfiguration;
1369
+ vpceConfiguration?: VPCEConfiguration | undefined;
1366
1370
  }
1367
1371
  export declare const CreateTestGridUrlResultFilterSensitiveLog: (
1368
1372
  obj: CreateTestGridUrlResult