@aws-sdk/client-deadline 3.687.0 → 3.692.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.
@@ -7,15 +7,65 @@ import { DeadlineServiceException as __BaseException } from "./DeadlineServiceEx
7
7
  */
8
8
  export interface AcceleratorCountRange {
9
9
  /**
10
- * <p>The minimum GPU for the accelerator.</p>
10
+ * <p>The minimum number of GPUs for the accelerator. If you set the value to 0, a worker will
11
+ * still have 1 GPU.</p>
11
12
  * @public
12
13
  */
13
14
  min: number | undefined;
14
15
  /**
15
- * <p>The maximum GPU for the accelerator.</p>
16
+ * <p>The maximum number of GPUs for the accelerator.</p>
16
17
  * @public
17
18
  */
18
- max?: number;
19
+ max?: number | undefined;
20
+ }
21
+ /**
22
+ * @public
23
+ * @enum
24
+ */
25
+ export declare const AcceleratorName: {
26
+ readonly A10G: "a10g";
27
+ readonly L4: "l4";
28
+ readonly L40S: "l40s";
29
+ readonly T4: "t4";
30
+ };
31
+ /**
32
+ * @public
33
+ */
34
+ export type AcceleratorName = (typeof AcceleratorName)[keyof typeof AcceleratorName];
35
+ /**
36
+ * <p>Values that you can use to select a particular Amazon EC2 instance type. </p>
37
+ * @public
38
+ */
39
+ export interface AcceleratorSelection {
40
+ /**
41
+ * <p>The name of the GPU accelerator.</p>
42
+ * @public
43
+ */
44
+ name: AcceleratorName | undefined;
45
+ /**
46
+ * <p>The driver version that the GPU accelerator uses. </p>
47
+ * @public
48
+ */
49
+ runtime?: string | undefined;
50
+ }
51
+ /**
52
+ * <p>Provides information about the GPU accelerators and drivers for the instance types in a
53
+ * fleet. If you include the <code>acceleratorCapabilities</code> property in the <a href="https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities">ServiceManagedEc2InstanceCapabilities</a> object, all of the Amazon EC2
54
+ * instances will have at least one accelerator. </p>
55
+ * @public
56
+ */
57
+ export interface AcceleratorCapabilities {
58
+ /**
59
+ * <p>A list of objects that contain the GPU name of the accelerator and driver for the
60
+ * instance types that support the accelerator.</p>
61
+ * @public
62
+ */
63
+ selections: AcceleratorSelection[] | undefined;
64
+ /**
65
+ * <p>The number of GPUs on each worker. The default is 1.</p>
66
+ * @public
67
+ */
68
+ count?: AcceleratorCountRange | undefined;
19
69
  }
20
70
  /**
21
71
  * <p>The range for memory, in MiB, to use for the accelerator.</p>
@@ -31,7 +81,7 @@ export interface AcceleratorTotalMemoryMiBRange {
31
81
  * <p>The maximum amount of memory to use for the accelerator, measured in MiB.</p>
32
82
  * @public
33
83
  */
34
- max?: number;
84
+ max?: number | undefined;
35
85
  }
36
86
  /**
37
87
  * @public
@@ -58,7 +108,7 @@ export declare class AccessDeniedException extends __BaseException {
58
108
  * <p>Information about the resources in use when the exception was thrown.</p>
59
109
  * @public
60
110
  */
61
- context?: Record<string, string>;
111
+ context?: Record<string, string> | undefined;
62
112
  /**
63
113
  * @internal
64
114
  */
@@ -100,17 +150,17 @@ export interface LogConfiguration {
100
150
  * <p>The options for a log driver.</p>
101
151
  * @public
102
152
  */
103
- options?: Record<string, string>;
153
+ options?: Record<string, string> | undefined;
104
154
  /**
105
155
  * <p>The parameters for the log configuration.</p>
106
156
  * @public
107
157
  */
108
- parameters?: Record<string, string>;
158
+ parameters?: Record<string, string> | undefined;
109
159
  /**
110
160
  * <p>The log configuration error details.</p>
111
161
  * @public
112
162
  */
113
- error?: string;
163
+ error?: string | undefined;
114
164
  }
115
165
  /**
116
166
  * <p>The details for an assigned session action as it relates to a job attachment.</p>
@@ -121,7 +171,7 @@ export interface AssignedSyncInputJobAttachmentsSessionActionDefinition {
121
171
  * <p>The step ID.</p>
122
172
  * @public
123
173
  */
124
- stepId?: string;
174
+ stepId?: string | undefined;
125
175
  }
126
176
  /**
127
177
  * <p>The data types for the task parameters.</p>
@@ -403,7 +453,7 @@ export declare class InternalServerErrorException extends __BaseException {
403
453
  * <p>The number of seconds a client should wait before retrying the request.</p>
404
454
  * @public
405
455
  */
406
- retryAfterSeconds?: number;
456
+ retryAfterSeconds?: number | undefined;
407
457
  /**
408
458
  * @internal
409
459
  */
@@ -430,7 +480,7 @@ export declare class ResourceNotFoundException extends __BaseException {
430
480
  * <p>Information about the resources in use when the exception was thrown.</p>
431
481
  * @public
432
482
  */
433
- context?: Record<string, string>;
483
+ context?: Record<string, string> | undefined;
434
484
  /**
435
485
  * @internal
436
486
  */
@@ -480,12 +530,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
480
530
  * <p>The identifier of the affected resource.</p>
481
531
  * @public
482
532
  */
483
- resourceId?: string;
533
+ resourceId?: string | undefined;
484
534
  /**
485
535
  * <p>Information about the resources in use when the exception was thrown.</p>
486
536
  * @public
487
537
  */
488
- context?: Record<string, string>;
538
+ context?: Record<string, string> | undefined;
489
539
  /**
490
540
  * @internal
491
541
  */
@@ -505,22 +555,22 @@ export declare class ThrottlingException extends __BaseException {
505
555
  * <p>Identifies the service that is being throttled.</p>
506
556
  * @public
507
557
  */
508
- serviceCode?: string;
558
+ serviceCode?: string | undefined;
509
559
  /**
510
560
  * <p>Identifies the quota that is being throttled.</p>
511
561
  * @public
512
562
  */
513
- quotaCode?: string;
563
+ quotaCode?: string | undefined;
514
564
  /**
515
565
  * <p>The number of seconds a client should wait before retrying the request.</p>
516
566
  * @public
517
567
  */
518
- retryAfterSeconds?: number;
568
+ retryAfterSeconds?: number | undefined;
519
569
  /**
520
570
  * <p>Information about the resources in use when the exception was thrown.</p>
521
571
  * @public
522
572
  */
523
- context?: Record<string, string>;
573
+ context?: Record<string, string> | undefined;
524
574
  /**
525
575
  * @internal
526
576
  */
@@ -573,12 +623,12 @@ export declare class ValidationException extends __BaseException {
573
623
  * <p>A list of fields that failed validation.</p>
574
624
  * @public
575
625
  */
576
- fieldList?: ValidationExceptionField[];
626
+ fieldList?: ValidationExceptionField[] | undefined;
577
627
  /**
578
628
  * <p>Information about the resources in use when the exception was thrown.</p>
579
629
  * @public
580
630
  */
581
- context?: Record<string, string>;
631
+ context?: Record<string, string> | undefined;
582
632
  /**
583
633
  * @internal
584
634
  */
@@ -832,7 +882,7 @@ export declare class ConflictException extends __BaseException {
832
882
  * <p>Information about the resources in use when the exception was thrown.</p>
833
883
  * @public
834
884
  */
835
- context?: Record<string, string>;
885
+ context?: Record<string, string> | undefined;
836
886
  /**
837
887
  * @internal
838
888
  */
@@ -921,7 +971,7 @@ export interface AssumeQueueRoleForWorkerResponse {
921
971
  * <p>The Amazon Web Services credentials for the role that the worker is assuming.</p>
922
972
  * @public
923
973
  */
924
- credentials?: AwsCredentials;
974
+ credentials?: AwsCredentials | undefined;
925
975
  }
926
976
  /**
927
977
  * @public
@@ -956,7 +1006,7 @@ export interface ManifestProperties {
956
1006
  * <p>The file system location name.</p>
957
1007
  * @public
958
1008
  */
959
- fileSystemLocationName?: string;
1009
+ fileSystemLocationName?: string | undefined;
960
1010
  /**
961
1011
  * <p>The file's root path.</p>
962
1012
  * @public
@@ -971,17 +1021,17 @@ export interface ManifestProperties {
971
1021
  * <p>The file path relative to the directory.</p>
972
1022
  * @public
973
1023
  */
974
- outputRelativeDirectories?: string[];
1024
+ outputRelativeDirectories?: string[] | undefined;
975
1025
  /**
976
1026
  * <p>The file path.</p>
977
1027
  * @public
978
1028
  */
979
- inputManifestPath?: string;
1029
+ inputManifestPath?: string | undefined;
980
1030
  /**
981
1031
  * <p>The has value of the file.</p>
982
1032
  * @public
983
1033
  */
984
- inputManifestHash?: string;
1034
+ inputManifestHash?: string | undefined;
985
1035
  }
986
1036
  /**
987
1037
  * <p>The attachments for jobs.</p>
@@ -997,7 +1047,7 @@ export interface Attachments {
997
1047
  * <p>The file system.</p>
998
1048
  * @public
999
1049
  */
1000
- fileSystem?: JobAttachmentsFileSystem;
1050
+ fileSystem?: JobAttachmentsFileSystem | undefined;
1001
1051
  }
1002
1052
  /**
1003
1053
  * @public
@@ -1288,12 +1338,12 @@ export interface JobRunAsUser {
1288
1338
  * <p>The user and group that the jobs in the queue run as.</p>
1289
1339
  * @public
1290
1340
  */
1291
- posix?: PosixUser;
1341
+ posix?: PosixUser | undefined;
1292
1342
  /**
1293
1343
  * <p>Identifies a Microsoft Windows user.</p>
1294
1344
  * @public
1295
1345
  */
1296
- windows?: WindowsUser;
1346
+ windows?: WindowsUser | undefined;
1297
1347
  /**
1298
1348
  * <p>Specifies whether the job should run using the queue's system user or if the job should
1299
1349
  * run using the worker agent system user.</p>
@@ -1408,12 +1458,12 @@ export interface JobDetailsEntity {
1408
1458
  * <p>The job attachment settings.</p>
1409
1459
  * @public
1410
1460
  */
1411
- jobAttachmentSettings?: JobAttachmentSettings;
1461
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
1412
1462
  /**
1413
1463
  * <p>The user name and group that the job uses when run.</p>
1414
1464
  * @public
1415
1465
  */
1416
- jobRunAsUser?: JobRunAsUser;
1466
+ jobRunAsUser?: JobRunAsUser | undefined;
1417
1467
  /**
1418
1468
  * <p>The log group name.</p>
1419
1469
  * @public
@@ -1423,12 +1473,12 @@ export interface JobDetailsEntity {
1423
1473
  * <p>The queue role ARN.</p>
1424
1474
  * @public
1425
1475
  */
1426
- queueRoleArn?: string;
1476
+ queueRoleArn?: string | undefined;
1427
1477
  /**
1428
1478
  * <p>The parameters.</p>
1429
1479
  * @public
1430
1480
  */
1431
- parameters?: Record<string, JobParameter>;
1481
+ parameters?: Record<string, JobParameter> | undefined;
1432
1482
  /**
1433
1483
  * <p>The schema version.</p>
1434
1484
  * @public
@@ -1438,7 +1488,7 @@ export interface JobDetailsEntity {
1438
1488
  * <p>The path mapping rules.</p>
1439
1489
  * @public
1440
1490
  */
1441
- pathMappingRules?: PathMappingRule[];
1491
+ pathMappingRules?: PathMappingRule[] | undefined;
1442
1492
  }
1443
1493
  /**
1444
1494
  * <p>The details of a step entity.</p>
@@ -1774,7 +1824,7 @@ export interface BudgetActionToAdd {
1774
1824
  * </important>
1775
1825
  * @public
1776
1826
  */
1777
- description?: string;
1827
+ description?: string | undefined;
1778
1828
  }
1779
1829
  /**
1780
1830
  * <p>The budget action to remove.</p>
@@ -1876,7 +1926,7 @@ export interface CreateBudgetRequest {
1876
1926
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
1877
1927
  * @public
1878
1928
  */
1879
- clientToken?: string;
1929
+ clientToken?: string | undefined;
1880
1930
  /**
1881
1931
  * <p>The farm ID to include in this budget.</p>
1882
1932
  * @public
@@ -1902,7 +1952,7 @@ export interface CreateBudgetRequest {
1902
1952
  * </important>
1903
1953
  * @public
1904
1954
  */
1905
- description?: string;
1955
+ description?: string | undefined;
1906
1956
  /**
1907
1957
  * <p>The dollar limit based on consumed usage.</p>
1908
1958
  * @public
@@ -1986,7 +2036,7 @@ export interface ResponseBudgetAction {
1986
2036
  * </important>
1987
2037
  * @public
1988
2038
  */
1989
- description?: string;
2039
+ description?: string | undefined;
1990
2040
  }
1991
2041
  /**
1992
2042
  * @public
@@ -2056,7 +2106,7 @@ export interface GetBudgetResponse {
2056
2106
  * </important>
2057
2107
  * @public
2058
2108
  */
2059
- description?: string;
2109
+ description?: string | undefined;
2060
2110
  /**
2061
2111
  * <p>The consumed usage limit for the budget.</p>
2062
2112
  * @public
@@ -2091,17 +2141,17 @@ export interface GetBudgetResponse {
2091
2141
  * <p>The user or system that updated this resource.</p>
2092
2142
  * @public
2093
2143
  */
2094
- updatedBy?: string;
2144
+ updatedBy?: string | undefined;
2095
2145
  /**
2096
2146
  * <p>The date and time the resource was updated.</p>
2097
2147
  * @public
2098
2148
  */
2099
- updatedAt?: Date;
2149
+ updatedAt?: Date | undefined;
2100
2150
  /**
2101
2151
  * <p>The date and time the queue stopped.</p>
2102
2152
  * @public
2103
2153
  */
2104
- queueStoppedAt?: Date;
2154
+ queueStoppedAt?: Date | undefined;
2105
2155
  }
2106
2156
  /**
2107
2157
  * @public
@@ -2111,7 +2161,7 @@ export interface ListBudgetsRequest {
2111
2161
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
2112
2162
  * @public
2113
2163
  */
2114
- nextToken?: string;
2164
+ nextToken?: string | undefined;
2115
2165
  /**
2116
2166
  * <p>The farm ID associated with the budgets.</p>
2117
2167
  * @public
@@ -2121,12 +2171,12 @@ export interface ListBudgetsRequest {
2121
2171
  * <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>
2122
2172
  * @public
2123
2173
  */
2124
- maxResults?: number;
2174
+ maxResults?: number | undefined;
2125
2175
  /**
2126
2176
  * <p>The status to list for the budgets.</p>
2127
2177
  * @public
2128
2178
  */
2129
- status?: BudgetStatus;
2179
+ status?: BudgetStatus | undefined;
2130
2180
  }
2131
2181
  /**
2132
2182
  * <p>The budget summary.</p>
@@ -2176,7 +2226,7 @@ export interface BudgetSummary {
2176
2226
  * </important>
2177
2227
  * @public
2178
2228
  */
2179
- description?: string;
2229
+ description?: string | undefined;
2180
2230
  /**
2181
2231
  * <p>The approximate dollar limit of the budget.</p>
2182
2232
  * @public
@@ -2201,12 +2251,12 @@ export interface BudgetSummary {
2201
2251
  * <p>The user or system that updated this resource.</p>
2202
2252
  * @public
2203
2253
  */
2204
- updatedBy?: string;
2254
+ updatedBy?: string | undefined;
2205
2255
  /**
2206
2256
  * <p>The date and time the resource was updated.</p>
2207
2257
  * @public
2208
2258
  */
2209
- updatedAt?: Date;
2259
+ updatedAt?: Date | undefined;
2210
2260
  }
2211
2261
  /**
2212
2262
  * @public
@@ -2216,7 +2266,7 @@ export interface ListBudgetsResponse {
2216
2266
  * <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>
2217
2267
  * @public
2218
2268
  */
2219
- nextToken?: string;
2269
+ nextToken?: string | undefined;
2220
2270
  /**
2221
2271
  * <p>The budgets to include on the list.</p>
2222
2272
  * @public
@@ -2231,7 +2281,7 @@ export interface UpdateBudgetRequest {
2231
2281
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2232
2282
  * @public
2233
2283
  */
2234
- clientToken?: string;
2284
+ clientToken?: string | undefined;
2235
2285
  /**
2236
2286
  * <p>The farm ID of the budget to update.</p>
2237
2287
  * @public
@@ -2249,7 +2299,7 @@ export interface UpdateBudgetRequest {
2249
2299
  * </important>
2250
2300
  * @public
2251
2301
  */
2252
- displayName?: string;
2302
+ displayName?: string | undefined;
2253
2303
  /**
2254
2304
  * <p>The description of the budget to update.</p>
2255
2305
  * <important>
@@ -2257,7 +2307,7 @@ export interface UpdateBudgetRequest {
2257
2307
  * </important>
2258
2308
  * @public
2259
2309
  */
2260
- description?: string;
2310
+ description?: string | undefined;
2261
2311
  /**
2262
2312
  * <p>Updates the status of the budget.</p>
2263
2313
  * <ul>
@@ -2273,28 +2323,28 @@ export interface UpdateBudgetRequest {
2273
2323
  * </ul>
2274
2324
  * @public
2275
2325
  */
2276
- status?: BudgetStatus;
2326
+ status?: BudgetStatus | undefined;
2277
2327
  /**
2278
2328
  * <p>The dollar limit to update on the budget. Based on consumed usage.</p>
2279
2329
  * @public
2280
2330
  */
2281
- approximateDollarLimit?: number;
2331
+ approximateDollarLimit?: number | undefined;
2282
2332
  /**
2283
2333
  * <p>The budget actions to add. Budget actions specify what happens when the budget runs
2284
2334
  * out.</p>
2285
2335
  * @public
2286
2336
  */
2287
- actionsToAdd?: BudgetActionToAdd[];
2337
+ actionsToAdd?: BudgetActionToAdd[] | undefined;
2288
2338
  /**
2289
2339
  * <p>The budget actions to remove from the budget.</p>
2290
2340
  * @public
2291
2341
  */
2292
- actionsToRemove?: BudgetActionToRemove[];
2342
+ actionsToRemove?: BudgetActionToRemove[] | undefined;
2293
2343
  /**
2294
2344
  * <p>The schedule to update.</p>
2295
2345
  * @public
2296
2346
  */
2297
- schedule?: BudgetSchedule;
2347
+ schedule?: BudgetSchedule | undefined;
2298
2348
  }
2299
2349
  /**
2300
2350
  * @public
@@ -2416,7 +2466,7 @@ export interface CreateFarmRequest {
2416
2466
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2417
2467
  * @public
2418
2468
  */
2419
- clientToken?: string;
2469
+ clientToken?: string | undefined;
2420
2470
  /**
2421
2471
  * <p>The display name of the farm.</p>
2422
2472
  * <important>
@@ -2432,17 +2482,17 @@ export interface CreateFarmRequest {
2432
2482
  * </important>
2433
2483
  * @public
2434
2484
  */
2435
- description?: string;
2485
+ description?: string | undefined;
2436
2486
  /**
2437
2487
  * <p>The ARN of the KMS key to use on the farm.</p>
2438
2488
  * @public
2439
2489
  */
2440
- kmsKeyArn?: string;
2490
+ kmsKeyArn?: string | undefined;
2441
2491
  /**
2442
2492
  * <p>The tags to add to your farm. 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>
2443
2493
  * @public
2444
2494
  */
2445
- tags?: Record<string, string>;
2495
+ tags?: Record<string, string> | undefined;
2446
2496
  }
2447
2497
  /**
2448
2498
  * @public
@@ -2473,7 +2523,7 @@ export interface FleetAmountCapability {
2473
2523
  * <p>The maximum amount of the fleet worker capability.</p>
2474
2524
  * @public
2475
2525
  */
2476
- max?: number;
2526
+ max?: number | undefined;
2477
2527
  }
2478
2528
  /**
2479
2529
  * <p>Defines the fleet's capability name, minimum, and maximum.</p>
@@ -2505,7 +2555,7 @@ export interface MemoryMiBRange {
2505
2555
  * <p>The maximum amount of memory (in MiB).</p>
2506
2556
  * @public
2507
2557
  */
2508
- max?: number;
2558
+ max?: number | undefined;
2509
2559
  }
2510
2560
  /**
2511
2561
  * @public
@@ -2534,7 +2584,7 @@ export interface VCpuCountRange {
2534
2584
  * <p>The maximum amount of vCPU.</p>
2535
2585
  * @public
2536
2586
  */
2537
- max?: number;
2587
+ max?: number | undefined;
2538
2588
  }
2539
2589
  /**
2540
2590
  * <p>The worker capabilities for a customer managed workflow.</p>
@@ -2555,17 +2605,17 @@ export interface CustomerManagedWorkerCapabilities {
2555
2605
  * <p>The accelerator types for the customer managed worker capabilities.</p>
2556
2606
  * @public
2557
2607
  */
2558
- acceleratorTypes?: AcceleratorType[];
2608
+ acceleratorTypes?: AcceleratorType[] | undefined;
2559
2609
  /**
2560
2610
  * <p>The range of the accelerator.</p>
2561
2611
  * @public
2562
2612
  */
2563
- acceleratorCount?: AcceleratorCountRange;
2613
+ acceleratorCount?: AcceleratorCountRange | undefined;
2564
2614
  /**
2565
2615
  * <p>The total memory (MiB) for the customer managed worker capabilities.</p>
2566
2616
  * @public
2567
2617
  */
2568
- acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange;
2618
+ acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange | undefined;
2569
2619
  /**
2570
2620
  * <p>The operating system (OS) family.</p>
2571
2621
  * @public
@@ -2580,12 +2630,12 @@ export interface CustomerManagedWorkerCapabilities {
2580
2630
  * <p>Custom requirement ranges for customer managed worker capabilities.</p>
2581
2631
  * @public
2582
2632
  */
2583
- customAmounts?: FleetAmountCapability[];
2633
+ customAmounts?: FleetAmountCapability[] | undefined;
2584
2634
  /**
2585
2635
  * <p>Custom attributes for the customer manged worker capabilities.</p>
2586
2636
  * @public
2587
2637
  */
2588
- customAttributes?: FleetAttributeCapability[];
2638
+ customAttributes?: FleetAttributeCapability[] | undefined;
2589
2639
  }
2590
2640
  /**
2591
2641
  * <p>The details of a customer managed fleet configuration.</p>
@@ -2606,7 +2656,7 @@ export interface CustomerManagedFleetConfiguration {
2606
2656
  * <p>The storage profile ID.</p>
2607
2657
  * @public
2608
2658
  */
2609
- storageProfileId?: string;
2659
+ storageProfileId?: string | undefined;
2610
2660
  }
2611
2661
  /**
2612
2662
  * @public
@@ -2629,17 +2679,17 @@ export interface Ec2EbsVolume {
2629
2679
  * <p>The EBS volume size in GiB.</p>
2630
2680
  * @public
2631
2681
  */
2632
- sizeGiB?: number;
2682
+ sizeGiB?: number | undefined;
2633
2683
  /**
2634
2684
  * <p>The IOPS per volume.</p>
2635
2685
  * @public
2636
2686
  */
2637
- iops?: number;
2687
+ iops?: number | undefined;
2638
2688
  /**
2639
2689
  * <p>The throughput per volume in MiB.</p>
2640
2690
  * @public
2641
2691
  */
2642
- throughputMiB?: number;
2692
+ throughputMiB?: number | undefined;
2643
2693
  }
2644
2694
  /**
2645
2695
  * <p>The Amazon EC2 instance capabilities.</p>
@@ -2670,27 +2720,34 @@ export interface ServiceManagedEc2InstanceCapabilities {
2670
2720
  * <p>The root EBS volume.</p>
2671
2721
  * @public
2672
2722
  */
2673
- rootEbsVolume?: Ec2EbsVolume;
2723
+ rootEbsVolume?: Ec2EbsVolume | undefined;
2724
+ /**
2725
+ * <p>The GPU accelerator capabilities required for the Amazon EC2 instances. If you
2726
+ * include the <code>acceleratorCapabilities</code> property in the <a href="https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ServiceManagedEc2InstanceCapabilities">ServiceManagedEc2InstanceCapabilities</a> object, all of the Amazon EC2
2727
+ * instances will have at least one accelerator. </p>
2728
+ * @public
2729
+ */
2730
+ acceleratorCapabilities?: AcceleratorCapabilities | undefined;
2674
2731
  /**
2675
2732
  * <p>The allowable Amazon EC2 instance types.</p>
2676
2733
  * @public
2677
2734
  */
2678
- allowedInstanceTypes?: string[];
2735
+ allowedInstanceTypes?: string[] | undefined;
2679
2736
  /**
2680
2737
  * <p>The instance types to exclude from the fleet.</p>
2681
2738
  * @public
2682
2739
  */
2683
- excludedInstanceTypes?: string[];
2740
+ excludedInstanceTypes?: string[] | undefined;
2684
2741
  /**
2685
2742
  * <p>The custom capability amounts to require for instances in this fleet.</p>
2686
2743
  * @public
2687
2744
  */
2688
- customAmounts?: FleetAmountCapability[];
2745
+ customAmounts?: FleetAmountCapability[] | undefined;
2689
2746
  /**
2690
2747
  * <p>The custom capability attributes to require for instances in this fleet.</p>
2691
2748
  * @public
2692
2749
  */
2693
- customAttributes?: FleetAttributeCapability[];
2750
+ customAttributes?: FleetAttributeCapability[] | undefined;
2694
2751
  }
2695
2752
  /**
2696
2753
  * @public
@@ -2781,7 +2838,7 @@ export interface CreateFleetRequest {
2781
2838
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2782
2839
  * @public
2783
2840
  */
2784
- clientToken?: string;
2841
+ clientToken?: string | undefined;
2785
2842
  /**
2786
2843
  * <p>The farm ID of the farm to connect to the fleet.</p>
2787
2844
  * @public
@@ -2802,7 +2859,7 @@ export interface CreateFleetRequest {
2802
2859
  * </important>
2803
2860
  * @public
2804
2861
  */
2805
- description?: string;
2862
+ description?: string | undefined;
2806
2863
  /**
2807
2864
  * <p>The IAM role ARN for the role that the fleet's workers will use.</p>
2808
2865
  * @public
@@ -2812,7 +2869,7 @@ export interface CreateFleetRequest {
2812
2869
  * <p>The minimum number of workers for the fleet.</p>
2813
2870
  * @public
2814
2871
  */
2815
- minWorkerCount?: number;
2872
+ minWorkerCount?: number | undefined;
2816
2873
  /**
2817
2874
  * <p>The maximum number of workers for the fleet.</p>
2818
2875
  * @public
@@ -2828,7 +2885,7 @@ export interface CreateFleetRequest {
2828
2885
  * <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>
2829
2886
  * @public
2830
2887
  */
2831
- tags?: Record<string, string>;
2888
+ tags?: Record<string, string> | undefined;
2832
2889
  }
2833
2890
  /**
2834
2891
  * @public
@@ -2870,17 +2927,17 @@ export interface CreateJobRequest {
2870
2927
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2871
2928
  * @public
2872
2929
  */
2873
- clientToken?: string;
2930
+ clientToken?: string | undefined;
2874
2931
  /**
2875
2932
  * <p>The job template to use for this job.</p>
2876
2933
  * @public
2877
2934
  */
2878
- template?: string;
2935
+ template?: string | undefined;
2879
2936
  /**
2880
2937
  * <p>The file type for the job template.</p>
2881
2938
  * @public
2882
2939
  */
2883
- templateType?: JobTemplateType;
2940
+ templateType?: JobTemplateType | undefined;
2884
2941
  /**
2885
2942
  * <p>The priority of the job on a scale of 0 to 100. The highest priority (first scheduled)
2886
2943
  * is 100. When two jobs have the same priority, the oldest job is scheduled first.</p>
@@ -2891,39 +2948,39 @@ export interface CreateJobRequest {
2891
2948
  * <p>The parameters for the job.</p>
2892
2949
  * @public
2893
2950
  */
2894
- parameters?: Record<string, JobParameter>;
2951
+ parameters?: Record<string, JobParameter> | undefined;
2895
2952
  /**
2896
2953
  * <p>The attachments for the job. Attach files required for the job to run to a render
2897
2954
  * job.</p>
2898
2955
  * @public
2899
2956
  */
2900
- attachments?: Attachments;
2957
+ attachments?: Attachments | undefined;
2901
2958
  /**
2902
2959
  * <p>The storage profile ID for the storage profile to connect to the job.</p>
2903
2960
  * @public
2904
2961
  */
2905
- storageProfileId?: string;
2962
+ storageProfileId?: string | undefined;
2906
2963
  /**
2907
2964
  * <p>The initial job status when it is created. Jobs that are created with a
2908
2965
  * <code>SUSPENDED</code> status will not run until manually requeued.</p>
2909
2966
  * @public
2910
2967
  */
2911
- targetTaskRunStatus?: CreateJobTargetTaskRunStatus;
2968
+ targetTaskRunStatus?: CreateJobTargetTaskRunStatus | undefined;
2912
2969
  /**
2913
2970
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
2914
2971
  * @public
2915
2972
  */
2916
- maxFailedTasksCount?: number;
2973
+ maxFailedTasksCount?: number | undefined;
2917
2974
  /**
2918
2975
  * <p>The maximum number of retries for each task.</p>
2919
2976
  * @public
2920
2977
  */
2921
- maxRetriesPerTask?: number;
2978
+ maxRetriesPerTask?: number | undefined;
2922
2979
  /**
2923
2980
  * <p>The job ID for the source job.</p>
2924
2981
  * @public
2925
2982
  */
2926
- sourceJobId?: string;
2983
+ sourceJobId?: string | undefined;
2927
2984
  }
2928
2985
  /**
2929
2986
  * @public
@@ -2943,7 +3000,7 @@ export interface CreateLicenseEndpointRequest {
2943
3000
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2944
3001
  * @public
2945
3002
  */
2946
- clientToken?: string;
3003
+ clientToken?: string | undefined;
2947
3004
  /**
2948
3005
  * <p>The VPC (virtual private cloud) ID to use with the license endpoint.</p>
2949
3006
  * @public
@@ -2963,7 +3020,7 @@ export interface CreateLicenseEndpointRequest {
2963
3020
  * <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>
2964
3021
  * @public
2965
3022
  */
2966
- tags?: Record<string, string>;
3023
+ tags?: Record<string, string> | undefined;
2967
3024
  }
2968
3025
  /**
2969
3026
  * @public
@@ -2983,7 +3040,7 @@ export interface CreateMonitorRequest {
2983
3040
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2984
3041
  * @public
2985
3042
  */
2986
- clientToken?: string;
3043
+ clientToken?: string | undefined;
2987
3044
  /**
2988
3045
  * <p>The name that you give the monitor that is displayed in the Deadline Cloud console.</p>
2989
3046
  * <important>
@@ -3047,7 +3104,7 @@ export interface CreateQueueRequest {
3047
3104
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3048
3105
  * @public
3049
3106
  */
3050
- clientToken?: string;
3107
+ clientToken?: string | undefined;
3051
3108
  /**
3052
3109
  * <p>The farm ID of the farm to connect to the queue.</p>
3053
3110
  * @public
@@ -3068,43 +3125,43 @@ export interface CreateQueueRequest {
3068
3125
  * </important>
3069
3126
  * @public
3070
3127
  */
3071
- description?: string;
3128
+ description?: string | undefined;
3072
3129
  /**
3073
3130
  * <p>The default action to take on a queue if a budget isn't configured.</p>
3074
3131
  * @public
3075
3132
  */
3076
- defaultBudgetAction?: DefaultQueueBudgetAction;
3133
+ defaultBudgetAction?: DefaultQueueBudgetAction | undefined;
3077
3134
  /**
3078
3135
  * <p>The job attachment settings for the queue. These are the Amazon S3 bucket name and the Amazon S3
3079
3136
  * prefix.</p>
3080
3137
  * @public
3081
3138
  */
3082
- jobAttachmentSettings?: JobAttachmentSettings;
3139
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
3083
3140
  /**
3084
3141
  * <p>The IAM role ARN that workers will use while running jobs for this queue.</p>
3085
3142
  * @public
3086
3143
  */
3087
- roleArn?: string;
3144
+ roleArn?: string | undefined;
3088
3145
  /**
3089
3146
  * <p>The jobs in the queue run as the specified POSIX user.</p>
3090
3147
  * @public
3091
3148
  */
3092
- jobRunAsUser?: JobRunAsUser;
3149
+ jobRunAsUser?: JobRunAsUser | undefined;
3093
3150
  /**
3094
3151
  * <p>The file system location name to include in the queue.</p>
3095
3152
  * @public
3096
3153
  */
3097
- requiredFileSystemLocationNames?: string[];
3154
+ requiredFileSystemLocationNames?: string[] | undefined;
3098
3155
  /**
3099
3156
  * <p>The storage profile IDs to include in the queue.</p>
3100
3157
  * @public
3101
3158
  */
3102
- allowedStorageProfileIds?: string[];
3159
+ allowedStorageProfileIds?: string[] | undefined;
3103
3160
  /**
3104
3161
  * <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>
3105
3162
  * @public
3106
3163
  */
3107
- tags?: Record<string, string>;
3164
+ tags?: Record<string, string> | undefined;
3108
3165
  }
3109
3166
  /**
3110
3167
  * @public
@@ -3136,7 +3193,7 @@ export interface CreateQueueEnvironmentRequest {
3136
3193
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3137
3194
  * @public
3138
3195
  */
3139
- clientToken?: string;
3196
+ clientToken?: string | undefined;
3140
3197
  /**
3141
3198
  * <p>The farm ID of the farm to connect to the environment.</p>
3142
3199
  * @public
@@ -3254,7 +3311,7 @@ export interface CreateStorageProfileRequest {
3254
3311
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3255
3312
  * @public
3256
3313
  */
3257
- clientToken?: string;
3314
+ clientToken?: string | undefined;
3258
3315
  /**
3259
3316
  * <p>The farm ID of the farm to connect to the storage profile.</p>
3260
3317
  * @public
@@ -3277,7 +3334,7 @@ export interface CreateStorageProfileRequest {
3277
3334
  * <p>File system paths to include in the storage profile.</p>
3278
3335
  * @public
3279
3336
  */
3280
- fileSystemLocations?: FileSystemLocation[];
3337
+ fileSystemLocations?: FileSystemLocation[] | undefined;
3281
3338
  }
3282
3339
  /**
3283
3340
  * @public
@@ -3298,12 +3355,12 @@ export interface IpAddresses {
3298
3355
  * <p>The IpV4 address of the network.</p>
3299
3356
  * @public
3300
3357
  */
3301
- ipV4Addresses?: string[];
3358
+ ipV4Addresses?: string[] | undefined;
3302
3359
  /**
3303
3360
  * <p>The IpV6 address for the network and node component.</p>
3304
3361
  * @public
3305
3362
  */
3306
- ipV6Addresses?: string[];
3363
+ ipV6Addresses?: string[] | undefined;
3307
3364
  }
3308
3365
  /**
3309
3366
  * <p>The host property details.</p>
@@ -3314,12 +3371,12 @@ export interface HostPropertiesRequest {
3314
3371
  * <p>The IP address of the host.</p>
3315
3372
  * @public
3316
3373
  */
3317
- ipAddresses?: IpAddresses;
3374
+ ipAddresses?: IpAddresses | undefined;
3318
3375
  /**
3319
3376
  * <p>The host name.</p>
3320
3377
  * @public
3321
3378
  */
3322
- hostName?: string;
3379
+ hostName?: string | undefined;
3323
3380
  }
3324
3381
  /**
3325
3382
  * @public
@@ -3339,12 +3396,12 @@ export interface CreateWorkerRequest {
3339
3396
  * <p>The IP address and host name of the worker.</p>
3340
3397
  * @public
3341
3398
  */
3342
- hostProperties?: HostPropertiesRequest;
3399
+ hostProperties?: HostPropertiesRequest | undefined;
3343
3400
  /**
3344
3401
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3345
3402
  * @public
3346
3403
  */
3347
- clientToken?: string;
3404
+ clientToken?: string | undefined;
3348
3405
  }
3349
3406
  /**
3350
3407
  * @public
@@ -3465,7 +3522,7 @@ export interface DeleteFleetRequest {
3465
3522
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3466
3523
  * @public
3467
3524
  */
3468
- clientToken?: string;
3525
+ clientToken?: string | undefined;
3469
3526
  /**
3470
3527
  * <p>The farm ID of the farm to remove from the fleet.</p>
3471
3528
  * @public
@@ -3531,12 +3588,12 @@ export interface FleetCapabilities {
3531
3588
  * <p>Amount capabilities of the fleet.</p>
3532
3589
  * @public
3533
3590
  */
3534
- amounts?: FleetAmountCapability[];
3591
+ amounts?: FleetAmountCapability[] | undefined;
3535
3592
  /**
3536
3593
  * <p>Attribute capabilities of the fleet.</p>
3537
3594
  * @public
3538
3595
  */
3539
- attributes?: FleetAttributeCapability[];
3596
+ attributes?: FleetAttributeCapability[] | undefined;
3540
3597
  }
3541
3598
  /**
3542
3599
  * @public
@@ -3582,7 +3639,7 @@ export interface GetFleetResponse {
3582
3639
  * </important>
3583
3640
  * @public
3584
3641
  */
3585
- description?: string;
3642
+ description?: string | undefined;
3586
3643
  /**
3587
3644
  * <p>The Auto Scaling status of the fleet.</p>
3588
3645
  * @public
@@ -3593,12 +3650,12 @@ export interface GetFleetResponse {
3593
3650
  * <code>SHRINKING</code>.</p>
3594
3651
  * @public
3595
3652
  */
3596
- autoScalingStatus?: AutoScalingStatus;
3653
+ autoScalingStatus?: AutoScalingStatus | undefined;
3597
3654
  /**
3598
3655
  * <p>The number of target workers in the fleet.</p>
3599
3656
  * @public
3600
3657
  */
3601
- targetWorkerCount?: number;
3658
+ targetWorkerCount?: number | undefined;
3602
3659
  /**
3603
3660
  * <p>The number of workers in the fleet.</p>
3604
3661
  * @public
@@ -3624,7 +3681,7 @@ export interface GetFleetResponse {
3624
3681
  * attribute names and values.</p>
3625
3682
  * @public
3626
3683
  */
3627
- capabilities?: FleetCapabilities;
3684
+ capabilities?: FleetCapabilities | undefined;
3628
3685
  /**
3629
3686
  * <p>The IAM role ARN.</p>
3630
3687
  * @public
@@ -3644,12 +3701,12 @@ export interface GetFleetResponse {
3644
3701
  * <p>The date and time the resource was updated.</p>
3645
3702
  * @public
3646
3703
  */
3647
- updatedAt?: Date;
3704
+ updatedAt?: Date | undefined;
3648
3705
  /**
3649
3706
  * <p>The user or system that updated this resource.</p>
3650
3707
  * @public
3651
3708
  */
3652
- updatedBy?: string;
3709
+ updatedBy?: string | undefined;
3653
3710
  }
3654
3711
  /**
3655
3712
  * @public
@@ -3669,12 +3726,12 @@ export interface ListFleetMembersRequest {
3669
3726
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
3670
3727
  * @public
3671
3728
  */
3672
- nextToken?: string;
3729
+ nextToken?: string | undefined;
3673
3730
  /**
3674
3731
  * <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>
3675
3732
  * @public
3676
3733
  */
3677
- maxResults?: number;
3734
+ maxResults?: number | undefined;
3678
3735
  }
3679
3736
  /**
3680
3737
  * <p>The fleet member.</p>
@@ -3725,7 +3782,7 @@ export interface ListFleetMembersResponse {
3725
3782
  * <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>
3726
3783
  * @public
3727
3784
  */
3728
- nextToken?: string;
3785
+ nextToken?: string | undefined;
3729
3786
  }
3730
3787
  /**
3731
3788
  * @public
@@ -3740,7 +3797,7 @@ export interface ListFleetsRequest {
3740
3797
  * <p>The principal ID of the members to include in the fleet.</p>
3741
3798
  * @public
3742
3799
  */
3743
- principalId?: string;
3800
+ principalId?: string | undefined;
3744
3801
  /**
3745
3802
  * <p>The display names of a list of fleets.</p>
3746
3803
  * <important>
@@ -3748,22 +3805,22 @@ export interface ListFleetsRequest {
3748
3805
  * </important>
3749
3806
  * @public
3750
3807
  */
3751
- displayName?: string;
3808
+ displayName?: string | undefined;
3752
3809
  /**
3753
3810
  * <p>The status of the fleet.</p>
3754
3811
  * @public
3755
3812
  */
3756
- status?: FleetStatus;
3813
+ status?: FleetStatus | undefined;
3757
3814
  /**
3758
3815
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
3759
3816
  * @public
3760
3817
  */
3761
- nextToken?: string;
3818
+ nextToken?: string | undefined;
3762
3819
  /**
3763
3820
  * <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>
3764
3821
  * @public
3765
3822
  */
3766
- maxResults?: number;
3823
+ maxResults?: number | undefined;
3767
3824
  }
3768
3825
  /**
3769
3826
  * <p>The details of a fleet.</p>
@@ -3797,12 +3854,12 @@ export interface FleetSummary {
3797
3854
  * <p>The Auto Scaling status of a fleet.</p>
3798
3855
  * @public
3799
3856
  */
3800
- autoScalingStatus?: AutoScalingStatus;
3857
+ autoScalingStatus?: AutoScalingStatus | undefined;
3801
3858
  /**
3802
3859
  * <p>The target number of workers in a fleet.</p>
3803
3860
  * @public
3804
3861
  */
3805
- targetWorkerCount?: number;
3862
+ targetWorkerCount?: number | undefined;
3806
3863
  /**
3807
3864
  * <p>The number of workers in the fleet summary.</p>
3808
3865
  * @public
@@ -3837,12 +3894,12 @@ export interface FleetSummary {
3837
3894
  * <p>The date and time the resource was updated.</p>
3838
3895
  * @public
3839
3896
  */
3840
- updatedAt?: Date;
3897
+ updatedAt?: Date | undefined;
3841
3898
  /**
3842
3899
  * <p>The user or system that updated this resource.</p>
3843
3900
  * @public
3844
3901
  */
3845
- updatedBy?: string;
3902
+ updatedBy?: string | undefined;
3846
3903
  }
3847
3904
  /**
3848
3905
  * @public
@@ -3857,7 +3914,7 @@ export interface ListFleetsResponse {
3857
3914
  * <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>
3858
3915
  * @public
3859
3916
  */
3860
- nextToken?: string;
3917
+ nextToken?: string | undefined;
3861
3918
  }
3862
3919
  /**
3863
3920
  * @public
@@ -3867,7 +3924,7 @@ export interface UpdateFleetRequest {
3867
3924
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3868
3925
  * @public
3869
3926
  */
3870
- clientToken?: string;
3927
+ clientToken?: string | undefined;
3871
3928
  /**
3872
3929
  * <p>The farm ID to update.</p>
3873
3930
  * @public
@@ -3885,7 +3942,7 @@ export interface UpdateFleetRequest {
3885
3942
  * </important>
3886
3943
  * @public
3887
3944
  */
3888
- displayName?: string;
3945
+ displayName?: string | undefined;
3889
3946
  /**
3890
3947
  * <p>The description of the fleet to update.</p>
3891
3948
  * <important>
@@ -3893,27 +3950,27 @@ export interface UpdateFleetRequest {
3893
3950
  * </important>
3894
3951
  * @public
3895
3952
  */
3896
- description?: string;
3953
+ description?: string | undefined;
3897
3954
  /**
3898
3955
  * <p>The IAM role ARN that the fleet's workers assume while running jobs.</p>
3899
3956
  * @public
3900
3957
  */
3901
- roleArn?: string;
3958
+ roleArn?: string | undefined;
3902
3959
  /**
3903
3960
  * <p>The minimum number of workers in the fleet.</p>
3904
3961
  * @public
3905
3962
  */
3906
- minWorkerCount?: number;
3963
+ minWorkerCount?: number | undefined;
3907
3964
  /**
3908
3965
  * <p>The maximum number of workers in the fleet.</p>
3909
3966
  * @public
3910
3967
  */
3911
- maxWorkerCount?: number;
3968
+ maxWorkerCount?: number | undefined;
3912
3969
  /**
3913
3970
  * <p>The fleet configuration to update.</p>
3914
3971
  * @public
3915
3972
  */
3916
- configuration?: FleetConfiguration;
3973
+ configuration?: FleetConfiguration | undefined;
3917
3974
  }
3918
3975
  /**
3919
3976
  * @public
@@ -3974,22 +4031,22 @@ export interface HostPropertiesResponse {
3974
4031
  * <p>The IP address of the host.</p>
3975
4032
  * @public
3976
4033
  */
3977
- ipAddresses?: IpAddresses;
4034
+ ipAddresses?: IpAddresses | undefined;
3978
4035
  /**
3979
4036
  * <p>The host name.</p>
3980
4037
  * @public
3981
4038
  */
3982
- hostName?: string;
4039
+ hostName?: string | undefined;
3983
4040
  /**
3984
4041
  * <p>The ARN of the host EC2 instance.</p>
3985
4042
  * @public
3986
4043
  */
3987
- ec2InstanceArn?: string;
4044
+ ec2InstanceArn?: string | undefined;
3988
4045
  /**
3989
4046
  * <p>The instance type of the host EC2 instance.</p>
3990
4047
  * @public
3991
4048
  */
3992
- ec2InstanceType?: string;
4049
+ ec2InstanceType?: string | undefined;
3993
4050
  }
3994
4051
  /**
3995
4052
  * @public
@@ -4032,7 +4089,7 @@ export interface GetWorkerResponse {
4032
4089
  * <p>The host properties for the worker.</p>
4033
4090
  * @public
4034
4091
  */
4035
- hostProperties?: HostPropertiesResponse;
4092
+ hostProperties?: HostPropertiesResponse | undefined;
4036
4093
  /**
4037
4094
  * <p>The status of the worker.</p>
4038
4095
  * @public
@@ -4042,7 +4099,7 @@ export interface GetWorkerResponse {
4042
4099
  * <p>The logs for the associated worker.</p>
4043
4100
  * @public
4044
4101
  */
4045
- log?: LogConfiguration;
4102
+ log?: LogConfiguration | undefined;
4046
4103
  /**
4047
4104
  * <p>The date and time the resource was created.</p>
4048
4105
  * @public
@@ -4057,12 +4114,12 @@ export interface GetWorkerResponse {
4057
4114
  * <p>The date and time the resource was updated.</p>
4058
4115
  * @public
4059
4116
  */
4060
- updatedAt?: Date;
4117
+ updatedAt?: Date | undefined;
4061
4118
  /**
4062
4119
  * <p>The user or system that updated this resource.</p>
4063
4120
  * @public
4064
4121
  */
4065
- updatedBy?: string;
4122
+ updatedBy?: string | undefined;
4066
4123
  }
4067
4124
  /**
4068
4125
  * @public
@@ -4087,12 +4144,12 @@ export interface ListSessionsForWorkerRequest {
4087
4144
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4088
4145
  * @public
4089
4146
  */
4090
- nextToken?: string;
4147
+ nextToken?: string | undefined;
4091
4148
  /**
4092
4149
  * <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>
4093
4150
  * @public
4094
4151
  */
4095
- maxResults?: number;
4152
+ maxResults?: number | undefined;
4096
4153
  }
4097
4154
  /**
4098
4155
  * @public
@@ -4154,12 +4211,12 @@ export interface WorkerSessionSummary {
4154
4211
  * <p>The date and time the resource ended running.</p>
4155
4212
  * @public
4156
4213
  */
4157
- endedAt?: Date;
4214
+ endedAt?: Date | undefined;
4158
4215
  /**
4159
4216
  * <p>The life cycle status </p>
4160
4217
  * @public
4161
4218
  */
4162
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
4219
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
4163
4220
  }
4164
4221
  /**
4165
4222
  * @public
@@ -4174,7 +4231,7 @@ export interface ListSessionsForWorkerResponse {
4174
4231
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4175
4232
  * @public
4176
4233
  */
4177
- nextToken?: string;
4234
+ nextToken?: string | undefined;
4178
4235
  }
4179
4236
  /**
4180
4237
  * @public
@@ -4194,12 +4251,12 @@ export interface ListWorkersRequest {
4194
4251
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4195
4252
  * @public
4196
4253
  */
4197
- nextToken?: string;
4254
+ nextToken?: string | undefined;
4198
4255
  /**
4199
4256
  * <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>
4200
4257
  * @public
4201
4258
  */
4202
- maxResults?: number;
4259
+ maxResults?: number | undefined;
4203
4260
  }
4204
4261
  /**
4205
4262
  * <p>The summary of details for a worker.</p>
@@ -4230,12 +4287,12 @@ export interface WorkerSummary {
4230
4287
  * <p>The host properties of the worker.</p>
4231
4288
  * @public
4232
4289
  */
4233
- hostProperties?: HostPropertiesResponse;
4290
+ hostProperties?: HostPropertiesResponse | undefined;
4234
4291
  /**
4235
4292
  * <p>The log configuration for the worker.</p>
4236
4293
  * @public
4237
4294
  */
4238
- log?: LogConfiguration;
4295
+ log?: LogConfiguration | undefined;
4239
4296
  /**
4240
4297
  * <p>The date and time the resource was created.</p>
4241
4298
  * @public
@@ -4250,12 +4307,12 @@ export interface WorkerSummary {
4250
4307
  * <p>The date and time the resource was updated.</p>
4251
4308
  * @public
4252
4309
  */
4253
- updatedAt?: Date;
4310
+ updatedAt?: Date | undefined;
4254
4311
  /**
4255
4312
  * <p>The user or system that updated this resource.</p>
4256
4313
  * @public
4257
4314
  */
4258
- updatedBy?: string;
4315
+ updatedBy?: string | undefined;
4259
4316
  }
4260
4317
  /**
4261
4318
  * @public
@@ -4265,7 +4322,7 @@ export interface ListWorkersResponse {
4265
4322
  * <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>
4266
4323
  * @public
4267
4324
  */
4268
- nextToken?: string;
4325
+ nextToken?: string | undefined;
4269
4326
  /**
4270
4327
  * <p>The workers on the list.</p>
4271
4328
  * @public
@@ -4356,17 +4413,17 @@ export interface UpdateWorkerRequest {
4356
4413
  * <p>The worker status to update.</p>
4357
4414
  * @public
4358
4415
  */
4359
- status?: UpdatedWorkerStatus;
4416
+ status?: UpdatedWorkerStatus | undefined;
4360
4417
  /**
4361
4418
  * <p>The worker capabilities to update.</p>
4362
4419
  * @public
4363
4420
  */
4364
- capabilities?: WorkerCapabilities;
4421
+ capabilities?: WorkerCapabilities | undefined;
4365
4422
  /**
4366
4423
  * <p>The host properties to update.</p>
4367
4424
  * @public
4368
4425
  */
4369
- hostProperties?: HostPropertiesRequest;
4426
+ hostProperties?: HostPropertiesRequest | undefined;
4370
4427
  }
4371
4428
  /**
4372
4429
  * @public
@@ -4376,7 +4433,7 @@ export interface UpdateWorkerResponse {
4376
4433
  * <p>The worker log to update.</p>
4377
4434
  * @public
4378
4435
  */
4379
- log?: LogConfiguration;
4436
+ log?: LogConfiguration | undefined;
4380
4437
  }
4381
4438
  /**
4382
4439
  * <p>The updated session action information as it relates to completion and progress of the
@@ -4388,37 +4445,37 @@ export interface UpdatedSessionActionInfo {
4388
4445
  * <p>The status of the session upon completion.</p>
4389
4446
  * @public
4390
4447
  */
4391
- completedStatus?: CompletedStatus;
4448
+ completedStatus?: CompletedStatus | undefined;
4392
4449
  /**
4393
4450
  * <p>The process exit code.</p>
4394
4451
  * @public
4395
4452
  */
4396
- processExitCode?: number;
4453
+ processExitCode?: number | undefined;
4397
4454
  /**
4398
4455
  * <p>A message to indicate the progress of the updated session action.</p>
4399
4456
  * @public
4400
4457
  */
4401
- progressMessage?: string;
4458
+ progressMessage?: string | undefined;
4402
4459
  /**
4403
4460
  * <p>The date and time the resource started running.</p>
4404
4461
  * @public
4405
4462
  */
4406
- startedAt?: Date;
4463
+ startedAt?: Date | undefined;
4407
4464
  /**
4408
4465
  * <p>The date and time the resource ended running.</p>
4409
4466
  * @public
4410
4467
  */
4411
- endedAt?: Date;
4468
+ endedAt?: Date | undefined;
4412
4469
  /**
4413
4470
  * <p>The updated time.</p>
4414
4471
  * @public
4415
4472
  */
4416
- updatedAt?: Date;
4473
+ updatedAt?: Date | undefined;
4417
4474
  /**
4418
4475
  * <p>The percentage completed.</p>
4419
4476
  * @public
4420
4477
  */
4421
- progressPercent?: number;
4478
+ progressPercent?: number | undefined;
4422
4479
  }
4423
4480
  /**
4424
4481
  * @public
@@ -4443,7 +4500,7 @@ export interface UpdateWorkerScheduleRequest {
4443
4500
  * <p>The session actions associated with the worker schedule to update.</p>
4444
4501
  * @public
4445
4502
  */
4446
- updatedSessionActions?: Record<string, UpdatedSessionActionInfo>;
4503
+ updatedSessionActions?: Record<string, UpdatedSessionActionInfo> | undefined;
4447
4504
  }
4448
4505
  /**
4449
4506
  * @public
@@ -4474,7 +4531,7 @@ export interface UpdateWorkerScheduleResponse {
4474
4531
  * <p>The status to update the worker to.</p>
4475
4532
  * @public
4476
4533
  */
4477
- desiredWorkerStatus?: DesiredWorkerStatus;
4534
+ desiredWorkerStatus?: DesiredWorkerStatus | undefined;
4478
4535
  /**
4479
4536
  * <p>Updates the time interval (in seconds) for the schedule.</p>
4480
4537
  * @public
@@ -4515,7 +4572,7 @@ export interface GetFarmResponse {
4515
4572
  * </important>
4516
4573
  * @public
4517
4574
  */
4518
- description?: string;
4575
+ description?: string | undefined;
4519
4576
  /**
4520
4577
  * <p>The ARN of the KMS key used on the farm.</p>
4521
4578
  * @public
@@ -4535,12 +4592,12 @@ export interface GetFarmResponse {
4535
4592
  * <p>The date and time the resource was updated.</p>
4536
4593
  * @public
4537
4594
  */
4538
- updatedAt?: Date;
4595
+ updatedAt?: Date | undefined;
4539
4596
  /**
4540
4597
  * <p>The user or system that updated this resource.</p>
4541
4598
  * @public
4542
4599
  */
4543
- updatedBy?: string;
4600
+ updatedBy?: string | undefined;
4544
4601
  }
4545
4602
  /**
4546
4603
  * @public
@@ -4593,17 +4650,17 @@ export interface GetStorageProfileResponse {
4593
4650
  * <p>The date and time the resource was updated.</p>
4594
4651
  * @public
4595
4652
  */
4596
- updatedAt?: Date;
4653
+ updatedAt?: Date | undefined;
4597
4654
  /**
4598
4655
  * <p>The user or system that updated this resource.</p>
4599
4656
  * @public
4600
4657
  */
4601
- updatedBy?: string;
4658
+ updatedBy?: string | undefined;
4602
4659
  /**
4603
4660
  * <p>The location of the files for the storage profile.</p>
4604
4661
  * @public
4605
4662
  */
4606
- fileSystemLocations?: FileSystemLocation[];
4663
+ fileSystemLocations?: FileSystemLocation[] | undefined;
4607
4664
  }
4608
4665
  /**
4609
4666
  * @public
@@ -4618,12 +4675,12 @@ export interface ListFarmMembersRequest {
4618
4675
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4619
4676
  * @public
4620
4677
  */
4621
- nextToken?: string;
4678
+ nextToken?: string | undefined;
4622
4679
  /**
4623
4680
  * <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>
4624
4681
  * @public
4625
4682
  */
4626
- maxResults?: number;
4683
+ maxResults?: number | undefined;
4627
4684
  }
4628
4685
  /**
4629
4686
  * <p>The member of a farm.</p>
@@ -4669,7 +4726,7 @@ export interface ListFarmMembersResponse {
4669
4726
  * <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>
4670
4727
  * @public
4671
4728
  */
4672
- nextToken?: string;
4729
+ nextToken?: string | undefined;
4673
4730
  }
4674
4731
  /**
4675
4732
  * @public
@@ -4679,17 +4736,17 @@ export interface ListFarmsRequest {
4679
4736
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4680
4737
  * @public
4681
4738
  */
4682
- nextToken?: string;
4739
+ nextToken?: string | undefined;
4683
4740
  /**
4684
4741
  * <p>The principal ID of the member to list on the farm.</p>
4685
4742
  * @public
4686
4743
  */
4687
- principalId?: string;
4744
+ principalId?: string | undefined;
4688
4745
  /**
4689
4746
  * <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>
4690
4747
  * @public
4691
4748
  */
4692
- maxResults?: number;
4749
+ maxResults?: number | undefined;
4693
4750
  }
4694
4751
  /**
4695
4752
  * <p>The summary of details for a farm.</p>
@@ -4713,7 +4770,7 @@ export interface FarmSummary {
4713
4770
  * <p>The ARN for the KMS key.</p>
4714
4771
  * @public
4715
4772
  */
4716
- kmsKeyArn?: string;
4773
+ kmsKeyArn?: string | undefined;
4717
4774
  /**
4718
4775
  * <p>The date and time the resource was created.</p>
4719
4776
  * @public
@@ -4728,12 +4785,12 @@ export interface FarmSummary {
4728
4785
  * <p>The date and time the resource was updated.</p>
4729
4786
  * @public
4730
4787
  */
4731
- updatedAt?: Date;
4788
+ updatedAt?: Date | undefined;
4732
4789
  /**
4733
4790
  * <p>The user or system that updated this resource.</p>
4734
4791
  * @public
4735
4792
  */
4736
- updatedBy?: string;
4793
+ updatedBy?: string | undefined;
4737
4794
  }
4738
4795
  /**
4739
4796
  * @public
@@ -4743,7 +4800,7 @@ export interface ListFarmsResponse {
4743
4800
  * <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>
4744
4801
  * @public
4745
4802
  */
4746
- nextToken?: string;
4803
+ nextToken?: string | undefined;
4747
4804
  /**
4748
4805
  * <p>Farms on the list.</p>
4749
4806
  * @public
@@ -4763,12 +4820,12 @@ export interface ListStorageProfilesRequest {
4763
4820
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4764
4821
  * @public
4765
4822
  */
4766
- nextToken?: string;
4823
+ nextToken?: string | undefined;
4767
4824
  /**
4768
4825
  * <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>
4769
4826
  * @public
4770
4827
  */
4771
- maxResults?: number;
4828
+ maxResults?: number | undefined;
4772
4829
  }
4773
4830
  /**
4774
4831
  * <p>The details of a storage profile.</p>
@@ -4807,7 +4864,7 @@ export interface ListStorageProfilesResponse {
4807
4864
  * <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>
4808
4865
  * @public
4809
4866
  */
4810
- nextToken?: string;
4867
+ nextToken?: string | undefined;
4811
4868
  }
4812
4869
  /**
4813
4870
  * @public
@@ -4943,7 +5000,7 @@ export interface GetQueueResponse {
4943
5000
  * </important>
4944
5001
  * @public
4945
5002
  */
4946
- description?: string;
5003
+ description?: string | undefined;
4947
5004
  /**
4948
5005
  * <p>The farm ID for the queue.</p>
4949
5006
  * @public
@@ -4978,32 +5035,32 @@ export interface GetQueueResponse {
4978
5035
  * <p>The reason the queue was blocked.</p>
4979
5036
  * @public
4980
5037
  */
4981
- blockedReason?: QueueBlockedReason;
5038
+ blockedReason?: QueueBlockedReason | undefined;
4982
5039
  /**
4983
5040
  * <p>The job attachment settings for the queue.</p>
4984
5041
  * @public
4985
5042
  */
4986
- jobAttachmentSettings?: JobAttachmentSettings;
5043
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
4987
5044
  /**
4988
5045
  * <p>The IAM role ARN.</p>
4989
5046
  * @public
4990
5047
  */
4991
- roleArn?: string;
5048
+ roleArn?: string | undefined;
4992
5049
  /**
4993
5050
  * <p>A list of the required file system location names in the queue.</p>
4994
5051
  * @public
4995
5052
  */
4996
- requiredFileSystemLocationNames?: string[];
5053
+ requiredFileSystemLocationNames?: string[] | undefined;
4997
5054
  /**
4998
5055
  * <p>The storage profile IDs for the queue.</p>
4999
5056
  * @public
5000
5057
  */
5001
- allowedStorageProfileIds?: string[];
5058
+ allowedStorageProfileIds?: string[] | undefined;
5002
5059
  /**
5003
5060
  * <p>The jobs in the queue ran as this specified POSIX user.</p>
5004
5061
  * @public
5005
5062
  */
5006
- jobRunAsUser?: JobRunAsUser;
5063
+ jobRunAsUser?: JobRunAsUser | undefined;
5007
5064
  /**
5008
5065
  * <p>The date and time the resource was created.</p>
5009
5066
  * @public
@@ -5018,12 +5075,12 @@ export interface GetQueueResponse {
5018
5075
  * <p>The date and time the resource was updated.</p>
5019
5076
  * @public
5020
5077
  */
5021
- updatedAt?: Date;
5078
+ updatedAt?: Date | undefined;
5022
5079
  /**
5023
5080
  * <p>The user or system that updated this resource.</p>
5024
5081
  * @public
5025
5082
  */
5026
- updatedBy?: string;
5083
+ updatedBy?: string | undefined;
5027
5084
  }
5028
5085
  /**
5029
5086
  * @public
@@ -5088,12 +5145,12 @@ export interface GetQueueEnvironmentResponse {
5088
5145
  * <p>The date and time the resource was updated.</p>
5089
5146
  * @public
5090
5147
  */
5091
- updatedAt?: Date;
5148
+ updatedAt?: Date | undefined;
5092
5149
  /**
5093
5150
  * <p>The user or system that updated this resource.</p>
5094
5151
  * @public
5095
5152
  */
5096
- updatedBy?: string;
5153
+ updatedBy?: string | undefined;
5097
5154
  }
5098
5155
  /**
5099
5156
  * @public
@@ -5141,7 +5198,7 @@ export interface GetStorageProfileForQueueResponse {
5141
5198
  * <p>The location of the files for the storage profile within the queue.</p>
5142
5199
  * @public
5143
5200
  */
5144
- fileSystemLocations?: FileSystemLocation[];
5201
+ fileSystemLocations?: FileSystemLocation[] | undefined;
5145
5202
  }
5146
5203
  /**
5147
5204
  * @public
@@ -5293,62 +5350,62 @@ export interface GetJobResponse {
5293
5350
  * <p>The date and time the resource was updated.</p>
5294
5351
  * @public
5295
5352
  */
5296
- updatedAt?: Date;
5353
+ updatedAt?: Date | undefined;
5297
5354
  /**
5298
5355
  * <p>The user or system that updated this resource.</p>
5299
5356
  * @public
5300
5357
  */
5301
- updatedBy?: string;
5358
+ updatedBy?: string | undefined;
5302
5359
  /**
5303
5360
  * <p>The date and time the resource started running.</p>
5304
5361
  * @public
5305
5362
  */
5306
- startedAt?: Date;
5363
+ startedAt?: Date | undefined;
5307
5364
  /**
5308
5365
  * <p>The date and time the resource ended running.</p>
5309
5366
  * @public
5310
5367
  */
5311
- endedAt?: Date;
5368
+ endedAt?: Date | undefined;
5312
5369
  /**
5313
5370
  * <p>The task run status for the job.</p>
5314
5371
  * @public
5315
5372
  */
5316
- taskRunStatus?: TaskRunStatus;
5373
+ taskRunStatus?: TaskRunStatus | undefined;
5317
5374
  /**
5318
5375
  * <p>The task status with which the job started.</p>
5319
5376
  * @public
5320
5377
  */
5321
- targetTaskRunStatus?: JobTargetTaskRunStatus;
5378
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
5322
5379
  /**
5323
5380
  * <p>The number of tasks running on the job.</p>
5324
5381
  * @public
5325
5382
  */
5326
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
5383
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
5327
5384
  /**
5328
5385
  * <p>The storage profile ID associated with the job.</p>
5329
5386
  * @public
5330
5387
  */
5331
- storageProfileId?: string;
5388
+ storageProfileId?: string | undefined;
5332
5389
  /**
5333
5390
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
5334
5391
  * @public
5335
5392
  */
5336
- maxFailedTasksCount?: number;
5393
+ maxFailedTasksCount?: number | undefined;
5337
5394
  /**
5338
5395
  * <p>The maximum number of retries per failed tasks.</p>
5339
5396
  * @public
5340
5397
  */
5341
- maxRetriesPerTask?: number;
5398
+ maxRetriesPerTask?: number | undefined;
5342
5399
  /**
5343
5400
  * <p>The parameters for the job.</p>
5344
5401
  * @public
5345
5402
  */
5346
- parameters?: Record<string, JobParameter>;
5403
+ parameters?: Record<string, JobParameter> | undefined;
5347
5404
  /**
5348
5405
  * <p>The attachments for the job.</p>
5349
5406
  * @public
5350
5407
  */
5351
- attachments?: Attachments;
5408
+ attachments?: Attachments | undefined;
5352
5409
  /**
5353
5410
  * <p>The description of the job.</p>
5354
5411
  * <important>
@@ -5356,12 +5413,12 @@ export interface GetJobResponse {
5356
5413
  * </important>
5357
5414
  * @public
5358
5415
  */
5359
- description?: string;
5416
+ description?: string | undefined;
5360
5417
  /**
5361
5418
  * <p>The job ID for the source job.</p>
5362
5419
  * @public
5363
5420
  */
5364
- sourceJobId?: string;
5421
+ sourceJobId?: string | undefined;
5365
5422
  }
5366
5423
  /**
5367
5424
  * @public
@@ -5426,32 +5483,32 @@ export interface GetSessionResponse {
5426
5483
  * <p>The date and time the resource ended running.</p>
5427
5484
  * @public
5428
5485
  */
5429
- endedAt?: Date;
5486
+ endedAt?: Date | undefined;
5430
5487
  /**
5431
5488
  * <p>The date and time the resource was updated.</p>
5432
5489
  * @public
5433
5490
  */
5434
- updatedAt?: Date;
5491
+ updatedAt?: Date | undefined;
5435
5492
  /**
5436
5493
  * <p>The user or system that updated this resource.</p>
5437
5494
  * @public
5438
5495
  */
5439
- updatedBy?: string;
5496
+ updatedBy?: string | undefined;
5440
5497
  /**
5441
5498
  * <p>The life cycle status with which the session started.</p>
5442
5499
  * @public
5443
5500
  */
5444
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
5501
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
5445
5502
  /**
5446
5503
  * <p>Provides the Amazon EC2 properties of the host.</p>
5447
5504
  * @public
5448
5505
  */
5449
- hostProperties?: HostPropertiesResponse;
5506
+ hostProperties?: HostPropertiesResponse | undefined;
5450
5507
  /**
5451
5508
  * <p>The worker log for the session.</p>
5452
5509
  * @public
5453
5510
  */
5454
- workerLog?: LogConfiguration;
5511
+ workerLog?: LogConfiguration | undefined;
5455
5512
  }
5456
5513
  /**
5457
5514
  * @public
@@ -5509,7 +5566,7 @@ export interface SyncInputJobAttachmentsSessionActionDefinition {
5509
5566
  * <p>The step ID for the step in the job attachment.</p>
5510
5567
  * @public
5511
5568
  */
5512
- stepId?: string;
5569
+ stepId?: string | undefined;
5513
5570
  }
5514
5571
  /**
5515
5572
  * <p>The task, step, and parameters for the task run in the session action.</p>
@@ -5643,22 +5700,22 @@ export interface GetSessionActionResponse {
5643
5700
  * <p>The date and time the resource started running.</p>
5644
5701
  * @public
5645
5702
  */
5646
- startedAt?: Date;
5703
+ startedAt?: Date | undefined;
5647
5704
  /**
5648
5705
  * <p>The date and time the resource ended running.</p>
5649
5706
  * @public
5650
5707
  */
5651
- endedAt?: Date;
5708
+ endedAt?: Date | undefined;
5652
5709
  /**
5653
5710
  * <p>The Linux timestamp of the date and time the session action was last updated.</p>
5654
5711
  * @public
5655
5712
  */
5656
- workerUpdatedAt?: Date;
5713
+ workerUpdatedAt?: Date | undefined;
5657
5714
  /**
5658
5715
  * <p>The percentage completed for a session action.</p>
5659
5716
  * @public
5660
5717
  */
5661
- progressPercent?: number;
5718
+ progressPercent?: number | undefined;
5662
5719
  /**
5663
5720
  * <p>The session ID for the session action.</p>
5664
5721
  * @public
@@ -5668,12 +5725,12 @@ export interface GetSessionActionResponse {
5668
5725
  * <p>The exit code to exit the session.</p>
5669
5726
  * @public
5670
5727
  */
5671
- processExitCode?: number;
5728
+ processExitCode?: number | undefined;
5672
5729
  /**
5673
5730
  * <p>The message that communicates the progress of the session action.</p>
5674
5731
  * @public
5675
5732
  */
5676
- progressMessage?: string;
5733
+ progressMessage?: string | undefined;
5677
5734
  /**
5678
5735
  * <p>The session action definition.</p>
5679
5736
  * @public
@@ -5789,7 +5846,7 @@ export interface ParameterSpace {
5789
5846
  * <p>The combination expression to use in the search.</p>
5790
5847
  * @public
5791
5848
  */
5792
- combination?: string;
5849
+ combination?: string | undefined;
5793
5850
  }
5794
5851
  /**
5795
5852
  * <p>The details outlining the minimum and maximum capability of a step.</p>
@@ -5805,17 +5862,17 @@ export interface StepAmountCapability {
5805
5862
  * <p>The minimum amount.</p>
5806
5863
  * @public
5807
5864
  */
5808
- min?: number;
5865
+ min?: number | undefined;
5809
5866
  /**
5810
5867
  * <p>The maximum amount.</p>
5811
5868
  * @public
5812
5869
  */
5813
- max?: number;
5870
+ max?: number | undefined;
5814
5871
  /**
5815
5872
  * <p>The amount value.</p>
5816
5873
  * @public
5817
5874
  */
5818
- value?: number;
5875
+ value?: number | undefined;
5819
5876
  }
5820
5877
  /**
5821
5878
  * <p>The list of step attributes.</p>
@@ -5831,12 +5888,12 @@ export interface StepAttributeCapability {
5831
5888
  * <p>Requires any of the step attributes in a given list.</p>
5832
5889
  * @public
5833
5890
  */
5834
- anyOf?: string[];
5891
+ anyOf?: string[] | undefined;
5835
5892
  /**
5836
5893
  * <p>Requires all of the step attribute values.</p>
5837
5894
  * @public
5838
5895
  */
5839
- allOf?: string[];
5896
+ allOf?: string[] | undefined;
5840
5897
  }
5841
5898
  /**
5842
5899
  * <p>The details of required step capabilities.</p>
@@ -5893,7 +5950,7 @@ export interface GetStepResponse {
5893
5950
  * <p>A message that describes the lifecycle status of the step.</p>
5894
5951
  * @public
5895
5952
  */
5896
- lifecycleStatusMessage?: string;
5953
+ lifecycleStatusMessage?: string | undefined;
5897
5954
  /**
5898
5955
  * <p>The task run status for the job.</p>
5899
5956
  * @public
@@ -5908,7 +5965,7 @@ export interface GetStepResponse {
5908
5965
  * <p>The task status with which the job started.</p>
5909
5966
  * @public
5910
5967
  */
5911
- targetTaskRunStatus?: StepTargetTaskRunStatus;
5968
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
5912
5969
  /**
5913
5970
  * <p>The date and time the resource was created.</p>
5914
5971
  * @public
@@ -5923,37 +5980,37 @@ export interface GetStepResponse {
5923
5980
  * <p>The date and time the resource was updated.</p>
5924
5981
  * @public
5925
5982
  */
5926
- updatedAt?: Date;
5983
+ updatedAt?: Date | undefined;
5927
5984
  /**
5928
5985
  * <p>The user or system that updated this resource.</p>
5929
5986
  * @public
5930
5987
  */
5931
- updatedBy?: string;
5988
+ updatedBy?: string | undefined;
5932
5989
  /**
5933
5990
  * <p>The date and time the resource started running.</p>
5934
5991
  * @public
5935
5992
  */
5936
- startedAt?: Date;
5993
+ startedAt?: Date | undefined;
5937
5994
  /**
5938
5995
  * <p>The date and time the resource ended running.</p>
5939
5996
  * @public
5940
5997
  */
5941
- endedAt?: Date;
5998
+ endedAt?: Date | undefined;
5942
5999
  /**
5943
6000
  * <p>The number of dependencies in the step.</p>
5944
6001
  * @public
5945
6002
  */
5946
- dependencyCounts?: DependencyCounts;
6003
+ dependencyCounts?: DependencyCounts | undefined;
5947
6004
  /**
5948
6005
  * <p>The required capabilities of the step.</p>
5949
6006
  * @public
5950
6007
  */
5951
- requiredCapabilities?: StepRequiredCapabilities;
6008
+ requiredCapabilities?: StepRequiredCapabilities | undefined;
5952
6009
  /**
5953
6010
  * <p>A list of step parameters and the combination expression for the step.</p>
5954
6011
  * @public
5955
6012
  */
5956
- parameterSpace?: ParameterSpace;
6013
+ parameterSpace?: ParameterSpace | undefined;
5957
6014
  /**
5958
6015
  * <p>The description of the step.</p>
5959
6016
  * <important>
@@ -5961,7 +6018,7 @@ export interface GetStepResponse {
5961
6018
  * </important>
5962
6019
  * @public
5963
6020
  */
5964
- description?: string;
6021
+ description?: string | undefined;
5965
6022
  }
5966
6023
  /**
5967
6024
  * @public
@@ -6037,42 +6094,42 @@ export interface GetTaskResponse {
6037
6094
  * <p>The run status with which to start the task.</p>
6038
6095
  * @public
6039
6096
  */
6040
- targetRunStatus?: TaskTargetRunStatus;
6097
+ targetRunStatus?: TaskTargetRunStatus | undefined;
6041
6098
  /**
6042
6099
  * <p>The number of times that the task failed and was retried.</p>
6043
6100
  * @public
6044
6101
  */
6045
- failureRetryCount?: number;
6102
+ failureRetryCount?: number | undefined;
6046
6103
  /**
6047
6104
  * <p>The parameters for the task.</p>
6048
6105
  * @public
6049
6106
  */
6050
- parameters?: Record<string, TaskParameterValue>;
6107
+ parameters?: Record<string, TaskParameterValue> | undefined;
6051
6108
  /**
6052
6109
  * <p>The date and time the resource started running.</p>
6053
6110
  * @public
6054
6111
  */
6055
- startedAt?: Date;
6112
+ startedAt?: Date | undefined;
6056
6113
  /**
6057
6114
  * <p>The date and time the resource ended running.</p>
6058
6115
  * @public
6059
6116
  */
6060
- endedAt?: Date;
6117
+ endedAt?: Date | undefined;
6061
6118
  /**
6062
6119
  * <p>The date and time the resource was updated.</p>
6063
6120
  * @public
6064
6121
  */
6065
- updatedAt?: Date;
6122
+ updatedAt?: Date | undefined;
6066
6123
  /**
6067
6124
  * <p>The user or system that updated this resource.</p>
6068
6125
  * @public
6069
6126
  */
6070
- updatedBy?: string;
6127
+ updatedBy?: string | undefined;
6071
6128
  /**
6072
6129
  * <p>The latest session ID for the task.</p>
6073
6130
  * @public
6074
6131
  */
6075
- latestSessionActionId?: string;
6132
+ latestSessionActionId?: string | undefined;
6076
6133
  }
6077
6134
  /**
6078
6135
  * @public
@@ -6097,12 +6154,12 @@ export interface ListJobMembersRequest {
6097
6154
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6098
6155
  * @public
6099
6156
  */
6100
- nextToken?: string;
6157
+ nextToken?: string | undefined;
6101
6158
  /**
6102
6159
  * <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>
6103
6160
  * @public
6104
6161
  */
6105
- maxResults?: number;
6162
+ maxResults?: number | undefined;
6106
6163
  }
6107
6164
  /**
6108
6165
  * <p>The details for a job member.</p>
@@ -6158,7 +6215,7 @@ export interface ListJobMembersResponse {
6158
6215
  * <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>
6159
6216
  * @public
6160
6217
  */
6161
- nextToken?: string;
6218
+ nextToken?: string | undefined;
6162
6219
  }
6163
6220
  /**
6164
6221
  * @public
@@ -6183,12 +6240,12 @@ export interface ListJobParameterDefinitionsRequest {
6183
6240
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6184
6241
  * @public
6185
6242
  */
6186
- nextToken?: string;
6243
+ nextToken?: string | undefined;
6187
6244
  /**
6188
6245
  * <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>
6189
6246
  * @public
6190
6247
  */
6191
- maxResults?: number;
6248
+ maxResults?: number | undefined;
6192
6249
  }
6193
6250
  /**
6194
6251
  * @public
@@ -6203,7 +6260,7 @@ export interface ListJobParameterDefinitionsResponse {
6203
6260
  * <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>
6204
6261
  * @public
6205
6262
  */
6206
- nextToken?: string;
6263
+ nextToken?: string | undefined;
6207
6264
  }
6208
6265
  /**
6209
6266
  * @public
@@ -6218,7 +6275,7 @@ export interface ListJobsRequest {
6218
6275
  * <p>The principal ID of the members on the jobs.</p>
6219
6276
  * @public
6220
6277
  */
6221
- principalId?: string;
6278
+ principalId?: string | undefined;
6222
6279
  /**
6223
6280
  * <p>The queue ID for the job.</p>
6224
6281
  * @public
@@ -6228,12 +6285,12 @@ export interface ListJobsRequest {
6228
6285
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6229
6286
  * @public
6230
6287
  */
6231
- nextToken?: string;
6288
+ nextToken?: string | undefined;
6232
6289
  /**
6233
6290
  * <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>
6234
6291
  * @public
6235
6292
  */
6236
- maxResults?: number;
6293
+ maxResults?: number | undefined;
6237
6294
  }
6238
6295
  /**
6239
6296
  * <p>A summary of job details.</p>
@@ -6279,22 +6336,22 @@ export interface JobSummary {
6279
6336
  * <p>The date and time the resource was updated.</p>
6280
6337
  * @public
6281
6338
  */
6282
- updatedAt?: Date;
6339
+ updatedAt?: Date | undefined;
6283
6340
  /**
6284
6341
  * <p>The user or system that updated this resource.</p>
6285
6342
  * @public
6286
6343
  */
6287
- updatedBy?: string;
6344
+ updatedBy?: string | undefined;
6288
6345
  /**
6289
6346
  * <p>The date and time the resource started running.</p>
6290
6347
  * @public
6291
6348
  */
6292
- startedAt?: Date;
6349
+ startedAt?: Date | undefined;
6293
6350
  /**
6294
6351
  * <p>The date and time the resource ended running.</p>
6295
6352
  * @public
6296
6353
  */
6297
- endedAt?: Date;
6354
+ endedAt?: Date | undefined;
6298
6355
  /**
6299
6356
  * <p>The task run status for the job.</p>
6300
6357
  * <ul>
@@ -6341,32 +6398,32 @@ export interface JobSummary {
6341
6398
  * </ul>
6342
6399
  * @public
6343
6400
  */
6344
- taskRunStatus?: TaskRunStatus;
6401
+ taskRunStatus?: TaskRunStatus | undefined;
6345
6402
  /**
6346
6403
  * <p>The task status to start with on the job.</p>
6347
6404
  * @public
6348
6405
  */
6349
- targetTaskRunStatus?: JobTargetTaskRunStatus;
6406
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
6350
6407
  /**
6351
6408
  * <p>The number of tasks running on the job.</p>
6352
6409
  * @public
6353
6410
  */
6354
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
6411
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
6355
6412
  /**
6356
6413
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
6357
6414
  * @public
6358
6415
  */
6359
- maxFailedTasksCount?: number;
6416
+ maxFailedTasksCount?: number | undefined;
6360
6417
  /**
6361
6418
  * <p>The maximum number of retries for a job.</p>
6362
6419
  * @public
6363
6420
  */
6364
- maxRetriesPerTask?: number;
6421
+ maxRetriesPerTask?: number | undefined;
6365
6422
  /**
6366
6423
  * <p>The job ID for the source job.</p>
6367
6424
  * @public
6368
6425
  */
6369
- sourceJobId?: string;
6426
+ sourceJobId?: string | undefined;
6370
6427
  }
6371
6428
  /**
6372
6429
  * @public
@@ -6381,7 +6438,7 @@ export interface ListJobsResponse {
6381
6438
  * <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>
6382
6439
  * @public
6383
6440
  */
6384
- nextToken?: string;
6441
+ nextToken?: string | undefined;
6385
6442
  }
6386
6443
  /**
6387
6444
  * @public
@@ -6406,22 +6463,22 @@ export interface ListSessionActionsRequest {
6406
6463
  * <p>The session ID to include on the sessions action list.</p>
6407
6464
  * @public
6408
6465
  */
6409
- sessionId?: string;
6466
+ sessionId?: string | undefined;
6410
6467
  /**
6411
6468
  * <p>The task ID for the session actions list.</p>
6412
6469
  * @public
6413
6470
  */
6414
- taskId?: string;
6471
+ taskId?: string | undefined;
6415
6472
  /**
6416
6473
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6417
6474
  * @public
6418
6475
  */
6419
- nextToken?: string;
6476
+ nextToken?: string | undefined;
6420
6477
  /**
6421
6478
  * <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>
6422
6479
  * @public
6423
6480
  */
6424
- maxResults?: number;
6481
+ maxResults?: number | undefined;
6425
6482
  }
6426
6483
  /**
6427
6484
  * <p>Defines the environment a session action enters in.</p>
@@ -6454,7 +6511,7 @@ export interface SyncInputJobAttachmentsSessionActionDefinitionSummary {
6454
6511
  * <p>The step ID of the step in the job attachment.</p>
6455
6512
  * @public
6456
6513
  */
6457
- stepId?: string;
6514
+ stepId?: string | undefined;
6458
6515
  }
6459
6516
  /**
6460
6517
  * <p>The details of a task run in a session action.</p>
@@ -6563,23 +6620,23 @@ export interface SessionActionSummary {
6563
6620
  * <p>The date and time the resource started running.</p>
6564
6621
  * @public
6565
6622
  */
6566
- startedAt?: Date;
6623
+ startedAt?: Date | undefined;
6567
6624
  /**
6568
6625
  * <p>The date and time the resource ended running.</p>
6569
6626
  * @public
6570
6627
  */
6571
- endedAt?: Date;
6628
+ endedAt?: Date | undefined;
6572
6629
  /**
6573
6630
  * <p>The Linux timestamp of the last date and time that the session action was
6574
6631
  * updated.</p>
6575
6632
  * @public
6576
6633
  */
6577
- workerUpdatedAt?: Date;
6634
+ workerUpdatedAt?: Date | undefined;
6578
6635
  /**
6579
6636
  * <p>The completion percentage for the session action.</p>
6580
6637
  * @public
6581
6638
  */
6582
- progressPercent?: number;
6639
+ progressPercent?: number | undefined;
6583
6640
  /**
6584
6641
  * <p>The session action definition.</p>
6585
6642
  * @public
@@ -6599,7 +6656,7 @@ export interface ListSessionActionsResponse {
6599
6656
  * <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>
6600
6657
  * @public
6601
6658
  */
6602
- nextToken?: string;
6659
+ nextToken?: string | undefined;
6603
6660
  }
6604
6661
  /**
6605
6662
  * @public
@@ -6624,12 +6681,12 @@ export interface ListSessionsRequest {
6624
6681
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6625
6682
  * @public
6626
6683
  */
6627
- nextToken?: string;
6684
+ nextToken?: string | undefined;
6628
6685
  /**
6629
6686
  * <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>
6630
6687
  * @public
6631
6688
  */
6632
- maxResults?: number;
6689
+ maxResults?: number | undefined;
6633
6690
  }
6634
6691
  /**
6635
6692
  * <p>The summary of a session.</p>
@@ -6665,22 +6722,22 @@ export interface SessionSummary {
6665
6722
  * <p>The date and time the resource ended running.</p>
6666
6723
  * @public
6667
6724
  */
6668
- endedAt?: Date;
6725
+ endedAt?: Date | undefined;
6669
6726
  /**
6670
6727
  * <p>The date and time the resource was updated.</p>
6671
6728
  * @public
6672
6729
  */
6673
- updatedAt?: Date;
6730
+ updatedAt?: Date | undefined;
6674
6731
  /**
6675
6732
  * <p>The user or system that updated this resource.</p>
6676
6733
  * @public
6677
6734
  */
6678
- updatedBy?: string;
6735
+ updatedBy?: string | undefined;
6679
6736
  /**
6680
6737
  * <p>The target life cycle status for the session.</p>
6681
6738
  * @public
6682
6739
  */
6683
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
6740
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
6684
6741
  }
6685
6742
  /**
6686
6743
  * @public
@@ -6695,7 +6752,7 @@ export interface ListSessionsResponse {
6695
6752
  * <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>
6696
6753
  * @public
6697
6754
  */
6698
- nextToken?: string;
6755
+ nextToken?: string | undefined;
6699
6756
  }
6700
6757
  /**
6701
6758
  * @public
@@ -6725,12 +6782,12 @@ export interface ListStepConsumersRequest {
6725
6782
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6726
6783
  * @public
6727
6784
  */
6728
- nextToken?: string;
6785
+ nextToken?: string | undefined;
6729
6786
  /**
6730
6787
  * <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>
6731
6788
  * @public
6732
6789
  */
6733
- maxResults?: number;
6790
+ maxResults?: number | undefined;
6734
6791
  }
6735
6792
  /**
6736
6793
  * @public
@@ -6773,7 +6830,7 @@ export interface ListStepConsumersResponse {
6773
6830
  * <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>
6774
6831
  * @public
6775
6832
  */
6776
- nextToken?: string;
6833
+ nextToken?: string | undefined;
6777
6834
  }
6778
6835
  /**
6779
6836
  * @public
@@ -6803,12 +6860,12 @@ export interface ListStepDependenciesRequest {
6803
6860
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6804
6861
  * @public
6805
6862
  */
6806
- nextToken?: string;
6863
+ nextToken?: string | undefined;
6807
6864
  /**
6808
6865
  * <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>
6809
6866
  * @public
6810
6867
  */
6811
- maxResults?: number;
6868
+ maxResults?: number | undefined;
6812
6869
  }
6813
6870
  /**
6814
6871
  * <p>The details of step dependency.</p>
@@ -6839,7 +6896,7 @@ export interface ListStepDependenciesResponse {
6839
6896
  * <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>
6840
6897
  * @public
6841
6898
  */
6842
- nextToken?: string;
6899
+ nextToken?: string | undefined;
6843
6900
  }
6844
6901
  /**
6845
6902
  * @public
@@ -6864,12 +6921,12 @@ export interface ListStepsRequest {
6864
6921
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6865
6922
  * @public
6866
6923
  */
6867
- nextToken?: string;
6924
+ nextToken?: string | undefined;
6868
6925
  /**
6869
6926
  * <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>
6870
6927
  * @public
6871
6928
  */
6872
- maxResults?: number;
6929
+ maxResults?: number | undefined;
6873
6930
  }
6874
6931
  /**
6875
6932
  * <p>The details for a step.</p>
@@ -6895,7 +6952,7 @@ export interface StepSummary {
6895
6952
  * <p>A message that describes the lifecycle of the step.</p>
6896
6953
  * @public
6897
6954
  */
6898
- lifecycleStatusMessage?: string;
6955
+ lifecycleStatusMessage?: string | undefined;
6899
6956
  /**
6900
6957
  * <p>The task run status for the job.</p>
6901
6958
  * <ul>
@@ -6952,7 +7009,7 @@ export interface StepSummary {
6952
7009
  * <p>The task status to start with on the job.</p>
6953
7010
  * @public
6954
7011
  */
6955
- targetTaskRunStatus?: StepTargetTaskRunStatus;
7012
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
6956
7013
  /**
6957
7014
  * <p>The date and time the resource was created.</p>
6958
7015
  * @public
@@ -6967,27 +7024,27 @@ export interface StepSummary {
6967
7024
  * <p>The date and time the resource was updated.</p>
6968
7025
  * @public
6969
7026
  */
6970
- updatedAt?: Date;
7027
+ updatedAt?: Date | undefined;
6971
7028
  /**
6972
7029
  * <p>The user or system that updated this resource.</p>
6973
7030
  * @public
6974
7031
  */
6975
- updatedBy?: string;
7032
+ updatedBy?: string | undefined;
6976
7033
  /**
6977
7034
  * <p>The date and time the resource started running.</p>
6978
7035
  * @public
6979
7036
  */
6980
- startedAt?: Date;
7037
+ startedAt?: Date | undefined;
6981
7038
  /**
6982
7039
  * <p>The date and time the resource ended running.</p>
6983
7040
  * @public
6984
7041
  */
6985
- endedAt?: Date;
7042
+ endedAt?: Date | undefined;
6986
7043
  /**
6987
7044
  * <p>The number of dependencies for the step.</p>
6988
7045
  * @public
6989
7046
  */
6990
- dependencyCounts?: DependencyCounts;
7047
+ dependencyCounts?: DependencyCounts | undefined;
6991
7048
  }
6992
7049
  /**
6993
7050
  * @public
@@ -7002,7 +7059,7 @@ export interface ListStepsResponse {
7002
7059
  * <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>
7003
7060
  * @public
7004
7061
  */
7005
- nextToken?: string;
7062
+ nextToken?: string | undefined;
7006
7063
  }
7007
7064
  /**
7008
7065
  * @public
@@ -7032,12 +7089,12 @@ export interface ListTasksRequest {
7032
7089
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7033
7090
  * @public
7034
7091
  */
7035
- nextToken?: string;
7092
+ nextToken?: string | undefined;
7036
7093
  /**
7037
7094
  * <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>
7038
7095
  * @public
7039
7096
  */
7040
- maxResults?: number;
7097
+ maxResults?: number | undefined;
7041
7098
  }
7042
7099
  /**
7043
7100
  * <p>The details of a task.</p>
@@ -7068,42 +7125,42 @@ export interface TaskSummary {
7068
7125
  * <p>The run status on which the started.</p>
7069
7126
  * @public
7070
7127
  */
7071
- targetRunStatus?: TaskTargetRunStatus;
7128
+ targetRunStatus?: TaskTargetRunStatus | undefined;
7072
7129
  /**
7073
7130
  * <p>The number of times that the task failed and was retried.</p>
7074
7131
  * @public
7075
7132
  */
7076
- failureRetryCount?: number;
7133
+ failureRetryCount?: number | undefined;
7077
7134
  /**
7078
7135
  * <p>The task parameters.</p>
7079
7136
  * @public
7080
7137
  */
7081
- parameters?: Record<string, TaskParameterValue>;
7138
+ parameters?: Record<string, TaskParameterValue> | undefined;
7082
7139
  /**
7083
7140
  * <p>The date and time the resource started running.</p>
7084
7141
  * @public
7085
7142
  */
7086
- startedAt?: Date;
7143
+ startedAt?: Date | undefined;
7087
7144
  /**
7088
7145
  * <p>The date and time the resource ended running.</p>
7089
7146
  * @public
7090
7147
  */
7091
- endedAt?: Date;
7148
+ endedAt?: Date | undefined;
7092
7149
  /**
7093
7150
  * <p>The date and time the resource was updated.</p>
7094
7151
  * @public
7095
7152
  */
7096
- updatedAt?: Date;
7153
+ updatedAt?: Date | undefined;
7097
7154
  /**
7098
7155
  * <p>The user or system that updated this resource.</p>
7099
7156
  * @public
7100
7157
  */
7101
- updatedBy?: string;
7158
+ updatedBy?: string | undefined;
7102
7159
  /**
7103
7160
  * <p>The latest session action for the task.</p>
7104
7161
  * @public
7105
7162
  */
7106
- latestSessionActionId?: string;
7163
+ latestSessionActionId?: string | undefined;
7107
7164
  }
7108
7165
  /**
7109
7166
  * @public
@@ -7118,7 +7175,7 @@ export interface ListTasksResponse {
7118
7175
  * <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>
7119
7176
  * @public
7120
7177
  */
7121
- nextToken?: string;
7178
+ nextToken?: string | undefined;
7122
7179
  }
7123
7180
  /**
7124
7181
  * @public
@@ -7139,7 +7196,7 @@ export interface UpdateJobRequest {
7139
7196
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7140
7197
  * @public
7141
7198
  */
7142
- clientToken?: string;
7199
+ clientToken?: string | undefined;
7143
7200
  /**
7144
7201
  * <p>The farm ID of the job to update.</p>
7145
7202
  * @public
@@ -7159,22 +7216,22 @@ export interface UpdateJobRequest {
7159
7216
  * <p>The task status to update the job's tasks to.</p>
7160
7217
  * @public
7161
7218
  */
7162
- targetTaskRunStatus?: JobTargetTaskRunStatus;
7219
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
7163
7220
  /**
7164
7221
  * <p>The job priority to update.</p>
7165
7222
  * @public
7166
7223
  */
7167
- priority?: number;
7224
+ priority?: number | undefined;
7168
7225
  /**
7169
7226
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
7170
7227
  * @public
7171
7228
  */
7172
- maxFailedTasksCount?: number;
7229
+ maxFailedTasksCount?: number | undefined;
7173
7230
  /**
7174
7231
  * <p>The maximum number of retries for a job.</p>
7175
7232
  * @public
7176
7233
  */
7177
- maxRetriesPerTask?: number;
7234
+ maxRetriesPerTask?: number | undefined;
7178
7235
  /**
7179
7236
  * <p>The status of a job in its lifecycle. When you change the status of the job to
7180
7237
  * <code>ARCHIVED</code>, the job can't be scheduled or archived.</p>
@@ -7184,7 +7241,7 @@ export interface UpdateJobRequest {
7184
7241
  * </important>
7185
7242
  * @public
7186
7243
  */
7187
- lifecycleStatus?: UpdateJobLifecycleStatus;
7244
+ lifecycleStatus?: UpdateJobLifecycleStatus | undefined;
7188
7245
  }
7189
7246
  /**
7190
7247
  * @public
@@ -7199,7 +7256,7 @@ export interface UpdateSessionRequest {
7199
7256
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7200
7257
  * @public
7201
7258
  */
7202
- clientToken?: string;
7259
+ clientToken?: string | undefined;
7203
7260
  /**
7204
7261
  * <p>The farm ID to update in the session.</p>
7205
7262
  * @public
@@ -7239,7 +7296,7 @@ export interface UpdateStepRequest {
7239
7296
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7240
7297
  * @public
7241
7298
  */
7242
- clientToken?: string;
7299
+ clientToken?: string | undefined;
7243
7300
  /**
7244
7301
  * <p>The farm ID to update.</p>
7245
7302
  * @public
@@ -7279,7 +7336,7 @@ export interface UpdateTaskRequest {
7279
7336
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7280
7337
  * @public
7281
7338
  */
7282
- clientToken?: string;
7339
+ clientToken?: string | undefined;
7283
7340
  /**
7284
7341
  * <p>The farm ID to update.</p>
7285
7342
  * @public
@@ -7334,12 +7391,12 @@ export interface ListQueueEnvironmentsRequest {
7334
7391
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7335
7392
  * @public
7336
7393
  */
7337
- nextToken?: string;
7394
+ nextToken?: string | undefined;
7338
7395
  /**
7339
7396
  * <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>
7340
7397
  * @public
7341
7398
  */
7342
- maxResults?: number;
7399
+ maxResults?: number | undefined;
7343
7400
  }
7344
7401
  /**
7345
7402
  * <p>The summary of a queue environment.</p>
@@ -7375,7 +7432,7 @@ export interface ListQueueEnvironmentsResponse {
7375
7432
  * <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>
7376
7433
  * @public
7377
7434
  */
7378
- nextToken?: string;
7435
+ nextToken?: string | undefined;
7379
7436
  }
7380
7437
  /**
7381
7438
  * @public
@@ -7395,12 +7452,12 @@ export interface ListQueueMembersRequest {
7395
7452
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7396
7453
  * @public
7397
7454
  */
7398
- nextToken?: string;
7455
+ nextToken?: string | undefined;
7399
7456
  /**
7400
7457
  * <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>
7401
7458
  * @public
7402
7459
  */
7403
- maxResults?: number;
7460
+ maxResults?: number | undefined;
7404
7461
  }
7405
7462
  /**
7406
7463
  * <p>The details of a queue member.</p>
@@ -7438,125 +7495,6 @@ export interface QueueMember {
7438
7495
  */
7439
7496
  membershipLevel: MembershipLevel | undefined;
7440
7497
  }
7441
- /**
7442
- * @public
7443
- */
7444
- export interface ListQueueMembersResponse {
7445
- /**
7446
- * <p>The members on the list.</p>
7447
- * @public
7448
- */
7449
- members: QueueMember[] | undefined;
7450
- /**
7451
- * <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>
7452
- * @public
7453
- */
7454
- nextToken?: string;
7455
- }
7456
- /**
7457
- * @public
7458
- */
7459
- export interface ListQueuesRequest {
7460
- /**
7461
- * <p>The farm ID of the queue.</p>
7462
- * @public
7463
- */
7464
- farmId: string | undefined;
7465
- /**
7466
- * <p>The principal IDs to include in the list of queues.</p>
7467
- * @public
7468
- */
7469
- principalId?: string;
7470
- /**
7471
- * <p>The status of the queues listed.</p>
7472
- * <ul>
7473
- * <li>
7474
- * <p>
7475
- * <code>ACTIVE</code>–The queues are active.</p>
7476
- * </li>
7477
- * <li>
7478
- * <p>
7479
- * <code>SCHEDULING</code>–The queues are scheduling.</p>
7480
- * </li>
7481
- * <li>
7482
- * <p>
7483
- * <code>SCHEDULING_BLOCKED</code>–The queue scheduling is blocked for these
7484
- * queues.</p>
7485
- * </li>
7486
- * </ul>
7487
- * @public
7488
- */
7489
- status?: QueueStatus;
7490
- /**
7491
- * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7492
- * @public
7493
- */
7494
- nextToken?: string;
7495
- /**
7496
- * <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>
7497
- * @public
7498
- */
7499
- maxResults?: number;
7500
- }
7501
- /**
7502
- * <p>The details of a queue summary.</p>
7503
- * @public
7504
- */
7505
- export interface QueueSummary {
7506
- /**
7507
- * <p>The farm ID.</p>
7508
- * @public
7509
- */
7510
- farmId: string | undefined;
7511
- /**
7512
- * <p>The queue ID.</p>
7513
- * @public
7514
- */
7515
- queueId: string | undefined;
7516
- /**
7517
- * <p>The display name of the queue summary to update.</p>
7518
- * <important>
7519
- * <p>This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.</p>
7520
- * </important>
7521
- * @public
7522
- */
7523
- displayName: string | undefined;
7524
- /**
7525
- * <p>That status of the queue.</p>
7526
- * @public
7527
- */
7528
- status: QueueStatus | undefined;
7529
- /**
7530
- * <p>The default action taken on a queue summary if a budget wasn't configured.</p>
7531
- * @public
7532
- */
7533
- defaultBudgetAction: DefaultQueueBudgetAction | undefined;
7534
- /**
7535
- * <p>The reason the queue is blocked, if applicable.</p>
7536
- * @public
7537
- */
7538
- blockedReason?: QueueBlockedReason;
7539
- /**
7540
- * <p>The date and time the resource was created.</p>
7541
- * @public
7542
- */
7543
- createdAt: Date | undefined;
7544
- /**
7545
- * <p>The user or system that created this resource.</p>
7546
- * @public
7547
- */
7548
- createdBy: string | undefined;
7549
- /**
7550
- * <p>The date and time the resource was updated.</p>
7551
- * @public
7552
- */
7553
- updatedAt?: Date;
7554
- /**
7555
- * <p>The user or system that updated this resource.</p>
7556
- * @public
7557
- */
7558
- updatedBy?: string;
7559
- }
7560
7498
  /**
7561
7499
  * @internal
7562
7500
  */