@aws-sdk/client-deadline 3.1054.0 → 3.1056.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 +21 -0
- package/dist-cjs/index.js +58 -0
- package/dist-cjs/schemas/schemas_0.js +88 -11
- package/dist-es/Deadline.js +8 -0
- package/dist-es/commands/DeleteVolumeCommand.js +16 -0
- package/dist-es/commands/GetVolumeCommand.js +16 -0
- package/dist-es/commands/ListVolumesCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListVolumesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +78 -2
- package/dist-types/Deadline.d.ts +28 -0
- package/dist-types/DeadlineClient.d.ts +5 -2
- package/dist-types/commands/CreateFleetCommand.d.ts +7 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +109 -0
- package/dist-types/commands/GetFleetCommand.d.ts +7 -0
- package/dist-types/commands/GetVolumeCommand.d.ts +121 -0
- package/dist-types/commands/ListFleetsCommand.d.ts +7 -0
- package/dist-types/commands/ListStepConsumersCommand.d.ts +2 -1
- package/dist-types/commands/ListStepDependenciesCommand.d.ts +1 -1
- package/dist-types/commands/ListStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +1 -2
- package/dist-types/commands/ListVolumesCommand.d.ts +119 -0
- package/dist-types/commands/UpdateFleetCommand.d.ts +7 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +26 -3
- package/dist-types/models/models_0.d.ts +243 -249
- package/dist-types/models/models_1.d.ts +251 -4
- package/dist-types/pagination/ListVolumesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/Deadline.d.ts +58 -0
- package/dist-types/ts3.4/DeadlineClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetVolumeCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/ListStepConsumersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStepDependenciesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTasksCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListVolumesCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +56 -56
- package/dist-types/ts3.4/models/models_1.d.ts +59 -0
- package/dist-types/ts3.4/pagination/ListVolumesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +6 -6
|
@@ -42,6 +42,7 @@ export * from "./DeleteQueueEnvironmentCommand";
|
|
|
42
42
|
export * from "./DeleteQueueFleetAssociationCommand";
|
|
43
43
|
export * from "./DeleteQueueLimitAssociationCommand";
|
|
44
44
|
export * from "./DeleteStorageProfileCommand";
|
|
45
|
+
export * from "./DeleteVolumeCommand";
|
|
45
46
|
export * from "./DeleteWorkerCommand";
|
|
46
47
|
export * from "./DisassociateMemberFromFarmCommand";
|
|
47
48
|
export * from "./DisassociateMemberFromFleetCommand";
|
|
@@ -66,6 +67,7 @@ export * from "./GetStepCommand";
|
|
|
66
67
|
export * from "./GetStorageProfileCommand";
|
|
67
68
|
export * from "./GetStorageProfileForQueueCommand";
|
|
68
69
|
export * from "./GetTaskCommand";
|
|
70
|
+
export * from "./GetVolumeCommand";
|
|
69
71
|
export * from "./GetWorkerCommand";
|
|
70
72
|
export * from "./ListAvailableMeteredProductsCommand";
|
|
71
73
|
export * from "./ListBudgetsCommand";
|
|
@@ -95,6 +97,7 @@ export * from "./ListStorageProfilesCommand";
|
|
|
95
97
|
export * from "./ListStorageProfilesForQueueCommand";
|
|
96
98
|
export * from "./ListTagsForResourceCommand";
|
|
97
99
|
export * from "./ListTasksCommand";
|
|
100
|
+
export * from "./ListVolumesCommand";
|
|
98
101
|
export * from "./ListWorkersCommand";
|
|
99
102
|
export * from "./PutMeteredProductCommand";
|
|
100
103
|
export * from "./SearchJobsCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -300,6 +300,16 @@ export const FleetStatus = {
|
|
|
300
300
|
UPDATE_FAILED: "UPDATE_FAILED",
|
|
301
301
|
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
302
302
|
};
|
|
303
|
+
export const VolumeState = {
|
|
304
|
+
AVAILABLE: "AVAILABLE",
|
|
305
|
+
IN_USE: "IN_USE",
|
|
306
|
+
PENDING_ATTACHMENT: "PENDING_ATTACHMENT",
|
|
307
|
+
PENDING_CREATION: "PENDING_CREATION",
|
|
308
|
+
PENDING_DELETION: "PENDING_DELETION",
|
|
309
|
+
};
|
|
310
|
+
export const EbsVolumeType = {
|
|
311
|
+
GP3: "gp3",
|
|
312
|
+
};
|
|
303
313
|
export const UpdatedWorkerStatus = {
|
|
304
314
|
STARTED: "STARTED",
|
|
305
315
|
STOPPED: "STOPPED",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListVolumesCommand } from "../commands/ListVolumesCommand";
|
|
3
|
+
import { DeadlineClient } from "../DeadlineClient";
|
|
4
|
+
export const paginateListVolumes = createPaginator(DeadlineClient, ListVolumesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -27,4 +27,5 @@ export * from "./ListStepsPaginator";
|
|
|
27
27
|
export * from "./ListStorageProfilesPaginator";
|
|
28
28
|
export * from "./ListStorageProfilesForQueuePaginator";
|
|
29
29
|
export * from "./ListTasksPaginator";
|
|
30
|
+
export * from "./ListVolumesPaginator";
|
|
30
31
|
export * from "./ListWorkersPaginator";
|
|
@@ -226,6 +226,9 @@ const _DSP = "DeleteStorageProfile";
|
|
|
226
226
|
const _DSPR = "DeleteStorageProfileRequest";
|
|
227
227
|
const _DSPRe = "DeleteStorageProfileResponse";
|
|
228
228
|
const _DTFE = "DateTimeFilterExpression";
|
|
229
|
+
const _DV = "DeleteVolume";
|
|
230
|
+
const _DVR = "DeleteVolumeRequest";
|
|
231
|
+
const _DVRe = "DeleteVolumeResponse";
|
|
229
232
|
const _DW = "DeleteWorker";
|
|
230
233
|
const _DWR = "DeleteWorkerRequest";
|
|
231
234
|
const _DWRe = "DeleteWorkerResponse";
|
|
@@ -315,6 +318,9 @@ const _GSe = "GetStep";
|
|
|
315
318
|
const _GT = "GetTask";
|
|
316
319
|
const _GTR = "GetTaskRequest";
|
|
317
320
|
const _GTRe = "GetTaskResponse";
|
|
321
|
+
const _GV = "GetVolume";
|
|
322
|
+
const _GVR = "GetVolumeRequest";
|
|
323
|
+
const _GVRe = "GetVolumeResponse";
|
|
318
324
|
const _GW = "GetWorker";
|
|
319
325
|
const _GWR = "GetWorkerRequest";
|
|
320
326
|
const _GWRe = "GetWorkerResponse";
|
|
@@ -436,6 +442,9 @@ const _LTFRR = "ListTagsForResourceRequest";
|
|
|
436
442
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
437
443
|
const _LTR = "ListTasksRequest";
|
|
438
444
|
const _LTRi = "ListTasksResponse";
|
|
445
|
+
const _LV = "ListVolumes";
|
|
446
|
+
const _LVR = "ListVolumesRequest";
|
|
447
|
+
const _LVRi = "ListVolumesResponse";
|
|
439
448
|
const _LW = "ListWorkers";
|
|
440
449
|
const _LWR = "ListWorkersRequest";
|
|
441
450
|
const _LWRi = "ListWorkersResponse";
|
|
@@ -457,6 +466,7 @@ const _PMRa = "PathMappingRules";
|
|
|
457
466
|
const _PS = "ParameterSpace";
|
|
458
467
|
const _PSE = "ParameterSortExpression";
|
|
459
468
|
const _PU = "PosixUser";
|
|
469
|
+
const _PVC = "PersistentVolumeConfiguration";
|
|
460
470
|
const _QES = "QueueEnvironmentSummary";
|
|
461
471
|
const _QESu = "QueueEnvironmentSummaries";
|
|
462
472
|
const _QFAS = "QueueFleetAssociationSummary";
|
|
@@ -621,6 +631,8 @@ const _VCCR = "VCpuCountRange";
|
|
|
621
631
|
const _VE = "ValidationException";
|
|
622
632
|
const _VEF = "ValidationExceptionField";
|
|
623
633
|
const _VEFL = "ValidationExceptionFieldList";
|
|
634
|
+
const _VS = "VolumeSummary";
|
|
635
|
+
const _VSo = "VolumeSummaries";
|
|
624
636
|
const _WAC = "WorkerAmountCapability";
|
|
625
637
|
const _WACL = "WorkerAmountCapabilityList";
|
|
626
638
|
const _WACLo = "WorkerAttributeCapabilityList";
|
|
@@ -660,6 +672,8 @@ const _aT = "acceleratorTypes";
|
|
|
660
672
|
const _aTA = "actionsToAdd";
|
|
661
673
|
const _aTMMB = "acceleratorTotalMemoryMiB";
|
|
662
674
|
const _aTR = "actionsToRemove";
|
|
675
|
+
const _aWI = "attachedWorkerId";
|
|
676
|
+
const _aZI = "availabilityZoneId";
|
|
663
677
|
const _ac = "actions";
|
|
664
678
|
const _am = "amounts";
|
|
665
679
|
const _at = "attributes";
|
|
@@ -710,6 +724,7 @@ const _de = "description";
|
|
|
710
724
|
const _dep = "dependencies";
|
|
711
725
|
const _e = "error";
|
|
712
726
|
const _eA = "endedAt";
|
|
727
|
+
const _eAx = "expiresAt";
|
|
713
728
|
const _eD = "environmentDetails";
|
|
714
729
|
const _eE = "envEnter";
|
|
715
730
|
const _eEn = "envExit";
|
|
@@ -781,6 +796,7 @@ const _jRAU = "jobRunAsUser";
|
|
|
781
796
|
const _k = "key";
|
|
782
797
|
const _kKA = "kmsKeyArn";
|
|
783
798
|
const _l = "log";
|
|
799
|
+
const _lAA = "lastAssignedAt";
|
|
784
800
|
const _lC = "logConfiguration";
|
|
785
801
|
const _lD = "logDriver";
|
|
786
802
|
const _lE = "licenseEndpoints";
|
|
@@ -788,9 +804,11 @@ const _lEI = "licenseEndpointId";
|
|
|
788
804
|
const _lGN = "logGroupName";
|
|
789
805
|
const _lI = "limitId";
|
|
790
806
|
const _lP = "licenseProduct";
|
|
807
|
+
const _lRA = "lastReleasedAt";
|
|
791
808
|
const _lS = "lifecycleStatus";
|
|
792
809
|
const _lSAI = "latestSessionActionId";
|
|
793
810
|
const _lSM = "lifecycleStatusMessage";
|
|
811
|
+
const _lUTH = "lastUsedTtlHours";
|
|
794
812
|
const _li = "limits";
|
|
795
813
|
const _m = "message";
|
|
796
814
|
const _mC = "maxCount";
|
|
@@ -801,6 +819,7 @@ const _mMB = "memoryMiB";
|
|
|
801
819
|
const _mP = "meteredProducts";
|
|
802
820
|
const _mPO = "maxPriorityOverride";
|
|
803
821
|
const _mPOi = "minPriorityOverride";
|
|
822
|
+
const _mPo = "mountPath";
|
|
804
823
|
const _mR = "maxResults";
|
|
805
824
|
const _mRPT = "maxRetriesPerTask";
|
|
806
825
|
const _mT = "matchType";
|
|
@@ -837,6 +856,7 @@ const _pS = "parameterSpace";
|
|
|
837
856
|
const _pSa = "pageSize";
|
|
838
857
|
const _pSar = "parameterSort";
|
|
839
858
|
const _pT = "principalType";
|
|
859
|
+
const _pVC = "persistentVolumeConfiguration";
|
|
840
860
|
const _pW = "priorityWeight";
|
|
841
861
|
const _pa = "path";
|
|
842
862
|
const _pe = "period";
|
|
@@ -918,6 +938,7 @@ const _ses = "sessions";
|
|
|
918
938
|
const _set = "settings";
|
|
919
939
|
const _st = "status";
|
|
920
940
|
const _sta = "statistics";
|
|
941
|
+
const _stat = "state";
|
|
921
942
|
const _ste = "steps";
|
|
922
943
|
const _str = "string";
|
|
923
944
|
const _su = "subdomain";
|
|
@@ -960,8 +981,11 @@ const _v = "values";
|
|
|
960
981
|
const _vC = "vpcConfiguration";
|
|
961
982
|
const _vCC = "vCpuCount";
|
|
962
983
|
const _vI = "vpcId";
|
|
984
|
+
const _vIo = "volumeId";
|
|
985
|
+
const _vT = "volumeType";
|
|
963
986
|
const _va = "value";
|
|
964
987
|
const _ve = "vendor";
|
|
988
|
+
const _vo = "volumes";
|
|
965
989
|
const _w = "workers";
|
|
966
990
|
const _wB = "weightedBalanced";
|
|
967
991
|
const _wC = "workerCapabilities";
|
|
@@ -1692,6 +1716,16 @@ export var DeleteStorageProfileResponse$ = [3, n0, _DSPRe,
|
|
|
1692
1716
|
[],
|
|
1693
1717
|
[]
|
|
1694
1718
|
];
|
|
1719
|
+
export var DeleteVolumeRequest$ = [3, n0, _DVR,
|
|
1720
|
+
0,
|
|
1721
|
+
[_fI, _fIl, _vIo],
|
|
1722
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
1723
|
+
];
|
|
1724
|
+
export var DeleteVolumeResponse$ = [3, n0, _DVRe,
|
|
1725
|
+
0,
|
|
1726
|
+
[],
|
|
1727
|
+
[]
|
|
1728
|
+
];
|
|
1695
1729
|
export var DeleteWorkerRequest$ = [3, n0, _DWR,
|
|
1696
1730
|
0,
|
|
1697
1731
|
[_fI, _fIl, _wI],
|
|
@@ -2027,6 +2061,16 @@ export var GetTaskResponse$ = [3, n0, _GTRe,
|
|
|
2027
2061
|
[_tI, _cA, _cB, _rS, _tRSa, _fRC, _sAt, _eA, _uA, _uB, _lSAI, _p],
|
|
2028
2062
|
[0, 5, 0, 0, 0, 1, 5, 5, 5, 0, 0, [() => TaskParameters, 0]], 4
|
|
2029
2063
|
];
|
|
2064
|
+
export var GetVolumeRequest$ = [3, n0, _GVR,
|
|
2065
|
+
0,
|
|
2066
|
+
[_fI, _fIl, _vIo],
|
|
2067
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
2068
|
+
];
|
|
2069
|
+
export var GetVolumeResponse$ = [3, n0, _GVRe,
|
|
2070
|
+
0,
|
|
2071
|
+
[_vIo, _fI, _fIl, _stat, _sGB, _aZI, _vT, _cA, _aWI, _io, _tMB, _lAA, _lRA, _eAx],
|
|
2072
|
+
[0, 0, 0, 0, 1, 0, 0, 5, 0, 1, 1, 5, 5, 5], 8
|
|
2073
|
+
];
|
|
2030
2074
|
export var GetWorkerRequest$ = [3, n0, _GWR,
|
|
2031
2075
|
0,
|
|
2032
2076
|
[_fI, _fIl, _wI],
|
|
@@ -2402,6 +2446,16 @@ export var ListTasksResponse$ = [3, n0, _LTRi,
|
|
|
2402
2446
|
[_t, _nT],
|
|
2403
2447
|
[[() => TaskSummaries, 0], 0], 1
|
|
2404
2448
|
];
|
|
2449
|
+
export var ListVolumesRequest$ = [3, n0, _LVR,
|
|
2450
|
+
0,
|
|
2451
|
+
[_fI, _fIl, _nT, _mR],
|
|
2452
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
2453
|
+
];
|
|
2454
|
+
export var ListVolumesResponse$ = [3, n0, _LVRi,
|
|
2455
|
+
0,
|
|
2456
|
+
[_vo, _nT],
|
|
2457
|
+
[() => VolumeSummaries, 0], 1
|
|
2458
|
+
];
|
|
2405
2459
|
export var ListWorkersRequest$ = [3, n0, _LWR,
|
|
2406
2460
|
0,
|
|
2407
2461
|
[_fI, _fIl, _nT, _mR],
|
|
@@ -2457,6 +2511,11 @@ export var PathMappingRule$ = [3, n0, _PMR,
|
|
|
2457
2511
|
[_sPF, _sPo, _dP],
|
|
2458
2512
|
[0, 0, 0], 3
|
|
2459
2513
|
];
|
|
2514
|
+
export var PersistentVolumeConfiguration$ = [3, n0, _PVC,
|
|
2515
|
+
0,
|
|
2516
|
+
[_mPo, _sGB, _io, _tMB, _lUTH],
|
|
2517
|
+
[0, 1, 1, 1, 1], 1
|
|
2518
|
+
];
|
|
2460
2519
|
export var PosixUser$ = [3, n0, _PU,
|
|
2461
2520
|
0,
|
|
2462
2521
|
[_us, _g],
|
|
@@ -2584,8 +2643,8 @@ export var ServiceManagedEc2AutoScalingConfiguration$ = [3, n0, _SMEASC,
|
|
|
2584
2643
|
];
|
|
2585
2644
|
export var ServiceManagedEc2FleetConfiguration$ = [3, n0, _SMEFC,
|
|
2586
2645
|
0,
|
|
2587
|
-
[_iC, _iMO, _vC, _sPI, _aSC],
|
|
2588
|
-
[() => ServiceManagedEc2InstanceCapabilities$, () => ServiceManagedEc2InstanceMarketOptions$, () => VpcConfiguration$, 0, () => ServiceManagedEc2AutoScalingConfiguration$], 2
|
|
2646
|
+
[_iC, _iMO, _vC, _sPI, _pVC, _aSC],
|
|
2647
|
+
[() => ServiceManagedEc2InstanceCapabilities$, () => ServiceManagedEc2InstanceMarketOptions$, () => VpcConfiguration$, 0, () => PersistentVolumeConfiguration$, () => ServiceManagedEc2AutoScalingConfiguration$], 2
|
|
2589
2648
|
];
|
|
2590
2649
|
export var ServiceManagedEc2InstanceCapabilities$ = [3, n0, _SMEIC,
|
|
2591
2650
|
0,
|
|
@@ -2952,6 +3011,11 @@ export var VCpuCountRange$ = [3, n0, _VCCR,
|
|
|
2952
3011
|
[_mi, _ma],
|
|
2953
3012
|
[1, 1], 1
|
|
2954
3013
|
];
|
|
3014
|
+
export var VolumeSummary$ = [3, n0, _VS,
|
|
3015
|
+
0,
|
|
3016
|
+
[_vIo, _fI, _fIl, _stat, _sGB, _aZI, _aWI],
|
|
3017
|
+
[0, 0, 0, 0, 1, 0, 0], 6
|
|
3018
|
+
];
|
|
2955
3019
|
export var VpcConfiguration$ = [3, n0, _VC,
|
|
2956
3020
|
0,
|
|
2957
3021
|
[_rCA],
|
|
@@ -3256,6 +3320,9 @@ var UsageStatistics = 64 | 0;
|
|
|
3256
3320
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
3257
3321
|
0, () => ValidationExceptionField$
|
|
3258
3322
|
];
|
|
3323
|
+
var VolumeSummaries = [1, n0, _VSo,
|
|
3324
|
+
0, () => VolumeSummary$
|
|
3325
|
+
];
|
|
3259
3326
|
var VpcResourceConfigurationArns = 64 | 0;
|
|
3260
3327
|
var WorkerAmountCapabilityList = [1, n0, _WACL,
|
|
3261
3328
|
0, () => WorkerAmountCapability$
|
|
@@ -3516,6 +3583,9 @@ export var DeleteQueueLimitAssociation$ = [9, n0, _DQLA,
|
|
|
3516
3583
|
export var DeleteStorageProfile$ = [9, n0, _DSP,
|
|
3517
3584
|
{ [_end]: ["management."], [_h]: ["DELETE", "/2023-10-12/farms/{farmId}/storage-profiles/{storageProfileId}", 200] }, () => DeleteStorageProfileRequest$, () => DeleteStorageProfileResponse$
|
|
3518
3585
|
];
|
|
3586
|
+
export var DeleteVolume$ = [9, n0, _DV,
|
|
3587
|
+
{ [_end]: ["management."], [_h]: ["DELETE", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes/{volumeId}", 200] }, () => DeleteVolumeRequest$, () => DeleteVolumeResponse$
|
|
3588
|
+
];
|
|
3519
3589
|
export var DeleteWorker$ = [9, n0, _DW,
|
|
3520
3590
|
{ [_end]: ["management."], [_h]: ["DELETE", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/workers/{workerId}", 200] }, () => DeleteWorkerRequest$, () => DeleteWorkerResponse$
|
|
3521
3591
|
];
|
|
@@ -3588,6 +3658,9 @@ export var GetStorageProfileForQueue$ = [9, n0, _GSPFQ,
|
|
|
3588
3658
|
export var GetTask$ = [9, n0, _GT,
|
|
3589
3659
|
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/queues/{queueId}/jobs/{jobId}/steps/{stepId}/tasks/{taskId}", 200] }, () => GetTaskRequest$, () => GetTaskResponse$
|
|
3590
3660
|
];
|
|
3661
|
+
export var GetVolume$ = [9, n0, _GV,
|
|
3662
|
+
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes/{volumeId}", 200] }, () => GetVolumeRequest$, () => GetVolumeResponse$
|
|
3663
|
+
];
|
|
3591
3664
|
export var GetWorker$ = [9, n0, _GW,
|
|
3592
3665
|
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/workers/{workerId}", 200] }, () => GetWorkerRequest$, () => GetWorkerResponse$
|
|
3593
3666
|
];
|
|
@@ -3675,6 +3748,9 @@ export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
|
3675
3748
|
export var ListTasks$ = [9, n0, _LT,
|
|
3676
3749
|
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/queues/{queueId}/jobs/{jobId}/steps/{stepId}/tasks", 200] }, () => ListTasksRequest$, () => ListTasksResponse$
|
|
3677
3750
|
];
|
|
3751
|
+
export var ListVolumes$ = [9, n0, _LV,
|
|
3752
|
+
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/volumes", 200] }, () => ListVolumesRequest$, () => ListVolumesResponse$
|
|
3753
|
+
];
|
|
3678
3754
|
export var ListWorkers$ = [9, n0, _LW,
|
|
3679
3755
|
{ [_end]: ["management."], [_h]: ["GET", "/2023-10-12/farms/{farmId}/fleets/{fleetId}/workers", 200] }, () => ListWorkersRequest$, () => ListWorkersResponse$
|
|
3680
3756
|
];
|
package/dist-types/Deadline.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ import { type DeleteQueueEnvironmentCommandInput, type DeleteQueueEnvironmentCom
|
|
|
44
44
|
import { type DeleteQueueFleetAssociationCommandInput, type DeleteQueueFleetAssociationCommandOutput } from "./commands/DeleteQueueFleetAssociationCommand";
|
|
45
45
|
import { type DeleteQueueLimitAssociationCommandInput, type DeleteQueueLimitAssociationCommandOutput } from "./commands/DeleteQueueLimitAssociationCommand";
|
|
46
46
|
import { type DeleteStorageProfileCommandInput, type DeleteStorageProfileCommandOutput } from "./commands/DeleteStorageProfileCommand";
|
|
47
|
+
import { type DeleteVolumeCommandInput, type DeleteVolumeCommandOutput } from "./commands/DeleteVolumeCommand";
|
|
47
48
|
import { type DeleteWorkerCommandInput, type DeleteWorkerCommandOutput } from "./commands/DeleteWorkerCommand";
|
|
48
49
|
import { type DisassociateMemberFromFarmCommandInput, type DisassociateMemberFromFarmCommandOutput } from "./commands/DisassociateMemberFromFarmCommand";
|
|
49
50
|
import { type DisassociateMemberFromFleetCommandInput, type DisassociateMemberFromFleetCommandOutput } from "./commands/DisassociateMemberFromFleetCommand";
|
|
@@ -68,6 +69,7 @@ import { type GetStepCommandInput, type GetStepCommandOutput } from "./commands/
|
|
|
68
69
|
import { type GetStorageProfileCommandInput, type GetStorageProfileCommandOutput } from "./commands/GetStorageProfileCommand";
|
|
69
70
|
import { type GetStorageProfileForQueueCommandInput, type GetStorageProfileForQueueCommandOutput } from "./commands/GetStorageProfileForQueueCommand";
|
|
70
71
|
import { type GetTaskCommandInput, type GetTaskCommandOutput } from "./commands/GetTaskCommand";
|
|
72
|
+
import { type GetVolumeCommandInput, type GetVolumeCommandOutput } from "./commands/GetVolumeCommand";
|
|
71
73
|
import { type GetWorkerCommandInput, type GetWorkerCommandOutput } from "./commands/GetWorkerCommand";
|
|
72
74
|
import { type ListAvailableMeteredProductsCommandInput, type ListAvailableMeteredProductsCommandOutput } from "./commands/ListAvailableMeteredProductsCommand";
|
|
73
75
|
import { type ListBudgetsCommandInput, type ListBudgetsCommandOutput } from "./commands/ListBudgetsCommand";
|
|
@@ -97,6 +99,7 @@ import { type ListStorageProfilesCommandInput, type ListStorageProfilesCommandOu
|
|
|
97
99
|
import { type ListStorageProfilesForQueueCommandInput, type ListStorageProfilesForQueueCommandOutput } from "./commands/ListStorageProfilesForQueueCommand";
|
|
98
100
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
99
101
|
import { type ListTasksCommandInput, type ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
102
|
+
import { type ListVolumesCommandInput, type ListVolumesCommandOutput } from "./commands/ListVolumesCommand";
|
|
100
103
|
import { type ListWorkersCommandInput, type ListWorkersCommandOutput } from "./commands/ListWorkersCommand";
|
|
101
104
|
import { type PutMeteredProductCommandInput, type PutMeteredProductCommandOutput } from "./commands/PutMeteredProductCommand";
|
|
102
105
|
import { type SearchJobsCommandInput, type SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
|
|
@@ -390,6 +393,12 @@ export interface Deadline {
|
|
|
390
393
|
deleteStorageProfile(args: DeleteStorageProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStorageProfileCommandOutput>;
|
|
391
394
|
deleteStorageProfile(args: DeleteStorageProfileCommandInput, cb: (err: any, data?: DeleteStorageProfileCommandOutput) => void): void;
|
|
392
395
|
deleteStorageProfile(args: DeleteStorageProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStorageProfileCommandOutput) => void): void;
|
|
396
|
+
/**
|
|
397
|
+
* @see {@link DeleteVolumeCommand}
|
|
398
|
+
*/
|
|
399
|
+
deleteVolume(args: DeleteVolumeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVolumeCommandOutput>;
|
|
400
|
+
deleteVolume(args: DeleteVolumeCommandInput, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
|
|
401
|
+
deleteVolume(args: DeleteVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVolumeCommandOutput) => void): void;
|
|
393
402
|
/**
|
|
394
403
|
* @see {@link DeleteWorkerCommand}
|
|
395
404
|
*/
|
|
@@ -534,6 +543,12 @@ export interface Deadline {
|
|
|
534
543
|
getTask(args: GetTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetTaskCommandOutput>;
|
|
535
544
|
getTask(args: GetTaskCommandInput, cb: (err: any, data?: GetTaskCommandOutput) => void): void;
|
|
536
545
|
getTask(args: GetTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTaskCommandOutput) => void): void;
|
|
546
|
+
/**
|
|
547
|
+
* @see {@link GetVolumeCommand}
|
|
548
|
+
*/
|
|
549
|
+
getVolume(args: GetVolumeCommandInput, options?: __HttpHandlerOptions): Promise<GetVolumeCommandOutput>;
|
|
550
|
+
getVolume(args: GetVolumeCommandInput, cb: (err: any, data?: GetVolumeCommandOutput) => void): void;
|
|
551
|
+
getVolume(args: GetVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVolumeCommandOutput) => void): void;
|
|
537
552
|
/**
|
|
538
553
|
* @see {@link GetWorkerCommand}
|
|
539
554
|
*/
|
|
@@ -712,6 +727,12 @@ export interface Deadline {
|
|
|
712
727
|
listTasks(args: ListTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListTasksCommandOutput>;
|
|
713
728
|
listTasks(args: ListTasksCommandInput, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
714
729
|
listTasks(args: ListTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTasksCommandOutput) => void): void;
|
|
730
|
+
/**
|
|
731
|
+
* @see {@link ListVolumesCommand}
|
|
732
|
+
*/
|
|
733
|
+
listVolumes(args: ListVolumesCommandInput, options?: __HttpHandlerOptions): Promise<ListVolumesCommandOutput>;
|
|
734
|
+
listVolumes(args: ListVolumesCommandInput, cb: (err: any, data?: ListVolumesCommandOutput) => void): void;
|
|
735
|
+
listVolumes(args: ListVolumesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVolumesCommandOutput) => void): void;
|
|
715
736
|
/**
|
|
716
737
|
* @see {@link ListWorkersCommand}
|
|
717
738
|
*/
|
|
@@ -1064,6 +1085,13 @@ export interface Deadline {
|
|
|
1064
1085
|
* @returns AsyncIterable of {@link ListTasksCommandOutput}.
|
|
1065
1086
|
*/
|
|
1066
1087
|
paginateListTasks(args: ListTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTasksCommandOutput>;
|
|
1088
|
+
/**
|
|
1089
|
+
* @see {@link ListVolumesCommand}
|
|
1090
|
+
* @param args - command input.
|
|
1091
|
+
* @param paginationConfig - optional pagination config.
|
|
1092
|
+
* @returns AsyncIterable of {@link ListVolumesCommandOutput}.
|
|
1093
|
+
*/
|
|
1094
|
+
paginateListVolumes(args: ListVolumesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListVolumesCommandOutput>;
|
|
1067
1095
|
/**
|
|
1068
1096
|
* @see {@link ListWorkersCommand}
|
|
1069
1097
|
* @param args - command input.
|
|
@@ -50,6 +50,7 @@ import type { DeleteQueueEnvironmentCommandInput, DeleteQueueEnvironmentCommandO
|
|
|
50
50
|
import type { DeleteQueueFleetAssociationCommandInput, DeleteQueueFleetAssociationCommandOutput } from "./commands/DeleteQueueFleetAssociationCommand";
|
|
51
51
|
import type { DeleteQueueLimitAssociationCommandInput, DeleteQueueLimitAssociationCommandOutput } from "./commands/DeleteQueueLimitAssociationCommand";
|
|
52
52
|
import type { DeleteStorageProfileCommandInput, DeleteStorageProfileCommandOutput } from "./commands/DeleteStorageProfileCommand";
|
|
53
|
+
import type { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "./commands/DeleteVolumeCommand";
|
|
53
54
|
import type { DeleteWorkerCommandInput, DeleteWorkerCommandOutput } from "./commands/DeleteWorkerCommand";
|
|
54
55
|
import type { DisassociateMemberFromFarmCommandInput, DisassociateMemberFromFarmCommandOutput } from "./commands/DisassociateMemberFromFarmCommand";
|
|
55
56
|
import type { DisassociateMemberFromFleetCommandInput, DisassociateMemberFromFleetCommandOutput } from "./commands/DisassociateMemberFromFleetCommand";
|
|
@@ -74,6 +75,7 @@ import type { GetStepCommandInput, GetStepCommandOutput } from "./commands/GetSt
|
|
|
74
75
|
import type { GetStorageProfileCommandInput, GetStorageProfileCommandOutput } from "./commands/GetStorageProfileCommand";
|
|
75
76
|
import type { GetStorageProfileForQueueCommandInput, GetStorageProfileForQueueCommandOutput } from "./commands/GetStorageProfileForQueueCommand";
|
|
76
77
|
import type { GetTaskCommandInput, GetTaskCommandOutput } from "./commands/GetTaskCommand";
|
|
78
|
+
import type { GetVolumeCommandInput, GetVolumeCommandOutput } from "./commands/GetVolumeCommand";
|
|
77
79
|
import type { GetWorkerCommandInput, GetWorkerCommandOutput } from "./commands/GetWorkerCommand";
|
|
78
80
|
import type { ListAvailableMeteredProductsCommandInput, ListAvailableMeteredProductsCommandOutput } from "./commands/ListAvailableMeteredProductsCommand";
|
|
79
81
|
import type { ListBudgetsCommandInput, ListBudgetsCommandOutput } from "./commands/ListBudgetsCommand";
|
|
@@ -103,6 +105,7 @@ import type { ListStorageProfilesCommandInput, ListStorageProfilesCommandOutput
|
|
|
103
105
|
import type { ListStorageProfilesForQueueCommandInput, ListStorageProfilesForQueueCommandOutput } from "./commands/ListStorageProfilesForQueueCommand";
|
|
104
106
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
105
107
|
import type { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
108
|
+
import type { ListVolumesCommandInput, ListVolumesCommandOutput } from "./commands/ListVolumesCommand";
|
|
106
109
|
import type { ListWorkersCommandInput, ListWorkersCommandOutput } from "./commands/ListWorkersCommand";
|
|
107
110
|
import type { PutMeteredProductCommandInput, PutMeteredProductCommandOutput } from "./commands/PutMeteredProductCommand";
|
|
108
111
|
import type { SearchJobsCommandInput, SearchJobsCommandOutput } from "./commands/SearchJobsCommand";
|
|
@@ -135,11 +138,11 @@ export { __Client };
|
|
|
135
138
|
/**
|
|
136
139
|
* @public
|
|
137
140
|
*/
|
|
138
|
-
export type ServiceInputTypes = AssociateMemberToFarmCommandInput | AssociateMemberToFleetCommandInput | AssociateMemberToJobCommandInput | AssociateMemberToQueueCommandInput | AssumeFleetRoleForReadCommandInput | AssumeFleetRoleForWorkerCommandInput | AssumeQueueRoleForReadCommandInput | AssumeQueueRoleForUserCommandInput | AssumeQueueRoleForWorkerCommandInput | BatchGetJobCommandInput | BatchGetJobEntityCommandInput | BatchGetSessionActionCommandInput | BatchGetSessionCommandInput | BatchGetStepCommandInput | BatchGetTaskCommandInput | BatchGetWorkerCommandInput | BatchUpdateJobCommandInput | BatchUpdateTaskCommandInput | CopyJobTemplateCommandInput | CreateBudgetCommandInput | CreateFarmCommandInput | CreateFleetCommandInput | CreateJobCommandInput | CreateLicenseEndpointCommandInput | CreateLimitCommandInput | CreateMonitorCommandInput | CreateQueueCommandInput | CreateQueueEnvironmentCommandInput | CreateQueueFleetAssociationCommandInput | CreateQueueLimitAssociationCommandInput | CreateStorageProfileCommandInput | CreateWorkerCommandInput | DeleteBudgetCommandInput | DeleteFarmCommandInput | DeleteFleetCommandInput | DeleteLicenseEndpointCommandInput | DeleteLimitCommandInput | DeleteMeteredProductCommandInput | DeleteMonitorCommandInput | DeleteQueueCommandInput | DeleteQueueEnvironmentCommandInput | DeleteQueueFleetAssociationCommandInput | DeleteQueueLimitAssociationCommandInput | DeleteStorageProfileCommandInput | DeleteWorkerCommandInput | DisassociateMemberFromFarmCommandInput | DisassociateMemberFromFleetCommandInput | DisassociateMemberFromJobCommandInput | DisassociateMemberFromQueueCommandInput | GetBudgetCommandInput | GetFarmCommandInput | GetFleetCommandInput | GetJobCommandInput | GetLicenseEndpointCommandInput | GetLimitCommandInput | GetMonitorCommandInput | GetMonitorSettingsCommandInput | GetQueueCommandInput | GetQueueEnvironmentCommandInput | GetQueueFleetAssociationCommandInput | GetQueueLimitAssociationCommandInput | GetSessionActionCommandInput | GetSessionCommandInput | GetSessionsStatisticsAggregationCommandInput | GetStepCommandInput | GetStorageProfileCommandInput | GetStorageProfileForQueueCommandInput | GetTaskCommandInput | GetWorkerCommandInput | ListAvailableMeteredProductsCommandInput | ListBudgetsCommandInput | ListFarmMembersCommandInput | ListFarmsCommandInput | ListFleetMembersCommandInput | ListFleetsCommandInput | ListJobMembersCommandInput | ListJobParameterDefinitionsCommandInput | ListJobsCommandInput | ListLicenseEndpointsCommandInput | ListLimitsCommandInput | ListMeteredProductsCommandInput | ListMonitorsCommandInput | ListQueueEnvironmentsCommandInput | ListQueueFleetAssociationsCommandInput | ListQueueLimitAssociationsCommandInput | ListQueueMembersCommandInput | ListQueuesCommandInput | ListSessionActionsCommandInput | ListSessionsCommandInput | ListSessionsForWorkerCommandInput | ListStepConsumersCommandInput | ListStepDependenciesCommandInput | ListStepsCommandInput | ListStorageProfilesCommandInput | ListStorageProfilesForQueueCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | ListWorkersCommandInput | PutMeteredProductCommandInput | SearchJobsCommandInput | SearchStepsCommandInput | SearchTasksCommandInput | SearchWorkersCommandInput | StartSessionsStatisticsAggregationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBudgetCommandInput | UpdateFarmCommandInput | UpdateFleetCommandInput | UpdateJobCommandInput | UpdateLimitCommandInput | UpdateMonitorCommandInput | UpdateMonitorSettingsCommandInput | UpdateQueueCommandInput | UpdateQueueEnvironmentCommandInput | UpdateQueueFleetAssociationCommandInput | UpdateQueueLimitAssociationCommandInput | UpdateSessionCommandInput | UpdateStepCommandInput | UpdateStorageProfileCommandInput | UpdateTaskCommandInput | UpdateWorkerCommandInput | UpdateWorkerScheduleCommandInput;
|
|
141
|
+
export type ServiceInputTypes = AssociateMemberToFarmCommandInput | AssociateMemberToFleetCommandInput | AssociateMemberToJobCommandInput | AssociateMemberToQueueCommandInput | AssumeFleetRoleForReadCommandInput | AssumeFleetRoleForWorkerCommandInput | AssumeQueueRoleForReadCommandInput | AssumeQueueRoleForUserCommandInput | AssumeQueueRoleForWorkerCommandInput | BatchGetJobCommandInput | BatchGetJobEntityCommandInput | BatchGetSessionActionCommandInput | BatchGetSessionCommandInput | BatchGetStepCommandInput | BatchGetTaskCommandInput | BatchGetWorkerCommandInput | BatchUpdateJobCommandInput | BatchUpdateTaskCommandInput | CopyJobTemplateCommandInput | CreateBudgetCommandInput | CreateFarmCommandInput | CreateFleetCommandInput | CreateJobCommandInput | CreateLicenseEndpointCommandInput | CreateLimitCommandInput | CreateMonitorCommandInput | CreateQueueCommandInput | CreateQueueEnvironmentCommandInput | CreateQueueFleetAssociationCommandInput | CreateQueueLimitAssociationCommandInput | CreateStorageProfileCommandInput | CreateWorkerCommandInput | DeleteBudgetCommandInput | DeleteFarmCommandInput | DeleteFleetCommandInput | DeleteLicenseEndpointCommandInput | DeleteLimitCommandInput | DeleteMeteredProductCommandInput | DeleteMonitorCommandInput | DeleteQueueCommandInput | DeleteQueueEnvironmentCommandInput | DeleteQueueFleetAssociationCommandInput | DeleteQueueLimitAssociationCommandInput | DeleteStorageProfileCommandInput | DeleteVolumeCommandInput | DeleteWorkerCommandInput | DisassociateMemberFromFarmCommandInput | DisassociateMemberFromFleetCommandInput | DisassociateMemberFromJobCommandInput | DisassociateMemberFromQueueCommandInput | GetBudgetCommandInput | GetFarmCommandInput | GetFleetCommandInput | GetJobCommandInput | GetLicenseEndpointCommandInput | GetLimitCommandInput | GetMonitorCommandInput | GetMonitorSettingsCommandInput | GetQueueCommandInput | GetQueueEnvironmentCommandInput | GetQueueFleetAssociationCommandInput | GetQueueLimitAssociationCommandInput | GetSessionActionCommandInput | GetSessionCommandInput | GetSessionsStatisticsAggregationCommandInput | GetStepCommandInput | GetStorageProfileCommandInput | GetStorageProfileForQueueCommandInput | GetTaskCommandInput | GetVolumeCommandInput | GetWorkerCommandInput | ListAvailableMeteredProductsCommandInput | ListBudgetsCommandInput | ListFarmMembersCommandInput | ListFarmsCommandInput | ListFleetMembersCommandInput | ListFleetsCommandInput | ListJobMembersCommandInput | ListJobParameterDefinitionsCommandInput | ListJobsCommandInput | ListLicenseEndpointsCommandInput | ListLimitsCommandInput | ListMeteredProductsCommandInput | ListMonitorsCommandInput | ListQueueEnvironmentsCommandInput | ListQueueFleetAssociationsCommandInput | ListQueueLimitAssociationsCommandInput | ListQueueMembersCommandInput | ListQueuesCommandInput | ListSessionActionsCommandInput | ListSessionsCommandInput | ListSessionsForWorkerCommandInput | ListStepConsumersCommandInput | ListStepDependenciesCommandInput | ListStepsCommandInput | ListStorageProfilesCommandInput | ListStorageProfilesForQueueCommandInput | ListTagsForResourceCommandInput | ListTasksCommandInput | ListVolumesCommandInput | ListWorkersCommandInput | PutMeteredProductCommandInput | SearchJobsCommandInput | SearchStepsCommandInput | SearchTasksCommandInput | SearchWorkersCommandInput | StartSessionsStatisticsAggregationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBudgetCommandInput | UpdateFarmCommandInput | UpdateFleetCommandInput | UpdateJobCommandInput | UpdateLimitCommandInput | UpdateMonitorCommandInput | UpdateMonitorSettingsCommandInput | UpdateQueueCommandInput | UpdateQueueEnvironmentCommandInput | UpdateQueueFleetAssociationCommandInput | UpdateQueueLimitAssociationCommandInput | UpdateSessionCommandInput | UpdateStepCommandInput | UpdateStorageProfileCommandInput | UpdateTaskCommandInput | UpdateWorkerCommandInput | UpdateWorkerScheduleCommandInput;
|
|
139
142
|
/**
|
|
140
143
|
* @public
|
|
141
144
|
*/
|
|
142
|
-
export type ServiceOutputTypes = AssociateMemberToFarmCommandOutput | AssociateMemberToFleetCommandOutput | AssociateMemberToJobCommandOutput | AssociateMemberToQueueCommandOutput | AssumeFleetRoleForReadCommandOutput | AssumeFleetRoleForWorkerCommandOutput | AssumeQueueRoleForReadCommandOutput | AssumeQueueRoleForUserCommandOutput | AssumeQueueRoleForWorkerCommandOutput | BatchGetJobCommandOutput | BatchGetJobEntityCommandOutput | BatchGetSessionActionCommandOutput | BatchGetSessionCommandOutput | BatchGetStepCommandOutput | BatchGetTaskCommandOutput | BatchGetWorkerCommandOutput | BatchUpdateJobCommandOutput | BatchUpdateTaskCommandOutput | CopyJobTemplateCommandOutput | CreateBudgetCommandOutput | CreateFarmCommandOutput | CreateFleetCommandOutput | CreateJobCommandOutput | CreateLicenseEndpointCommandOutput | CreateLimitCommandOutput | CreateMonitorCommandOutput | CreateQueueCommandOutput | CreateQueueEnvironmentCommandOutput | CreateQueueFleetAssociationCommandOutput | CreateQueueLimitAssociationCommandOutput | CreateStorageProfileCommandOutput | CreateWorkerCommandOutput | DeleteBudgetCommandOutput | DeleteFarmCommandOutput | DeleteFleetCommandOutput | DeleteLicenseEndpointCommandOutput | DeleteLimitCommandOutput | DeleteMeteredProductCommandOutput | DeleteMonitorCommandOutput | DeleteQueueCommandOutput | DeleteQueueEnvironmentCommandOutput | DeleteQueueFleetAssociationCommandOutput | DeleteQueueLimitAssociationCommandOutput | DeleteStorageProfileCommandOutput | DeleteWorkerCommandOutput | DisassociateMemberFromFarmCommandOutput | DisassociateMemberFromFleetCommandOutput | DisassociateMemberFromJobCommandOutput | DisassociateMemberFromQueueCommandOutput | GetBudgetCommandOutput | GetFarmCommandOutput | GetFleetCommandOutput | GetJobCommandOutput | GetLicenseEndpointCommandOutput | GetLimitCommandOutput | GetMonitorCommandOutput | GetMonitorSettingsCommandOutput | GetQueueCommandOutput | GetQueueEnvironmentCommandOutput | GetQueueFleetAssociationCommandOutput | GetQueueLimitAssociationCommandOutput | GetSessionActionCommandOutput | GetSessionCommandOutput | GetSessionsStatisticsAggregationCommandOutput | GetStepCommandOutput | GetStorageProfileCommandOutput | GetStorageProfileForQueueCommandOutput | GetTaskCommandOutput | GetWorkerCommandOutput | ListAvailableMeteredProductsCommandOutput | ListBudgetsCommandOutput | ListFarmMembersCommandOutput | ListFarmsCommandOutput | ListFleetMembersCommandOutput | ListFleetsCommandOutput | ListJobMembersCommandOutput | ListJobParameterDefinitionsCommandOutput | ListJobsCommandOutput | ListLicenseEndpointsCommandOutput | ListLimitsCommandOutput | ListMeteredProductsCommandOutput | ListMonitorsCommandOutput | ListQueueEnvironmentsCommandOutput | ListQueueFleetAssociationsCommandOutput | ListQueueLimitAssociationsCommandOutput | ListQueueMembersCommandOutput | ListQueuesCommandOutput | ListSessionActionsCommandOutput | ListSessionsCommandOutput | ListSessionsForWorkerCommandOutput | ListStepConsumersCommandOutput | ListStepDependenciesCommandOutput | ListStepsCommandOutput | ListStorageProfilesCommandOutput | ListStorageProfilesForQueueCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | ListWorkersCommandOutput | PutMeteredProductCommandOutput | SearchJobsCommandOutput | SearchStepsCommandOutput | SearchTasksCommandOutput | SearchWorkersCommandOutput | StartSessionsStatisticsAggregationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBudgetCommandOutput | UpdateFarmCommandOutput | UpdateFleetCommandOutput | UpdateJobCommandOutput | UpdateLimitCommandOutput | UpdateMonitorCommandOutput | UpdateMonitorSettingsCommandOutput | UpdateQueueCommandOutput | UpdateQueueEnvironmentCommandOutput | UpdateQueueFleetAssociationCommandOutput | UpdateQueueLimitAssociationCommandOutput | UpdateSessionCommandOutput | UpdateStepCommandOutput | UpdateStorageProfileCommandOutput | UpdateTaskCommandOutput | UpdateWorkerCommandOutput | UpdateWorkerScheduleCommandOutput;
|
|
145
|
+
export type ServiceOutputTypes = AssociateMemberToFarmCommandOutput | AssociateMemberToFleetCommandOutput | AssociateMemberToJobCommandOutput | AssociateMemberToQueueCommandOutput | AssumeFleetRoleForReadCommandOutput | AssumeFleetRoleForWorkerCommandOutput | AssumeQueueRoleForReadCommandOutput | AssumeQueueRoleForUserCommandOutput | AssumeQueueRoleForWorkerCommandOutput | BatchGetJobCommandOutput | BatchGetJobEntityCommandOutput | BatchGetSessionActionCommandOutput | BatchGetSessionCommandOutput | BatchGetStepCommandOutput | BatchGetTaskCommandOutput | BatchGetWorkerCommandOutput | BatchUpdateJobCommandOutput | BatchUpdateTaskCommandOutput | CopyJobTemplateCommandOutput | CreateBudgetCommandOutput | CreateFarmCommandOutput | CreateFleetCommandOutput | CreateJobCommandOutput | CreateLicenseEndpointCommandOutput | CreateLimitCommandOutput | CreateMonitorCommandOutput | CreateQueueCommandOutput | CreateQueueEnvironmentCommandOutput | CreateQueueFleetAssociationCommandOutput | CreateQueueLimitAssociationCommandOutput | CreateStorageProfileCommandOutput | CreateWorkerCommandOutput | DeleteBudgetCommandOutput | DeleteFarmCommandOutput | DeleteFleetCommandOutput | DeleteLicenseEndpointCommandOutput | DeleteLimitCommandOutput | DeleteMeteredProductCommandOutput | DeleteMonitorCommandOutput | DeleteQueueCommandOutput | DeleteQueueEnvironmentCommandOutput | DeleteQueueFleetAssociationCommandOutput | DeleteQueueLimitAssociationCommandOutput | DeleteStorageProfileCommandOutput | DeleteVolumeCommandOutput | DeleteWorkerCommandOutput | DisassociateMemberFromFarmCommandOutput | DisassociateMemberFromFleetCommandOutput | DisassociateMemberFromJobCommandOutput | DisassociateMemberFromQueueCommandOutput | GetBudgetCommandOutput | GetFarmCommandOutput | GetFleetCommandOutput | GetJobCommandOutput | GetLicenseEndpointCommandOutput | GetLimitCommandOutput | GetMonitorCommandOutput | GetMonitorSettingsCommandOutput | GetQueueCommandOutput | GetQueueEnvironmentCommandOutput | GetQueueFleetAssociationCommandOutput | GetQueueLimitAssociationCommandOutput | GetSessionActionCommandOutput | GetSessionCommandOutput | GetSessionsStatisticsAggregationCommandOutput | GetStepCommandOutput | GetStorageProfileCommandOutput | GetStorageProfileForQueueCommandOutput | GetTaskCommandOutput | GetVolumeCommandOutput | GetWorkerCommandOutput | ListAvailableMeteredProductsCommandOutput | ListBudgetsCommandOutput | ListFarmMembersCommandOutput | ListFarmsCommandOutput | ListFleetMembersCommandOutput | ListFleetsCommandOutput | ListJobMembersCommandOutput | ListJobParameterDefinitionsCommandOutput | ListJobsCommandOutput | ListLicenseEndpointsCommandOutput | ListLimitsCommandOutput | ListMeteredProductsCommandOutput | ListMonitorsCommandOutput | ListQueueEnvironmentsCommandOutput | ListQueueFleetAssociationsCommandOutput | ListQueueLimitAssociationsCommandOutput | ListQueueMembersCommandOutput | ListQueuesCommandOutput | ListSessionActionsCommandOutput | ListSessionsCommandOutput | ListSessionsForWorkerCommandOutput | ListStepConsumersCommandOutput | ListStepDependenciesCommandOutput | ListStepsCommandOutput | ListStorageProfilesCommandOutput | ListStorageProfilesForQueueCommandOutput | ListTagsForResourceCommandOutput | ListTasksCommandOutput | ListVolumesCommandOutput | ListWorkersCommandOutput | PutMeteredProductCommandOutput | SearchJobsCommandOutput | SearchStepsCommandOutput | SearchTasksCommandOutput | SearchWorkersCommandOutput | StartSessionsStatisticsAggregationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBudgetCommandOutput | UpdateFarmCommandOutput | UpdateFleetCommandOutput | UpdateJobCommandOutput | UpdateLimitCommandOutput | UpdateMonitorCommandOutput | UpdateMonitorSettingsCommandOutput | UpdateQueueCommandOutput | UpdateQueueEnvironmentCommandOutput | UpdateQueueFleetAssociationCommandOutput | UpdateQueueLimitAssociationCommandOutput | UpdateSessionCommandOutput | UpdateStepCommandOutput | UpdateStorageProfileCommandOutput | UpdateTaskCommandOutput | UpdateWorkerCommandOutput | UpdateWorkerScheduleCommandOutput;
|
|
143
146
|
/**
|
|
144
147
|
* @public
|
|
145
148
|
*/
|
|
@@ -155,6 +155,13 @@ declare const CreateFleetCommand_base: {
|
|
|
155
155
|
* ],
|
|
156
156
|
* },
|
|
157
157
|
* storageProfileId: "STRING_VALUE",
|
|
158
|
+
* persistentVolumeConfiguration: { // PersistentVolumeConfiguration
|
|
159
|
+
* sizeGiB: Number("int"),
|
|
160
|
+
* iops: Number("int"),
|
|
161
|
+
* throughputMiB: Number("int"),
|
|
162
|
+
* mountPath: "STRING_VALUE", // required
|
|
163
|
+
* lastUsedTtlHours: Number("int"),
|
|
164
|
+
* },
|
|
158
165
|
* autoScalingConfiguration: { // ServiceManagedEc2AutoScalingConfiguration
|
|
159
166
|
* standbyWorkerCount: Number("int"),
|
|
160
167
|
* workerIdleDurationSeconds: Number("int"),
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient";
|
|
4
|
+
import type { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteVolumeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteVolumeCommandInput extends DeleteVolumeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteVolumeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteVolumeCommand_base: {
|
|
25
|
+
new (input: DeleteVolumeCommandInput): import("@smithy/core/client").CommandImpl<DeleteVolumeCommandInput, DeleteVolumeCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteVolumeCommandInput): import("@smithy/core/client").CommandImpl<DeleteVolumeCommandInput, DeleteVolumeCommandOutput, DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes a persistent volume.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { DeadlineClient, DeleteVolumeCommand } from "@aws-sdk/client-deadline"; // ES Modules import
|
|
37
|
+
* // const { DeadlineClient, DeleteVolumeCommand } = require("@aws-sdk/client-deadline"); // CommonJS import
|
|
38
|
+
* // import type { DeadlineClientConfig } from "@aws-sdk/client-deadline";
|
|
39
|
+
* const config = {}; // type is DeadlineClientConfig
|
|
40
|
+
* const client = new DeadlineClient(config);
|
|
41
|
+
* const input = { // DeleteVolumeRequest
|
|
42
|
+
* farmId: "STRING_VALUE", // required
|
|
43
|
+
* fleetId: "STRING_VALUE", // required
|
|
44
|
+
* volumeId: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new DeleteVolumeCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* @param DeleteVolumeCommandInput - {@link DeleteVolumeCommandInput}
|
|
53
|
+
* @returns {@link DeleteVolumeCommandOutput}
|
|
54
|
+
* @see {@link DeleteVolumeCommandInput} for command's `input` shape.
|
|
55
|
+
* @see {@link DeleteVolumeCommandOutput} for command's `response` shape.
|
|
56
|
+
* @see {@link DeadlineClientResolvedConfig | config} for DeadlineClient's `config` shape.
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
59
|
+
* <p>You don't have permission to perform the action.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>Your request has conflicting operations. This can occur if you're trying to perform more than one operation on the same resource at the same time.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
65
|
+
* <p>Deadline Cloud can't process your request right now. Try again later.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
|
+
* <p>The requested resource can't be found.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>Your request exceeded a request rate quota.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>The request isn't valid. This can occur if your request contains malformed JSON or unsupported characters.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link DeadlineServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Deadline service.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
80
|
+
* @example Delete a volume
|
|
81
|
+
* ```javascript
|
|
82
|
+
* //
|
|
83
|
+
* const input = {
|
|
84
|
+
* farmId: "farm-1234567890abcdef1234567890abcdef",
|
|
85
|
+
* fleetId: "fleet-1234567890abcdef1234567890abcdef",
|
|
86
|
+
* volumeId: "volume-1234567890abcdef1234567890abcdef"
|
|
87
|
+
* };
|
|
88
|
+
* const command = new DeleteVolumeCommand(input);
|
|
89
|
+
* const response = await client.send(command);
|
|
90
|
+
* /* response is
|
|
91
|
+
* { /* metadata only *\/ }
|
|
92
|
+
* *\/
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class DeleteVolumeCommand extends DeleteVolumeCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: DeleteVolumeRequest;
|
|
102
|
+
output: {};
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: DeleteVolumeCommandInput;
|
|
106
|
+
output: DeleteVolumeCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}
|
|
@@ -164,6 +164,13 @@ declare const GetFleetCommand_base: {
|
|
|
164
164
|
* // ],
|
|
165
165
|
* // },
|
|
166
166
|
* // storageProfileId: "STRING_VALUE",
|
|
167
|
+
* // persistentVolumeConfiguration: { // PersistentVolumeConfiguration
|
|
168
|
+
* // sizeGiB: Number("int"),
|
|
169
|
+
* // iops: Number("int"),
|
|
170
|
+
* // throughputMiB: Number("int"),
|
|
171
|
+
* // mountPath: "STRING_VALUE", // required
|
|
172
|
+
* // lastUsedTtlHours: Number("int"),
|
|
173
|
+
* // },
|
|
167
174
|
* // autoScalingConfiguration: { // ServiceManagedEc2AutoScalingConfiguration
|
|
168
175
|
* // standbyWorkerCount: Number("int"),
|
|
169
176
|
* // workerIdleDurationSeconds: Number("int"),
|