@aws-sdk/client-deadline 3.687.0 → 3.691.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,7 +15,7 @@ export interface AcceleratorCountRange {
15
15
  * <p>The maximum GPU for the accelerator.</p>
16
16
  * @public
17
17
  */
18
- max?: number;
18
+ max?: number | undefined;
19
19
  }
20
20
  /**
21
21
  * <p>The range for memory, in MiB, to use for the accelerator.</p>
@@ -31,7 +31,7 @@ export interface AcceleratorTotalMemoryMiBRange {
31
31
  * <p>The maximum amount of memory to use for the accelerator, measured in MiB.</p>
32
32
  * @public
33
33
  */
34
- max?: number;
34
+ max?: number | undefined;
35
35
  }
36
36
  /**
37
37
  * @public
@@ -58,7 +58,7 @@ export declare class AccessDeniedException extends __BaseException {
58
58
  * <p>Information about the resources in use when the exception was thrown.</p>
59
59
  * @public
60
60
  */
61
- context?: Record<string, string>;
61
+ context?: Record<string, string> | undefined;
62
62
  /**
63
63
  * @internal
64
64
  */
@@ -100,17 +100,17 @@ export interface LogConfiguration {
100
100
  * <p>The options for a log driver.</p>
101
101
  * @public
102
102
  */
103
- options?: Record<string, string>;
103
+ options?: Record<string, string> | undefined;
104
104
  /**
105
105
  * <p>The parameters for the log configuration.</p>
106
106
  * @public
107
107
  */
108
- parameters?: Record<string, string>;
108
+ parameters?: Record<string, string> | undefined;
109
109
  /**
110
110
  * <p>The log configuration error details.</p>
111
111
  * @public
112
112
  */
113
- error?: string;
113
+ error?: string | undefined;
114
114
  }
115
115
  /**
116
116
  * <p>The details for an assigned session action as it relates to a job attachment.</p>
@@ -121,7 +121,7 @@ export interface AssignedSyncInputJobAttachmentsSessionActionDefinition {
121
121
  * <p>The step ID.</p>
122
122
  * @public
123
123
  */
124
- stepId?: string;
124
+ stepId?: string | undefined;
125
125
  }
126
126
  /**
127
127
  * <p>The data types for the task parameters.</p>
@@ -403,7 +403,7 @@ export declare class InternalServerErrorException extends __BaseException {
403
403
  * <p>The number of seconds a client should wait before retrying the request.</p>
404
404
  * @public
405
405
  */
406
- retryAfterSeconds?: number;
406
+ retryAfterSeconds?: number | undefined;
407
407
  /**
408
408
  * @internal
409
409
  */
@@ -430,7 +430,7 @@ export declare class ResourceNotFoundException extends __BaseException {
430
430
  * <p>Information about the resources in use when the exception was thrown.</p>
431
431
  * @public
432
432
  */
433
- context?: Record<string, string>;
433
+ context?: Record<string, string> | undefined;
434
434
  /**
435
435
  * @internal
436
436
  */
@@ -480,12 +480,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
480
480
  * <p>The identifier of the affected resource.</p>
481
481
  * @public
482
482
  */
483
- resourceId?: string;
483
+ resourceId?: string | undefined;
484
484
  /**
485
485
  * <p>Information about the resources in use when the exception was thrown.</p>
486
486
  * @public
487
487
  */
488
- context?: Record<string, string>;
488
+ context?: Record<string, string> | undefined;
489
489
  /**
490
490
  * @internal
491
491
  */
@@ -505,22 +505,22 @@ export declare class ThrottlingException extends __BaseException {
505
505
  * <p>Identifies the service that is being throttled.</p>
506
506
  * @public
507
507
  */
508
- serviceCode?: string;
508
+ serviceCode?: string | undefined;
509
509
  /**
510
510
  * <p>Identifies the quota that is being throttled.</p>
511
511
  * @public
512
512
  */
513
- quotaCode?: string;
513
+ quotaCode?: string | undefined;
514
514
  /**
515
515
  * <p>The number of seconds a client should wait before retrying the request.</p>
516
516
  * @public
517
517
  */
518
- retryAfterSeconds?: number;
518
+ retryAfterSeconds?: number | undefined;
519
519
  /**
520
520
  * <p>Information about the resources in use when the exception was thrown.</p>
521
521
  * @public
522
522
  */
523
- context?: Record<string, string>;
523
+ context?: Record<string, string> | undefined;
524
524
  /**
525
525
  * @internal
526
526
  */
@@ -573,12 +573,12 @@ export declare class ValidationException extends __BaseException {
573
573
  * <p>A list of fields that failed validation.</p>
574
574
  * @public
575
575
  */
576
- fieldList?: ValidationExceptionField[];
576
+ fieldList?: ValidationExceptionField[] | undefined;
577
577
  /**
578
578
  * <p>Information about the resources in use when the exception was thrown.</p>
579
579
  * @public
580
580
  */
581
- context?: Record<string, string>;
581
+ context?: Record<string, string> | undefined;
582
582
  /**
583
583
  * @internal
584
584
  */
@@ -832,7 +832,7 @@ export declare class ConflictException extends __BaseException {
832
832
  * <p>Information about the resources in use when the exception was thrown.</p>
833
833
  * @public
834
834
  */
835
- context?: Record<string, string>;
835
+ context?: Record<string, string> | undefined;
836
836
  /**
837
837
  * @internal
838
838
  */
@@ -921,7 +921,7 @@ export interface AssumeQueueRoleForWorkerResponse {
921
921
  * <p>The Amazon Web Services credentials for the role that the worker is assuming.</p>
922
922
  * @public
923
923
  */
924
- credentials?: AwsCredentials;
924
+ credentials?: AwsCredentials | undefined;
925
925
  }
926
926
  /**
927
927
  * @public
@@ -956,7 +956,7 @@ export interface ManifestProperties {
956
956
  * <p>The file system location name.</p>
957
957
  * @public
958
958
  */
959
- fileSystemLocationName?: string;
959
+ fileSystemLocationName?: string | undefined;
960
960
  /**
961
961
  * <p>The file's root path.</p>
962
962
  * @public
@@ -971,17 +971,17 @@ export interface ManifestProperties {
971
971
  * <p>The file path relative to the directory.</p>
972
972
  * @public
973
973
  */
974
- outputRelativeDirectories?: string[];
974
+ outputRelativeDirectories?: string[] | undefined;
975
975
  /**
976
976
  * <p>The file path.</p>
977
977
  * @public
978
978
  */
979
- inputManifestPath?: string;
979
+ inputManifestPath?: string | undefined;
980
980
  /**
981
981
  * <p>The has value of the file.</p>
982
982
  * @public
983
983
  */
984
- inputManifestHash?: string;
984
+ inputManifestHash?: string | undefined;
985
985
  }
986
986
  /**
987
987
  * <p>The attachments for jobs.</p>
@@ -997,7 +997,7 @@ export interface Attachments {
997
997
  * <p>The file system.</p>
998
998
  * @public
999
999
  */
1000
- fileSystem?: JobAttachmentsFileSystem;
1000
+ fileSystem?: JobAttachmentsFileSystem | undefined;
1001
1001
  }
1002
1002
  /**
1003
1003
  * @public
@@ -1288,12 +1288,12 @@ export interface JobRunAsUser {
1288
1288
  * <p>The user and group that the jobs in the queue run as.</p>
1289
1289
  * @public
1290
1290
  */
1291
- posix?: PosixUser;
1291
+ posix?: PosixUser | undefined;
1292
1292
  /**
1293
1293
  * <p>Identifies a Microsoft Windows user.</p>
1294
1294
  * @public
1295
1295
  */
1296
- windows?: WindowsUser;
1296
+ windows?: WindowsUser | undefined;
1297
1297
  /**
1298
1298
  * <p>Specifies whether the job should run using the queue's system user or if the job should
1299
1299
  * run using the worker agent system user.</p>
@@ -1408,12 +1408,12 @@ export interface JobDetailsEntity {
1408
1408
  * <p>The job attachment settings.</p>
1409
1409
  * @public
1410
1410
  */
1411
- jobAttachmentSettings?: JobAttachmentSettings;
1411
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
1412
1412
  /**
1413
1413
  * <p>The user name and group that the job uses when run.</p>
1414
1414
  * @public
1415
1415
  */
1416
- jobRunAsUser?: JobRunAsUser;
1416
+ jobRunAsUser?: JobRunAsUser | undefined;
1417
1417
  /**
1418
1418
  * <p>The log group name.</p>
1419
1419
  * @public
@@ -1423,12 +1423,12 @@ export interface JobDetailsEntity {
1423
1423
  * <p>The queue role ARN.</p>
1424
1424
  * @public
1425
1425
  */
1426
- queueRoleArn?: string;
1426
+ queueRoleArn?: string | undefined;
1427
1427
  /**
1428
1428
  * <p>The parameters.</p>
1429
1429
  * @public
1430
1430
  */
1431
- parameters?: Record<string, JobParameter>;
1431
+ parameters?: Record<string, JobParameter> | undefined;
1432
1432
  /**
1433
1433
  * <p>The schema version.</p>
1434
1434
  * @public
@@ -1438,7 +1438,7 @@ export interface JobDetailsEntity {
1438
1438
  * <p>The path mapping rules.</p>
1439
1439
  * @public
1440
1440
  */
1441
- pathMappingRules?: PathMappingRule[];
1441
+ pathMappingRules?: PathMappingRule[] | undefined;
1442
1442
  }
1443
1443
  /**
1444
1444
  * <p>The details of a step entity.</p>
@@ -1774,7 +1774,7 @@ export interface BudgetActionToAdd {
1774
1774
  * </important>
1775
1775
  * @public
1776
1776
  */
1777
- description?: string;
1777
+ description?: string | undefined;
1778
1778
  }
1779
1779
  /**
1780
1780
  * <p>The budget action to remove.</p>
@@ -1876,7 +1876,7 @@ export interface CreateBudgetRequest {
1876
1876
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
1877
1877
  * @public
1878
1878
  */
1879
- clientToken?: string;
1879
+ clientToken?: string | undefined;
1880
1880
  /**
1881
1881
  * <p>The farm ID to include in this budget.</p>
1882
1882
  * @public
@@ -1902,7 +1902,7 @@ export interface CreateBudgetRequest {
1902
1902
  * </important>
1903
1903
  * @public
1904
1904
  */
1905
- description?: string;
1905
+ description?: string | undefined;
1906
1906
  /**
1907
1907
  * <p>The dollar limit based on consumed usage.</p>
1908
1908
  * @public
@@ -1986,7 +1986,7 @@ export interface ResponseBudgetAction {
1986
1986
  * </important>
1987
1987
  * @public
1988
1988
  */
1989
- description?: string;
1989
+ description?: string | undefined;
1990
1990
  }
1991
1991
  /**
1992
1992
  * @public
@@ -2056,7 +2056,7 @@ export interface GetBudgetResponse {
2056
2056
  * </important>
2057
2057
  * @public
2058
2058
  */
2059
- description?: string;
2059
+ description?: string | undefined;
2060
2060
  /**
2061
2061
  * <p>The consumed usage limit for the budget.</p>
2062
2062
  * @public
@@ -2091,17 +2091,17 @@ export interface GetBudgetResponse {
2091
2091
  * <p>The user or system that updated this resource.</p>
2092
2092
  * @public
2093
2093
  */
2094
- updatedBy?: string;
2094
+ updatedBy?: string | undefined;
2095
2095
  /**
2096
2096
  * <p>The date and time the resource was updated.</p>
2097
2097
  * @public
2098
2098
  */
2099
- updatedAt?: Date;
2099
+ updatedAt?: Date | undefined;
2100
2100
  /**
2101
2101
  * <p>The date and time the queue stopped.</p>
2102
2102
  * @public
2103
2103
  */
2104
- queueStoppedAt?: Date;
2104
+ queueStoppedAt?: Date | undefined;
2105
2105
  }
2106
2106
  /**
2107
2107
  * @public
@@ -2111,7 +2111,7 @@ export interface ListBudgetsRequest {
2111
2111
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
2112
2112
  * @public
2113
2113
  */
2114
- nextToken?: string;
2114
+ nextToken?: string | undefined;
2115
2115
  /**
2116
2116
  * <p>The farm ID associated with the budgets.</p>
2117
2117
  * @public
@@ -2121,12 +2121,12 @@ export interface ListBudgetsRequest {
2121
2121
  * <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
2122
  * @public
2123
2123
  */
2124
- maxResults?: number;
2124
+ maxResults?: number | undefined;
2125
2125
  /**
2126
2126
  * <p>The status to list for the budgets.</p>
2127
2127
  * @public
2128
2128
  */
2129
- status?: BudgetStatus;
2129
+ status?: BudgetStatus | undefined;
2130
2130
  }
2131
2131
  /**
2132
2132
  * <p>The budget summary.</p>
@@ -2176,7 +2176,7 @@ export interface BudgetSummary {
2176
2176
  * </important>
2177
2177
  * @public
2178
2178
  */
2179
- description?: string;
2179
+ description?: string | undefined;
2180
2180
  /**
2181
2181
  * <p>The approximate dollar limit of the budget.</p>
2182
2182
  * @public
@@ -2201,12 +2201,12 @@ export interface BudgetSummary {
2201
2201
  * <p>The user or system that updated this resource.</p>
2202
2202
  * @public
2203
2203
  */
2204
- updatedBy?: string;
2204
+ updatedBy?: string | undefined;
2205
2205
  /**
2206
2206
  * <p>The date and time the resource was updated.</p>
2207
2207
  * @public
2208
2208
  */
2209
- updatedAt?: Date;
2209
+ updatedAt?: Date | undefined;
2210
2210
  }
2211
2211
  /**
2212
2212
  * @public
@@ -2216,7 +2216,7 @@ export interface ListBudgetsResponse {
2216
2216
  * <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
2217
  * @public
2218
2218
  */
2219
- nextToken?: string;
2219
+ nextToken?: string | undefined;
2220
2220
  /**
2221
2221
  * <p>The budgets to include on the list.</p>
2222
2222
  * @public
@@ -2231,7 +2231,7 @@ export interface UpdateBudgetRequest {
2231
2231
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2232
2232
  * @public
2233
2233
  */
2234
- clientToken?: string;
2234
+ clientToken?: string | undefined;
2235
2235
  /**
2236
2236
  * <p>The farm ID of the budget to update.</p>
2237
2237
  * @public
@@ -2249,7 +2249,7 @@ export interface UpdateBudgetRequest {
2249
2249
  * </important>
2250
2250
  * @public
2251
2251
  */
2252
- displayName?: string;
2252
+ displayName?: string | undefined;
2253
2253
  /**
2254
2254
  * <p>The description of the budget to update.</p>
2255
2255
  * <important>
@@ -2257,7 +2257,7 @@ export interface UpdateBudgetRequest {
2257
2257
  * </important>
2258
2258
  * @public
2259
2259
  */
2260
- description?: string;
2260
+ description?: string | undefined;
2261
2261
  /**
2262
2262
  * <p>Updates the status of the budget.</p>
2263
2263
  * <ul>
@@ -2273,28 +2273,28 @@ export interface UpdateBudgetRequest {
2273
2273
  * </ul>
2274
2274
  * @public
2275
2275
  */
2276
- status?: BudgetStatus;
2276
+ status?: BudgetStatus | undefined;
2277
2277
  /**
2278
2278
  * <p>The dollar limit to update on the budget. Based on consumed usage.</p>
2279
2279
  * @public
2280
2280
  */
2281
- approximateDollarLimit?: number;
2281
+ approximateDollarLimit?: number | undefined;
2282
2282
  /**
2283
2283
  * <p>The budget actions to add. Budget actions specify what happens when the budget runs
2284
2284
  * out.</p>
2285
2285
  * @public
2286
2286
  */
2287
- actionsToAdd?: BudgetActionToAdd[];
2287
+ actionsToAdd?: BudgetActionToAdd[] | undefined;
2288
2288
  /**
2289
2289
  * <p>The budget actions to remove from the budget.</p>
2290
2290
  * @public
2291
2291
  */
2292
- actionsToRemove?: BudgetActionToRemove[];
2292
+ actionsToRemove?: BudgetActionToRemove[] | undefined;
2293
2293
  /**
2294
2294
  * <p>The schedule to update.</p>
2295
2295
  * @public
2296
2296
  */
2297
- schedule?: BudgetSchedule;
2297
+ schedule?: BudgetSchedule | undefined;
2298
2298
  }
2299
2299
  /**
2300
2300
  * @public
@@ -2416,7 +2416,7 @@ export interface CreateFarmRequest {
2416
2416
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2417
2417
  * @public
2418
2418
  */
2419
- clientToken?: string;
2419
+ clientToken?: string | undefined;
2420
2420
  /**
2421
2421
  * <p>The display name of the farm.</p>
2422
2422
  * <important>
@@ -2432,17 +2432,17 @@ export interface CreateFarmRequest {
2432
2432
  * </important>
2433
2433
  * @public
2434
2434
  */
2435
- description?: string;
2435
+ description?: string | undefined;
2436
2436
  /**
2437
2437
  * <p>The ARN of the KMS key to use on the farm.</p>
2438
2438
  * @public
2439
2439
  */
2440
- kmsKeyArn?: string;
2440
+ kmsKeyArn?: string | undefined;
2441
2441
  /**
2442
2442
  * <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
2443
  * @public
2444
2444
  */
2445
- tags?: Record<string, string>;
2445
+ tags?: Record<string, string> | undefined;
2446
2446
  }
2447
2447
  /**
2448
2448
  * @public
@@ -2473,7 +2473,7 @@ export interface FleetAmountCapability {
2473
2473
  * <p>The maximum amount of the fleet worker capability.</p>
2474
2474
  * @public
2475
2475
  */
2476
- max?: number;
2476
+ max?: number | undefined;
2477
2477
  }
2478
2478
  /**
2479
2479
  * <p>Defines the fleet's capability name, minimum, and maximum.</p>
@@ -2505,7 +2505,7 @@ export interface MemoryMiBRange {
2505
2505
  * <p>The maximum amount of memory (in MiB).</p>
2506
2506
  * @public
2507
2507
  */
2508
- max?: number;
2508
+ max?: number | undefined;
2509
2509
  }
2510
2510
  /**
2511
2511
  * @public
@@ -2534,7 +2534,7 @@ export interface VCpuCountRange {
2534
2534
  * <p>The maximum amount of vCPU.</p>
2535
2535
  * @public
2536
2536
  */
2537
- max?: number;
2537
+ max?: number | undefined;
2538
2538
  }
2539
2539
  /**
2540
2540
  * <p>The worker capabilities for a customer managed workflow.</p>
@@ -2555,17 +2555,17 @@ export interface CustomerManagedWorkerCapabilities {
2555
2555
  * <p>The accelerator types for the customer managed worker capabilities.</p>
2556
2556
  * @public
2557
2557
  */
2558
- acceleratorTypes?: AcceleratorType[];
2558
+ acceleratorTypes?: AcceleratorType[] | undefined;
2559
2559
  /**
2560
2560
  * <p>The range of the accelerator.</p>
2561
2561
  * @public
2562
2562
  */
2563
- acceleratorCount?: AcceleratorCountRange;
2563
+ acceleratorCount?: AcceleratorCountRange | undefined;
2564
2564
  /**
2565
2565
  * <p>The total memory (MiB) for the customer managed worker capabilities.</p>
2566
2566
  * @public
2567
2567
  */
2568
- acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange;
2568
+ acceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRange | undefined;
2569
2569
  /**
2570
2570
  * <p>The operating system (OS) family.</p>
2571
2571
  * @public
@@ -2580,12 +2580,12 @@ export interface CustomerManagedWorkerCapabilities {
2580
2580
  * <p>Custom requirement ranges for customer managed worker capabilities.</p>
2581
2581
  * @public
2582
2582
  */
2583
- customAmounts?: FleetAmountCapability[];
2583
+ customAmounts?: FleetAmountCapability[] | undefined;
2584
2584
  /**
2585
2585
  * <p>Custom attributes for the customer manged worker capabilities.</p>
2586
2586
  * @public
2587
2587
  */
2588
- customAttributes?: FleetAttributeCapability[];
2588
+ customAttributes?: FleetAttributeCapability[] | undefined;
2589
2589
  }
2590
2590
  /**
2591
2591
  * <p>The details of a customer managed fleet configuration.</p>
@@ -2606,7 +2606,7 @@ export interface CustomerManagedFleetConfiguration {
2606
2606
  * <p>The storage profile ID.</p>
2607
2607
  * @public
2608
2608
  */
2609
- storageProfileId?: string;
2609
+ storageProfileId?: string | undefined;
2610
2610
  }
2611
2611
  /**
2612
2612
  * @public
@@ -2629,17 +2629,17 @@ export interface Ec2EbsVolume {
2629
2629
  * <p>The EBS volume size in GiB.</p>
2630
2630
  * @public
2631
2631
  */
2632
- sizeGiB?: number;
2632
+ sizeGiB?: number | undefined;
2633
2633
  /**
2634
2634
  * <p>The IOPS per volume.</p>
2635
2635
  * @public
2636
2636
  */
2637
- iops?: number;
2637
+ iops?: number | undefined;
2638
2638
  /**
2639
2639
  * <p>The throughput per volume in MiB.</p>
2640
2640
  * @public
2641
2641
  */
2642
- throughputMiB?: number;
2642
+ throughputMiB?: number | undefined;
2643
2643
  }
2644
2644
  /**
2645
2645
  * <p>The Amazon EC2 instance capabilities.</p>
@@ -2670,27 +2670,27 @@ export interface ServiceManagedEc2InstanceCapabilities {
2670
2670
  * <p>The root EBS volume.</p>
2671
2671
  * @public
2672
2672
  */
2673
- rootEbsVolume?: Ec2EbsVolume;
2673
+ rootEbsVolume?: Ec2EbsVolume | undefined;
2674
2674
  /**
2675
2675
  * <p>The allowable Amazon EC2 instance types.</p>
2676
2676
  * @public
2677
2677
  */
2678
- allowedInstanceTypes?: string[];
2678
+ allowedInstanceTypes?: string[] | undefined;
2679
2679
  /**
2680
2680
  * <p>The instance types to exclude from the fleet.</p>
2681
2681
  * @public
2682
2682
  */
2683
- excludedInstanceTypes?: string[];
2683
+ excludedInstanceTypes?: string[] | undefined;
2684
2684
  /**
2685
2685
  * <p>The custom capability amounts to require for instances in this fleet.</p>
2686
2686
  * @public
2687
2687
  */
2688
- customAmounts?: FleetAmountCapability[];
2688
+ customAmounts?: FleetAmountCapability[] | undefined;
2689
2689
  /**
2690
2690
  * <p>The custom capability attributes to require for instances in this fleet.</p>
2691
2691
  * @public
2692
2692
  */
2693
- customAttributes?: FleetAttributeCapability[];
2693
+ customAttributes?: FleetAttributeCapability[] | undefined;
2694
2694
  }
2695
2695
  /**
2696
2696
  * @public
@@ -2781,7 +2781,7 @@ export interface CreateFleetRequest {
2781
2781
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2782
2782
  * @public
2783
2783
  */
2784
- clientToken?: string;
2784
+ clientToken?: string | undefined;
2785
2785
  /**
2786
2786
  * <p>The farm ID of the farm to connect to the fleet.</p>
2787
2787
  * @public
@@ -2802,7 +2802,7 @@ export interface CreateFleetRequest {
2802
2802
  * </important>
2803
2803
  * @public
2804
2804
  */
2805
- description?: string;
2805
+ description?: string | undefined;
2806
2806
  /**
2807
2807
  * <p>The IAM role ARN for the role that the fleet's workers will use.</p>
2808
2808
  * @public
@@ -2812,7 +2812,7 @@ export interface CreateFleetRequest {
2812
2812
  * <p>The minimum number of workers for the fleet.</p>
2813
2813
  * @public
2814
2814
  */
2815
- minWorkerCount?: number;
2815
+ minWorkerCount?: number | undefined;
2816
2816
  /**
2817
2817
  * <p>The maximum number of workers for the fleet.</p>
2818
2818
  * @public
@@ -2828,7 +2828,7 @@ export interface CreateFleetRequest {
2828
2828
  * <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
2829
  * @public
2830
2830
  */
2831
- tags?: Record<string, string>;
2831
+ tags?: Record<string, string> | undefined;
2832
2832
  }
2833
2833
  /**
2834
2834
  * @public
@@ -2870,17 +2870,17 @@ export interface CreateJobRequest {
2870
2870
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2871
2871
  * @public
2872
2872
  */
2873
- clientToken?: string;
2873
+ clientToken?: string | undefined;
2874
2874
  /**
2875
2875
  * <p>The job template to use for this job.</p>
2876
2876
  * @public
2877
2877
  */
2878
- template?: string;
2878
+ template?: string | undefined;
2879
2879
  /**
2880
2880
  * <p>The file type for the job template.</p>
2881
2881
  * @public
2882
2882
  */
2883
- templateType?: JobTemplateType;
2883
+ templateType?: JobTemplateType | undefined;
2884
2884
  /**
2885
2885
  * <p>The priority of the job on a scale of 0 to 100. The highest priority (first scheduled)
2886
2886
  * is 100. When two jobs have the same priority, the oldest job is scheduled first.</p>
@@ -2891,39 +2891,39 @@ export interface CreateJobRequest {
2891
2891
  * <p>The parameters for the job.</p>
2892
2892
  * @public
2893
2893
  */
2894
- parameters?: Record<string, JobParameter>;
2894
+ parameters?: Record<string, JobParameter> | undefined;
2895
2895
  /**
2896
2896
  * <p>The attachments for the job. Attach files required for the job to run to a render
2897
2897
  * job.</p>
2898
2898
  * @public
2899
2899
  */
2900
- attachments?: Attachments;
2900
+ attachments?: Attachments | undefined;
2901
2901
  /**
2902
2902
  * <p>The storage profile ID for the storage profile to connect to the job.</p>
2903
2903
  * @public
2904
2904
  */
2905
- storageProfileId?: string;
2905
+ storageProfileId?: string | undefined;
2906
2906
  /**
2907
2907
  * <p>The initial job status when it is created. Jobs that are created with a
2908
2908
  * <code>SUSPENDED</code> status will not run until manually requeued.</p>
2909
2909
  * @public
2910
2910
  */
2911
- targetTaskRunStatus?: CreateJobTargetTaskRunStatus;
2911
+ targetTaskRunStatus?: CreateJobTargetTaskRunStatus | undefined;
2912
2912
  /**
2913
2913
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
2914
2914
  * @public
2915
2915
  */
2916
- maxFailedTasksCount?: number;
2916
+ maxFailedTasksCount?: number | undefined;
2917
2917
  /**
2918
2918
  * <p>The maximum number of retries for each task.</p>
2919
2919
  * @public
2920
2920
  */
2921
- maxRetriesPerTask?: number;
2921
+ maxRetriesPerTask?: number | undefined;
2922
2922
  /**
2923
2923
  * <p>The job ID for the source job.</p>
2924
2924
  * @public
2925
2925
  */
2926
- sourceJobId?: string;
2926
+ sourceJobId?: string | undefined;
2927
2927
  }
2928
2928
  /**
2929
2929
  * @public
@@ -2943,7 +2943,7 @@ export interface CreateLicenseEndpointRequest {
2943
2943
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2944
2944
  * @public
2945
2945
  */
2946
- clientToken?: string;
2946
+ clientToken?: string | undefined;
2947
2947
  /**
2948
2948
  * <p>The VPC (virtual private cloud) ID to use with the license endpoint.</p>
2949
2949
  * @public
@@ -2963,7 +2963,7 @@ export interface CreateLicenseEndpointRequest {
2963
2963
  * <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
2964
  * @public
2965
2965
  */
2966
- tags?: Record<string, string>;
2966
+ tags?: Record<string, string> | undefined;
2967
2967
  }
2968
2968
  /**
2969
2969
  * @public
@@ -2983,7 +2983,7 @@ export interface CreateMonitorRequest {
2983
2983
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
2984
2984
  * @public
2985
2985
  */
2986
- clientToken?: string;
2986
+ clientToken?: string | undefined;
2987
2987
  /**
2988
2988
  * <p>The name that you give the monitor that is displayed in the Deadline Cloud console.</p>
2989
2989
  * <important>
@@ -3047,7 +3047,7 @@ export interface CreateQueueRequest {
3047
3047
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3048
3048
  * @public
3049
3049
  */
3050
- clientToken?: string;
3050
+ clientToken?: string | undefined;
3051
3051
  /**
3052
3052
  * <p>The farm ID of the farm to connect to the queue.</p>
3053
3053
  * @public
@@ -3068,43 +3068,43 @@ export interface CreateQueueRequest {
3068
3068
  * </important>
3069
3069
  * @public
3070
3070
  */
3071
- description?: string;
3071
+ description?: string | undefined;
3072
3072
  /**
3073
3073
  * <p>The default action to take on a queue if a budget isn't configured.</p>
3074
3074
  * @public
3075
3075
  */
3076
- defaultBudgetAction?: DefaultQueueBudgetAction;
3076
+ defaultBudgetAction?: DefaultQueueBudgetAction | undefined;
3077
3077
  /**
3078
3078
  * <p>The job attachment settings for the queue. These are the Amazon S3 bucket name and the Amazon S3
3079
3079
  * prefix.</p>
3080
3080
  * @public
3081
3081
  */
3082
- jobAttachmentSettings?: JobAttachmentSettings;
3082
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
3083
3083
  /**
3084
3084
  * <p>The IAM role ARN that workers will use while running jobs for this queue.</p>
3085
3085
  * @public
3086
3086
  */
3087
- roleArn?: string;
3087
+ roleArn?: string | undefined;
3088
3088
  /**
3089
3089
  * <p>The jobs in the queue run as the specified POSIX user.</p>
3090
3090
  * @public
3091
3091
  */
3092
- jobRunAsUser?: JobRunAsUser;
3092
+ jobRunAsUser?: JobRunAsUser | undefined;
3093
3093
  /**
3094
3094
  * <p>The file system location name to include in the queue.</p>
3095
3095
  * @public
3096
3096
  */
3097
- requiredFileSystemLocationNames?: string[];
3097
+ requiredFileSystemLocationNames?: string[] | undefined;
3098
3098
  /**
3099
3099
  * <p>The storage profile IDs to include in the queue.</p>
3100
3100
  * @public
3101
3101
  */
3102
- allowedStorageProfileIds?: string[];
3102
+ allowedStorageProfileIds?: string[] | undefined;
3103
3103
  /**
3104
3104
  * <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
3105
  * @public
3106
3106
  */
3107
- tags?: Record<string, string>;
3107
+ tags?: Record<string, string> | undefined;
3108
3108
  }
3109
3109
  /**
3110
3110
  * @public
@@ -3136,7 +3136,7 @@ export interface CreateQueueEnvironmentRequest {
3136
3136
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3137
3137
  * @public
3138
3138
  */
3139
- clientToken?: string;
3139
+ clientToken?: string | undefined;
3140
3140
  /**
3141
3141
  * <p>The farm ID of the farm to connect to the environment.</p>
3142
3142
  * @public
@@ -3254,7 +3254,7 @@ export interface CreateStorageProfileRequest {
3254
3254
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3255
3255
  * @public
3256
3256
  */
3257
- clientToken?: string;
3257
+ clientToken?: string | undefined;
3258
3258
  /**
3259
3259
  * <p>The farm ID of the farm to connect to the storage profile.</p>
3260
3260
  * @public
@@ -3277,7 +3277,7 @@ export interface CreateStorageProfileRequest {
3277
3277
  * <p>File system paths to include in the storage profile.</p>
3278
3278
  * @public
3279
3279
  */
3280
- fileSystemLocations?: FileSystemLocation[];
3280
+ fileSystemLocations?: FileSystemLocation[] | undefined;
3281
3281
  }
3282
3282
  /**
3283
3283
  * @public
@@ -3298,12 +3298,12 @@ export interface IpAddresses {
3298
3298
  * <p>The IpV4 address of the network.</p>
3299
3299
  * @public
3300
3300
  */
3301
- ipV4Addresses?: string[];
3301
+ ipV4Addresses?: string[] | undefined;
3302
3302
  /**
3303
3303
  * <p>The IpV6 address for the network and node component.</p>
3304
3304
  * @public
3305
3305
  */
3306
- ipV6Addresses?: string[];
3306
+ ipV6Addresses?: string[] | undefined;
3307
3307
  }
3308
3308
  /**
3309
3309
  * <p>The host property details.</p>
@@ -3314,12 +3314,12 @@ export interface HostPropertiesRequest {
3314
3314
  * <p>The IP address of the host.</p>
3315
3315
  * @public
3316
3316
  */
3317
- ipAddresses?: IpAddresses;
3317
+ ipAddresses?: IpAddresses | undefined;
3318
3318
  /**
3319
3319
  * <p>The host name.</p>
3320
3320
  * @public
3321
3321
  */
3322
- hostName?: string;
3322
+ hostName?: string | undefined;
3323
3323
  }
3324
3324
  /**
3325
3325
  * @public
@@ -3339,12 +3339,12 @@ export interface CreateWorkerRequest {
3339
3339
  * <p>The IP address and host name of the worker.</p>
3340
3340
  * @public
3341
3341
  */
3342
- hostProperties?: HostPropertiesRequest;
3342
+ hostProperties?: HostPropertiesRequest | undefined;
3343
3343
  /**
3344
3344
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3345
3345
  * @public
3346
3346
  */
3347
- clientToken?: string;
3347
+ clientToken?: string | undefined;
3348
3348
  }
3349
3349
  /**
3350
3350
  * @public
@@ -3465,7 +3465,7 @@ export interface DeleteFleetRequest {
3465
3465
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3466
3466
  * @public
3467
3467
  */
3468
- clientToken?: string;
3468
+ clientToken?: string | undefined;
3469
3469
  /**
3470
3470
  * <p>The farm ID of the farm to remove from the fleet.</p>
3471
3471
  * @public
@@ -3531,12 +3531,12 @@ export interface FleetCapabilities {
3531
3531
  * <p>Amount capabilities of the fleet.</p>
3532
3532
  * @public
3533
3533
  */
3534
- amounts?: FleetAmountCapability[];
3534
+ amounts?: FleetAmountCapability[] | undefined;
3535
3535
  /**
3536
3536
  * <p>Attribute capabilities of the fleet.</p>
3537
3537
  * @public
3538
3538
  */
3539
- attributes?: FleetAttributeCapability[];
3539
+ attributes?: FleetAttributeCapability[] | undefined;
3540
3540
  }
3541
3541
  /**
3542
3542
  * @public
@@ -3582,7 +3582,7 @@ export interface GetFleetResponse {
3582
3582
  * </important>
3583
3583
  * @public
3584
3584
  */
3585
- description?: string;
3585
+ description?: string | undefined;
3586
3586
  /**
3587
3587
  * <p>The Auto Scaling status of the fleet.</p>
3588
3588
  * @public
@@ -3593,12 +3593,12 @@ export interface GetFleetResponse {
3593
3593
  * <code>SHRINKING</code>.</p>
3594
3594
  * @public
3595
3595
  */
3596
- autoScalingStatus?: AutoScalingStatus;
3596
+ autoScalingStatus?: AutoScalingStatus | undefined;
3597
3597
  /**
3598
3598
  * <p>The number of target workers in the fleet.</p>
3599
3599
  * @public
3600
3600
  */
3601
- targetWorkerCount?: number;
3601
+ targetWorkerCount?: number | undefined;
3602
3602
  /**
3603
3603
  * <p>The number of workers in the fleet.</p>
3604
3604
  * @public
@@ -3624,7 +3624,7 @@ export interface GetFleetResponse {
3624
3624
  * attribute names and values.</p>
3625
3625
  * @public
3626
3626
  */
3627
- capabilities?: FleetCapabilities;
3627
+ capabilities?: FleetCapabilities | undefined;
3628
3628
  /**
3629
3629
  * <p>The IAM role ARN.</p>
3630
3630
  * @public
@@ -3644,12 +3644,12 @@ export interface GetFleetResponse {
3644
3644
  * <p>The date and time the resource was updated.</p>
3645
3645
  * @public
3646
3646
  */
3647
- updatedAt?: Date;
3647
+ updatedAt?: Date | undefined;
3648
3648
  /**
3649
3649
  * <p>The user or system that updated this resource.</p>
3650
3650
  * @public
3651
3651
  */
3652
- updatedBy?: string;
3652
+ updatedBy?: string | undefined;
3653
3653
  }
3654
3654
  /**
3655
3655
  * @public
@@ -3669,12 +3669,12 @@ export interface ListFleetMembersRequest {
3669
3669
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
3670
3670
  * @public
3671
3671
  */
3672
- nextToken?: string;
3672
+ nextToken?: string | undefined;
3673
3673
  /**
3674
3674
  * <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
3675
  * @public
3676
3676
  */
3677
- maxResults?: number;
3677
+ maxResults?: number | undefined;
3678
3678
  }
3679
3679
  /**
3680
3680
  * <p>The fleet member.</p>
@@ -3725,7 +3725,7 @@ export interface ListFleetMembersResponse {
3725
3725
  * <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
3726
  * @public
3727
3727
  */
3728
- nextToken?: string;
3728
+ nextToken?: string | undefined;
3729
3729
  }
3730
3730
  /**
3731
3731
  * @public
@@ -3740,7 +3740,7 @@ export interface ListFleetsRequest {
3740
3740
  * <p>The principal ID of the members to include in the fleet.</p>
3741
3741
  * @public
3742
3742
  */
3743
- principalId?: string;
3743
+ principalId?: string | undefined;
3744
3744
  /**
3745
3745
  * <p>The display names of a list of fleets.</p>
3746
3746
  * <important>
@@ -3748,22 +3748,22 @@ export interface ListFleetsRequest {
3748
3748
  * </important>
3749
3749
  * @public
3750
3750
  */
3751
- displayName?: string;
3751
+ displayName?: string | undefined;
3752
3752
  /**
3753
3753
  * <p>The status of the fleet.</p>
3754
3754
  * @public
3755
3755
  */
3756
- status?: FleetStatus;
3756
+ status?: FleetStatus | undefined;
3757
3757
  /**
3758
3758
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
3759
3759
  * @public
3760
3760
  */
3761
- nextToken?: string;
3761
+ nextToken?: string | undefined;
3762
3762
  /**
3763
3763
  * <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
3764
  * @public
3765
3765
  */
3766
- maxResults?: number;
3766
+ maxResults?: number | undefined;
3767
3767
  }
3768
3768
  /**
3769
3769
  * <p>The details of a fleet.</p>
@@ -3797,12 +3797,12 @@ export interface FleetSummary {
3797
3797
  * <p>The Auto Scaling status of a fleet.</p>
3798
3798
  * @public
3799
3799
  */
3800
- autoScalingStatus?: AutoScalingStatus;
3800
+ autoScalingStatus?: AutoScalingStatus | undefined;
3801
3801
  /**
3802
3802
  * <p>The target number of workers in a fleet.</p>
3803
3803
  * @public
3804
3804
  */
3805
- targetWorkerCount?: number;
3805
+ targetWorkerCount?: number | undefined;
3806
3806
  /**
3807
3807
  * <p>The number of workers in the fleet summary.</p>
3808
3808
  * @public
@@ -3837,12 +3837,12 @@ export interface FleetSummary {
3837
3837
  * <p>The date and time the resource was updated.</p>
3838
3838
  * @public
3839
3839
  */
3840
- updatedAt?: Date;
3840
+ updatedAt?: Date | undefined;
3841
3841
  /**
3842
3842
  * <p>The user or system that updated this resource.</p>
3843
3843
  * @public
3844
3844
  */
3845
- updatedBy?: string;
3845
+ updatedBy?: string | undefined;
3846
3846
  }
3847
3847
  /**
3848
3848
  * @public
@@ -3857,7 +3857,7 @@ export interface ListFleetsResponse {
3857
3857
  * <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
3858
  * @public
3859
3859
  */
3860
- nextToken?: string;
3860
+ nextToken?: string | undefined;
3861
3861
  }
3862
3862
  /**
3863
3863
  * @public
@@ -3867,7 +3867,7 @@ export interface UpdateFleetRequest {
3867
3867
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
3868
3868
  * @public
3869
3869
  */
3870
- clientToken?: string;
3870
+ clientToken?: string | undefined;
3871
3871
  /**
3872
3872
  * <p>The farm ID to update.</p>
3873
3873
  * @public
@@ -3885,7 +3885,7 @@ export interface UpdateFleetRequest {
3885
3885
  * </important>
3886
3886
  * @public
3887
3887
  */
3888
- displayName?: string;
3888
+ displayName?: string | undefined;
3889
3889
  /**
3890
3890
  * <p>The description of the fleet to update.</p>
3891
3891
  * <important>
@@ -3893,27 +3893,27 @@ export interface UpdateFleetRequest {
3893
3893
  * </important>
3894
3894
  * @public
3895
3895
  */
3896
- description?: string;
3896
+ description?: string | undefined;
3897
3897
  /**
3898
3898
  * <p>The IAM role ARN that the fleet's workers assume while running jobs.</p>
3899
3899
  * @public
3900
3900
  */
3901
- roleArn?: string;
3901
+ roleArn?: string | undefined;
3902
3902
  /**
3903
3903
  * <p>The minimum number of workers in the fleet.</p>
3904
3904
  * @public
3905
3905
  */
3906
- minWorkerCount?: number;
3906
+ minWorkerCount?: number | undefined;
3907
3907
  /**
3908
3908
  * <p>The maximum number of workers in the fleet.</p>
3909
3909
  * @public
3910
3910
  */
3911
- maxWorkerCount?: number;
3911
+ maxWorkerCount?: number | undefined;
3912
3912
  /**
3913
3913
  * <p>The fleet configuration to update.</p>
3914
3914
  * @public
3915
3915
  */
3916
- configuration?: FleetConfiguration;
3916
+ configuration?: FleetConfiguration | undefined;
3917
3917
  }
3918
3918
  /**
3919
3919
  * @public
@@ -3974,22 +3974,22 @@ export interface HostPropertiesResponse {
3974
3974
  * <p>The IP address of the host.</p>
3975
3975
  * @public
3976
3976
  */
3977
- ipAddresses?: IpAddresses;
3977
+ ipAddresses?: IpAddresses | undefined;
3978
3978
  /**
3979
3979
  * <p>The host name.</p>
3980
3980
  * @public
3981
3981
  */
3982
- hostName?: string;
3982
+ hostName?: string | undefined;
3983
3983
  /**
3984
3984
  * <p>The ARN of the host EC2 instance.</p>
3985
3985
  * @public
3986
3986
  */
3987
- ec2InstanceArn?: string;
3987
+ ec2InstanceArn?: string | undefined;
3988
3988
  /**
3989
3989
  * <p>The instance type of the host EC2 instance.</p>
3990
3990
  * @public
3991
3991
  */
3992
- ec2InstanceType?: string;
3992
+ ec2InstanceType?: string | undefined;
3993
3993
  }
3994
3994
  /**
3995
3995
  * @public
@@ -4032,7 +4032,7 @@ export interface GetWorkerResponse {
4032
4032
  * <p>The host properties for the worker.</p>
4033
4033
  * @public
4034
4034
  */
4035
- hostProperties?: HostPropertiesResponse;
4035
+ hostProperties?: HostPropertiesResponse | undefined;
4036
4036
  /**
4037
4037
  * <p>The status of the worker.</p>
4038
4038
  * @public
@@ -4042,7 +4042,7 @@ export interface GetWorkerResponse {
4042
4042
  * <p>The logs for the associated worker.</p>
4043
4043
  * @public
4044
4044
  */
4045
- log?: LogConfiguration;
4045
+ log?: LogConfiguration | undefined;
4046
4046
  /**
4047
4047
  * <p>The date and time the resource was created.</p>
4048
4048
  * @public
@@ -4057,12 +4057,12 @@ export interface GetWorkerResponse {
4057
4057
  * <p>The date and time the resource was updated.</p>
4058
4058
  * @public
4059
4059
  */
4060
- updatedAt?: Date;
4060
+ updatedAt?: Date | undefined;
4061
4061
  /**
4062
4062
  * <p>The user or system that updated this resource.</p>
4063
4063
  * @public
4064
4064
  */
4065
- updatedBy?: string;
4065
+ updatedBy?: string | undefined;
4066
4066
  }
4067
4067
  /**
4068
4068
  * @public
@@ -4087,12 +4087,12 @@ export interface ListSessionsForWorkerRequest {
4087
4087
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4088
4088
  * @public
4089
4089
  */
4090
- nextToken?: string;
4090
+ nextToken?: string | undefined;
4091
4091
  /**
4092
4092
  * <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
4093
  * @public
4094
4094
  */
4095
- maxResults?: number;
4095
+ maxResults?: number | undefined;
4096
4096
  }
4097
4097
  /**
4098
4098
  * @public
@@ -4154,12 +4154,12 @@ export interface WorkerSessionSummary {
4154
4154
  * <p>The date and time the resource ended running.</p>
4155
4155
  * @public
4156
4156
  */
4157
- endedAt?: Date;
4157
+ endedAt?: Date | undefined;
4158
4158
  /**
4159
4159
  * <p>The life cycle status </p>
4160
4160
  * @public
4161
4161
  */
4162
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
4162
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
4163
4163
  }
4164
4164
  /**
4165
4165
  * @public
@@ -4174,7 +4174,7 @@ export interface ListSessionsForWorkerResponse {
4174
4174
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4175
4175
  * @public
4176
4176
  */
4177
- nextToken?: string;
4177
+ nextToken?: string | undefined;
4178
4178
  }
4179
4179
  /**
4180
4180
  * @public
@@ -4194,12 +4194,12 @@ export interface ListWorkersRequest {
4194
4194
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4195
4195
  * @public
4196
4196
  */
4197
- nextToken?: string;
4197
+ nextToken?: string | undefined;
4198
4198
  /**
4199
4199
  * <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
4200
  * @public
4201
4201
  */
4202
- maxResults?: number;
4202
+ maxResults?: number | undefined;
4203
4203
  }
4204
4204
  /**
4205
4205
  * <p>The summary of details for a worker.</p>
@@ -4230,12 +4230,12 @@ export interface WorkerSummary {
4230
4230
  * <p>The host properties of the worker.</p>
4231
4231
  * @public
4232
4232
  */
4233
- hostProperties?: HostPropertiesResponse;
4233
+ hostProperties?: HostPropertiesResponse | undefined;
4234
4234
  /**
4235
4235
  * <p>The log configuration for the worker.</p>
4236
4236
  * @public
4237
4237
  */
4238
- log?: LogConfiguration;
4238
+ log?: LogConfiguration | undefined;
4239
4239
  /**
4240
4240
  * <p>The date and time the resource was created.</p>
4241
4241
  * @public
@@ -4250,12 +4250,12 @@ export interface WorkerSummary {
4250
4250
  * <p>The date and time the resource was updated.</p>
4251
4251
  * @public
4252
4252
  */
4253
- updatedAt?: Date;
4253
+ updatedAt?: Date | undefined;
4254
4254
  /**
4255
4255
  * <p>The user or system that updated this resource.</p>
4256
4256
  * @public
4257
4257
  */
4258
- updatedBy?: string;
4258
+ updatedBy?: string | undefined;
4259
4259
  }
4260
4260
  /**
4261
4261
  * @public
@@ -4265,7 +4265,7 @@ export interface ListWorkersResponse {
4265
4265
  * <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
4266
  * @public
4267
4267
  */
4268
- nextToken?: string;
4268
+ nextToken?: string | undefined;
4269
4269
  /**
4270
4270
  * <p>The workers on the list.</p>
4271
4271
  * @public
@@ -4356,17 +4356,17 @@ export interface UpdateWorkerRequest {
4356
4356
  * <p>The worker status to update.</p>
4357
4357
  * @public
4358
4358
  */
4359
- status?: UpdatedWorkerStatus;
4359
+ status?: UpdatedWorkerStatus | undefined;
4360
4360
  /**
4361
4361
  * <p>The worker capabilities to update.</p>
4362
4362
  * @public
4363
4363
  */
4364
- capabilities?: WorkerCapabilities;
4364
+ capabilities?: WorkerCapabilities | undefined;
4365
4365
  /**
4366
4366
  * <p>The host properties to update.</p>
4367
4367
  * @public
4368
4368
  */
4369
- hostProperties?: HostPropertiesRequest;
4369
+ hostProperties?: HostPropertiesRequest | undefined;
4370
4370
  }
4371
4371
  /**
4372
4372
  * @public
@@ -4376,7 +4376,7 @@ export interface UpdateWorkerResponse {
4376
4376
  * <p>The worker log to update.</p>
4377
4377
  * @public
4378
4378
  */
4379
- log?: LogConfiguration;
4379
+ log?: LogConfiguration | undefined;
4380
4380
  }
4381
4381
  /**
4382
4382
  * <p>The updated session action information as it relates to completion and progress of the
@@ -4388,37 +4388,37 @@ export interface UpdatedSessionActionInfo {
4388
4388
  * <p>The status of the session upon completion.</p>
4389
4389
  * @public
4390
4390
  */
4391
- completedStatus?: CompletedStatus;
4391
+ completedStatus?: CompletedStatus | undefined;
4392
4392
  /**
4393
4393
  * <p>The process exit code.</p>
4394
4394
  * @public
4395
4395
  */
4396
- processExitCode?: number;
4396
+ processExitCode?: number | undefined;
4397
4397
  /**
4398
4398
  * <p>A message to indicate the progress of the updated session action.</p>
4399
4399
  * @public
4400
4400
  */
4401
- progressMessage?: string;
4401
+ progressMessage?: string | undefined;
4402
4402
  /**
4403
4403
  * <p>The date and time the resource started running.</p>
4404
4404
  * @public
4405
4405
  */
4406
- startedAt?: Date;
4406
+ startedAt?: Date | undefined;
4407
4407
  /**
4408
4408
  * <p>The date and time the resource ended running.</p>
4409
4409
  * @public
4410
4410
  */
4411
- endedAt?: Date;
4411
+ endedAt?: Date | undefined;
4412
4412
  /**
4413
4413
  * <p>The updated time.</p>
4414
4414
  * @public
4415
4415
  */
4416
- updatedAt?: Date;
4416
+ updatedAt?: Date | undefined;
4417
4417
  /**
4418
4418
  * <p>The percentage completed.</p>
4419
4419
  * @public
4420
4420
  */
4421
- progressPercent?: number;
4421
+ progressPercent?: number | undefined;
4422
4422
  }
4423
4423
  /**
4424
4424
  * @public
@@ -4443,7 +4443,7 @@ export interface UpdateWorkerScheduleRequest {
4443
4443
  * <p>The session actions associated with the worker schedule to update.</p>
4444
4444
  * @public
4445
4445
  */
4446
- updatedSessionActions?: Record<string, UpdatedSessionActionInfo>;
4446
+ updatedSessionActions?: Record<string, UpdatedSessionActionInfo> | undefined;
4447
4447
  }
4448
4448
  /**
4449
4449
  * @public
@@ -4474,7 +4474,7 @@ export interface UpdateWorkerScheduleResponse {
4474
4474
  * <p>The status to update the worker to.</p>
4475
4475
  * @public
4476
4476
  */
4477
- desiredWorkerStatus?: DesiredWorkerStatus;
4477
+ desiredWorkerStatus?: DesiredWorkerStatus | undefined;
4478
4478
  /**
4479
4479
  * <p>Updates the time interval (in seconds) for the schedule.</p>
4480
4480
  * @public
@@ -4515,7 +4515,7 @@ export interface GetFarmResponse {
4515
4515
  * </important>
4516
4516
  * @public
4517
4517
  */
4518
- description?: string;
4518
+ description?: string | undefined;
4519
4519
  /**
4520
4520
  * <p>The ARN of the KMS key used on the farm.</p>
4521
4521
  * @public
@@ -4535,12 +4535,12 @@ export interface GetFarmResponse {
4535
4535
  * <p>The date and time the resource was updated.</p>
4536
4536
  * @public
4537
4537
  */
4538
- updatedAt?: Date;
4538
+ updatedAt?: Date | undefined;
4539
4539
  /**
4540
4540
  * <p>The user or system that updated this resource.</p>
4541
4541
  * @public
4542
4542
  */
4543
- updatedBy?: string;
4543
+ updatedBy?: string | undefined;
4544
4544
  }
4545
4545
  /**
4546
4546
  * @public
@@ -4593,17 +4593,17 @@ export interface GetStorageProfileResponse {
4593
4593
  * <p>The date and time the resource was updated.</p>
4594
4594
  * @public
4595
4595
  */
4596
- updatedAt?: Date;
4596
+ updatedAt?: Date | undefined;
4597
4597
  /**
4598
4598
  * <p>The user or system that updated this resource.</p>
4599
4599
  * @public
4600
4600
  */
4601
- updatedBy?: string;
4601
+ updatedBy?: string | undefined;
4602
4602
  /**
4603
4603
  * <p>The location of the files for the storage profile.</p>
4604
4604
  * @public
4605
4605
  */
4606
- fileSystemLocations?: FileSystemLocation[];
4606
+ fileSystemLocations?: FileSystemLocation[] | undefined;
4607
4607
  }
4608
4608
  /**
4609
4609
  * @public
@@ -4618,12 +4618,12 @@ export interface ListFarmMembersRequest {
4618
4618
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4619
4619
  * @public
4620
4620
  */
4621
- nextToken?: string;
4621
+ nextToken?: string | undefined;
4622
4622
  /**
4623
4623
  * <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
4624
  * @public
4625
4625
  */
4626
- maxResults?: number;
4626
+ maxResults?: number | undefined;
4627
4627
  }
4628
4628
  /**
4629
4629
  * <p>The member of a farm.</p>
@@ -4669,7 +4669,7 @@ export interface ListFarmMembersResponse {
4669
4669
  * <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
4670
  * @public
4671
4671
  */
4672
- nextToken?: string;
4672
+ nextToken?: string | undefined;
4673
4673
  }
4674
4674
  /**
4675
4675
  * @public
@@ -4679,17 +4679,17 @@ export interface ListFarmsRequest {
4679
4679
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4680
4680
  * @public
4681
4681
  */
4682
- nextToken?: string;
4682
+ nextToken?: string | undefined;
4683
4683
  /**
4684
4684
  * <p>The principal ID of the member to list on the farm.</p>
4685
4685
  * @public
4686
4686
  */
4687
- principalId?: string;
4687
+ principalId?: string | undefined;
4688
4688
  /**
4689
4689
  * <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
4690
  * @public
4691
4691
  */
4692
- maxResults?: number;
4692
+ maxResults?: number | undefined;
4693
4693
  }
4694
4694
  /**
4695
4695
  * <p>The summary of details for a farm.</p>
@@ -4713,7 +4713,7 @@ export interface FarmSummary {
4713
4713
  * <p>The ARN for the KMS key.</p>
4714
4714
  * @public
4715
4715
  */
4716
- kmsKeyArn?: string;
4716
+ kmsKeyArn?: string | undefined;
4717
4717
  /**
4718
4718
  * <p>The date and time the resource was created.</p>
4719
4719
  * @public
@@ -4728,12 +4728,12 @@ export interface FarmSummary {
4728
4728
  * <p>The date and time the resource was updated.</p>
4729
4729
  * @public
4730
4730
  */
4731
- updatedAt?: Date;
4731
+ updatedAt?: Date | undefined;
4732
4732
  /**
4733
4733
  * <p>The user or system that updated this resource.</p>
4734
4734
  * @public
4735
4735
  */
4736
- updatedBy?: string;
4736
+ updatedBy?: string | undefined;
4737
4737
  }
4738
4738
  /**
4739
4739
  * @public
@@ -4743,7 +4743,7 @@ export interface ListFarmsResponse {
4743
4743
  * <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
4744
  * @public
4745
4745
  */
4746
- nextToken?: string;
4746
+ nextToken?: string | undefined;
4747
4747
  /**
4748
4748
  * <p>Farms on the list.</p>
4749
4749
  * @public
@@ -4763,12 +4763,12 @@ export interface ListStorageProfilesRequest {
4763
4763
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
4764
4764
  * @public
4765
4765
  */
4766
- nextToken?: string;
4766
+ nextToken?: string | undefined;
4767
4767
  /**
4768
4768
  * <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
4769
  * @public
4770
4770
  */
4771
- maxResults?: number;
4771
+ maxResults?: number | undefined;
4772
4772
  }
4773
4773
  /**
4774
4774
  * <p>The details of a storage profile.</p>
@@ -4807,7 +4807,7 @@ export interface ListStorageProfilesResponse {
4807
4807
  * <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
4808
  * @public
4809
4809
  */
4810
- nextToken?: string;
4810
+ nextToken?: string | undefined;
4811
4811
  }
4812
4812
  /**
4813
4813
  * @public
@@ -4943,7 +4943,7 @@ export interface GetQueueResponse {
4943
4943
  * </important>
4944
4944
  * @public
4945
4945
  */
4946
- description?: string;
4946
+ description?: string | undefined;
4947
4947
  /**
4948
4948
  * <p>The farm ID for the queue.</p>
4949
4949
  * @public
@@ -4978,32 +4978,32 @@ export interface GetQueueResponse {
4978
4978
  * <p>The reason the queue was blocked.</p>
4979
4979
  * @public
4980
4980
  */
4981
- blockedReason?: QueueBlockedReason;
4981
+ blockedReason?: QueueBlockedReason | undefined;
4982
4982
  /**
4983
4983
  * <p>The job attachment settings for the queue.</p>
4984
4984
  * @public
4985
4985
  */
4986
- jobAttachmentSettings?: JobAttachmentSettings;
4986
+ jobAttachmentSettings?: JobAttachmentSettings | undefined;
4987
4987
  /**
4988
4988
  * <p>The IAM role ARN.</p>
4989
4989
  * @public
4990
4990
  */
4991
- roleArn?: string;
4991
+ roleArn?: string | undefined;
4992
4992
  /**
4993
4993
  * <p>A list of the required file system location names in the queue.</p>
4994
4994
  * @public
4995
4995
  */
4996
- requiredFileSystemLocationNames?: string[];
4996
+ requiredFileSystemLocationNames?: string[] | undefined;
4997
4997
  /**
4998
4998
  * <p>The storage profile IDs for the queue.</p>
4999
4999
  * @public
5000
5000
  */
5001
- allowedStorageProfileIds?: string[];
5001
+ allowedStorageProfileIds?: string[] | undefined;
5002
5002
  /**
5003
5003
  * <p>The jobs in the queue ran as this specified POSIX user.</p>
5004
5004
  * @public
5005
5005
  */
5006
- jobRunAsUser?: JobRunAsUser;
5006
+ jobRunAsUser?: JobRunAsUser | undefined;
5007
5007
  /**
5008
5008
  * <p>The date and time the resource was created.</p>
5009
5009
  * @public
@@ -5018,12 +5018,12 @@ export interface GetQueueResponse {
5018
5018
  * <p>The date and time the resource was updated.</p>
5019
5019
  * @public
5020
5020
  */
5021
- updatedAt?: Date;
5021
+ updatedAt?: Date | undefined;
5022
5022
  /**
5023
5023
  * <p>The user or system that updated this resource.</p>
5024
5024
  * @public
5025
5025
  */
5026
- updatedBy?: string;
5026
+ updatedBy?: string | undefined;
5027
5027
  }
5028
5028
  /**
5029
5029
  * @public
@@ -5088,12 +5088,12 @@ export interface GetQueueEnvironmentResponse {
5088
5088
  * <p>The date and time the resource was updated.</p>
5089
5089
  * @public
5090
5090
  */
5091
- updatedAt?: Date;
5091
+ updatedAt?: Date | undefined;
5092
5092
  /**
5093
5093
  * <p>The user or system that updated this resource.</p>
5094
5094
  * @public
5095
5095
  */
5096
- updatedBy?: string;
5096
+ updatedBy?: string | undefined;
5097
5097
  }
5098
5098
  /**
5099
5099
  * @public
@@ -5141,7 +5141,7 @@ export interface GetStorageProfileForQueueResponse {
5141
5141
  * <p>The location of the files for the storage profile within the queue.</p>
5142
5142
  * @public
5143
5143
  */
5144
- fileSystemLocations?: FileSystemLocation[];
5144
+ fileSystemLocations?: FileSystemLocation[] | undefined;
5145
5145
  }
5146
5146
  /**
5147
5147
  * @public
@@ -5293,62 +5293,62 @@ export interface GetJobResponse {
5293
5293
  * <p>The date and time the resource was updated.</p>
5294
5294
  * @public
5295
5295
  */
5296
- updatedAt?: Date;
5296
+ updatedAt?: Date | undefined;
5297
5297
  /**
5298
5298
  * <p>The user or system that updated this resource.</p>
5299
5299
  * @public
5300
5300
  */
5301
- updatedBy?: string;
5301
+ updatedBy?: string | undefined;
5302
5302
  /**
5303
5303
  * <p>The date and time the resource started running.</p>
5304
5304
  * @public
5305
5305
  */
5306
- startedAt?: Date;
5306
+ startedAt?: Date | undefined;
5307
5307
  /**
5308
5308
  * <p>The date and time the resource ended running.</p>
5309
5309
  * @public
5310
5310
  */
5311
- endedAt?: Date;
5311
+ endedAt?: Date | undefined;
5312
5312
  /**
5313
5313
  * <p>The task run status for the job.</p>
5314
5314
  * @public
5315
5315
  */
5316
- taskRunStatus?: TaskRunStatus;
5316
+ taskRunStatus?: TaskRunStatus | undefined;
5317
5317
  /**
5318
5318
  * <p>The task status with which the job started.</p>
5319
5319
  * @public
5320
5320
  */
5321
- targetTaskRunStatus?: JobTargetTaskRunStatus;
5321
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
5322
5322
  /**
5323
5323
  * <p>The number of tasks running on the job.</p>
5324
5324
  * @public
5325
5325
  */
5326
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
5326
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
5327
5327
  /**
5328
5328
  * <p>The storage profile ID associated with the job.</p>
5329
5329
  * @public
5330
5330
  */
5331
- storageProfileId?: string;
5331
+ storageProfileId?: string | undefined;
5332
5332
  /**
5333
5333
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
5334
5334
  * @public
5335
5335
  */
5336
- maxFailedTasksCount?: number;
5336
+ maxFailedTasksCount?: number | undefined;
5337
5337
  /**
5338
5338
  * <p>The maximum number of retries per failed tasks.</p>
5339
5339
  * @public
5340
5340
  */
5341
- maxRetriesPerTask?: number;
5341
+ maxRetriesPerTask?: number | undefined;
5342
5342
  /**
5343
5343
  * <p>The parameters for the job.</p>
5344
5344
  * @public
5345
5345
  */
5346
- parameters?: Record<string, JobParameter>;
5346
+ parameters?: Record<string, JobParameter> | undefined;
5347
5347
  /**
5348
5348
  * <p>The attachments for the job.</p>
5349
5349
  * @public
5350
5350
  */
5351
- attachments?: Attachments;
5351
+ attachments?: Attachments | undefined;
5352
5352
  /**
5353
5353
  * <p>The description of the job.</p>
5354
5354
  * <important>
@@ -5356,12 +5356,12 @@ export interface GetJobResponse {
5356
5356
  * </important>
5357
5357
  * @public
5358
5358
  */
5359
- description?: string;
5359
+ description?: string | undefined;
5360
5360
  /**
5361
5361
  * <p>The job ID for the source job.</p>
5362
5362
  * @public
5363
5363
  */
5364
- sourceJobId?: string;
5364
+ sourceJobId?: string | undefined;
5365
5365
  }
5366
5366
  /**
5367
5367
  * @public
@@ -5426,32 +5426,32 @@ export interface GetSessionResponse {
5426
5426
  * <p>The date and time the resource ended running.</p>
5427
5427
  * @public
5428
5428
  */
5429
- endedAt?: Date;
5429
+ endedAt?: Date | undefined;
5430
5430
  /**
5431
5431
  * <p>The date and time the resource was updated.</p>
5432
5432
  * @public
5433
5433
  */
5434
- updatedAt?: Date;
5434
+ updatedAt?: Date | undefined;
5435
5435
  /**
5436
5436
  * <p>The user or system that updated this resource.</p>
5437
5437
  * @public
5438
5438
  */
5439
- updatedBy?: string;
5439
+ updatedBy?: string | undefined;
5440
5440
  /**
5441
5441
  * <p>The life cycle status with which the session started.</p>
5442
5442
  * @public
5443
5443
  */
5444
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
5444
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
5445
5445
  /**
5446
5446
  * <p>Provides the Amazon EC2 properties of the host.</p>
5447
5447
  * @public
5448
5448
  */
5449
- hostProperties?: HostPropertiesResponse;
5449
+ hostProperties?: HostPropertiesResponse | undefined;
5450
5450
  /**
5451
5451
  * <p>The worker log for the session.</p>
5452
5452
  * @public
5453
5453
  */
5454
- workerLog?: LogConfiguration;
5454
+ workerLog?: LogConfiguration | undefined;
5455
5455
  }
5456
5456
  /**
5457
5457
  * @public
@@ -5509,7 +5509,7 @@ export interface SyncInputJobAttachmentsSessionActionDefinition {
5509
5509
  * <p>The step ID for the step in the job attachment.</p>
5510
5510
  * @public
5511
5511
  */
5512
- stepId?: string;
5512
+ stepId?: string | undefined;
5513
5513
  }
5514
5514
  /**
5515
5515
  * <p>The task, step, and parameters for the task run in the session action.</p>
@@ -5643,22 +5643,22 @@ export interface GetSessionActionResponse {
5643
5643
  * <p>The date and time the resource started running.</p>
5644
5644
  * @public
5645
5645
  */
5646
- startedAt?: Date;
5646
+ startedAt?: Date | undefined;
5647
5647
  /**
5648
5648
  * <p>The date and time the resource ended running.</p>
5649
5649
  * @public
5650
5650
  */
5651
- endedAt?: Date;
5651
+ endedAt?: Date | undefined;
5652
5652
  /**
5653
5653
  * <p>The Linux timestamp of the date and time the session action was last updated.</p>
5654
5654
  * @public
5655
5655
  */
5656
- workerUpdatedAt?: Date;
5656
+ workerUpdatedAt?: Date | undefined;
5657
5657
  /**
5658
5658
  * <p>The percentage completed for a session action.</p>
5659
5659
  * @public
5660
5660
  */
5661
- progressPercent?: number;
5661
+ progressPercent?: number | undefined;
5662
5662
  /**
5663
5663
  * <p>The session ID for the session action.</p>
5664
5664
  * @public
@@ -5668,12 +5668,12 @@ export interface GetSessionActionResponse {
5668
5668
  * <p>The exit code to exit the session.</p>
5669
5669
  * @public
5670
5670
  */
5671
- processExitCode?: number;
5671
+ processExitCode?: number | undefined;
5672
5672
  /**
5673
5673
  * <p>The message that communicates the progress of the session action.</p>
5674
5674
  * @public
5675
5675
  */
5676
- progressMessage?: string;
5676
+ progressMessage?: string | undefined;
5677
5677
  /**
5678
5678
  * <p>The session action definition.</p>
5679
5679
  * @public
@@ -5789,7 +5789,7 @@ export interface ParameterSpace {
5789
5789
  * <p>The combination expression to use in the search.</p>
5790
5790
  * @public
5791
5791
  */
5792
- combination?: string;
5792
+ combination?: string | undefined;
5793
5793
  }
5794
5794
  /**
5795
5795
  * <p>The details outlining the minimum and maximum capability of a step.</p>
@@ -5805,17 +5805,17 @@ export interface StepAmountCapability {
5805
5805
  * <p>The minimum amount.</p>
5806
5806
  * @public
5807
5807
  */
5808
- min?: number;
5808
+ min?: number | undefined;
5809
5809
  /**
5810
5810
  * <p>The maximum amount.</p>
5811
5811
  * @public
5812
5812
  */
5813
- max?: number;
5813
+ max?: number | undefined;
5814
5814
  /**
5815
5815
  * <p>The amount value.</p>
5816
5816
  * @public
5817
5817
  */
5818
- value?: number;
5818
+ value?: number | undefined;
5819
5819
  }
5820
5820
  /**
5821
5821
  * <p>The list of step attributes.</p>
@@ -5831,12 +5831,12 @@ export interface StepAttributeCapability {
5831
5831
  * <p>Requires any of the step attributes in a given list.</p>
5832
5832
  * @public
5833
5833
  */
5834
- anyOf?: string[];
5834
+ anyOf?: string[] | undefined;
5835
5835
  /**
5836
5836
  * <p>Requires all of the step attribute values.</p>
5837
5837
  * @public
5838
5838
  */
5839
- allOf?: string[];
5839
+ allOf?: string[] | undefined;
5840
5840
  }
5841
5841
  /**
5842
5842
  * <p>The details of required step capabilities.</p>
@@ -5893,7 +5893,7 @@ export interface GetStepResponse {
5893
5893
  * <p>A message that describes the lifecycle status of the step.</p>
5894
5894
  * @public
5895
5895
  */
5896
- lifecycleStatusMessage?: string;
5896
+ lifecycleStatusMessage?: string | undefined;
5897
5897
  /**
5898
5898
  * <p>The task run status for the job.</p>
5899
5899
  * @public
@@ -5908,7 +5908,7 @@ export interface GetStepResponse {
5908
5908
  * <p>The task status with which the job started.</p>
5909
5909
  * @public
5910
5910
  */
5911
- targetTaskRunStatus?: StepTargetTaskRunStatus;
5911
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
5912
5912
  /**
5913
5913
  * <p>The date and time the resource was created.</p>
5914
5914
  * @public
@@ -5923,37 +5923,37 @@ export interface GetStepResponse {
5923
5923
  * <p>The date and time the resource was updated.</p>
5924
5924
  * @public
5925
5925
  */
5926
- updatedAt?: Date;
5926
+ updatedAt?: Date | undefined;
5927
5927
  /**
5928
5928
  * <p>The user or system that updated this resource.</p>
5929
5929
  * @public
5930
5930
  */
5931
- updatedBy?: string;
5931
+ updatedBy?: string | undefined;
5932
5932
  /**
5933
5933
  * <p>The date and time the resource started running.</p>
5934
5934
  * @public
5935
5935
  */
5936
- startedAt?: Date;
5936
+ startedAt?: Date | undefined;
5937
5937
  /**
5938
5938
  * <p>The date and time the resource ended running.</p>
5939
5939
  * @public
5940
5940
  */
5941
- endedAt?: Date;
5941
+ endedAt?: Date | undefined;
5942
5942
  /**
5943
5943
  * <p>The number of dependencies in the step.</p>
5944
5944
  * @public
5945
5945
  */
5946
- dependencyCounts?: DependencyCounts;
5946
+ dependencyCounts?: DependencyCounts | undefined;
5947
5947
  /**
5948
5948
  * <p>The required capabilities of the step.</p>
5949
5949
  * @public
5950
5950
  */
5951
- requiredCapabilities?: StepRequiredCapabilities;
5951
+ requiredCapabilities?: StepRequiredCapabilities | undefined;
5952
5952
  /**
5953
5953
  * <p>A list of step parameters and the combination expression for the step.</p>
5954
5954
  * @public
5955
5955
  */
5956
- parameterSpace?: ParameterSpace;
5956
+ parameterSpace?: ParameterSpace | undefined;
5957
5957
  /**
5958
5958
  * <p>The description of the step.</p>
5959
5959
  * <important>
@@ -5961,7 +5961,7 @@ export interface GetStepResponse {
5961
5961
  * </important>
5962
5962
  * @public
5963
5963
  */
5964
- description?: string;
5964
+ description?: string | undefined;
5965
5965
  }
5966
5966
  /**
5967
5967
  * @public
@@ -6037,42 +6037,42 @@ export interface GetTaskResponse {
6037
6037
  * <p>The run status with which to start the task.</p>
6038
6038
  * @public
6039
6039
  */
6040
- targetRunStatus?: TaskTargetRunStatus;
6040
+ targetRunStatus?: TaskTargetRunStatus | undefined;
6041
6041
  /**
6042
6042
  * <p>The number of times that the task failed and was retried.</p>
6043
6043
  * @public
6044
6044
  */
6045
- failureRetryCount?: number;
6045
+ failureRetryCount?: number | undefined;
6046
6046
  /**
6047
6047
  * <p>The parameters for the task.</p>
6048
6048
  * @public
6049
6049
  */
6050
- parameters?: Record<string, TaskParameterValue>;
6050
+ parameters?: Record<string, TaskParameterValue> | undefined;
6051
6051
  /**
6052
6052
  * <p>The date and time the resource started running.</p>
6053
6053
  * @public
6054
6054
  */
6055
- startedAt?: Date;
6055
+ startedAt?: Date | undefined;
6056
6056
  /**
6057
6057
  * <p>The date and time the resource ended running.</p>
6058
6058
  * @public
6059
6059
  */
6060
- endedAt?: Date;
6060
+ endedAt?: Date | undefined;
6061
6061
  /**
6062
6062
  * <p>The date and time the resource was updated.</p>
6063
6063
  * @public
6064
6064
  */
6065
- updatedAt?: Date;
6065
+ updatedAt?: Date | undefined;
6066
6066
  /**
6067
6067
  * <p>The user or system that updated this resource.</p>
6068
6068
  * @public
6069
6069
  */
6070
- updatedBy?: string;
6070
+ updatedBy?: string | undefined;
6071
6071
  /**
6072
6072
  * <p>The latest session ID for the task.</p>
6073
6073
  * @public
6074
6074
  */
6075
- latestSessionActionId?: string;
6075
+ latestSessionActionId?: string | undefined;
6076
6076
  }
6077
6077
  /**
6078
6078
  * @public
@@ -6097,12 +6097,12 @@ export interface ListJobMembersRequest {
6097
6097
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6098
6098
  * @public
6099
6099
  */
6100
- nextToken?: string;
6100
+ nextToken?: string | undefined;
6101
6101
  /**
6102
6102
  * <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
6103
  * @public
6104
6104
  */
6105
- maxResults?: number;
6105
+ maxResults?: number | undefined;
6106
6106
  }
6107
6107
  /**
6108
6108
  * <p>The details for a job member.</p>
@@ -6158,7 +6158,7 @@ export interface ListJobMembersResponse {
6158
6158
  * <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
6159
  * @public
6160
6160
  */
6161
- nextToken?: string;
6161
+ nextToken?: string | undefined;
6162
6162
  }
6163
6163
  /**
6164
6164
  * @public
@@ -6183,12 +6183,12 @@ export interface ListJobParameterDefinitionsRequest {
6183
6183
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6184
6184
  * @public
6185
6185
  */
6186
- nextToken?: string;
6186
+ nextToken?: string | undefined;
6187
6187
  /**
6188
6188
  * <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
6189
  * @public
6190
6190
  */
6191
- maxResults?: number;
6191
+ maxResults?: number | undefined;
6192
6192
  }
6193
6193
  /**
6194
6194
  * @public
@@ -6203,7 +6203,7 @@ export interface ListJobParameterDefinitionsResponse {
6203
6203
  * <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
6204
  * @public
6205
6205
  */
6206
- nextToken?: string;
6206
+ nextToken?: string | undefined;
6207
6207
  }
6208
6208
  /**
6209
6209
  * @public
@@ -6218,7 +6218,7 @@ export interface ListJobsRequest {
6218
6218
  * <p>The principal ID of the members on the jobs.</p>
6219
6219
  * @public
6220
6220
  */
6221
- principalId?: string;
6221
+ principalId?: string | undefined;
6222
6222
  /**
6223
6223
  * <p>The queue ID for the job.</p>
6224
6224
  * @public
@@ -6228,12 +6228,12 @@ export interface ListJobsRequest {
6228
6228
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6229
6229
  * @public
6230
6230
  */
6231
- nextToken?: string;
6231
+ nextToken?: string | undefined;
6232
6232
  /**
6233
6233
  * <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
6234
  * @public
6235
6235
  */
6236
- maxResults?: number;
6236
+ maxResults?: number | undefined;
6237
6237
  }
6238
6238
  /**
6239
6239
  * <p>A summary of job details.</p>
@@ -6279,22 +6279,22 @@ export interface JobSummary {
6279
6279
  * <p>The date and time the resource was updated.</p>
6280
6280
  * @public
6281
6281
  */
6282
- updatedAt?: Date;
6282
+ updatedAt?: Date | undefined;
6283
6283
  /**
6284
6284
  * <p>The user or system that updated this resource.</p>
6285
6285
  * @public
6286
6286
  */
6287
- updatedBy?: string;
6287
+ updatedBy?: string | undefined;
6288
6288
  /**
6289
6289
  * <p>The date and time the resource started running.</p>
6290
6290
  * @public
6291
6291
  */
6292
- startedAt?: Date;
6292
+ startedAt?: Date | undefined;
6293
6293
  /**
6294
6294
  * <p>The date and time the resource ended running.</p>
6295
6295
  * @public
6296
6296
  */
6297
- endedAt?: Date;
6297
+ endedAt?: Date | undefined;
6298
6298
  /**
6299
6299
  * <p>The task run status for the job.</p>
6300
6300
  * <ul>
@@ -6341,32 +6341,32 @@ export interface JobSummary {
6341
6341
  * </ul>
6342
6342
  * @public
6343
6343
  */
6344
- taskRunStatus?: TaskRunStatus;
6344
+ taskRunStatus?: TaskRunStatus | undefined;
6345
6345
  /**
6346
6346
  * <p>The task status to start with on the job.</p>
6347
6347
  * @public
6348
6348
  */
6349
- targetTaskRunStatus?: JobTargetTaskRunStatus;
6349
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
6350
6350
  /**
6351
6351
  * <p>The number of tasks running on the job.</p>
6352
6352
  * @public
6353
6353
  */
6354
- taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
6354
+ taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>> | undefined;
6355
6355
  /**
6356
6356
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
6357
6357
  * @public
6358
6358
  */
6359
- maxFailedTasksCount?: number;
6359
+ maxFailedTasksCount?: number | undefined;
6360
6360
  /**
6361
6361
  * <p>The maximum number of retries for a job.</p>
6362
6362
  * @public
6363
6363
  */
6364
- maxRetriesPerTask?: number;
6364
+ maxRetriesPerTask?: number | undefined;
6365
6365
  /**
6366
6366
  * <p>The job ID for the source job.</p>
6367
6367
  * @public
6368
6368
  */
6369
- sourceJobId?: string;
6369
+ sourceJobId?: string | undefined;
6370
6370
  }
6371
6371
  /**
6372
6372
  * @public
@@ -6381,7 +6381,7 @@ export interface ListJobsResponse {
6381
6381
  * <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
6382
  * @public
6383
6383
  */
6384
- nextToken?: string;
6384
+ nextToken?: string | undefined;
6385
6385
  }
6386
6386
  /**
6387
6387
  * @public
@@ -6406,22 +6406,22 @@ export interface ListSessionActionsRequest {
6406
6406
  * <p>The session ID to include on the sessions action list.</p>
6407
6407
  * @public
6408
6408
  */
6409
- sessionId?: string;
6409
+ sessionId?: string | undefined;
6410
6410
  /**
6411
6411
  * <p>The task ID for the session actions list.</p>
6412
6412
  * @public
6413
6413
  */
6414
- taskId?: string;
6414
+ taskId?: string | undefined;
6415
6415
  /**
6416
6416
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6417
6417
  * @public
6418
6418
  */
6419
- nextToken?: string;
6419
+ nextToken?: string | undefined;
6420
6420
  /**
6421
6421
  * <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
6422
  * @public
6423
6423
  */
6424
- maxResults?: number;
6424
+ maxResults?: number | undefined;
6425
6425
  }
6426
6426
  /**
6427
6427
  * <p>Defines the environment a session action enters in.</p>
@@ -6454,7 +6454,7 @@ export interface SyncInputJobAttachmentsSessionActionDefinitionSummary {
6454
6454
  * <p>The step ID of the step in the job attachment.</p>
6455
6455
  * @public
6456
6456
  */
6457
- stepId?: string;
6457
+ stepId?: string | undefined;
6458
6458
  }
6459
6459
  /**
6460
6460
  * <p>The details of a task run in a session action.</p>
@@ -6563,23 +6563,23 @@ export interface SessionActionSummary {
6563
6563
  * <p>The date and time the resource started running.</p>
6564
6564
  * @public
6565
6565
  */
6566
- startedAt?: Date;
6566
+ startedAt?: Date | undefined;
6567
6567
  /**
6568
6568
  * <p>The date and time the resource ended running.</p>
6569
6569
  * @public
6570
6570
  */
6571
- endedAt?: Date;
6571
+ endedAt?: Date | undefined;
6572
6572
  /**
6573
6573
  * <p>The Linux timestamp of the last date and time that the session action was
6574
6574
  * updated.</p>
6575
6575
  * @public
6576
6576
  */
6577
- workerUpdatedAt?: Date;
6577
+ workerUpdatedAt?: Date | undefined;
6578
6578
  /**
6579
6579
  * <p>The completion percentage for the session action.</p>
6580
6580
  * @public
6581
6581
  */
6582
- progressPercent?: number;
6582
+ progressPercent?: number | undefined;
6583
6583
  /**
6584
6584
  * <p>The session action definition.</p>
6585
6585
  * @public
@@ -6599,7 +6599,7 @@ export interface ListSessionActionsResponse {
6599
6599
  * <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
6600
  * @public
6601
6601
  */
6602
- nextToken?: string;
6602
+ nextToken?: string | undefined;
6603
6603
  }
6604
6604
  /**
6605
6605
  * @public
@@ -6624,12 +6624,12 @@ export interface ListSessionsRequest {
6624
6624
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6625
6625
  * @public
6626
6626
  */
6627
- nextToken?: string;
6627
+ nextToken?: string | undefined;
6628
6628
  /**
6629
6629
  * <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
6630
  * @public
6631
6631
  */
6632
- maxResults?: number;
6632
+ maxResults?: number | undefined;
6633
6633
  }
6634
6634
  /**
6635
6635
  * <p>The summary of a session.</p>
@@ -6665,22 +6665,22 @@ export interface SessionSummary {
6665
6665
  * <p>The date and time the resource ended running.</p>
6666
6666
  * @public
6667
6667
  */
6668
- endedAt?: Date;
6668
+ endedAt?: Date | undefined;
6669
6669
  /**
6670
6670
  * <p>The date and time the resource was updated.</p>
6671
6671
  * @public
6672
6672
  */
6673
- updatedAt?: Date;
6673
+ updatedAt?: Date | undefined;
6674
6674
  /**
6675
6675
  * <p>The user or system that updated this resource.</p>
6676
6676
  * @public
6677
6677
  */
6678
- updatedBy?: string;
6678
+ updatedBy?: string | undefined;
6679
6679
  /**
6680
6680
  * <p>The target life cycle status for the session.</p>
6681
6681
  * @public
6682
6682
  */
6683
- targetLifecycleStatus?: SessionLifecycleTargetStatus;
6683
+ targetLifecycleStatus?: SessionLifecycleTargetStatus | undefined;
6684
6684
  }
6685
6685
  /**
6686
6686
  * @public
@@ -6695,7 +6695,7 @@ export interface ListSessionsResponse {
6695
6695
  * <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
6696
  * @public
6697
6697
  */
6698
- nextToken?: string;
6698
+ nextToken?: string | undefined;
6699
6699
  }
6700
6700
  /**
6701
6701
  * @public
@@ -6725,12 +6725,12 @@ export interface ListStepConsumersRequest {
6725
6725
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6726
6726
  * @public
6727
6727
  */
6728
- nextToken?: string;
6728
+ nextToken?: string | undefined;
6729
6729
  /**
6730
6730
  * <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
6731
  * @public
6732
6732
  */
6733
- maxResults?: number;
6733
+ maxResults?: number | undefined;
6734
6734
  }
6735
6735
  /**
6736
6736
  * @public
@@ -6773,7 +6773,7 @@ export interface ListStepConsumersResponse {
6773
6773
  * <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
6774
  * @public
6775
6775
  */
6776
- nextToken?: string;
6776
+ nextToken?: string | undefined;
6777
6777
  }
6778
6778
  /**
6779
6779
  * @public
@@ -6803,12 +6803,12 @@ export interface ListStepDependenciesRequest {
6803
6803
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6804
6804
  * @public
6805
6805
  */
6806
- nextToken?: string;
6806
+ nextToken?: string | undefined;
6807
6807
  /**
6808
6808
  * <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
6809
  * @public
6810
6810
  */
6811
- maxResults?: number;
6811
+ maxResults?: number | undefined;
6812
6812
  }
6813
6813
  /**
6814
6814
  * <p>The details of step dependency.</p>
@@ -6839,7 +6839,7 @@ export interface ListStepDependenciesResponse {
6839
6839
  * <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
6840
  * @public
6841
6841
  */
6842
- nextToken?: string;
6842
+ nextToken?: string | undefined;
6843
6843
  }
6844
6844
  /**
6845
6845
  * @public
@@ -6864,12 +6864,12 @@ export interface ListStepsRequest {
6864
6864
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
6865
6865
  * @public
6866
6866
  */
6867
- nextToken?: string;
6867
+ nextToken?: string | undefined;
6868
6868
  /**
6869
6869
  * <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
6870
  * @public
6871
6871
  */
6872
- maxResults?: number;
6872
+ maxResults?: number | undefined;
6873
6873
  }
6874
6874
  /**
6875
6875
  * <p>The details for a step.</p>
@@ -6895,7 +6895,7 @@ export interface StepSummary {
6895
6895
  * <p>A message that describes the lifecycle of the step.</p>
6896
6896
  * @public
6897
6897
  */
6898
- lifecycleStatusMessage?: string;
6898
+ lifecycleStatusMessage?: string | undefined;
6899
6899
  /**
6900
6900
  * <p>The task run status for the job.</p>
6901
6901
  * <ul>
@@ -6952,7 +6952,7 @@ export interface StepSummary {
6952
6952
  * <p>The task status to start with on the job.</p>
6953
6953
  * @public
6954
6954
  */
6955
- targetTaskRunStatus?: StepTargetTaskRunStatus;
6955
+ targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
6956
6956
  /**
6957
6957
  * <p>The date and time the resource was created.</p>
6958
6958
  * @public
@@ -6967,27 +6967,27 @@ export interface StepSummary {
6967
6967
  * <p>The date and time the resource was updated.</p>
6968
6968
  * @public
6969
6969
  */
6970
- updatedAt?: Date;
6970
+ updatedAt?: Date | undefined;
6971
6971
  /**
6972
6972
  * <p>The user or system that updated this resource.</p>
6973
6973
  * @public
6974
6974
  */
6975
- updatedBy?: string;
6975
+ updatedBy?: string | undefined;
6976
6976
  /**
6977
6977
  * <p>The date and time the resource started running.</p>
6978
6978
  * @public
6979
6979
  */
6980
- startedAt?: Date;
6980
+ startedAt?: Date | undefined;
6981
6981
  /**
6982
6982
  * <p>The date and time the resource ended running.</p>
6983
6983
  * @public
6984
6984
  */
6985
- endedAt?: Date;
6985
+ endedAt?: Date | undefined;
6986
6986
  /**
6987
6987
  * <p>The number of dependencies for the step.</p>
6988
6988
  * @public
6989
6989
  */
6990
- dependencyCounts?: DependencyCounts;
6990
+ dependencyCounts?: DependencyCounts | undefined;
6991
6991
  }
6992
6992
  /**
6993
6993
  * @public
@@ -7002,7 +7002,7 @@ export interface ListStepsResponse {
7002
7002
  * <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
7003
  * @public
7004
7004
  */
7005
- nextToken?: string;
7005
+ nextToken?: string | undefined;
7006
7006
  }
7007
7007
  /**
7008
7008
  * @public
@@ -7032,12 +7032,12 @@ export interface ListTasksRequest {
7032
7032
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7033
7033
  * @public
7034
7034
  */
7035
- nextToken?: string;
7035
+ nextToken?: string | undefined;
7036
7036
  /**
7037
7037
  * <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
7038
  * @public
7039
7039
  */
7040
- maxResults?: number;
7040
+ maxResults?: number | undefined;
7041
7041
  }
7042
7042
  /**
7043
7043
  * <p>The details of a task.</p>
@@ -7068,42 +7068,42 @@ export interface TaskSummary {
7068
7068
  * <p>The run status on which the started.</p>
7069
7069
  * @public
7070
7070
  */
7071
- targetRunStatus?: TaskTargetRunStatus;
7071
+ targetRunStatus?: TaskTargetRunStatus | undefined;
7072
7072
  /**
7073
7073
  * <p>The number of times that the task failed and was retried.</p>
7074
7074
  * @public
7075
7075
  */
7076
- failureRetryCount?: number;
7076
+ failureRetryCount?: number | undefined;
7077
7077
  /**
7078
7078
  * <p>The task parameters.</p>
7079
7079
  * @public
7080
7080
  */
7081
- parameters?: Record<string, TaskParameterValue>;
7081
+ parameters?: Record<string, TaskParameterValue> | undefined;
7082
7082
  /**
7083
7083
  * <p>The date and time the resource started running.</p>
7084
7084
  * @public
7085
7085
  */
7086
- startedAt?: Date;
7086
+ startedAt?: Date | undefined;
7087
7087
  /**
7088
7088
  * <p>The date and time the resource ended running.</p>
7089
7089
  * @public
7090
7090
  */
7091
- endedAt?: Date;
7091
+ endedAt?: Date | undefined;
7092
7092
  /**
7093
7093
  * <p>The date and time the resource was updated.</p>
7094
7094
  * @public
7095
7095
  */
7096
- updatedAt?: Date;
7096
+ updatedAt?: Date | undefined;
7097
7097
  /**
7098
7098
  * <p>The user or system that updated this resource.</p>
7099
7099
  * @public
7100
7100
  */
7101
- updatedBy?: string;
7101
+ updatedBy?: string | undefined;
7102
7102
  /**
7103
7103
  * <p>The latest session action for the task.</p>
7104
7104
  * @public
7105
7105
  */
7106
- latestSessionActionId?: string;
7106
+ latestSessionActionId?: string | undefined;
7107
7107
  }
7108
7108
  /**
7109
7109
  * @public
@@ -7118,7 +7118,7 @@ export interface ListTasksResponse {
7118
7118
  * <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
7119
  * @public
7120
7120
  */
7121
- nextToken?: string;
7121
+ nextToken?: string | undefined;
7122
7122
  }
7123
7123
  /**
7124
7124
  * @public
@@ -7139,7 +7139,7 @@ export interface UpdateJobRequest {
7139
7139
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7140
7140
  * @public
7141
7141
  */
7142
- clientToken?: string;
7142
+ clientToken?: string | undefined;
7143
7143
  /**
7144
7144
  * <p>The farm ID of the job to update.</p>
7145
7145
  * @public
@@ -7159,22 +7159,22 @@ export interface UpdateJobRequest {
7159
7159
  * <p>The task status to update the job's tasks to.</p>
7160
7160
  * @public
7161
7161
  */
7162
- targetTaskRunStatus?: JobTargetTaskRunStatus;
7162
+ targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
7163
7163
  /**
7164
7164
  * <p>The job priority to update.</p>
7165
7165
  * @public
7166
7166
  */
7167
- priority?: number;
7167
+ priority?: number | undefined;
7168
7168
  /**
7169
7169
  * <p>The number of task failures before the job stops running and is marked as <code>FAILED</code>.</p>
7170
7170
  * @public
7171
7171
  */
7172
- maxFailedTasksCount?: number;
7172
+ maxFailedTasksCount?: number | undefined;
7173
7173
  /**
7174
7174
  * <p>The maximum number of retries for a job.</p>
7175
7175
  * @public
7176
7176
  */
7177
- maxRetriesPerTask?: number;
7177
+ maxRetriesPerTask?: number | undefined;
7178
7178
  /**
7179
7179
  * <p>The status of a job in its lifecycle. When you change the status of the job to
7180
7180
  * <code>ARCHIVED</code>, the job can't be scheduled or archived.</p>
@@ -7184,7 +7184,7 @@ export interface UpdateJobRequest {
7184
7184
  * </important>
7185
7185
  * @public
7186
7186
  */
7187
- lifecycleStatus?: UpdateJobLifecycleStatus;
7187
+ lifecycleStatus?: UpdateJobLifecycleStatus | undefined;
7188
7188
  }
7189
7189
  /**
7190
7190
  * @public
@@ -7199,7 +7199,7 @@ export interface UpdateSessionRequest {
7199
7199
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7200
7200
  * @public
7201
7201
  */
7202
- clientToken?: string;
7202
+ clientToken?: string | undefined;
7203
7203
  /**
7204
7204
  * <p>The farm ID to update in the session.</p>
7205
7205
  * @public
@@ -7239,7 +7239,7 @@ export interface UpdateStepRequest {
7239
7239
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7240
7240
  * @public
7241
7241
  */
7242
- clientToken?: string;
7242
+ clientToken?: string | undefined;
7243
7243
  /**
7244
7244
  * <p>The farm ID to update.</p>
7245
7245
  * @public
@@ -7279,7 +7279,7 @@ export interface UpdateTaskRequest {
7279
7279
  * <p>The unique token which the server uses to recognize retries of the same request.</p>
7280
7280
  * @public
7281
7281
  */
7282
- clientToken?: string;
7282
+ clientToken?: string | undefined;
7283
7283
  /**
7284
7284
  * <p>The farm ID to update.</p>
7285
7285
  * @public
@@ -7334,12 +7334,12 @@ export interface ListQueueEnvironmentsRequest {
7334
7334
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7335
7335
  * @public
7336
7336
  */
7337
- nextToken?: string;
7337
+ nextToken?: string | undefined;
7338
7338
  /**
7339
7339
  * <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
7340
  * @public
7341
7341
  */
7342
- maxResults?: number;
7342
+ maxResults?: number | undefined;
7343
7343
  }
7344
7344
  /**
7345
7345
  * <p>The summary of a queue environment.</p>
@@ -7375,7 +7375,7 @@ export interface ListQueueEnvironmentsResponse {
7375
7375
  * <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
7376
  * @public
7377
7377
  */
7378
- nextToken?: string;
7378
+ nextToken?: string | undefined;
7379
7379
  }
7380
7380
  /**
7381
7381
  * @public
@@ -7395,12 +7395,12 @@ export interface ListQueueMembersRequest {
7395
7395
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7396
7396
  * @public
7397
7397
  */
7398
- nextToken?: string;
7398
+ nextToken?: string | undefined;
7399
7399
  /**
7400
7400
  * <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
7401
  * @public
7402
7402
  */
7403
- maxResults?: number;
7403
+ maxResults?: number | undefined;
7404
7404
  }
7405
7405
  /**
7406
7406
  * <p>The details of a queue member.</p>
@@ -7451,7 +7451,7 @@ export interface ListQueueMembersResponse {
7451
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
7452
  * @public
7453
7453
  */
7454
- nextToken?: string;
7454
+ nextToken?: string | undefined;
7455
7455
  }
7456
7456
  /**
7457
7457
  * @public
@@ -7466,7 +7466,7 @@ export interface ListQueuesRequest {
7466
7466
  * <p>The principal IDs to include in the list of queues.</p>
7467
7467
  * @public
7468
7468
  */
7469
- principalId?: string;
7469
+ principalId?: string | undefined;
7470
7470
  /**
7471
7471
  * <p>The status of the queues listed.</p>
7472
7472
  * <ul>
@@ -7486,17 +7486,17 @@ export interface ListQueuesRequest {
7486
7486
  * </ul>
7487
7487
  * @public
7488
7488
  */
7489
- status?: QueueStatus;
7489
+ status?: QueueStatus | undefined;
7490
7490
  /**
7491
7491
  * <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
7492
7492
  * @public
7493
7493
  */
7494
- nextToken?: string;
7494
+ nextToken?: string | undefined;
7495
7495
  /**
7496
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
7497
  * @public
7498
7498
  */
7499
- maxResults?: number;
7499
+ maxResults?: number | undefined;
7500
7500
  }
7501
7501
  /**
7502
7502
  * <p>The details of a queue summary.</p>
@@ -7535,7 +7535,7 @@ export interface QueueSummary {
7535
7535
  * <p>The reason the queue is blocked, if applicable.</p>
7536
7536
  * @public
7537
7537
  */
7538
- blockedReason?: QueueBlockedReason;
7538
+ blockedReason?: QueueBlockedReason | undefined;
7539
7539
  /**
7540
7540
  * <p>The date and time the resource was created.</p>
7541
7541
  * @public
@@ -7550,12 +7550,12 @@ export interface QueueSummary {
7550
7550
  * <p>The date and time the resource was updated.</p>
7551
7551
  * @public
7552
7552
  */
7553
- updatedAt?: Date;
7553
+ updatedAt?: Date | undefined;
7554
7554
  /**
7555
7555
  * <p>The user or system that updated this resource.</p>
7556
7556
  * @public
7557
7557
  */
7558
- updatedBy?: string;
7558
+ updatedBy?: string | undefined;
7559
7559
  }
7560
7560
  /**
7561
7561
  * @internal