@aws-sdk/client-deadline 3.664.0 → 3.666.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/Deadline.js +2 -0
- package/dist-cjs/commands/ListJobParameterDefinitionsCommand.js +26 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/pagination/ListJobParameterDefinitionsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +59 -4
- package/dist-es/Deadline.js +2 -0
- package/dist-es/commands/ListJobParameterDefinitionsCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/pagination/ListJobParameterDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +53 -0
- package/dist-types/Deadline.d.ts +7 -0
- package/dist-types/DeadlineClient.d.ts +3 -2
- package/dist-types/commands/CreateJobCommand.d.ts +3 -2
- package/dist-types/commands/GetJobCommand.d.ts +1 -0
- package/dist-types/commands/ListJobParameterDefinitionsCommand.d.ts +94 -0
- package/dist-types/commands/ListJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +2 -1
- package/dist-types/commands/ListStorageProfilesForQueueCommand.d.ts +1 -2
- package/dist-types/commands/SearchJobsCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +62 -42
- package/dist-types/models/models_1.d.ts +46 -1
- package/dist-types/pagination/ListJobParameterDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Deadline.d.ts +17 -0
- package/dist-types/ts3.4/DeadlineClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListJobParameterDefinitionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListStorageProfilesForQueueCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -12
- package/dist-types/ts3.4/models/models_1.d.ts +12 -0
- package/dist-types/ts3.4/pagination/ListJobParameterDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +12 -12
|
@@ -59,6 +59,7 @@ export * from "./ListFarmsCommand";
|
|
|
59
59
|
export * from "./ListFleetMembersCommand";
|
|
60
60
|
export * from "./ListFleetsCommand";
|
|
61
61
|
export * from "./ListJobMembersCommand";
|
|
62
|
+
export * from "./ListJobParameterDefinitionsCommand";
|
|
62
63
|
export * from "./ListJobsCommand";
|
|
63
64
|
export * from "./ListLicenseEndpointsCommand";
|
|
64
65
|
export * from "./ListMeteredProductsCommand";
|
|
@@ -2875,12 +2875,12 @@ export interface CreateJobRequest {
|
|
|
2875
2875
|
* <p>The job template to use for this job.</p>
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
template
|
|
2878
|
+
template?: string;
|
|
2879
2879
|
/**
|
|
2880
2880
|
* <p>The file type for the job template.</p>
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
templateType
|
|
2883
|
+
templateType?: JobTemplateType;
|
|
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>
|
|
@@ -2919,6 +2919,11 @@ export interface CreateJobRequest {
|
|
|
2919
2919
|
* @public
|
|
2920
2920
|
*/
|
|
2921
2921
|
maxRetriesPerTask?: number;
|
|
2922
|
+
/**
|
|
2923
|
+
* <p>The job ID for the source job.</p>
|
|
2924
|
+
* @public
|
|
2925
|
+
*/
|
|
2926
|
+
sourceJobId?: string;
|
|
2922
2927
|
}
|
|
2923
2928
|
/**
|
|
2924
2929
|
* @public
|
|
@@ -5352,6 +5357,11 @@ export interface GetJobResponse {
|
|
|
5352
5357
|
* @public
|
|
5353
5358
|
*/
|
|
5354
5359
|
description?: string;
|
|
5360
|
+
/**
|
|
5361
|
+
* <p>The job ID for the source job.</p>
|
|
5362
|
+
* @public
|
|
5363
|
+
*/
|
|
5364
|
+
sourceJobId?: string;
|
|
5355
5365
|
}
|
|
5356
5366
|
/**
|
|
5357
5367
|
* @public
|
|
@@ -6150,6 +6160,51 @@ export interface ListJobMembersResponse {
|
|
|
6150
6160
|
*/
|
|
6151
6161
|
nextToken?: string;
|
|
6152
6162
|
}
|
|
6163
|
+
/**
|
|
6164
|
+
* @public
|
|
6165
|
+
*/
|
|
6166
|
+
export interface ListJobParameterDefinitionsRequest {
|
|
6167
|
+
/**
|
|
6168
|
+
* <p>The farm ID of the job to list.</p>
|
|
6169
|
+
* @public
|
|
6170
|
+
*/
|
|
6171
|
+
farmId: string | undefined;
|
|
6172
|
+
/**
|
|
6173
|
+
* <p>The job ID to include on the list.</p>
|
|
6174
|
+
* @public
|
|
6175
|
+
*/
|
|
6176
|
+
jobId: string | undefined;
|
|
6177
|
+
/**
|
|
6178
|
+
* <p>The queue ID to include on the list.</p>
|
|
6179
|
+
* @public
|
|
6180
|
+
*/
|
|
6181
|
+
queueId: string | undefined;
|
|
6182
|
+
/**
|
|
6183
|
+
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
6184
|
+
* @public
|
|
6185
|
+
*/
|
|
6186
|
+
nextToken?: string;
|
|
6187
|
+
/**
|
|
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
|
+
* @public
|
|
6190
|
+
*/
|
|
6191
|
+
maxResults?: number;
|
|
6192
|
+
}
|
|
6193
|
+
/**
|
|
6194
|
+
* @public
|
|
6195
|
+
*/
|
|
6196
|
+
export interface ListJobParameterDefinitionsResponse {
|
|
6197
|
+
/**
|
|
6198
|
+
* <p>Lists parameter definitions of a job.</p>
|
|
6199
|
+
* @public
|
|
6200
|
+
*/
|
|
6201
|
+
jobParameterDefinitions: __DocumentType[] | undefined;
|
|
6202
|
+
/**
|
|
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
|
+
* @public
|
|
6205
|
+
*/
|
|
6206
|
+
nextToken?: string;
|
|
6207
|
+
}
|
|
6153
6208
|
/**
|
|
6154
6209
|
* @public
|
|
6155
6210
|
*/
|
|
@@ -6307,6 +6362,11 @@ export interface JobSummary {
|
|
|
6307
6362
|
* @public
|
|
6308
6363
|
*/
|
|
6309
6364
|
maxRetriesPerTask?: number;
|
|
6365
|
+
/**
|
|
6366
|
+
* <p>The job ID for the source job.</p>
|
|
6367
|
+
* @public
|
|
6368
|
+
*/
|
|
6369
|
+
sourceJobId?: string;
|
|
6310
6370
|
}
|
|
6311
6371
|
/**
|
|
6312
6372
|
* @public
|
|
@@ -7497,46 +7557,6 @@ export interface QueueSummary {
|
|
|
7497
7557
|
*/
|
|
7498
7558
|
updatedBy?: string;
|
|
7499
7559
|
}
|
|
7500
|
-
/**
|
|
7501
|
-
* @public
|
|
7502
|
-
*/
|
|
7503
|
-
export interface ListQueuesResponse {
|
|
7504
|
-
/**
|
|
7505
|
-
* <p>The queues on the list.</p>
|
|
7506
|
-
* @public
|
|
7507
|
-
*/
|
|
7508
|
-
queues: QueueSummary[] | undefined;
|
|
7509
|
-
/**
|
|
7510
|
-
* <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>
|
|
7511
|
-
* @public
|
|
7512
|
-
*/
|
|
7513
|
-
nextToken?: string;
|
|
7514
|
-
}
|
|
7515
|
-
/**
|
|
7516
|
-
* @public
|
|
7517
|
-
*/
|
|
7518
|
-
export interface ListStorageProfilesForQueueRequest {
|
|
7519
|
-
/**
|
|
7520
|
-
* <p>The farm ID of the queue's storage profile.</p>
|
|
7521
|
-
* @public
|
|
7522
|
-
*/
|
|
7523
|
-
farmId: string | undefined;
|
|
7524
|
-
/**
|
|
7525
|
-
* <p>The queue ID for the storage profile.</p>
|
|
7526
|
-
* @public
|
|
7527
|
-
*/
|
|
7528
|
-
queueId: string | undefined;
|
|
7529
|
-
/**
|
|
7530
|
-
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
7531
|
-
* @public
|
|
7532
|
-
*/
|
|
7533
|
-
nextToken?: string;
|
|
7534
|
-
/**
|
|
7535
|
-
* <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>
|
|
7536
|
-
* @public
|
|
7537
|
-
*/
|
|
7538
|
-
maxResults?: number;
|
|
7539
|
-
}
|
|
7540
7560
|
/**
|
|
7541
7561
|
* @internal
|
|
7542
7562
|
*/
|
|
@@ -1,4 +1,44 @@
|
|
|
1
|
-
import { ComparisonOperator, DateTimeFilterExpression, DefaultQueueBudgetAction, EnvironmentTemplateType, FileSystemLocation, HostPropertiesResponse, JobAttachmentSettings, JobLifecycleStatus, JobParameter, JobRunAsUser, JobTargetTaskRunStatus, ParameterSpace, StepLifecycleStatus, StepTargetTaskRunStatus, StorageProfileOperatingSystemFamily, StorageProfileSummary, TaskParameterValue, TaskRunStatus, TaskTargetRunStatus, WorkerStatus } from "./models_0";
|
|
1
|
+
import { ComparisonOperator, DateTimeFilterExpression, DefaultQueueBudgetAction, EnvironmentTemplateType, FileSystemLocation, HostPropertiesResponse, JobAttachmentSettings, JobLifecycleStatus, JobParameter, JobRunAsUser, JobTargetTaskRunStatus, ParameterSpace, QueueSummary, StepLifecycleStatus, StepTargetTaskRunStatus, StorageProfileOperatingSystemFamily, StorageProfileSummary, TaskParameterValue, TaskRunStatus, TaskTargetRunStatus, WorkerStatus } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ListQueuesResponse {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The queues on the list.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
queues: QueueSummary[] | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>If Deadline Cloud returns <code>nextToken</code>, then there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then <code>nextToken</code> is set to <code>null</code>. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 <code>ValidationException</code> error.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
nextToken?: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface ListStorageProfilesForQueueRequest {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The farm ID of the queue's storage profile.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
farmId: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The queue ID for the storage profile.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
queueId: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The token for the next set of results, or <code>null</code> to start from the beginning.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
nextToken?: string;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
maxResults?: number;
|
|
41
|
+
}
|
|
2
42
|
/**
|
|
3
43
|
* @public
|
|
4
44
|
*/
|
|
@@ -1398,6 +1438,11 @@ export interface JobSearchSummary {
|
|
|
1398
1438
|
* @public
|
|
1399
1439
|
*/
|
|
1400
1440
|
jobParameters?: Record<string, JobParameter>;
|
|
1441
|
+
/**
|
|
1442
|
+
* <p>The job ID for the source job.</p>
|
|
1443
|
+
* @public
|
|
1444
|
+
*/
|
|
1445
|
+
sourceJobId?: string;
|
|
1401
1446
|
}
|
|
1402
1447
|
/**
|
|
1403
1448
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListJobParameterDefinitionsCommandInput, ListJobParameterDefinitionsCommandOutput } from "../commands/ListJobParameterDefinitionsCommand";
|
|
3
|
+
import { DeadlinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListJobParameterDefinitions: (config: DeadlinePaginationConfiguration, input: ListJobParameterDefinitionsCommandInput, ...rest: any[]) => Paginator<ListJobParameterDefinitionsCommandOutput>;
|
|
@@ -7,6 +7,7 @@ export * from "./ListFarmsPaginator";
|
|
|
7
7
|
export * from "./ListFleetMembersPaginator";
|
|
8
8
|
export * from "./ListFleetsPaginator";
|
|
9
9
|
export * from "./ListJobMembersPaginator";
|
|
10
|
+
export * from "./ListJobParameterDefinitionsPaginator";
|
|
10
11
|
export * from "./ListJobsPaginator";
|
|
11
12
|
export * from "./ListLicenseEndpointsPaginator";
|
|
12
13
|
export * from "./ListMeteredProductsPaginator";
|
|
@@ -61,6 +61,7 @@ import { ListFarmsCommandInput, ListFarmsCommandOutput } from "../commands/ListF
|
|
|
61
61
|
import { ListFleetMembersCommandInput, ListFleetMembersCommandOutput } from "../commands/ListFleetMembersCommand";
|
|
62
62
|
import { ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand";
|
|
63
63
|
import { ListJobMembersCommandInput, ListJobMembersCommandOutput } from "../commands/ListJobMembersCommand";
|
|
64
|
+
import { ListJobParameterDefinitionsCommandInput, ListJobParameterDefinitionsCommandOutput } from "../commands/ListJobParameterDefinitionsCommand";
|
|
64
65
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
65
66
|
import { ListLicenseEndpointsCommandInput, ListLicenseEndpointsCommandOutput } from "../commands/ListLicenseEndpointsCommand";
|
|
66
67
|
import { ListMeteredProductsCommandInput, ListMeteredProductsCommandOutput } from "../commands/ListMeteredProductsCommand";
|
|
@@ -346,6 +347,10 @@ export declare const se_ListFleetsCommand: (input: ListFleetsCommandInput, conte
|
|
|
346
347
|
* serializeAws_restJson1ListJobMembersCommand
|
|
347
348
|
*/
|
|
348
349
|
export declare const se_ListJobMembersCommand: (input: ListJobMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
350
|
+
/**
|
|
351
|
+
* serializeAws_restJson1ListJobParameterDefinitionsCommand
|
|
352
|
+
*/
|
|
353
|
+
export declare const se_ListJobParameterDefinitionsCommand: (input: ListJobParameterDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
349
354
|
/**
|
|
350
355
|
* serializeAws_restJson1ListJobsCommand
|
|
351
356
|
*/
|
|
@@ -754,6 +759,10 @@ export declare const de_ListFleetsCommand: (output: __HttpResponse, context: __S
|
|
|
754
759
|
* deserializeAws_restJson1ListJobMembersCommand
|
|
755
760
|
*/
|
|
756
761
|
export declare const de_ListJobMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobMembersCommandOutput>;
|
|
762
|
+
/**
|
|
763
|
+
* deserializeAws_restJson1ListJobParameterDefinitionsCommand
|
|
764
|
+
*/
|
|
765
|
+
export declare const de_ListJobParameterDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobParameterDefinitionsCommandOutput>;
|
|
757
766
|
/**
|
|
758
767
|
* deserializeAws_restJson1ListJobsCommand
|
|
759
768
|
*/
|
|
@@ -243,6 +243,10 @@ import {
|
|
|
243
243
|
ListJobMembersCommandInput,
|
|
244
244
|
ListJobMembersCommandOutput,
|
|
245
245
|
} from "./commands/ListJobMembersCommand";
|
|
246
|
+
import {
|
|
247
|
+
ListJobParameterDefinitionsCommandInput,
|
|
248
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
249
|
+
} from "./commands/ListJobParameterDefinitionsCommand";
|
|
246
250
|
import {
|
|
247
251
|
ListJobsCommandInput,
|
|
248
252
|
ListJobsCommandOutput,
|
|
@@ -1204,6 +1208,19 @@ export interface Deadline {
|
|
|
1204
1208
|
options: __HttpHandlerOptions,
|
|
1205
1209
|
cb: (err: any, data?: ListJobMembersCommandOutput) => void
|
|
1206
1210
|
): void;
|
|
1211
|
+
listJobParameterDefinitions(
|
|
1212
|
+
args: ListJobParameterDefinitionsCommandInput,
|
|
1213
|
+
options?: __HttpHandlerOptions
|
|
1214
|
+
): Promise<ListJobParameterDefinitionsCommandOutput>;
|
|
1215
|
+
listJobParameterDefinitions(
|
|
1216
|
+
args: ListJobParameterDefinitionsCommandInput,
|
|
1217
|
+
cb: (err: any, data?: ListJobParameterDefinitionsCommandOutput) => void
|
|
1218
|
+
): void;
|
|
1219
|
+
listJobParameterDefinitions(
|
|
1220
|
+
args: ListJobParameterDefinitionsCommandInput,
|
|
1221
|
+
options: __HttpHandlerOptions,
|
|
1222
|
+
cb: (err: any, data?: ListJobParameterDefinitionsCommandOutput) => void
|
|
1223
|
+
): void;
|
|
1207
1224
|
listJobs(
|
|
1208
1225
|
args: ListJobsCommandInput,
|
|
1209
1226
|
options?: __HttpHandlerOptions
|
|
@@ -289,6 +289,10 @@ import {
|
|
|
289
289
|
ListJobMembersCommandInput,
|
|
290
290
|
ListJobMembersCommandOutput,
|
|
291
291
|
} from "./commands/ListJobMembersCommand";
|
|
292
|
+
import {
|
|
293
|
+
ListJobParameterDefinitionsCommandInput,
|
|
294
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
295
|
+
} from "./commands/ListJobParameterDefinitionsCommand";
|
|
292
296
|
import {
|
|
293
297
|
ListJobsCommandInput,
|
|
294
298
|
ListJobsCommandOutput,
|
|
@@ -522,6 +526,7 @@ export type ServiceInputTypes =
|
|
|
522
526
|
| ListFleetMembersCommandInput
|
|
523
527
|
| ListFleetsCommandInput
|
|
524
528
|
| ListJobMembersCommandInput
|
|
529
|
+
| ListJobParameterDefinitionsCommandInput
|
|
525
530
|
| ListJobsCommandInput
|
|
526
531
|
| ListLicenseEndpointsCommandInput
|
|
527
532
|
| ListMeteredProductsCommandInput
|
|
@@ -625,6 +630,7 @@ export type ServiceOutputTypes =
|
|
|
625
630
|
| ListFleetMembersCommandOutput
|
|
626
631
|
| ListFleetsCommandOutput
|
|
627
632
|
| ListJobMembersCommandOutput
|
|
633
|
+
| ListJobParameterDefinitionsCommandOutput
|
|
628
634
|
| ListJobsCommandOutput
|
|
629
635
|
| ListLicenseEndpointsCommandOutput
|
|
630
636
|
| ListMeteredProductsCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeadlineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DeadlineClient";
|
|
8
|
+
import {
|
|
9
|
+
ListJobParameterDefinitionsRequest,
|
|
10
|
+
ListJobParameterDefinitionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListJobParameterDefinitionsCommandInput
|
|
15
|
+
extends ListJobParameterDefinitionsRequest {}
|
|
16
|
+
export interface ListJobParameterDefinitionsCommandOutput
|
|
17
|
+
extends ListJobParameterDefinitionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListJobParameterDefinitionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListJobParameterDefinitionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListJobParameterDefinitionsCommandInput,
|
|
24
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
25
|
+
DeadlineClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListJobParameterDefinitionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListJobParameterDefinitionsCommandInput,
|
|
33
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
34
|
+
DeadlineClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListJobParameterDefinitionsCommand extends ListJobParameterDefinitionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListJobParameterDefinitionsRequest;
|
|
44
|
+
output: ListJobParameterDefinitionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListJobParameterDefinitionsCommandInput;
|
|
48
|
+
output: ListJobParameterDefinitionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DeadlineClient";
|
|
8
|
-
import { ListQueuesRequest
|
|
8
|
+
import { ListQueuesRequest } from "../models/models_0";
|
|
9
|
+
import { ListQueuesResponse } from "../models/models_1";
|
|
9
10
|
export { __MetadataBearer };
|
|
10
11
|
export { $Command };
|
|
11
12
|
export interface ListQueuesCommandInput extends ListQueuesRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DeadlineClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListStorageProfilesForQueueRequest,
|
|
10
|
+
ListStorageProfilesForQueueResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListStorageProfilesForQueueCommandInput
|
|
@@ -59,6 +59,7 @@ export * from "./ListFarmsCommand";
|
|
|
59
59
|
export * from "./ListFleetMembersCommand";
|
|
60
60
|
export * from "./ListFleetsCommand";
|
|
61
61
|
export * from "./ListJobMembersCommand";
|
|
62
|
+
export * from "./ListJobParameterDefinitionsCommand";
|
|
62
63
|
export * from "./ListJobsCommand";
|
|
63
64
|
export * from "./ListLicenseEndpointsCommand";
|
|
64
65
|
export * from "./ListMeteredProductsCommand";
|
|
@@ -1016,8 +1016,8 @@ export interface CreateJobRequest {
|
|
|
1016
1016
|
farmId: string | undefined;
|
|
1017
1017
|
queueId: string | undefined;
|
|
1018
1018
|
clientToken?: string;
|
|
1019
|
-
template
|
|
1020
|
-
templateType
|
|
1019
|
+
template?: string;
|
|
1020
|
+
templateType?: JobTemplateType;
|
|
1021
1021
|
priority: number | undefined;
|
|
1022
1022
|
parameters?: Record<string, JobParameter>;
|
|
1023
1023
|
attachments?: Attachments;
|
|
@@ -1025,6 +1025,7 @@ export interface CreateJobRequest {
|
|
|
1025
1025
|
targetTaskRunStatus?: CreateJobTargetTaskRunStatus;
|
|
1026
1026
|
maxFailedTasksCount?: number;
|
|
1027
1027
|
maxRetriesPerTask?: number;
|
|
1028
|
+
sourceJobId?: string;
|
|
1028
1029
|
}
|
|
1029
1030
|
export interface CreateJobResponse {
|
|
1030
1031
|
jobId: string | undefined;
|
|
@@ -1647,6 +1648,7 @@ export interface GetJobResponse {
|
|
|
1647
1648
|
parameters?: Record<string, JobParameter>;
|
|
1648
1649
|
attachments?: Attachments;
|
|
1649
1650
|
description?: string;
|
|
1651
|
+
sourceJobId?: string;
|
|
1650
1652
|
}
|
|
1651
1653
|
export interface GetSessionRequest {
|
|
1652
1654
|
farmId: string | undefined;
|
|
@@ -1899,6 +1901,17 @@ export interface ListJobMembersResponse {
|
|
|
1899
1901
|
members: JobMember[] | undefined;
|
|
1900
1902
|
nextToken?: string;
|
|
1901
1903
|
}
|
|
1904
|
+
export interface ListJobParameterDefinitionsRequest {
|
|
1905
|
+
farmId: string | undefined;
|
|
1906
|
+
jobId: string | undefined;
|
|
1907
|
+
queueId: string | undefined;
|
|
1908
|
+
nextToken?: string;
|
|
1909
|
+
maxResults?: number;
|
|
1910
|
+
}
|
|
1911
|
+
export interface ListJobParameterDefinitionsResponse {
|
|
1912
|
+
jobParameterDefinitions: __DocumentType[] | undefined;
|
|
1913
|
+
nextToken?: string;
|
|
1914
|
+
}
|
|
1902
1915
|
export interface ListJobsRequest {
|
|
1903
1916
|
farmId: string | undefined;
|
|
1904
1917
|
principalId?: string;
|
|
@@ -1923,6 +1936,7 @@ export interface JobSummary {
|
|
|
1923
1936
|
taskRunStatusCounts?: Partial<Record<TaskRunStatus, number>>;
|
|
1924
1937
|
maxFailedTasksCount?: number;
|
|
1925
1938
|
maxRetriesPerTask?: number;
|
|
1939
|
+
sourceJobId?: string;
|
|
1926
1940
|
}
|
|
1927
1941
|
export interface ListJobsResponse {
|
|
1928
1942
|
jobs: JobSummary[] | undefined;
|
|
@@ -2229,16 +2243,6 @@ export interface QueueSummary {
|
|
|
2229
2243
|
updatedAt?: Date;
|
|
2230
2244
|
updatedBy?: string;
|
|
2231
2245
|
}
|
|
2232
|
-
export interface ListQueuesResponse {
|
|
2233
|
-
queues: QueueSummary[] | undefined;
|
|
2234
|
-
nextToken?: string;
|
|
2235
|
-
}
|
|
2236
|
-
export interface ListStorageProfilesForQueueRequest {
|
|
2237
|
-
farmId: string | undefined;
|
|
2238
|
-
queueId: string | undefined;
|
|
2239
|
-
nextToken?: string;
|
|
2240
|
-
maxResults?: number;
|
|
2241
|
-
}
|
|
2242
2246
|
export declare const TaskParameterValueFilterSensitiveLog: (
|
|
2243
2247
|
obj: TaskParameterValue
|
|
2244
2248
|
) => any;
|
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
JobRunAsUser,
|
|
12
12
|
JobTargetTaskRunStatus,
|
|
13
13
|
ParameterSpace,
|
|
14
|
+
QueueSummary,
|
|
14
15
|
StepLifecycleStatus,
|
|
15
16
|
StepTargetTaskRunStatus,
|
|
16
17
|
StorageProfileOperatingSystemFamily,
|
|
@@ -20,6 +21,16 @@ import {
|
|
|
20
21
|
TaskTargetRunStatus,
|
|
21
22
|
WorkerStatus,
|
|
22
23
|
} from "./models_0";
|
|
24
|
+
export interface ListQueuesResponse {
|
|
25
|
+
queues: QueueSummary[] | undefined;
|
|
26
|
+
nextToken?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface ListStorageProfilesForQueueRequest {
|
|
29
|
+
farmId: string | undefined;
|
|
30
|
+
queueId: string | undefined;
|
|
31
|
+
nextToken?: string;
|
|
32
|
+
maxResults?: number;
|
|
33
|
+
}
|
|
23
34
|
export interface ListStorageProfilesForQueueResponse {
|
|
24
35
|
storageProfiles: StorageProfileSummary[] | undefined;
|
|
25
36
|
nextToken?: string;
|
|
@@ -369,6 +380,7 @@ export interface JobSearchSummary {
|
|
|
369
380
|
endedAt?: Date;
|
|
370
381
|
startedAt?: Date;
|
|
371
382
|
jobParameters?: Record<string, JobParameter>;
|
|
383
|
+
sourceJobId?: string;
|
|
372
384
|
}
|
|
373
385
|
export interface SearchJobsResponse {
|
|
374
386
|
jobs: JobSearchSummary[] | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListJobParameterDefinitionsCommandInput,
|
|
4
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
5
|
+
} from "../commands/ListJobParameterDefinitionsCommand";
|
|
6
|
+
import { DeadlinePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListJobParameterDefinitions: (
|
|
8
|
+
config: DeadlinePaginationConfiguration,
|
|
9
|
+
input: ListJobParameterDefinitionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListJobParameterDefinitionsCommandOutput>;
|
|
@@ -7,6 +7,7 @@ export * from "./ListFarmsPaginator";
|
|
|
7
7
|
export * from "./ListFleetMembersPaginator";
|
|
8
8
|
export * from "./ListFleetsPaginator";
|
|
9
9
|
export * from "./ListJobMembersPaginator";
|
|
10
|
+
export * from "./ListJobParameterDefinitionsPaginator";
|
|
10
11
|
export * from "./ListJobsPaginator";
|
|
11
12
|
export * from "./ListLicenseEndpointsPaginator";
|
|
12
13
|
export * from "./ListMeteredProductsPaginator";
|
|
@@ -247,6 +247,10 @@ import {
|
|
|
247
247
|
ListJobMembersCommandInput,
|
|
248
248
|
ListJobMembersCommandOutput,
|
|
249
249
|
} from "../commands/ListJobMembersCommand";
|
|
250
|
+
import {
|
|
251
|
+
ListJobParameterDefinitionsCommandInput,
|
|
252
|
+
ListJobParameterDefinitionsCommandOutput,
|
|
253
|
+
} from "../commands/ListJobParameterDefinitionsCommand";
|
|
250
254
|
import {
|
|
251
255
|
ListJobsCommandInput,
|
|
252
256
|
ListJobsCommandOutput,
|
|
@@ -655,6 +659,10 @@ export declare const se_ListJobMembersCommand: (
|
|
|
655
659
|
input: ListJobMembersCommandInput,
|
|
656
660
|
context: __SerdeContext
|
|
657
661
|
) => Promise<__HttpRequest>;
|
|
662
|
+
export declare const se_ListJobParameterDefinitionsCommand: (
|
|
663
|
+
input: ListJobParameterDefinitionsCommandInput,
|
|
664
|
+
context: __SerdeContext
|
|
665
|
+
) => Promise<__HttpRequest>;
|
|
658
666
|
export declare const se_ListJobsCommand: (
|
|
659
667
|
input: ListJobsCommandInput,
|
|
660
668
|
context: __SerdeContext
|
|
@@ -1063,6 +1071,10 @@ export declare const de_ListJobMembersCommand: (
|
|
|
1063
1071
|
output: __HttpResponse,
|
|
1064
1072
|
context: __SerdeContext
|
|
1065
1073
|
) => Promise<ListJobMembersCommandOutput>;
|
|
1074
|
+
export declare const de_ListJobParameterDefinitionsCommand: (
|
|
1075
|
+
output: __HttpResponse,
|
|
1076
|
+
context: __SerdeContext
|
|
1077
|
+
) => Promise<ListJobParameterDefinitionsCommandOutput>;
|
|
1066
1078
|
export declare const de_ListJobsCommand: (
|
|
1067
1079
|
output: __HttpResponse,
|
|
1068
1080
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-deadline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Deadline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.666.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.666.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.666.0",
|
|
25
|
+
"@aws-sdk/core": "3.666.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.666.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.664.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.664.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.664.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.666.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.664.0",
|
|
32
32
|
"@aws-sdk/types": "3.664.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.664.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.664.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.666.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
37
|
+
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|
|
39
39
|
"@smithy/hash-node": "^3.0.7",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.7",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.9",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.4",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.23",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.7",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.7",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.8",
|
|
47
47
|
"@smithy/node-http-handler": "^3.2.4",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.4",
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
49
|
+
"@smithy/smithy-client": "^3.4.0",
|
|
50
50
|
"@smithy/types": "^3.5.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.7",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.23",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.23",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.3",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.7",
|
|
59
59
|
"@smithy/util-retry": "^3.0.7",
|