@aws-sdk/client-deadline 3.975.0 → 3.978.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +252 -205
- package/dist-es/Deadline.js +83 -1
- package/dist-es/schemas/schemas_0.js +8 -4
- package/dist-types/Deadline.d.ts +265 -1
- package/dist-types/commands/CreateJobCommand.d.ts +2 -0
- package/dist-types/commands/UpdateJobCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +21 -1
- package/dist-types/models/models_1.d.ts +3 -3
- package/dist-types/ts3.4/Deadline.d.ts +300 -1
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +17 -17
package/dist-es/Deadline.js
CHANGED
|
@@ -113,6 +113,45 @@ import { UpdateTaskCommand } from "./commands/UpdateTaskCommand";
|
|
|
113
113
|
import { UpdateWorkerCommand, } from "./commands/UpdateWorkerCommand";
|
|
114
114
|
import { UpdateWorkerScheduleCommand, } from "./commands/UpdateWorkerScheduleCommand";
|
|
115
115
|
import { DeadlineClient } from "./DeadlineClient";
|
|
116
|
+
import { paginateGetSessionsStatisticsAggregation } from "./pagination/GetSessionsStatisticsAggregationPaginator";
|
|
117
|
+
import { paginateListAvailableMeteredProducts } from "./pagination/ListAvailableMeteredProductsPaginator";
|
|
118
|
+
import { paginateListBudgets } from "./pagination/ListBudgetsPaginator";
|
|
119
|
+
import { paginateListFarmMembers } from "./pagination/ListFarmMembersPaginator";
|
|
120
|
+
import { paginateListFarms } from "./pagination/ListFarmsPaginator";
|
|
121
|
+
import { paginateListFleetMembers } from "./pagination/ListFleetMembersPaginator";
|
|
122
|
+
import { paginateListFleets } from "./pagination/ListFleetsPaginator";
|
|
123
|
+
import { paginateListJobMembers } from "./pagination/ListJobMembersPaginator";
|
|
124
|
+
import { paginateListJobParameterDefinitions } from "./pagination/ListJobParameterDefinitionsPaginator";
|
|
125
|
+
import { paginateListJobs } from "./pagination/ListJobsPaginator";
|
|
126
|
+
import { paginateListLicenseEndpoints } from "./pagination/ListLicenseEndpointsPaginator";
|
|
127
|
+
import { paginateListLimits } from "./pagination/ListLimitsPaginator";
|
|
128
|
+
import { paginateListMeteredProducts } from "./pagination/ListMeteredProductsPaginator";
|
|
129
|
+
import { paginateListMonitors } from "./pagination/ListMonitorsPaginator";
|
|
130
|
+
import { paginateListQueueEnvironments } from "./pagination/ListQueueEnvironmentsPaginator";
|
|
131
|
+
import { paginateListQueueFleetAssociations } from "./pagination/ListQueueFleetAssociationsPaginator";
|
|
132
|
+
import { paginateListQueueLimitAssociations } from "./pagination/ListQueueLimitAssociationsPaginator";
|
|
133
|
+
import { paginateListQueueMembers } from "./pagination/ListQueueMembersPaginator";
|
|
134
|
+
import { paginateListQueues } from "./pagination/ListQueuesPaginator";
|
|
135
|
+
import { paginateListSessionActions } from "./pagination/ListSessionActionsPaginator";
|
|
136
|
+
import { paginateListSessionsForWorker } from "./pagination/ListSessionsForWorkerPaginator";
|
|
137
|
+
import { paginateListSessions } from "./pagination/ListSessionsPaginator";
|
|
138
|
+
import { paginateListStepConsumers } from "./pagination/ListStepConsumersPaginator";
|
|
139
|
+
import { paginateListStepDependencies } from "./pagination/ListStepDependenciesPaginator";
|
|
140
|
+
import { paginateListSteps } from "./pagination/ListStepsPaginator";
|
|
141
|
+
import { paginateListStorageProfilesForQueue } from "./pagination/ListStorageProfilesForQueuePaginator";
|
|
142
|
+
import { paginateListStorageProfiles } from "./pagination/ListStorageProfilesPaginator";
|
|
143
|
+
import { paginateListTasks } from "./pagination/ListTasksPaginator";
|
|
144
|
+
import { paginateListWorkers } from "./pagination/ListWorkersPaginator";
|
|
145
|
+
import { waitUntilFleetActive } from "./waiters/waitForFleetActive";
|
|
146
|
+
import { waitUntilJobComplete } from "./waiters/waitForJobComplete";
|
|
147
|
+
import { waitUntilJobCreateComplete } from "./waiters/waitForJobCreateComplete";
|
|
148
|
+
import { waitUntilJobSucceeded } from "./waiters/waitForJobSucceeded";
|
|
149
|
+
import { waitUntilLicenseEndpointDeleted } from "./waiters/waitForLicenseEndpointDeleted";
|
|
150
|
+
import { waitUntilLicenseEndpointValid } from "./waiters/waitForLicenseEndpointValid";
|
|
151
|
+
import { waitUntilQueueFleetAssociationStopped } from "./waiters/waitForQueueFleetAssociationStopped";
|
|
152
|
+
import { waitUntilQueueLimitAssociationStopped } from "./waiters/waitForQueueLimitAssociationStopped";
|
|
153
|
+
import { waitUntilQueueScheduling } from "./waiters/waitForQueueScheduling";
|
|
154
|
+
import { waitUntilQueueSchedulingBlocked } from "./waiters/waitForQueueSchedulingBlocked";
|
|
116
155
|
const commands = {
|
|
117
156
|
AssociateMemberToFarmCommand,
|
|
118
157
|
AssociateMemberToFleetCommand,
|
|
@@ -228,6 +267,49 @@ const commands = {
|
|
|
228
267
|
UpdateWorkerCommand,
|
|
229
268
|
UpdateWorkerScheduleCommand,
|
|
230
269
|
};
|
|
270
|
+
const paginators = {
|
|
271
|
+
paginateGetSessionsStatisticsAggregation,
|
|
272
|
+
paginateListAvailableMeteredProducts,
|
|
273
|
+
paginateListBudgets,
|
|
274
|
+
paginateListFarmMembers,
|
|
275
|
+
paginateListFarms,
|
|
276
|
+
paginateListFleetMembers,
|
|
277
|
+
paginateListFleets,
|
|
278
|
+
paginateListJobMembers,
|
|
279
|
+
paginateListJobParameterDefinitions,
|
|
280
|
+
paginateListJobs,
|
|
281
|
+
paginateListLicenseEndpoints,
|
|
282
|
+
paginateListLimits,
|
|
283
|
+
paginateListMeteredProducts,
|
|
284
|
+
paginateListMonitors,
|
|
285
|
+
paginateListQueueEnvironments,
|
|
286
|
+
paginateListQueueFleetAssociations,
|
|
287
|
+
paginateListQueueLimitAssociations,
|
|
288
|
+
paginateListQueueMembers,
|
|
289
|
+
paginateListQueues,
|
|
290
|
+
paginateListSessionActions,
|
|
291
|
+
paginateListSessions,
|
|
292
|
+
paginateListSessionsForWorker,
|
|
293
|
+
paginateListStepConsumers,
|
|
294
|
+
paginateListStepDependencies,
|
|
295
|
+
paginateListSteps,
|
|
296
|
+
paginateListStorageProfiles,
|
|
297
|
+
paginateListStorageProfilesForQueue,
|
|
298
|
+
paginateListTasks,
|
|
299
|
+
paginateListWorkers,
|
|
300
|
+
};
|
|
301
|
+
const waiters = {
|
|
302
|
+
waitUntilFleetActive,
|
|
303
|
+
waitUntilJobCreateComplete,
|
|
304
|
+
waitUntilJobComplete,
|
|
305
|
+
waitUntilJobSucceeded,
|
|
306
|
+
waitUntilLicenseEndpointValid,
|
|
307
|
+
waitUntilLicenseEndpointDeleted,
|
|
308
|
+
waitUntilQueueSchedulingBlocked,
|
|
309
|
+
waitUntilQueueScheduling,
|
|
310
|
+
waitUntilQueueFleetAssociationStopped,
|
|
311
|
+
waitUntilQueueLimitAssociationStopped,
|
|
312
|
+
};
|
|
231
313
|
export class Deadline extends DeadlineClient {
|
|
232
314
|
}
|
|
233
|
-
createAggregatedClient(commands, Deadline);
|
|
315
|
+
createAggregatedClient(commands, Deadline, { paginators, waiters });
|
|
@@ -260,6 +260,7 @@ const _JD = "JobDescription";
|
|
|
260
260
|
const _JDE = "JobDetailsEntity";
|
|
261
261
|
const _JDEo = "JobDetailsError";
|
|
262
262
|
const _JDI = "JobDetailsIdentifiers";
|
|
263
|
+
const _JDO = "JobDescriptionOverride";
|
|
263
264
|
const _JE = "JobEntity";
|
|
264
265
|
const _JEI = "JobEntityIdentifiers";
|
|
265
266
|
const _JEIU = "JobEntityIdentifiersUnion";
|
|
@@ -609,6 +610,7 @@ const _dBA = "defaultBudgetAction";
|
|
|
609
610
|
const _dC = "dependencyCounts";
|
|
610
611
|
const _dN = "displayName";
|
|
611
612
|
const _dNn = "dnsName";
|
|
613
|
+
const _dO = "descriptionOverride";
|
|
612
614
|
const _dP = "destinationPath";
|
|
613
615
|
const _dR = "dependenciesResolved";
|
|
614
616
|
const _dT = "dateTime";
|
|
@@ -720,6 +722,7 @@ const _mo = "mode";
|
|
|
720
722
|
const _mon = "monitors";
|
|
721
723
|
const _n = "name";
|
|
722
724
|
const _nIO = "nextItemOffset";
|
|
725
|
+
const _nO = "nameOverride";
|
|
723
726
|
const _nT = "nextToken";
|
|
724
727
|
const _o = "operator";
|
|
725
728
|
const _oF = "osFamily";
|
|
@@ -874,6 +877,7 @@ var Document = [0, n0, _Do, 8, 15];
|
|
|
874
877
|
var EnvironmentTemplate = [0, n0, _ET, 8, 0];
|
|
875
878
|
var HostConfigurationScript = [0, n0, _HCS, 8, 0];
|
|
876
879
|
var JobDescription = [0, n0, _JD, 8, 0];
|
|
880
|
+
var JobDescriptionOverride = [0, n0, _JDO, 8, 0];
|
|
877
881
|
var JobTemplate = [0, n0, _JT, 8, 0];
|
|
878
882
|
var SecretAccessKey = [0, n0, _SAK, 8, 0];
|
|
879
883
|
var SessionActionProgressMessage = [0, n0, _SAPM, 8, 0];
|
|
@@ -1118,8 +1122,8 @@ export var CreateFleetResponse$ = [3, n0, _CFRrea,
|
|
|
1118
1122
|
];
|
|
1119
1123
|
export var CreateJobRequest$ = [3, n0, _CJR,
|
|
1120
1124
|
0,
|
|
1121
|
-
[_fI, _qI, _pr, _cT, _te, _tT, _p, _at, _sPI, _tTRS, _mFTC, _mRPT, _mWC, _sJI],
|
|
1122
|
-
[[0, 1], [0, 1], 1, [0, { [_hH]: _XACT, [_iT]: 1 }], [() => JobTemplate, 0], 0, [() => JobParameters, 0], [() => Attachments$, 0], 0, 0, 1, 1, 1, 0], 3
|
|
1125
|
+
[_fI, _qI, _pr, _cT, _te, _tT, _p, _at, _sPI, _tTRS, _mFTC, _mRPT, _mWC, _sJI, _nO, _dO],
|
|
1126
|
+
[[0, 1], [0, 1], 1, [0, { [_hH]: _XACT, [_iT]: 1 }], [() => JobTemplate, 0], 0, [() => JobParameters, 0], [() => Attachments$, 0], 0, 0, 1, 1, 1, 0, 0, [() => JobDescriptionOverride, 0]], 3
|
|
1123
1127
|
];
|
|
1124
1128
|
export var CreateJobResponse$ = [3, n0, _CJRr,
|
|
1125
1129
|
0,
|
|
@@ -2447,8 +2451,8 @@ export var UpdateFleetResponse$ = [3, n0, _UFRpda,
|
|
|
2447
2451
|
];
|
|
2448
2452
|
export var UpdateJobRequest$ = [3, n0, _UJR,
|
|
2449
2453
|
0,
|
|
2450
|
-
[_fI, _qI, _jI, _cT, _tTRS, _pr, _mFTC, _mRPT, _lS, _mWC],
|
|
2451
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hH]: _XACT, [_iT]: 1 }], 0, 1, 1, 1, 0, 1], 3
|
|
2454
|
+
[_fI, _qI, _jI, _cT, _tTRS, _pr, _mFTC, _mRPT, _lS, _mWC, _n, _de],
|
|
2455
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hH]: _XACT, [_iT]: 1 }], 0, 1, 1, 1, 0, 1, 0, [() => JobDescriptionOverride, 0]], 3
|
|
2452
2456
|
];
|
|
2453
2457
|
export var UpdateJobResponse$ = [3, n0, _UJRp,
|
|
2454
2458
|
0,
|
package/dist-types/Deadline.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { AssociateMemberToFarmCommandInput, AssociateMemberToFarmCommandOutput } from "./commands/AssociateMemberToFarmCommand";
|
|
3
4
|
import { AssociateMemberToFleetCommandInput, AssociateMemberToFleetCommandOutput } from "./commands/AssociateMemberToFleetCommand";
|
|
4
5
|
import { AssociateMemberToJobCommandInput, AssociateMemberToJobCommandOutput } from "./commands/AssociateMemberToJobCommand";
|
|
@@ -796,6 +797,269 @@ export interface Deadline {
|
|
|
796
797
|
updateWorkerSchedule(args: UpdateWorkerScheduleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkerScheduleCommandOutput>;
|
|
797
798
|
updateWorkerSchedule(args: UpdateWorkerScheduleCommandInput, cb: (err: any, data?: UpdateWorkerScheduleCommandOutput) => void): void;
|
|
798
799
|
updateWorkerSchedule(args: UpdateWorkerScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkerScheduleCommandOutput) => void): void;
|
|
800
|
+
/**
|
|
801
|
+
* @see {@link GetSessionsStatisticsAggregationCommand}
|
|
802
|
+
* @param args - command input.
|
|
803
|
+
* @param paginationConfig - optional pagination config.
|
|
804
|
+
* @returns AsyncIterable of {@link GetSessionsStatisticsAggregationCommandOutput}.
|
|
805
|
+
*/
|
|
806
|
+
paginateGetSessionsStatisticsAggregation(args: GetSessionsStatisticsAggregationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSessionsStatisticsAggregationCommandOutput>;
|
|
807
|
+
/**
|
|
808
|
+
* @see {@link ListAvailableMeteredProductsCommand}
|
|
809
|
+
* @param args - command input.
|
|
810
|
+
* @param paginationConfig - optional pagination config.
|
|
811
|
+
* @returns AsyncIterable of {@link ListAvailableMeteredProductsCommandOutput}.
|
|
812
|
+
*/
|
|
813
|
+
paginateListAvailableMeteredProducts(args?: ListAvailableMeteredProductsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAvailableMeteredProductsCommandOutput>;
|
|
814
|
+
/**
|
|
815
|
+
* @see {@link ListBudgetsCommand}
|
|
816
|
+
* @param args - command input.
|
|
817
|
+
* @param paginationConfig - optional pagination config.
|
|
818
|
+
* @returns AsyncIterable of {@link ListBudgetsCommandOutput}.
|
|
819
|
+
*/
|
|
820
|
+
paginateListBudgets(args: ListBudgetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBudgetsCommandOutput>;
|
|
821
|
+
/**
|
|
822
|
+
* @see {@link ListFarmMembersCommand}
|
|
823
|
+
* @param args - command input.
|
|
824
|
+
* @param paginationConfig - optional pagination config.
|
|
825
|
+
* @returns AsyncIterable of {@link ListFarmMembersCommandOutput}.
|
|
826
|
+
*/
|
|
827
|
+
paginateListFarmMembers(args: ListFarmMembersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFarmMembersCommandOutput>;
|
|
828
|
+
/**
|
|
829
|
+
* @see {@link ListFarmsCommand}
|
|
830
|
+
* @param args - command input.
|
|
831
|
+
* @param paginationConfig - optional pagination config.
|
|
832
|
+
* @returns AsyncIterable of {@link ListFarmsCommandOutput}.
|
|
833
|
+
*/
|
|
834
|
+
paginateListFarms(args?: ListFarmsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFarmsCommandOutput>;
|
|
835
|
+
/**
|
|
836
|
+
* @see {@link ListFleetMembersCommand}
|
|
837
|
+
* @param args - command input.
|
|
838
|
+
* @param paginationConfig - optional pagination config.
|
|
839
|
+
* @returns AsyncIterable of {@link ListFleetMembersCommandOutput}.
|
|
840
|
+
*/
|
|
841
|
+
paginateListFleetMembers(args: ListFleetMembersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetMembersCommandOutput>;
|
|
842
|
+
/**
|
|
843
|
+
* @see {@link ListFleetsCommand}
|
|
844
|
+
* @param args - command input.
|
|
845
|
+
* @param paginationConfig - optional pagination config.
|
|
846
|
+
* @returns AsyncIterable of {@link ListFleetsCommandOutput}.
|
|
847
|
+
*/
|
|
848
|
+
paginateListFleets(args: ListFleetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFleetsCommandOutput>;
|
|
849
|
+
/**
|
|
850
|
+
* @see {@link ListJobMembersCommand}
|
|
851
|
+
* @param args - command input.
|
|
852
|
+
* @param paginationConfig - optional pagination config.
|
|
853
|
+
* @returns AsyncIterable of {@link ListJobMembersCommandOutput}.
|
|
854
|
+
*/
|
|
855
|
+
paginateListJobMembers(args: ListJobMembersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJobMembersCommandOutput>;
|
|
856
|
+
/**
|
|
857
|
+
* @see {@link ListJobParameterDefinitionsCommand}
|
|
858
|
+
* @param args - command input.
|
|
859
|
+
* @param paginationConfig - optional pagination config.
|
|
860
|
+
* @returns AsyncIterable of {@link ListJobParameterDefinitionsCommandOutput}.
|
|
861
|
+
*/
|
|
862
|
+
paginateListJobParameterDefinitions(args: ListJobParameterDefinitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJobParameterDefinitionsCommandOutput>;
|
|
863
|
+
/**
|
|
864
|
+
* @see {@link ListJobsCommand}
|
|
865
|
+
* @param args - command input.
|
|
866
|
+
* @param paginationConfig - optional pagination config.
|
|
867
|
+
* @returns AsyncIterable of {@link ListJobsCommandOutput}.
|
|
868
|
+
*/
|
|
869
|
+
paginateListJobs(args: ListJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJobsCommandOutput>;
|
|
870
|
+
/**
|
|
871
|
+
* @see {@link ListLicenseEndpointsCommand}
|
|
872
|
+
* @param args - command input.
|
|
873
|
+
* @param paginationConfig - optional pagination config.
|
|
874
|
+
* @returns AsyncIterable of {@link ListLicenseEndpointsCommandOutput}.
|
|
875
|
+
*/
|
|
876
|
+
paginateListLicenseEndpoints(args?: ListLicenseEndpointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLicenseEndpointsCommandOutput>;
|
|
877
|
+
/**
|
|
878
|
+
* @see {@link ListLimitsCommand}
|
|
879
|
+
* @param args - command input.
|
|
880
|
+
* @param paginationConfig - optional pagination config.
|
|
881
|
+
* @returns AsyncIterable of {@link ListLimitsCommandOutput}.
|
|
882
|
+
*/
|
|
883
|
+
paginateListLimits(args: ListLimitsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLimitsCommandOutput>;
|
|
884
|
+
/**
|
|
885
|
+
* @see {@link ListMeteredProductsCommand}
|
|
886
|
+
* @param args - command input.
|
|
887
|
+
* @param paginationConfig - optional pagination config.
|
|
888
|
+
* @returns AsyncIterable of {@link ListMeteredProductsCommandOutput}.
|
|
889
|
+
*/
|
|
890
|
+
paginateListMeteredProducts(args: ListMeteredProductsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMeteredProductsCommandOutput>;
|
|
891
|
+
/**
|
|
892
|
+
* @see {@link ListMonitorsCommand}
|
|
893
|
+
* @param args - command input.
|
|
894
|
+
* @param paginationConfig - optional pagination config.
|
|
895
|
+
* @returns AsyncIterable of {@link ListMonitorsCommandOutput}.
|
|
896
|
+
*/
|
|
897
|
+
paginateListMonitors(args?: ListMonitorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMonitorsCommandOutput>;
|
|
898
|
+
/**
|
|
899
|
+
* @see {@link ListQueueEnvironmentsCommand}
|
|
900
|
+
* @param args - command input.
|
|
901
|
+
* @param paginationConfig - optional pagination config.
|
|
902
|
+
* @returns AsyncIterable of {@link ListQueueEnvironmentsCommandOutput}.
|
|
903
|
+
*/
|
|
904
|
+
paginateListQueueEnvironments(args: ListQueueEnvironmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueueEnvironmentsCommandOutput>;
|
|
905
|
+
/**
|
|
906
|
+
* @see {@link ListQueueFleetAssociationsCommand}
|
|
907
|
+
* @param args - command input.
|
|
908
|
+
* @param paginationConfig - optional pagination config.
|
|
909
|
+
* @returns AsyncIterable of {@link ListQueueFleetAssociationsCommandOutput}.
|
|
910
|
+
*/
|
|
911
|
+
paginateListQueueFleetAssociations(args: ListQueueFleetAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueueFleetAssociationsCommandOutput>;
|
|
912
|
+
/**
|
|
913
|
+
* @see {@link ListQueueLimitAssociationsCommand}
|
|
914
|
+
* @param args - command input.
|
|
915
|
+
* @param paginationConfig - optional pagination config.
|
|
916
|
+
* @returns AsyncIterable of {@link ListQueueLimitAssociationsCommandOutput}.
|
|
917
|
+
*/
|
|
918
|
+
paginateListQueueLimitAssociations(args: ListQueueLimitAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueueLimitAssociationsCommandOutput>;
|
|
919
|
+
/**
|
|
920
|
+
* @see {@link ListQueueMembersCommand}
|
|
921
|
+
* @param args - command input.
|
|
922
|
+
* @param paginationConfig - optional pagination config.
|
|
923
|
+
* @returns AsyncIterable of {@link ListQueueMembersCommandOutput}.
|
|
924
|
+
*/
|
|
925
|
+
paginateListQueueMembers(args: ListQueueMembersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueueMembersCommandOutput>;
|
|
926
|
+
/**
|
|
927
|
+
* @see {@link ListQueuesCommand}
|
|
928
|
+
* @param args - command input.
|
|
929
|
+
* @param paginationConfig - optional pagination config.
|
|
930
|
+
* @returns AsyncIterable of {@link ListQueuesCommandOutput}.
|
|
931
|
+
*/
|
|
932
|
+
paginateListQueues(args: ListQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueuesCommandOutput>;
|
|
933
|
+
/**
|
|
934
|
+
* @see {@link ListSessionActionsCommand}
|
|
935
|
+
* @param args - command input.
|
|
936
|
+
* @param paginationConfig - optional pagination config.
|
|
937
|
+
* @returns AsyncIterable of {@link ListSessionActionsCommandOutput}.
|
|
938
|
+
*/
|
|
939
|
+
paginateListSessionActions(args: ListSessionActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionActionsCommandOutput>;
|
|
940
|
+
/**
|
|
941
|
+
* @see {@link ListSessionsCommand}
|
|
942
|
+
* @param args - command input.
|
|
943
|
+
* @param paginationConfig - optional pagination config.
|
|
944
|
+
* @returns AsyncIterable of {@link ListSessionsCommandOutput}.
|
|
945
|
+
*/
|
|
946
|
+
paginateListSessions(args: ListSessionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionsCommandOutput>;
|
|
947
|
+
/**
|
|
948
|
+
* @see {@link ListSessionsForWorkerCommand}
|
|
949
|
+
* @param args - command input.
|
|
950
|
+
* @param paginationConfig - optional pagination config.
|
|
951
|
+
* @returns AsyncIterable of {@link ListSessionsForWorkerCommandOutput}.
|
|
952
|
+
*/
|
|
953
|
+
paginateListSessionsForWorker(args: ListSessionsForWorkerCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSessionsForWorkerCommandOutput>;
|
|
954
|
+
/**
|
|
955
|
+
* @see {@link ListStepConsumersCommand}
|
|
956
|
+
* @param args - command input.
|
|
957
|
+
* @param paginationConfig - optional pagination config.
|
|
958
|
+
* @returns AsyncIterable of {@link ListStepConsumersCommandOutput}.
|
|
959
|
+
*/
|
|
960
|
+
paginateListStepConsumers(args: ListStepConsumersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStepConsumersCommandOutput>;
|
|
961
|
+
/**
|
|
962
|
+
* @see {@link ListStepDependenciesCommand}
|
|
963
|
+
* @param args - command input.
|
|
964
|
+
* @param paginationConfig - optional pagination config.
|
|
965
|
+
* @returns AsyncIterable of {@link ListStepDependenciesCommandOutput}.
|
|
966
|
+
*/
|
|
967
|
+
paginateListStepDependencies(args: ListStepDependenciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStepDependenciesCommandOutput>;
|
|
968
|
+
/**
|
|
969
|
+
* @see {@link ListStepsCommand}
|
|
970
|
+
* @param args - command input.
|
|
971
|
+
* @param paginationConfig - optional pagination config.
|
|
972
|
+
* @returns AsyncIterable of {@link ListStepsCommandOutput}.
|
|
973
|
+
*/
|
|
974
|
+
paginateListSteps(args: ListStepsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStepsCommandOutput>;
|
|
975
|
+
/**
|
|
976
|
+
* @see {@link ListStorageProfilesCommand}
|
|
977
|
+
* @param args - command input.
|
|
978
|
+
* @param paginationConfig - optional pagination config.
|
|
979
|
+
* @returns AsyncIterable of {@link ListStorageProfilesCommandOutput}.
|
|
980
|
+
*/
|
|
981
|
+
paginateListStorageProfiles(args: ListStorageProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStorageProfilesCommandOutput>;
|
|
982
|
+
/**
|
|
983
|
+
* @see {@link ListStorageProfilesForQueueCommand}
|
|
984
|
+
* @param args - command input.
|
|
985
|
+
* @param paginationConfig - optional pagination config.
|
|
986
|
+
* @returns AsyncIterable of {@link ListStorageProfilesForQueueCommandOutput}.
|
|
987
|
+
*/
|
|
988
|
+
paginateListStorageProfilesForQueue(args: ListStorageProfilesForQueueCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStorageProfilesForQueueCommandOutput>;
|
|
989
|
+
/**
|
|
990
|
+
* @see {@link ListTasksCommand}
|
|
991
|
+
* @param args - command input.
|
|
992
|
+
* @param paginationConfig - optional pagination config.
|
|
993
|
+
* @returns AsyncIterable of {@link ListTasksCommandOutput}.
|
|
994
|
+
*/
|
|
995
|
+
paginateListTasks(args: ListTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTasksCommandOutput>;
|
|
996
|
+
/**
|
|
997
|
+
* @see {@link ListWorkersCommand}
|
|
998
|
+
* @param args - command input.
|
|
999
|
+
* @param paginationConfig - optional pagination config.
|
|
1000
|
+
* @returns AsyncIterable of {@link ListWorkersCommandOutput}.
|
|
1001
|
+
*/
|
|
1002
|
+
paginateListWorkers(args: ListWorkersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkersCommandOutput>;
|
|
1003
|
+
/**
|
|
1004
|
+
* @see {@link GetFleetCommand}
|
|
1005
|
+
* @param args - command input.
|
|
1006
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1007
|
+
*/
|
|
1008
|
+
waitUntilFleetActive(args: GetFleetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1009
|
+
/**
|
|
1010
|
+
* @see {@link GetJobCommand}
|
|
1011
|
+
* @param args - command input.
|
|
1012
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1013
|
+
*/
|
|
1014
|
+
waitUntilJobCreateComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1015
|
+
/**
|
|
1016
|
+
* @see {@link GetJobCommand}
|
|
1017
|
+
* @param args - command input.
|
|
1018
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1019
|
+
*/
|
|
1020
|
+
waitUntilJobComplete(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1021
|
+
/**
|
|
1022
|
+
* @see {@link GetJobCommand}
|
|
1023
|
+
* @param args - command input.
|
|
1024
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1025
|
+
*/
|
|
1026
|
+
waitUntilJobSucceeded(args: GetJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1027
|
+
/**
|
|
1028
|
+
* @see {@link GetLicenseEndpointCommand}
|
|
1029
|
+
* @param args - command input.
|
|
1030
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1031
|
+
*/
|
|
1032
|
+
waitUntilLicenseEndpointValid(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1033
|
+
/**
|
|
1034
|
+
* @see {@link GetLicenseEndpointCommand}
|
|
1035
|
+
* @param args - command input.
|
|
1036
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1037
|
+
*/
|
|
1038
|
+
waitUntilLicenseEndpointDeleted(args: GetLicenseEndpointCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1039
|
+
/**
|
|
1040
|
+
* @see {@link GetQueueCommand}
|
|
1041
|
+
* @param args - command input.
|
|
1042
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1043
|
+
*/
|
|
1044
|
+
waitUntilQueueSchedulingBlocked(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1045
|
+
/**
|
|
1046
|
+
* @see {@link GetQueueCommand}
|
|
1047
|
+
* @param args - command input.
|
|
1048
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1049
|
+
*/
|
|
1050
|
+
waitUntilQueueScheduling(args: GetQueueCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1051
|
+
/**
|
|
1052
|
+
* @see {@link GetQueueFleetAssociationCommand}
|
|
1053
|
+
* @param args - command input.
|
|
1054
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1055
|
+
*/
|
|
1056
|
+
waitUntilQueueFleetAssociationStopped(args: GetQueueFleetAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
1057
|
+
/**
|
|
1058
|
+
* @see {@link GetQueueLimitAssociationCommand}
|
|
1059
|
+
* @param args - command input.
|
|
1060
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
1061
|
+
*/
|
|
1062
|
+
waitUntilQueueLimitAssociationStopped(args: GetQueueLimitAssociationCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Deadline>, "client">): Promise<WaiterResult>;
|
|
799
1063
|
}
|
|
800
1064
|
/**
|
|
801
1065
|
* <p>The Amazon Web Services Deadline Cloud API provides infrastructure and centralized management for your projects. Use the Deadline Cloud API to onboard users, assign projects, and attach permissions specific to their job function.</p> <p>With Deadline Cloud, content production teams can deploy resources for their workforce securely in the cloud, reducing the costs of added physical infrastructure. Keep your content production operations secure, while allowing your contributors to access the tools they need, such as scalable high-speed storage, licenses, and cost management services.</p>
|
|
@@ -72,6 +72,8 @@ declare const CreateJobCommand_base: {
|
|
|
72
72
|
* maxRetriesPerTask: Number("int"),
|
|
73
73
|
* maxWorkerCount: Number("int"),
|
|
74
74
|
* sourceJobId: "STRING_VALUE",
|
|
75
|
+
* nameOverride: "STRING_VALUE",
|
|
76
|
+
* descriptionOverride: "STRING_VALUE",
|
|
75
77
|
* };
|
|
76
78
|
* const command = new CreateJobCommand(input);
|
|
77
79
|
* const response = await client.send(command);
|
|
@@ -44,6 +44,8 @@ declare const UpdateJobCommand_base: {
|
|
|
44
44
|
* maxRetriesPerTask: Number("int"),
|
|
45
45
|
* lifecycleStatus: "ARCHIVED",
|
|
46
46
|
* maxWorkerCount: Number("int"),
|
|
47
|
+
* name: "STRING_VALUE",
|
|
48
|
+
* description: "STRING_VALUE",
|
|
47
49
|
* farmId: "STRING_VALUE", // required
|
|
48
50
|
* queueId: "STRING_VALUE", // required
|
|
49
51
|
* jobId: "STRING_VALUE", // required
|
|
@@ -2507,6 +2507,16 @@ export interface CreateJobRequest {
|
|
|
2507
2507
|
* @public
|
|
2508
2508
|
*/
|
|
2509
2509
|
sourceJobId?: string | undefined;
|
|
2510
|
+
/**
|
|
2511
|
+
* <p>A custom name to override the job name derived from the job template.</p>
|
|
2512
|
+
* @public
|
|
2513
|
+
*/
|
|
2514
|
+
nameOverride?: string | undefined;
|
|
2515
|
+
/**
|
|
2516
|
+
* <p>A custom description to override the job description derived from the job template.</p>
|
|
2517
|
+
* @public
|
|
2518
|
+
*/
|
|
2519
|
+
descriptionOverride?: string | undefined;
|
|
2510
2520
|
}
|
|
2511
2521
|
/**
|
|
2512
2522
|
* @public
|
|
@@ -6676,7 +6686,7 @@ export interface UpdateJobRequest {
|
|
|
6676
6686
|
*/
|
|
6677
6687
|
targetTaskRunStatus?: JobTargetTaskRunStatus | undefined;
|
|
6678
6688
|
/**
|
|
6679
|
-
* <p>The job priority
|
|
6689
|
+
* <p>The updated job priority.</p>
|
|
6680
6690
|
* @public
|
|
6681
6691
|
*/
|
|
6682
6692
|
priority?: number | undefined;
|
|
@@ -6700,6 +6710,16 @@ export interface UpdateJobRequest {
|
|
|
6700
6710
|
* @public
|
|
6701
6711
|
*/
|
|
6702
6712
|
maxWorkerCount?: number | undefined;
|
|
6713
|
+
/**
|
|
6714
|
+
* <p>The updated job name.</p>
|
|
6715
|
+
* @public
|
|
6716
|
+
*/
|
|
6717
|
+
name?: string | undefined;
|
|
6718
|
+
/**
|
|
6719
|
+
* <p>The updated job description.</p>
|
|
6720
|
+
* @public
|
|
6721
|
+
*/
|
|
6722
|
+
description?: string | undefined;
|
|
6703
6723
|
/**
|
|
6704
6724
|
* <p>The farm ID of the job to update.</p>
|
|
6705
6725
|
* @public
|
|
@@ -568,7 +568,7 @@ export interface StringFilterExpression {
|
|
|
568
568
|
value: string | undefined;
|
|
569
569
|
}
|
|
570
570
|
/**
|
|
571
|
-
* <p>Searches for a
|
|
571
|
+
* <p>Searches for a particular list of strings.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
574
|
export interface StringListFilterExpression {
|
|
@@ -578,7 +578,7 @@ export interface StringListFilterExpression {
|
|
|
578
578
|
*/
|
|
579
579
|
name: string | undefined;
|
|
580
580
|
/**
|
|
581
|
-
* <p>The type of comparison to use for this search
|
|
581
|
+
* <p>The type of comparison to use for this search.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
584
|
operator: ComparisonOperator | undefined;
|
|
@@ -1351,7 +1351,7 @@ export declare namespace SearchFilterExpression {
|
|
|
1351
1351
|
$unknown?: never;
|
|
1352
1352
|
}
|
|
1353
1353
|
/**
|
|
1354
|
-
* <p>Filters by a list of
|
|
1354
|
+
* <p>Filters by a list of strings.</p>
|
|
1355
1355
|
* @public
|
|
1356
1356
|
*/
|
|
1357
1357
|
interface StringListFilterMember {
|