@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
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeadlineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DeadlineClient";
|
|
8
|
+
import { ListVolumesRequest, ListVolumesResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListVolumesCommandInput extends ListVolumesRequest {}
|
|
12
|
+
export interface ListVolumesCommandOutput
|
|
13
|
+
extends ListVolumesResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListVolumesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListVolumesCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListVolumesCommandInput,
|
|
20
|
+
ListVolumesCommandOutput,
|
|
21
|
+
DeadlineClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListVolumesCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
ListVolumesCommandInput,
|
|
29
|
+
ListVolumesCommandOutput,
|
|
30
|
+
DeadlineClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class ListVolumesCommand extends ListVolumesCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: ListVolumesRequest;
|
|
42
|
+
output: ListVolumesResponse;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: ListVolumesCommandInput;
|
|
46
|
+
output: ListVolumesCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -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";
|
|
@@ -393,6 +393,18 @@ export declare const FleetStatus: {
|
|
|
393
393
|
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
394
394
|
};
|
|
395
395
|
export type FleetStatus = (typeof FleetStatus)[keyof typeof FleetStatus];
|
|
396
|
+
export declare const VolumeState: {
|
|
397
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
398
|
+
readonly IN_USE: "IN_USE";
|
|
399
|
+
readonly PENDING_ATTACHMENT: "PENDING_ATTACHMENT";
|
|
400
|
+
readonly PENDING_CREATION: "PENDING_CREATION";
|
|
401
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
402
|
+
};
|
|
403
|
+
export type VolumeState = (typeof VolumeState)[keyof typeof VolumeState];
|
|
404
|
+
export declare const EbsVolumeType: {
|
|
405
|
+
readonly GP3: "gp3";
|
|
406
|
+
};
|
|
407
|
+
export type EbsVolumeType = (typeof EbsVolumeType)[keyof typeof EbsVolumeType];
|
|
396
408
|
export declare const UpdatedWorkerStatus: {
|
|
397
409
|
readonly STARTED: "STARTED";
|
|
398
410
|
readonly STOPPED: "STOPPED";
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
DefaultQueueBudgetAction,
|
|
24
24
|
DependencyConsumerResolutionStatus,
|
|
25
25
|
DesiredWorkerStatus,
|
|
26
|
+
EbsVolumeType,
|
|
26
27
|
Ec2MarketType,
|
|
27
28
|
EnvironmentTemplateType,
|
|
28
29
|
FileSystemLocationType,
|
|
@@ -51,6 +52,7 @@ import {
|
|
|
51
52
|
TaskTargetRunStatus,
|
|
52
53
|
UpdatedWorkerStatus,
|
|
53
54
|
UpdateJobLifecycleStatus,
|
|
55
|
+
VolumeState,
|
|
54
56
|
WorkerStatus,
|
|
55
57
|
} from "./enums";
|
|
56
58
|
export interface AcceleratorCountRange {
|
|
@@ -1236,6 +1238,13 @@ export interface ServiceManagedEc2InstanceCapabilities {
|
|
|
1236
1238
|
export interface ServiceManagedEc2InstanceMarketOptions {
|
|
1237
1239
|
type: Ec2MarketType | undefined;
|
|
1238
1240
|
}
|
|
1241
|
+
export interface PersistentVolumeConfiguration {
|
|
1242
|
+
sizeGiB?: number | undefined;
|
|
1243
|
+
iops?: number | undefined;
|
|
1244
|
+
throughputMiB?: number | undefined;
|
|
1245
|
+
mountPath: string | undefined;
|
|
1246
|
+
lastUsedTtlHours?: number | undefined;
|
|
1247
|
+
}
|
|
1239
1248
|
export interface VpcConfiguration {
|
|
1240
1249
|
resourceConfigurationArns?: string[] | undefined;
|
|
1241
1250
|
}
|
|
@@ -1244,6 +1253,7 @@ export interface ServiceManagedEc2FleetConfiguration {
|
|
|
1244
1253
|
instanceMarketOptions: ServiceManagedEc2InstanceMarketOptions | undefined;
|
|
1245
1254
|
vpcConfiguration?: VpcConfiguration | undefined;
|
|
1246
1255
|
storageProfileId?: string | undefined;
|
|
1256
|
+
persistentVolumeConfiguration?: PersistentVolumeConfiguration | undefined;
|
|
1247
1257
|
autoScalingConfiguration?:
|
|
1248
1258
|
| ServiceManagedEc2AutoScalingConfiguration
|
|
1249
1259
|
| undefined;
|
|
@@ -1645,6 +1655,52 @@ export interface UpdateFleetRequest {
|
|
|
1645
1655
|
hostConfiguration?: HostConfiguration | undefined;
|
|
1646
1656
|
}
|
|
1647
1657
|
export interface UpdateFleetResponse {}
|
|
1658
|
+
export interface DeleteVolumeRequest {
|
|
1659
|
+
farmId: string | undefined;
|
|
1660
|
+
fleetId: string | undefined;
|
|
1661
|
+
volumeId: string | undefined;
|
|
1662
|
+
}
|
|
1663
|
+
export interface DeleteVolumeResponse {}
|
|
1664
|
+
export interface GetVolumeRequest {
|
|
1665
|
+
farmId: string | undefined;
|
|
1666
|
+
fleetId: string | undefined;
|
|
1667
|
+
volumeId: string | undefined;
|
|
1668
|
+
}
|
|
1669
|
+
export interface GetVolumeResponse {
|
|
1670
|
+
volumeId: string | undefined;
|
|
1671
|
+
farmId: string | undefined;
|
|
1672
|
+
fleetId: string | undefined;
|
|
1673
|
+
state: VolumeState | undefined;
|
|
1674
|
+
sizeGiB: number | undefined;
|
|
1675
|
+
availabilityZoneId: string | undefined;
|
|
1676
|
+
attachedWorkerId?: string | undefined;
|
|
1677
|
+
volumeType: EbsVolumeType | undefined;
|
|
1678
|
+
iops?: number | undefined;
|
|
1679
|
+
throughputMiB?: number | undefined;
|
|
1680
|
+
createdAt: Date | undefined;
|
|
1681
|
+
lastAssignedAt?: Date | undefined;
|
|
1682
|
+
lastReleasedAt?: Date | undefined;
|
|
1683
|
+
expiresAt?: Date | undefined;
|
|
1684
|
+
}
|
|
1685
|
+
export interface ListVolumesRequest {
|
|
1686
|
+
farmId: string | undefined;
|
|
1687
|
+
fleetId: string | undefined;
|
|
1688
|
+
nextToken?: string | undefined;
|
|
1689
|
+
maxResults?: number | undefined;
|
|
1690
|
+
}
|
|
1691
|
+
export interface VolumeSummary {
|
|
1692
|
+
volumeId: string | undefined;
|
|
1693
|
+
farmId: string | undefined;
|
|
1694
|
+
fleetId: string | undefined;
|
|
1695
|
+
state: VolumeState | undefined;
|
|
1696
|
+
sizeGiB: number | undefined;
|
|
1697
|
+
availabilityZoneId: string | undefined;
|
|
1698
|
+
attachedWorkerId?: string | undefined;
|
|
1699
|
+
}
|
|
1700
|
+
export interface ListVolumesResponse {
|
|
1701
|
+
volumes: VolumeSummary[] | undefined;
|
|
1702
|
+
nextToken?: string | undefined;
|
|
1703
|
+
}
|
|
1648
1704
|
export interface DeleteWorkerRequest {
|
|
1649
1705
|
farmId: string | undefined;
|
|
1650
1706
|
fleetId: string | undefined;
|
|
@@ -2251,59 +2307,3 @@ export interface StepConsumer {
|
|
|
2251
2307
|
stepId: string | undefined;
|
|
2252
2308
|
status: DependencyConsumerResolutionStatus | undefined;
|
|
2253
2309
|
}
|
|
2254
|
-
export interface ListStepConsumersResponse {
|
|
2255
|
-
consumers: StepConsumer[] | undefined;
|
|
2256
|
-
nextToken?: string | undefined;
|
|
2257
|
-
}
|
|
2258
|
-
export interface ListStepDependenciesRequest {
|
|
2259
|
-
farmId: string | undefined;
|
|
2260
|
-
queueId: string | undefined;
|
|
2261
|
-
jobId: string | undefined;
|
|
2262
|
-
stepId: string | undefined;
|
|
2263
|
-
nextToken?: string | undefined;
|
|
2264
|
-
maxResults?: number | undefined;
|
|
2265
|
-
}
|
|
2266
|
-
export interface StepDependency {
|
|
2267
|
-
stepId: string | undefined;
|
|
2268
|
-
status: DependencyConsumerResolutionStatus | undefined;
|
|
2269
|
-
}
|
|
2270
|
-
export interface ListStepDependenciesResponse {
|
|
2271
|
-
dependencies: StepDependency[] | undefined;
|
|
2272
|
-
nextToken?: string | undefined;
|
|
2273
|
-
}
|
|
2274
|
-
export interface ListStepsRequest {
|
|
2275
|
-
farmId: string | undefined;
|
|
2276
|
-
queueId: string | undefined;
|
|
2277
|
-
jobId: string | undefined;
|
|
2278
|
-
nextToken?: string | undefined;
|
|
2279
|
-
maxResults?: number | undefined;
|
|
2280
|
-
}
|
|
2281
|
-
export interface StepSummary {
|
|
2282
|
-
stepId: string | undefined;
|
|
2283
|
-
name: string | undefined;
|
|
2284
|
-
lifecycleStatus: StepLifecycleStatus | undefined;
|
|
2285
|
-
lifecycleStatusMessage?: string | undefined;
|
|
2286
|
-
taskRunStatus: TaskRunStatus | undefined;
|
|
2287
|
-
taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
2288
|
-
taskFailureRetryCount?: number | undefined;
|
|
2289
|
-
targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
|
|
2290
|
-
createdAt: Date | undefined;
|
|
2291
|
-
createdBy: string | undefined;
|
|
2292
|
-
updatedAt?: Date | undefined;
|
|
2293
|
-
updatedBy?: string | undefined;
|
|
2294
|
-
startedAt?: Date | undefined;
|
|
2295
|
-
endedAt?: Date | undefined;
|
|
2296
|
-
dependencyCounts?: DependencyCounts | undefined;
|
|
2297
|
-
}
|
|
2298
|
-
export interface ListStepsResponse {
|
|
2299
|
-
steps: StepSummary[] | undefined;
|
|
2300
|
-
nextToken?: string | undefined;
|
|
2301
|
-
}
|
|
2302
|
-
export interface ListTasksRequest {
|
|
2303
|
-
farmId: string | undefined;
|
|
2304
|
-
queueId: string | undefined;
|
|
2305
|
-
jobId: string | undefined;
|
|
2306
|
-
stepId: string | undefined;
|
|
2307
|
-
nextToken?: string | undefined;
|
|
2308
|
-
maxResults?: number | undefined;
|
|
2309
|
-
}
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ComparisonOperator,
|
|
3
3
|
DeadlinePrincipalType,
|
|
4
4
|
DefaultQueueBudgetAction,
|
|
5
|
+
DependencyConsumerResolutionStatus,
|
|
5
6
|
EnvironmentTemplateType,
|
|
6
7
|
JobLifecycleStatus,
|
|
7
8
|
JobTargetTaskRunStatus,
|
|
@@ -32,6 +33,7 @@ import {
|
|
|
32
33
|
} from "./enums";
|
|
33
34
|
import {
|
|
34
35
|
DateTimeFilterExpression,
|
|
36
|
+
DependencyCounts,
|
|
35
37
|
FileSystemLocation,
|
|
36
38
|
HostPropertiesResponse,
|
|
37
39
|
JobAttachmentSettings,
|
|
@@ -39,9 +41,66 @@ import {
|
|
|
39
41
|
JobRunAsUser,
|
|
40
42
|
ParameterSpace,
|
|
41
43
|
SchedulingConfiguration,
|
|
44
|
+
StepConsumer,
|
|
42
45
|
StorageProfileSummary,
|
|
43
46
|
TaskParameterValue,
|
|
44
47
|
} from "./models_0";
|
|
48
|
+
export interface ListStepConsumersResponse {
|
|
49
|
+
consumers: StepConsumer[] | undefined;
|
|
50
|
+
nextToken?: string | undefined;
|
|
51
|
+
}
|
|
52
|
+
export interface ListStepDependenciesRequest {
|
|
53
|
+
farmId: string | undefined;
|
|
54
|
+
queueId: string | undefined;
|
|
55
|
+
jobId: string | undefined;
|
|
56
|
+
stepId: string | undefined;
|
|
57
|
+
nextToken?: string | undefined;
|
|
58
|
+
maxResults?: number | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface StepDependency {
|
|
61
|
+
stepId: string | undefined;
|
|
62
|
+
status: DependencyConsumerResolutionStatus | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface ListStepDependenciesResponse {
|
|
65
|
+
dependencies: StepDependency[] | undefined;
|
|
66
|
+
nextToken?: string | undefined;
|
|
67
|
+
}
|
|
68
|
+
export interface ListStepsRequest {
|
|
69
|
+
farmId: string | undefined;
|
|
70
|
+
queueId: string | undefined;
|
|
71
|
+
jobId: string | undefined;
|
|
72
|
+
nextToken?: string | undefined;
|
|
73
|
+
maxResults?: number | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface StepSummary {
|
|
76
|
+
stepId: string | undefined;
|
|
77
|
+
name: string | undefined;
|
|
78
|
+
lifecycleStatus: StepLifecycleStatus | undefined;
|
|
79
|
+
lifecycleStatusMessage?: string | undefined;
|
|
80
|
+
taskRunStatus: TaskRunStatus | undefined;
|
|
81
|
+
taskRunStatusCounts: Partial<Record<TaskRunStatus, number>> | undefined;
|
|
82
|
+
taskFailureRetryCount?: number | undefined;
|
|
83
|
+
targetTaskRunStatus?: StepTargetTaskRunStatus | undefined;
|
|
84
|
+
createdAt: Date | undefined;
|
|
85
|
+
createdBy: string | undefined;
|
|
86
|
+
updatedAt?: Date | undefined;
|
|
87
|
+
updatedBy?: string | undefined;
|
|
88
|
+
startedAt?: Date | undefined;
|
|
89
|
+
endedAt?: Date | undefined;
|
|
90
|
+
dependencyCounts?: DependencyCounts | undefined;
|
|
91
|
+
}
|
|
92
|
+
export interface ListStepsResponse {
|
|
93
|
+
steps: StepSummary[] | undefined;
|
|
94
|
+
nextToken?: string | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface ListTasksRequest {
|
|
97
|
+
farmId: string | undefined;
|
|
98
|
+
queueId: string | undefined;
|
|
99
|
+
jobId: string | undefined;
|
|
100
|
+
stepId: string | undefined;
|
|
101
|
+
nextToken?: string | undefined;
|
|
102
|
+
maxResults?: number | undefined;
|
|
103
|
+
}
|
|
45
104
|
export interface TaskSummary {
|
|
46
105
|
taskId: string | undefined;
|
|
47
106
|
createdAt: Date | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVolumesCommandInput,
|
|
4
|
+
ListVolumesCommandOutput,
|
|
5
|
+
} from "../commands/ListVolumesCommand";
|
|
6
|
+
import { DeadlinePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListVolumes: (
|
|
8
|
+
config: DeadlinePaginationConfiguration,
|
|
9
|
+
input: ListVolumesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListVolumesCommandOutput>;
|
|
@@ -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";
|
|
@@ -145,6 +145,8 @@ export declare var DeleteQueueRequest$: StaticStructureSchema;
|
|
|
145
145
|
export declare var DeleteQueueResponse$: StaticStructureSchema;
|
|
146
146
|
export declare var DeleteStorageProfileRequest$: StaticStructureSchema;
|
|
147
147
|
export declare var DeleteStorageProfileResponse$: StaticStructureSchema;
|
|
148
|
+
export declare var DeleteVolumeRequest$: StaticStructureSchema;
|
|
149
|
+
export declare var DeleteVolumeResponse$: StaticStructureSchema;
|
|
148
150
|
export declare var DeleteWorkerRequest$: StaticStructureSchema;
|
|
149
151
|
export declare var DeleteWorkerResponse$: StaticStructureSchema;
|
|
150
152
|
export declare var DependencyCounts$: StaticStructureSchema;
|
|
@@ -212,6 +214,8 @@ export declare var GetStorageProfileRequest$: StaticStructureSchema;
|
|
|
212
214
|
export declare var GetStorageProfileResponse$: StaticStructureSchema;
|
|
213
215
|
export declare var GetTaskRequest$: StaticStructureSchema;
|
|
214
216
|
export declare var GetTaskResponse$: StaticStructureSchema;
|
|
217
|
+
export declare var GetVolumeRequest$: StaticStructureSchema;
|
|
218
|
+
export declare var GetVolumeResponse$: StaticStructureSchema;
|
|
215
219
|
export declare var GetWorkerRequest$: StaticStructureSchema;
|
|
216
220
|
export declare var GetWorkerResponse$: StaticStructureSchema;
|
|
217
221
|
export declare var HostConfiguration$: StaticStructureSchema;
|
|
@@ -287,6 +291,8 @@ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
|
287
291
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
288
292
|
export declare var ListTasksRequest$: StaticStructureSchema;
|
|
289
293
|
export declare var ListTasksResponse$: StaticStructureSchema;
|
|
294
|
+
export declare var ListVolumesRequest$: StaticStructureSchema;
|
|
295
|
+
export declare var ListVolumesResponse$: StaticStructureSchema;
|
|
290
296
|
export declare var ListWorkersRequest$: StaticStructureSchema;
|
|
291
297
|
export declare var ListWorkersResponse$: StaticStructureSchema;
|
|
292
298
|
export declare var LogConfiguration$: StaticStructureSchema;
|
|
@@ -298,6 +304,7 @@ export declare var ParameterFilterExpression$: StaticStructureSchema;
|
|
|
298
304
|
export declare var ParameterSortExpression$: StaticStructureSchema;
|
|
299
305
|
export declare var ParameterSpace$: StaticStructureSchema;
|
|
300
306
|
export declare var PathMappingRule$: StaticStructureSchema;
|
|
307
|
+
export declare var PersistentVolumeConfiguration$: StaticStructureSchema;
|
|
301
308
|
export declare var PosixUser$: StaticStructureSchema;
|
|
302
309
|
export declare var PriorityBalancedSchedulingConfiguration$: StaticStructureSchema;
|
|
303
310
|
export declare var PriorityFifoSchedulingConfiguration$: StaticStructureSchema;
|
|
@@ -397,6 +404,7 @@ export declare var UpdateWorkerScheduleResponse$: StaticStructureSchema;
|
|
|
397
404
|
export declare var UserJobsFirst$: StaticStructureSchema;
|
|
398
405
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
399
406
|
export declare var VCpuCountRange$: StaticStructureSchema;
|
|
407
|
+
export declare var VolumeSummary$: StaticStructureSchema;
|
|
400
408
|
export declare var VpcConfiguration$: StaticStructureSchema;
|
|
401
409
|
export declare var WeightedBalancedSchedulingConfiguration$: StaticStructureSchema;
|
|
402
410
|
export declare var WindowsUser$: StaticStructureSchema;
|
|
@@ -467,6 +475,7 @@ export declare var DeleteQueueEnvironment$: StaticOperationSchema;
|
|
|
467
475
|
export declare var DeleteQueueFleetAssociation$: StaticOperationSchema;
|
|
468
476
|
export declare var DeleteQueueLimitAssociation$: StaticOperationSchema;
|
|
469
477
|
export declare var DeleteStorageProfile$: StaticOperationSchema;
|
|
478
|
+
export declare var DeleteVolume$: StaticOperationSchema;
|
|
470
479
|
export declare var DeleteWorker$: StaticOperationSchema;
|
|
471
480
|
export declare var DisassociateMemberFromFarm$: StaticOperationSchema;
|
|
472
481
|
export declare var DisassociateMemberFromFleet$: StaticOperationSchema;
|
|
@@ -491,6 +500,7 @@ export declare var GetStep$: StaticOperationSchema;
|
|
|
491
500
|
export declare var GetStorageProfile$: StaticOperationSchema;
|
|
492
501
|
export declare var GetStorageProfileForQueue$: StaticOperationSchema;
|
|
493
502
|
export declare var GetTask$: StaticOperationSchema;
|
|
503
|
+
export declare var GetVolume$: StaticOperationSchema;
|
|
494
504
|
export declare var GetWorker$: StaticOperationSchema;
|
|
495
505
|
export declare var ListAvailableMeteredProducts$: StaticOperationSchema;
|
|
496
506
|
export declare var ListBudgets$: StaticOperationSchema;
|
|
@@ -520,6 +530,7 @@ export declare var ListStorageProfiles$: StaticOperationSchema;
|
|
|
520
530
|
export declare var ListStorageProfilesForQueue$: StaticOperationSchema;
|
|
521
531
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
522
532
|
export declare var ListTasks$: StaticOperationSchema;
|
|
533
|
+
export declare var ListVolumes$: StaticOperationSchema;
|
|
523
534
|
export declare var ListWorkers$: StaticOperationSchema;
|
|
524
535
|
export declare var PutMeteredProduct$: StaticOperationSchema;
|
|
525
536
|
export declare var SearchJobs$: StaticOperationSchema;
|
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.1056.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-deadline",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.15",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.46",
|
|
26
26
|
"@aws-sdk/types": "^3.973.9",
|
|
27
|
-
"@smithy/core": "^3.24.
|
|
28
|
-
"@smithy/fetch-http-handler": "^5.4.
|
|
29
|
-
"@smithy/node-http-handler": "^4.7.
|
|
27
|
+
"@smithy/core": "^3.24.5",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.4.5",
|
|
29
|
+
"@smithy/node-http-handler": "^4.7.5",
|
|
30
30
|
"@smithy/types": "^4.14.2",
|
|
31
31
|
"tslib": "^2.6.2"
|
|
32
32
|
},
|