@aws-sdk/client-deadline 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.
- package/dist-types/models/models_0.d.ts +340 -340
- package/dist-types/models/models_1.d.ts +151 -151
- package/dist-types/ts3.4/models/models_0.d.ts +340 -340
- package/dist-types/ts3.4/models/models_1.d.ts +151 -151
- package/package.json +7 -7
|
@@ -12,7 +12,7 @@ export interface ListQueuesResponse {
|
|
|
12
12
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
13
13
|
* @public
|
|
14
14
|
*/
|
|
15
|
-
nextToken?: string;
|
|
15
|
+
nextToken?: string | undefined;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* @public
|
|
@@ -32,12 +32,12 @@ export interface ListStorageProfilesForQueueRequest {
|
|
|
32
32
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
nextToken?: string;
|
|
35
|
+
nextToken?: string | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
maxResults?: number;
|
|
40
|
+
maxResults?: number | undefined;
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
43
|
* @public
|
|
@@ -52,7 +52,7 @@ export interface ListStorageProfilesForQueueResponse {
|
|
|
52
52
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
nextToken?: string;
|
|
55
|
+
nextToken?: string | undefined;
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
58
|
* @public
|
|
@@ -62,7 +62,7 @@ export interface UpdateQueueRequest {
|
|
|
62
62
|
* <p>The idempotency token to update in the queue.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
clientToken?: string;
|
|
65
|
+
clientToken?: string | undefined;
|
|
66
66
|
/**
|
|
67
67
|
* <p>The farm ID to update in the queue.</p>
|
|
68
68
|
* @public
|
|
@@ -80,7 +80,7 @@ export interface UpdateQueueRequest {
|
|
|
80
80
|
* </important>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
displayName?: string;
|
|
83
|
+
displayName?: string | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>The description of the queue to update.</p>
|
|
86
86
|
* <important>
|
|
@@ -88,48 +88,48 @@ export interface UpdateQueueRequest {
|
|
|
88
88
|
* </important>
|
|
89
89
|
* @public
|
|
90
90
|
*/
|
|
91
|
-
description?: string;
|
|
91
|
+
description?: string | undefined;
|
|
92
92
|
/**
|
|
93
93
|
* <p>The default action to take for a queue update if a budget isn't configured.</p>
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
defaultBudgetAction?: DefaultQueueBudgetAction;
|
|
96
|
+
defaultBudgetAction?: DefaultQueueBudgetAction | undefined;
|
|
97
97
|
/**
|
|
98
98
|
* <p>The job attachment settings to update for the
|
|
99
99
|
* queue.</p>
|
|
100
100
|
* @public
|
|
101
101
|
*/
|
|
102
|
-
jobAttachmentSettings?: JobAttachmentSettings;
|
|
102
|
+
jobAttachmentSettings?: JobAttachmentSettings | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* <p>The IAM role ARN that's used to run jobs from this queue.</p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
roleArn?: string;
|
|
107
|
+
roleArn?: string | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>Update the jobs in the queue to run as a specified POSIX user.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
jobRunAsUser?: JobRunAsUser;
|
|
112
|
+
jobRunAsUser?: JobRunAsUser | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* <p>The required file system location names to add to the queue.</p>
|
|
115
115
|
* @public
|
|
116
116
|
*/
|
|
117
|
-
requiredFileSystemLocationNamesToAdd?: string[];
|
|
117
|
+
requiredFileSystemLocationNamesToAdd?: string[] | undefined;
|
|
118
118
|
/**
|
|
119
119
|
* <p>The required file system location names to remove from the queue.</p>
|
|
120
120
|
* @public
|
|
121
121
|
*/
|
|
122
|
-
requiredFileSystemLocationNamesToRemove?: string[];
|
|
122
|
+
requiredFileSystemLocationNamesToRemove?: string[] | undefined;
|
|
123
123
|
/**
|
|
124
124
|
* <p>The storage profile IDs to add.</p>
|
|
125
125
|
* @public
|
|
126
126
|
*/
|
|
127
|
-
allowedStorageProfileIdsToAdd?: string[];
|
|
127
|
+
allowedStorageProfileIdsToAdd?: string[] | undefined;
|
|
128
128
|
/**
|
|
129
129
|
* <p>The storage profile ID to remove.</p>
|
|
130
130
|
* @public
|
|
131
131
|
*/
|
|
132
|
-
allowedStorageProfileIdsToRemove?: string[];
|
|
132
|
+
allowedStorageProfileIdsToRemove?: string[] | undefined;
|
|
133
133
|
}
|
|
134
134
|
/**
|
|
135
135
|
* @public
|
|
@@ -144,7 +144,7 @@ export interface UpdateQueueEnvironmentRequest {
|
|
|
144
144
|
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
145
145
|
* @public
|
|
146
146
|
*/
|
|
147
|
-
clientToken?: string;
|
|
147
|
+
clientToken?: string | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* <p>The farm ID of the queue environment to update.</p>
|
|
150
150
|
* @public
|
|
@@ -164,17 +164,17 @@ export interface UpdateQueueEnvironmentRequest {
|
|
|
164
164
|
* <p>The priority to update.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
priority?: number;
|
|
167
|
+
priority?: number | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>The template type to update.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
templateType?: EnvironmentTemplateType;
|
|
172
|
+
templateType?: EnvironmentTemplateType | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The template to update.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
template?: string;
|
|
177
|
+
template?: string | undefined;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
180
180
|
* @public
|
|
@@ -197,7 +197,7 @@ export interface UpdateFarmRequest {
|
|
|
197
197
|
* </important>
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
displayName?: string;
|
|
200
|
+
displayName?: string | undefined;
|
|
201
201
|
/**
|
|
202
202
|
* <p>The description of the farm to update.</p>
|
|
203
203
|
* <important>
|
|
@@ -205,7 +205,7 @@ export interface UpdateFarmRequest {
|
|
|
205
205
|
* </important>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
description?: string;
|
|
208
|
+
description?: string | undefined;
|
|
209
209
|
}
|
|
210
210
|
/**
|
|
211
211
|
* @public
|
|
@@ -220,7 +220,7 @@ export interface UpdateStorageProfileRequest {
|
|
|
220
220
|
* <p>The unique token which the server uses to recognize retries of the same request.</p>
|
|
221
221
|
* @public
|
|
222
222
|
*/
|
|
223
|
-
clientToken?: string;
|
|
223
|
+
clientToken?: string | undefined;
|
|
224
224
|
/**
|
|
225
225
|
* <p>The farm ID to update.</p>
|
|
226
226
|
* @public
|
|
@@ -238,22 +238,22 @@ export interface UpdateStorageProfileRequest {
|
|
|
238
238
|
* </important>
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
displayName?: string;
|
|
241
|
+
displayName?: string | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* <p>The OS system to update.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
osFamily?: StorageProfileOperatingSystemFamily;
|
|
246
|
+
osFamily?: StorageProfileOperatingSystemFamily | undefined;
|
|
247
247
|
/**
|
|
248
248
|
* <p>The file system location names to add.</p>
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
fileSystemLocationsToAdd?: FileSystemLocation[];
|
|
251
|
+
fileSystemLocationsToAdd?: FileSystemLocation[] | undefined;
|
|
252
252
|
/**
|
|
253
253
|
* <p>The file system location names to remove.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
fileSystemLocationsToRemove?: FileSystemLocation[];
|
|
256
|
+
fileSystemLocationsToRemove?: FileSystemLocation[] | undefined;
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
259
|
* @public
|
|
@@ -327,12 +327,12 @@ export interface GetQueueFleetAssociationResponse {
|
|
|
327
327
|
* <p>The date and time the resource was updated.</p>
|
|
328
328
|
* @public
|
|
329
329
|
*/
|
|
330
|
-
updatedAt?: Date;
|
|
330
|
+
updatedAt?: Date | undefined;
|
|
331
331
|
/**
|
|
332
332
|
* <p>The user or system that updated this resource.</p>
|
|
333
333
|
* @public
|
|
334
334
|
*/
|
|
335
|
-
updatedBy?: string;
|
|
335
|
+
updatedBy?: string | undefined;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
338
|
* @public
|
|
@@ -355,12 +355,12 @@ export interface GetSessionsStatisticsAggregationRequest {
|
|
|
355
355
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
maxResults?: number;
|
|
358
|
+
maxResults?: number | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
nextToken?: string;
|
|
363
|
+
nextToken?: string | undefined;
|
|
364
364
|
}
|
|
365
365
|
/**
|
|
366
366
|
* <p>The minimum, maximum, average, and sum.</p>
|
|
@@ -371,22 +371,22 @@ export interface Stats {
|
|
|
371
371
|
* <p>The minimum of the usage statistics.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
min?: number;
|
|
374
|
+
min?: number | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The maximum among the usage statistics.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
max?: number;
|
|
379
|
+
max?: number | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* <p>The average of the usage statistics.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
avg?: number;
|
|
384
|
+
avg?: number | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>The sum of the usage statistics.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
sum?: number;
|
|
389
|
+
sum?: number | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* @public
|
|
@@ -409,42 +409,42 @@ export interface Statistics {
|
|
|
409
409
|
* <p>The queue ID.</p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
queueId?: string;
|
|
412
|
+
queueId?: string | undefined;
|
|
413
413
|
/**
|
|
414
414
|
* <p>The fleet ID.</p>
|
|
415
415
|
* @public
|
|
416
416
|
*/
|
|
417
|
-
fleetId?: string;
|
|
417
|
+
fleetId?: string | undefined;
|
|
418
418
|
/**
|
|
419
419
|
* <p>The job ID.</p>
|
|
420
420
|
* @public
|
|
421
421
|
*/
|
|
422
|
-
jobId?: string;
|
|
422
|
+
jobId?: string | undefined;
|
|
423
423
|
/**
|
|
424
424
|
* <p>The job name.</p>
|
|
425
425
|
* @public
|
|
426
426
|
*/
|
|
427
|
-
jobName?: string;
|
|
427
|
+
jobName?: string | undefined;
|
|
428
428
|
/**
|
|
429
429
|
* <p>The user ID.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
userId?: string;
|
|
432
|
+
userId?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>The type of usage for the statistics.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
usageType?: UsageType;
|
|
437
|
+
usageType?: UsageType | undefined;
|
|
438
438
|
/**
|
|
439
439
|
* <p>The licensed product.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
licenseProduct?: string;
|
|
442
|
+
licenseProduct?: string | undefined;
|
|
443
443
|
/**
|
|
444
444
|
* <p>The type of instance.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
instanceType?: string;
|
|
447
|
+
instanceType?: string | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>The number of instances in a list of statistics.</p>
|
|
450
450
|
* @public
|
|
@@ -465,12 +465,12 @@ export interface Statistics {
|
|
|
465
465
|
* <p>The start time for the aggregation.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
aggregationStartTime?: Date;
|
|
468
|
+
aggregationStartTime?: Date | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>The end time for the aggregation.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
aggregationEndTime?: Date;
|
|
473
|
+
aggregationEndTime?: Date | undefined;
|
|
474
474
|
}
|
|
475
475
|
/**
|
|
476
476
|
* @public
|
|
@@ -494,12 +494,12 @@ export interface GetSessionsStatisticsAggregationResponse {
|
|
|
494
494
|
* <p>The statistics for the specified fleets or queues.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
statistics?: Statistics[];
|
|
497
|
+
statistics?: Statistics[] | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
nextToken?: string;
|
|
502
|
+
nextToken?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The status of the aggregated results. An aggregation may fail or time out if the results
|
|
505
505
|
* are too large. If this happens, you can call the
|
|
@@ -516,7 +516,7 @@ export interface GetSessionsStatisticsAggregationResponse {
|
|
|
516
516
|
* <p>A message that describes the status.</p>
|
|
517
517
|
* @public
|
|
518
518
|
*/
|
|
519
|
-
statusMessage?: string;
|
|
519
|
+
statusMessage?: string | undefined;
|
|
520
520
|
}
|
|
521
521
|
/**
|
|
522
522
|
* @public
|
|
@@ -580,22 +580,22 @@ export interface GetLicenseEndpointResponse {
|
|
|
580
580
|
* <p>The VCP(virtual private cloud) ID associated with the license endpoint.</p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
vpcId?: string;
|
|
583
|
+
vpcId?: string | undefined;
|
|
584
584
|
/**
|
|
585
585
|
* <p>The DNS name.</p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
dnsName?: string;
|
|
588
|
+
dnsName?: string | undefined;
|
|
589
589
|
/**
|
|
590
590
|
* <p>The subnet IDs.</p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
subnetIds?: string[];
|
|
593
|
+
subnetIds?: string[] | undefined;
|
|
594
594
|
/**
|
|
595
595
|
* <p>The security group IDs for the license endpoint.</p>
|
|
596
596
|
* @public
|
|
597
597
|
*/
|
|
598
|
-
securityGroupIds?: string[];
|
|
598
|
+
securityGroupIds?: string[] | undefined;
|
|
599
599
|
}
|
|
600
600
|
/**
|
|
601
601
|
* @public
|
|
@@ -605,12 +605,12 @@ export interface ListLicenseEndpointsRequest {
|
|
|
605
605
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
606
606
|
* @public
|
|
607
607
|
*/
|
|
608
|
-
nextToken?: string;
|
|
608
|
+
nextToken?: string | undefined;
|
|
609
609
|
/**
|
|
610
610
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
611
611
|
* @public
|
|
612
612
|
*/
|
|
613
|
-
maxResults?: number;
|
|
613
|
+
maxResults?: number | undefined;
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
* <p>The details for a license endpoint.</p>
|
|
@@ -621,22 +621,22 @@ export interface LicenseEndpointSummary {
|
|
|
621
621
|
* <p>The license endpoint ID.</p>
|
|
622
622
|
* @public
|
|
623
623
|
*/
|
|
624
|
-
licenseEndpointId?: string;
|
|
624
|
+
licenseEndpointId?: string | undefined;
|
|
625
625
|
/**
|
|
626
626
|
* <p>The status of the license endpoint.</p>
|
|
627
627
|
* @public
|
|
628
628
|
*/
|
|
629
|
-
status?: LicenseEndpointStatus;
|
|
629
|
+
status?: LicenseEndpointStatus | undefined;
|
|
630
630
|
/**
|
|
631
631
|
* <p>The status message of the license endpoint.</p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
statusMessage?: string;
|
|
634
|
+
statusMessage?: string | undefined;
|
|
635
635
|
/**
|
|
636
636
|
* <p>The VCP(virtual private cloud) ID associated with the license endpoint.</p>
|
|
637
637
|
* @public
|
|
638
638
|
*/
|
|
639
|
-
vpcId?: string;
|
|
639
|
+
vpcId?: string | undefined;
|
|
640
640
|
}
|
|
641
641
|
/**
|
|
642
642
|
* @public
|
|
@@ -651,7 +651,7 @@ export interface ListLicenseEndpointsResponse {
|
|
|
651
651
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
nextToken?: string;
|
|
654
|
+
nextToken?: string | undefined;
|
|
655
655
|
}
|
|
656
656
|
/**
|
|
657
657
|
* @public
|
|
@@ -686,12 +686,12 @@ export interface ListMeteredProductsRequest {
|
|
|
686
686
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
nextToken?: string;
|
|
689
|
+
nextToken?: string | undefined;
|
|
690
690
|
/**
|
|
691
691
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
maxResults?: number;
|
|
694
|
+
maxResults?: number | undefined;
|
|
695
695
|
}
|
|
696
696
|
/**
|
|
697
697
|
* <p>The details of a metered product.</p>
|
|
@@ -732,7 +732,7 @@ export interface ListMeteredProductsResponse {
|
|
|
732
732
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
733
733
|
* @public
|
|
734
734
|
*/
|
|
735
|
-
nextToken?: string;
|
|
735
|
+
nextToken?: string | undefined;
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* @public
|
|
@@ -762,12 +762,12 @@ export interface ListAvailableMeteredProductsRequest {
|
|
|
762
762
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
nextToken?: string;
|
|
765
|
+
nextToken?: string | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
maxResults?: number;
|
|
770
|
+
maxResults?: number | undefined;
|
|
771
771
|
}
|
|
772
772
|
/**
|
|
773
773
|
* @public
|
|
@@ -782,7 +782,7 @@ export interface ListAvailableMeteredProductsResponse {
|
|
|
782
782
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
nextToken?: string;
|
|
785
|
+
nextToken?: string | undefined;
|
|
786
786
|
}
|
|
787
787
|
/**
|
|
788
788
|
* @public
|
|
@@ -797,22 +797,22 @@ export interface ListQueueFleetAssociationsRequest {
|
|
|
797
797
|
* <p>The queue ID for the queue-fleet association list.</p>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
queueId?: string;
|
|
800
|
+
queueId?: string | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* <p>The fleet ID for the queue-fleet association list.</p>
|
|
803
803
|
* @public
|
|
804
804
|
*/
|
|
805
|
-
fleetId?: string;
|
|
805
|
+
fleetId?: string | undefined;
|
|
806
806
|
/**
|
|
807
807
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
nextToken?: string;
|
|
810
|
+
nextToken?: string | undefined;
|
|
811
811
|
/**
|
|
812
812
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
maxResults?: number;
|
|
815
|
+
maxResults?: number | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* <p>The details of a queue-fleet association.</p>
|
|
@@ -868,12 +868,12 @@ export interface QueueFleetAssociationSummary {
|
|
|
868
868
|
* <p>The date and time the resource was updated.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
updatedAt?: Date;
|
|
871
|
+
updatedAt?: Date | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p>The user or system that updated this resource.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
updatedBy?: string;
|
|
876
|
+
updatedBy?: string | undefined;
|
|
877
877
|
}
|
|
878
878
|
/**
|
|
879
879
|
* @public
|
|
@@ -888,7 +888,7 @@ export interface ListQueueFleetAssociationsResponse {
|
|
|
888
888
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
nextToken?: string;
|
|
891
|
+
nextToken?: string | undefined;
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* @public
|
|
@@ -908,7 +908,7 @@ export interface ListTagsForResourceResponse {
|
|
|
908
908
|
* <p>Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
tags?: Record<string, string
|
|
911
|
+
tags?: Record<string, string> | undefined;
|
|
912
912
|
}
|
|
913
913
|
/**
|
|
914
914
|
* @public
|
|
@@ -997,12 +997,12 @@ export interface GetMonitorResponse {
|
|
|
997
997
|
* <p>The UNIX timestamp of the last date and time that the monitor was updated.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
updatedAt?: Date;
|
|
1000
|
+
updatedAt?: Date | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>The user name of the person that last updated the monitor.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
updatedBy?: string;
|
|
1005
|
+
updatedBy?: string | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
/**
|
|
1008
1008
|
* @public
|
|
@@ -1012,12 +1012,12 @@ export interface ListMonitorsRequest {
|
|
|
1012
1012
|
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
1013
1013
|
* @public
|
|
1014
1014
|
*/
|
|
1015
|
-
nextToken?: string;
|
|
1015
|
+
nextToken?: string | undefined;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
maxResults?: number;
|
|
1020
|
+
maxResults?: number | undefined;
|
|
1021
1021
|
}
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>Provides information about a monitor in Deadline Cloud.</p>
|
|
@@ -1079,12 +1079,12 @@ export interface MonitorSummary {
|
|
|
1079
1079
|
* <p>The UNIX timestamp of the date and time that the monitor was last updated.</p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
updatedAt?: Date;
|
|
1082
|
+
updatedAt?: Date | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>The user name of the person that last updated the monitor.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
updatedBy?: string;
|
|
1087
|
+
updatedBy?: string | undefined;
|
|
1088
1088
|
}
|
|
1089
1089
|
/**
|
|
1090
1090
|
* @public
|
|
@@ -1094,7 +1094,7 @@ export interface ListMonitorsResponse {
|
|
|
1094
1094
|
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
nextToken?: string;
|
|
1097
|
+
nextToken?: string | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>A list of <code>MonitorSummary</code> objects that describe your monitors in the
|
|
1100
1100
|
* Deadline Cloud.</p>
|
|
@@ -1115,7 +1115,7 @@ export interface UpdateMonitorRequest {
|
|
|
1115
1115
|
* <p>The new value of the subdomain to use when forming the monitor URL.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
subdomain?: string;
|
|
1118
|
+
subdomain?: string | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>The new value to use for the monitor's display name.</p>
|
|
1121
1121
|
* <important>
|
|
@@ -1123,12 +1123,12 @@ export interface UpdateMonitorRequest {
|
|
|
1123
1123
|
* </important>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
displayName?: string;
|
|
1126
|
+
displayName?: string | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>The Amazon Resource Name (ARN) of the new IAM role to use with the monitor.</p>
|
|
1129
1129
|
* @public
|
|
1130
1130
|
*/
|
|
1131
|
-
roleArn?: string;
|
|
1131
|
+
roleArn?: string | undefined;
|
|
1132
1132
|
}
|
|
1133
1133
|
/**
|
|
1134
1134
|
* @public
|
|
@@ -1320,27 +1320,27 @@ export interface JobSearchSummary {
|
|
|
1320
1320
|
* <p>The job ID.</p>
|
|
1321
1321
|
* @public
|
|
1322
1322
|
*/
|
|
1323
|
-
jobId?: string;
|
|
1323
|
+
jobId?: string | undefined;
|
|
1324
1324
|
/**
|
|
1325
1325
|
* <p>The queue ID.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
queueId?: string;
|
|
1328
|
+
queueId?: string | undefined;
|
|
1329
1329
|
/**
|
|
1330
1330
|
* <p>The job name.</p>
|
|
1331
1331
|
* @public
|
|
1332
1332
|
*/
|
|
1333
|
-
name?: string;
|
|
1333
|
+
name?: string | undefined;
|
|
1334
1334
|
/**
|
|
1335
1335
|
* <p>The life cycle status.</p>
|
|
1336
1336
|
* @public
|
|
1337
1337
|
*/
|
|
1338
|
-
lifecycleStatus?: JobLifecycleStatus;
|
|
1338
|
+
lifecycleStatus?: JobLifecycleStatus | undefined;
|
|
1339
1339
|
/**
|
|
1340
1340
|
* <p>The life cycle status message.</p>
|
|
1341
1341
|
* @public
|
|
1342
1342
|
*/
|
|
1343
|
-
lifecycleStatusMessage?: string;
|
|
1343
|
+
lifecycleStatusMessage?: string | undefined;
|
|
1344
1344
|
/**
|
|
1345
1345
|
* <p>The task run status for the job.</p>
|
|
1346
1346
|
* <ul>
|
|
@@ -1387,62 +1387,62 @@ export interface JobSearchSummary {
|
|
|
1387
1387
|
* </ul>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
taskRunStatus?: TaskRunStatus;
|
|
1390
|
+
taskRunStatus?: TaskRunStatus | undefined;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* <p>The task status to start with on the job.</p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
targetTaskRunStatus?: JobTargetTaskRunStatus;
|
|
1395
|
+
targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* <p>The number of tasks running on the job.</p>
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
taskRunStatusCounts?: Partial<Record<TaskRunStatus, number
|
|
1400
|
+
taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>The job priority.</p>
|
|
1403
1403
|
* @public
|
|
1404
1404
|
*/
|
|
1405
|
-
priority?: number;
|
|
1405
|
+
priority?: number | undefined;
|
|
1406
1406
|
/**
|
|
1407
1407
|
* <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
|
|
1408
1408
|
* @public
|
|
1409
1409
|
*/
|
|
1410
|
-
maxFailedTasksCount?: number;
|
|
1410
|
+
maxFailedTasksCount?: number | undefined;
|
|
1411
1411
|
/**
|
|
1412
1412
|
* <p>The maximum number of retries for a job.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
maxRetriesPerTask?: number;
|
|
1415
|
+
maxRetriesPerTask?: number | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The user or system that created this resource.</p>
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
createdBy?: string;
|
|
1420
|
+
createdBy?: string | undefined;
|
|
1421
1421
|
/**
|
|
1422
1422
|
* <p>The date and time the resource was created.</p>
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
createdAt?: Date;
|
|
1425
|
+
createdAt?: Date | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>The date and time the resource ended running.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
endedAt?: Date;
|
|
1430
|
+
endedAt?: Date | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* <p>The date and time the resource started running.</p>
|
|
1433
1433
|
* @public
|
|
1434
1434
|
*/
|
|
1435
|
-
startedAt?: Date;
|
|
1435
|
+
startedAt?: Date | undefined;
|
|
1436
1436
|
/**
|
|
1437
1437
|
* <p>The job parameters.</p>
|
|
1438
1438
|
* @public
|
|
1439
1439
|
*/
|
|
1440
|
-
jobParameters?: Record<string, JobParameter
|
|
1440
|
+
jobParameters?: Record<string, JobParameter> | undefined;
|
|
1441
1441
|
/**
|
|
1442
1442
|
* <p>The job ID for the source job.</p>
|
|
1443
1443
|
* @public
|
|
1444
1444
|
*/
|
|
1445
|
-
sourceJobId?: string;
|
|
1445
|
+
sourceJobId?: string | undefined;
|
|
1446
1446
|
}
|
|
1447
1447
|
/**
|
|
1448
1448
|
* @public
|
|
@@ -1457,7 +1457,7 @@ export interface SearchJobsResponse {
|
|
|
1457
1457
|
* <p>The next incremental starting point after the defined <code>itemOffset</code>.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
nextItemOffset?: number;
|
|
1460
|
+
nextItemOffset?: number | undefined;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* <p>The total number of results in the search.</p>
|
|
1463
1463
|
* @public
|
|
@@ -1473,32 +1473,32 @@ export interface StepSearchSummary {
|
|
|
1473
1473
|
* <p>The step ID.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
stepId?: string;
|
|
1476
|
+
stepId?: string | undefined;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* <p>The job ID.</p>
|
|
1479
1479
|
* @public
|
|
1480
1480
|
*/
|
|
1481
|
-
jobId?: string;
|
|
1481
|
+
jobId?: string | undefined;
|
|
1482
1482
|
/**
|
|
1483
1483
|
* <p>The queue ID.</p>
|
|
1484
1484
|
* @public
|
|
1485
1485
|
*/
|
|
1486
|
-
queueId?: string;
|
|
1486
|
+
queueId?: string | undefined;
|
|
1487
1487
|
/**
|
|
1488
1488
|
* <p>The step name.</p>
|
|
1489
1489
|
* @public
|
|
1490
1490
|
*/
|
|
1491
|
-
name?: string;
|
|
1491
|
+
name?: string | undefined;
|
|
1492
1492
|
/**
|
|
1493
1493
|
* <p>The life cycle status.</p>
|
|
1494
1494
|
* @public
|
|
1495
1495
|
*/
|
|
1496
|
-
lifecycleStatus?: StepLifecycleStatus;
|
|
1496
|
+
lifecycleStatus?: StepLifecycleStatus | undefined;
|
|
1497
1497
|
/**
|
|
1498
1498
|
* <p>The life cycle status message.</p>
|
|
1499
1499
|
* @public
|
|
1500
1500
|
*/
|
|
1501
|
-
lifecycleStatusMessage?: string;
|
|
1501
|
+
lifecycleStatusMessage?: string | undefined;
|
|
1502
1502
|
/**
|
|
1503
1503
|
* <p>The task run status for the job.</p>
|
|
1504
1504
|
* <ul>
|
|
@@ -1545,37 +1545,37 @@ export interface StepSearchSummary {
|
|
|
1545
1545
|
* </ul>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
taskRunStatus?: TaskRunStatus;
|
|
1548
|
+
taskRunStatus?: TaskRunStatus | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>The task status to start with on the job.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
targetTaskRunStatus?: StepTargetTaskRunStatus;
|
|
1553
|
+
targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* <p>The number of tasks running on the job.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
taskRunStatusCounts?: Partial<Record<TaskRunStatus, number
|
|
1558
|
+
taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>The date and time the resource was created.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
createdAt?: Date;
|
|
1563
|
+
createdAt?: Date | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* <p>The date and time the resource started running.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
startedAt?: Date;
|
|
1568
|
+
startedAt?: Date | undefined;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* <p>The date and time the resource ended running.</p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
endedAt?: Date;
|
|
1573
|
+
endedAt?: Date | undefined;
|
|
1574
1574
|
/**
|
|
1575
1575
|
* <p>The parameters and combination expressions for the search.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
parameterSpace?: ParameterSpace;
|
|
1578
|
+
parameterSpace?: ParameterSpace | undefined;
|
|
1579
1579
|
}
|
|
1580
1580
|
/**
|
|
1581
1581
|
* @public
|
|
@@ -1590,7 +1590,7 @@ export interface SearchStepsResponse {
|
|
|
1590
1590
|
* <p>The next incremental starting point after the defined <code>itemOffset</code>.</p>
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
nextItemOffset?: number;
|
|
1593
|
+
nextItemOffset?: number | undefined;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* <p>The total number of results in the search.</p>
|
|
1596
1596
|
* @public
|
|
@@ -1606,52 +1606,52 @@ export interface TaskSearchSummary {
|
|
|
1606
1606
|
* <p>The task ID.</p>
|
|
1607
1607
|
* @public
|
|
1608
1608
|
*/
|
|
1609
|
-
taskId?: string;
|
|
1609
|
+
taskId?: string | undefined;
|
|
1610
1610
|
/**
|
|
1611
1611
|
* <p>The step ID.</p>
|
|
1612
1612
|
* @public
|
|
1613
1613
|
*/
|
|
1614
|
-
stepId?: string;
|
|
1614
|
+
stepId?: string | undefined;
|
|
1615
1615
|
/**
|
|
1616
1616
|
* <p>The job ID.</p>
|
|
1617
1617
|
* @public
|
|
1618
1618
|
*/
|
|
1619
|
-
jobId?: string;
|
|
1619
|
+
jobId?: string | undefined;
|
|
1620
1620
|
/**
|
|
1621
1621
|
* <p>The queue ID.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
queueId?: string;
|
|
1624
|
+
queueId?: string | undefined;
|
|
1625
1625
|
/**
|
|
1626
1626
|
* <p>The run status of the task.</p>
|
|
1627
1627
|
* @public
|
|
1628
1628
|
*/
|
|
1629
|
-
runStatus?: TaskRunStatus;
|
|
1629
|
+
runStatus?: TaskRunStatus | undefined;
|
|
1630
1630
|
/**
|
|
1631
1631
|
* <p>The run status that the task is being updated to.</p>
|
|
1632
1632
|
* @public
|
|
1633
1633
|
*/
|
|
1634
|
-
targetRunStatus?: TaskTargetRunStatus;
|
|
1634
|
+
targetRunStatus?: TaskTargetRunStatus | undefined;
|
|
1635
1635
|
/**
|
|
1636
1636
|
* <p>The parameters to search for.</p>
|
|
1637
1637
|
* @public
|
|
1638
1638
|
*/
|
|
1639
|
-
parameters?: Record<string, TaskParameterValue
|
|
1639
|
+
parameters?: Record<string, TaskParameterValue> | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* <p>The number of times that the task failed and was retried.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
failureRetryCount?: number;
|
|
1644
|
+
failureRetryCount?: number | undefined;
|
|
1645
1645
|
/**
|
|
1646
1646
|
* <p>The date and time the resource started running.</p>
|
|
1647
1647
|
* @public
|
|
1648
1648
|
*/
|
|
1649
|
-
startedAt?: Date;
|
|
1649
|
+
startedAt?: Date | undefined;
|
|
1650
1650
|
/**
|
|
1651
1651
|
* <p>The date and time the resource ended running.</p>
|
|
1652
1652
|
* @public
|
|
1653
1653
|
*/
|
|
1654
|
-
endedAt?: Date;
|
|
1654
|
+
endedAt?: Date | undefined;
|
|
1655
1655
|
}
|
|
1656
1656
|
/**
|
|
1657
1657
|
* @public
|
|
@@ -1666,7 +1666,7 @@ export interface SearchTasksResponse {
|
|
|
1666
1666
|
* <p>The next incremental starting point after the defined <code>itemOffset</code>.</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
nextItemOffset?: number;
|
|
1669
|
+
nextItemOffset?: number | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>The total number of results in the search.</p>
|
|
1672
1672
|
* @public
|
|
@@ -1682,42 +1682,42 @@ export interface WorkerSearchSummary {
|
|
|
1682
1682
|
* <p>The fleet ID.</p>
|
|
1683
1683
|
* @public
|
|
1684
1684
|
*/
|
|
1685
|
-
fleetId?: string;
|
|
1685
|
+
fleetId?: string | undefined;
|
|
1686
1686
|
/**
|
|
1687
1687
|
* <p>The worker ID.</p>
|
|
1688
1688
|
* @public
|
|
1689
1689
|
*/
|
|
1690
|
-
workerId?: string;
|
|
1690
|
+
workerId?: string | undefined;
|
|
1691
1691
|
/**
|
|
1692
1692
|
* <p>The status of the worker search.</p>
|
|
1693
1693
|
* @public
|
|
1694
1694
|
*/
|
|
1695
|
-
status?: WorkerStatus;
|
|
1695
|
+
status?: WorkerStatus | undefined;
|
|
1696
1696
|
/**
|
|
1697
1697
|
* <p>Provides the Amazon EC2 instance properties of the worker host.</p>
|
|
1698
1698
|
* @public
|
|
1699
1699
|
*/
|
|
1700
|
-
hostProperties?: HostPropertiesResponse;
|
|
1700
|
+
hostProperties?: HostPropertiesResponse | undefined;
|
|
1701
1701
|
/**
|
|
1702
1702
|
* <p>The user or system that created this resource.</p>
|
|
1703
1703
|
* @public
|
|
1704
1704
|
*/
|
|
1705
|
-
createdBy?: string;
|
|
1705
|
+
createdBy?: string | undefined;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* <p>The date and time the resource was created.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
createdAt?: Date;
|
|
1710
|
+
createdAt?: Date | undefined;
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The user or system that updated this resource.</p>
|
|
1713
1713
|
* @public
|
|
1714
1714
|
*/
|
|
1715
|
-
updatedBy?: string;
|
|
1715
|
+
updatedBy?: string | undefined;
|
|
1716
1716
|
/**
|
|
1717
1717
|
* <p>The date and time the resource was updated.</p>
|
|
1718
1718
|
* @public
|
|
1719
1719
|
*/
|
|
1720
|
-
updatedAt?: Date;
|
|
1720
|
+
updatedAt?: Date | undefined;
|
|
1721
1721
|
}
|
|
1722
1722
|
/**
|
|
1723
1723
|
* @public
|
|
@@ -1732,7 +1732,7 @@ export interface SearchWorkersResponse {
|
|
|
1732
1732
|
* <p>The next incremental starting point after the defined <code>itemOffset</code>.</p>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
nextItemOffset?: number;
|
|
1735
|
+
nextItemOffset?: number | undefined;
|
|
1736
1736
|
/**
|
|
1737
1737
|
* <p>The total number of results in the search.</p>
|
|
1738
1738
|
* @public
|
|
@@ -1858,12 +1858,12 @@ export interface StartSessionsStatisticsAggregationRequest {
|
|
|
1858
1858
|
* <p>The timezone to use for the statistics. Use UTC notation such as "UTC+8."</p>
|
|
1859
1859
|
* @public
|
|
1860
1860
|
*/
|
|
1861
|
-
timezone?: string;
|
|
1861
|
+
timezone?: string | undefined;
|
|
1862
1862
|
/**
|
|
1863
1863
|
* <p>The period to aggregate the statistics.</p>
|
|
1864
1864
|
* @public
|
|
1865
1865
|
*/
|
|
1866
|
-
period?: Period;
|
|
1866
|
+
period?: Period | undefined;
|
|
1867
1867
|
/**
|
|
1868
1868
|
* <p>The field to use to group the statistics.</p>
|
|
1869
1869
|
* @public
|
|
@@ -1900,7 +1900,7 @@ export interface TagResourceRequest {
|
|
|
1900
1900
|
* <p>Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.</p>
|
|
1901
1901
|
* @public
|
|
1902
1902
|
*/
|
|
1903
|
-
tags?: Record<string, string
|
|
1903
|
+
tags?: Record<string, string> | undefined;
|
|
1904
1904
|
}
|
|
1905
1905
|
/**
|
|
1906
1906
|
* @public
|
|
@@ -2100,12 +2100,12 @@ export interface SearchJobsRequest {
|
|
|
2100
2100
|
* You can use two groupings per search each within parenthesis <code>()</code>.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
filterExpressions?: SearchGroupedFilterExpressions;
|
|
2103
|
+
filterExpressions?: SearchGroupedFilterExpressions | undefined;
|
|
2104
2104
|
/**
|
|
2105
2105
|
* <p>The search terms for a resource.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
|
-
sortExpressions?: SearchSortExpression[];
|
|
2108
|
+
sortExpressions?: SearchSortExpression[] | undefined;
|
|
2109
2109
|
/**
|
|
2110
2110
|
* <p>Defines how far into the scrollable list to start the return of results.</p>
|
|
2111
2111
|
* @public
|
|
@@ -2115,7 +2115,7 @@ export interface SearchJobsRequest {
|
|
|
2115
2115
|
* <p>Specifies the number of items per page for the resource.</p>
|
|
2116
2116
|
* @public
|
|
2117
2117
|
*/
|
|
2118
|
-
pageSize?: number;
|
|
2118
|
+
pageSize?: number | undefined;
|
|
2119
2119
|
}
|
|
2120
2120
|
/**
|
|
2121
2121
|
* @public
|
|
@@ -2135,7 +2135,7 @@ export interface SearchStepsRequest {
|
|
|
2135
2135
|
* <p>The job ID to use in the step search.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
jobId?: string;
|
|
2138
|
+
jobId?: string | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>The filter expression, <code>AND</code> or <code>OR</code>, to use
|
|
2141
2141
|
* when searching among a group of search strings in a resource.
|
|
@@ -2143,12 +2143,12 @@ export interface SearchStepsRequest {
|
|
|
2143
2143
|
* You can use two groupings per search each within parenthesis <code>()</code>.</p>
|
|
2144
2144
|
* @public
|
|
2145
2145
|
*/
|
|
2146
|
-
filterExpressions?: SearchGroupedFilterExpressions;
|
|
2146
|
+
filterExpressions?: SearchGroupedFilterExpressions | undefined;
|
|
2147
2147
|
/**
|
|
2148
2148
|
* <p>The search terms for a resource.</p>
|
|
2149
2149
|
* @public
|
|
2150
2150
|
*/
|
|
2151
|
-
sortExpressions?: SearchSortExpression[];
|
|
2151
|
+
sortExpressions?: SearchSortExpression[] | undefined;
|
|
2152
2152
|
/**
|
|
2153
2153
|
* <p>Defines how far into the scrollable list to start the return of results.</p>
|
|
2154
2154
|
* @public
|
|
@@ -2158,7 +2158,7 @@ export interface SearchStepsRequest {
|
|
|
2158
2158
|
* <p>Specifies the number of items per page for the resource.</p>
|
|
2159
2159
|
* @public
|
|
2160
2160
|
*/
|
|
2161
|
-
pageSize?: number;
|
|
2161
|
+
pageSize?: number | undefined;
|
|
2162
2162
|
}
|
|
2163
2163
|
/**
|
|
2164
2164
|
* @public
|
|
@@ -2178,7 +2178,7 @@ export interface SearchTasksRequest {
|
|
|
2178
2178
|
* <p>The job ID for the task search.</p>
|
|
2179
2179
|
* @public
|
|
2180
2180
|
*/
|
|
2181
|
-
jobId?: string;
|
|
2181
|
+
jobId?: string | undefined;
|
|
2182
2182
|
/**
|
|
2183
2183
|
* <p>The filter expression, <code>AND</code> or <code>OR</code>, to use
|
|
2184
2184
|
* when searching among a group of search strings in a resource.
|
|
@@ -2186,12 +2186,12 @@ export interface SearchTasksRequest {
|
|
|
2186
2186
|
* You can use two groupings per search each within parenthesis <code>()</code>.</p>
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
filterExpressions?: SearchGroupedFilterExpressions;
|
|
2189
|
+
filterExpressions?: SearchGroupedFilterExpressions | undefined;
|
|
2190
2190
|
/**
|
|
2191
2191
|
* <p>The search terms for a resource.</p>
|
|
2192
2192
|
* @public
|
|
2193
2193
|
*/
|
|
2194
|
-
sortExpressions?: SearchSortExpression[];
|
|
2194
|
+
sortExpressions?: SearchSortExpression[] | undefined;
|
|
2195
2195
|
/**
|
|
2196
2196
|
* <p>Defines how far into the scrollable list to start the return of results.</p>
|
|
2197
2197
|
* @public
|
|
@@ -2201,7 +2201,7 @@ export interface SearchTasksRequest {
|
|
|
2201
2201
|
* <p>Specifies the number of items per page for the resource.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
pageSize?: number;
|
|
2204
|
+
pageSize?: number | undefined;
|
|
2205
2205
|
}
|
|
2206
2206
|
/**
|
|
2207
2207
|
* @public
|
|
@@ -2224,12 +2224,12 @@ export interface SearchWorkersRequest {
|
|
|
2224
2224
|
* You can use two groupings per search each within parenthesis <code>()</code>.</p>
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
filterExpressions?: SearchGroupedFilterExpressions;
|
|
2227
|
+
filterExpressions?: SearchGroupedFilterExpressions | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* <p>The search terms for a resource.</p>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
sortExpressions?: SearchSortExpression[];
|
|
2232
|
+
sortExpressions?: SearchSortExpression[] | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* <p>Defines how far into the scrollable list to start the return of results.</p>
|
|
2235
2235
|
* @public
|
|
@@ -2239,7 +2239,7 @@ export interface SearchWorkersRequest {
|
|
|
2239
2239
|
* <p>Specifies the number of items per page for the resource.</p>
|
|
2240
2240
|
* @public
|
|
2241
2241
|
*/
|
|
2242
|
-
pageSize?: number;
|
|
2242
|
+
pageSize?: number | undefined;
|
|
2243
2243
|
}
|
|
2244
2244
|
/**
|
|
2245
2245
|
* @internal
|