@aws-sdk/client-batch 3.1012.0 → 3.1013.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.
Files changed (52) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +116 -0
  3. package/dist-cjs/schemas/schemas_0.js +244 -25
  4. package/dist-es/Batch.js +14 -0
  5. package/dist-es/commands/CreateQuotaShareCommand.js +16 -0
  6. package/dist-es/commands/DeleteQuotaShareCommand.js +16 -0
  7. package/dist-es/commands/DescribeQuotaShareCommand.js +16 -0
  8. package/dist-es/commands/ListQuotaSharesCommand.js +16 -0
  9. package/dist-es/commands/UpdateQuotaShareCommand.js +16 -0
  10. package/dist-es/commands/UpdateServiceJobCommand.js +16 -0
  11. package/dist-es/commands/index.js +6 -0
  12. package/dist-es/models/enums.js +23 -0
  13. package/dist-es/pagination/ListQuotaSharesPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/schemas/schemas_0.js +238 -20
  16. package/dist-types/Batch.d.ts +49 -0
  17. package/dist-types/BatchClient.d.ts +8 -2
  18. package/dist-types/commands/CreateQuotaShareCommand.d.ts +101 -0
  19. package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +3 -0
  20. package/dist-types/commands/DeleteJobQueueCommand.d.ts +1 -2
  21. package/dist-types/commands/DeleteQuotaShareCommand.d.ts +82 -0
  22. package/dist-types/commands/DescribeQuotaShareCommand.d.ts +102 -0
  23. package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +3 -0
  24. package/dist-types/commands/DescribeServiceJobCommand.d.ts +15 -0
  25. package/dist-types/commands/GetJobQueueSnapshotCommand.d.ts +28 -2
  26. package/dist-types/commands/ListQuotaSharesCommand.d.ts +106 -0
  27. package/dist-types/commands/ListServiceJobsCommand.d.ts +1 -0
  28. package/dist-types/commands/SubmitServiceJobCommand.d.ts +4 -0
  29. package/dist-types/commands/UpdateQuotaShareCommand.d.ts +97 -0
  30. package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +3 -0
  31. package/dist-types/commands/UpdateServiceJobCommand.d.ts +85 -0
  32. package/dist-types/commands/index.d.ts +6 -0
  33. package/dist-types/models/enums.d.ts +63 -0
  34. package/dist-types/models/models_0.d.ts +596 -18
  35. package/dist-types/pagination/ListQuotaSharesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/schemas/schemas_0.d.ts +31 -0
  38. package/dist-types/ts3.4/Batch.d.ts +109 -0
  39. package/dist-types/ts3.4/BatchClient.d.ts +38 -2
  40. package/dist-types/ts3.4/commands/CreateQuotaShareCommand.d.ts +50 -0
  41. package/dist-types/ts3.4/commands/DeleteQuotaShareCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/DescribeQuotaShareCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListQuotaSharesCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/UpdateQuotaShareCommand.d.ts +50 -0
  45. package/dist-types/ts3.4/commands/UpdateServiceJobCommand.d.ts +50 -0
  46. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  47. package/dist-types/ts3.4/models/enums.d.ts +33 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +142 -0
  49. package/dist-types/ts3.4/pagination/ListQuotaSharesPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
  52. package/package.json +5 -5
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListQuotaSharesCommandInput, ListQuotaSharesCommandOutput } from "../commands/ListQuotaSharesCommand";
3
+ import { BatchPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListQuotaShares: (config: BatchPaginationConfiguration, input: ListQuotaSharesCommandInput, ...rest: any[]) => Paginator<ListQuotaSharesCommandOutput>;
@@ -6,5 +6,6 @@ export * from "./DescribeServiceEnvironmentsPaginator";
6
6
  export * from "./ListConsumableResourcesPaginator";
7
7
  export * from "./ListJobsPaginator";
8
8
  export * from "./ListJobsByConsumableResourcePaginator";
9
+ export * from "./ListQuotaSharesPaginator";
9
10
  export * from "./ListSchedulingPoliciesPaginator";
10
11
  export * from "./ListServiceJobsPaginator";
@@ -37,6 +37,8 @@ export declare var CreateConsumableResourceRequest$: StaticStructureSchema;
37
37
  export declare var CreateConsumableResourceResponse$: StaticStructureSchema;
38
38
  export declare var CreateJobQueueRequest$: StaticStructureSchema;
39
39
  export declare var CreateJobQueueResponse$: StaticStructureSchema;
40
+ export declare var CreateQuotaShareRequest$: StaticStructureSchema;
41
+ export declare var CreateQuotaShareResponse$: StaticStructureSchema;
40
42
  export declare var CreateSchedulingPolicyRequest$: StaticStructureSchema;
41
43
  export declare var CreateSchedulingPolicyResponse$: StaticStructureSchema;
42
44
  export declare var CreateServiceEnvironmentRequest$: StaticStructureSchema;
@@ -47,6 +49,8 @@ export declare var DeleteConsumableResourceRequest$: StaticStructureSchema;
47
49
  export declare var DeleteConsumableResourceResponse$: StaticStructureSchema;
48
50
  export declare var DeleteJobQueueRequest$: StaticStructureSchema;
49
51
  export declare var DeleteJobQueueResponse$: StaticStructureSchema;
52
+ export declare var DeleteQuotaShareRequest$: StaticStructureSchema;
53
+ export declare var DeleteQuotaShareResponse$: StaticStructureSchema;
50
54
  export declare var DeleteSchedulingPolicyRequest$: StaticStructureSchema;
51
55
  export declare var DeleteSchedulingPolicyResponse$: StaticStructureSchema;
52
56
  export declare var DeleteServiceEnvironmentRequest$: StaticStructureSchema;
@@ -63,6 +67,8 @@ export declare var DescribeJobQueuesRequest$: StaticStructureSchema;
63
67
  export declare var DescribeJobQueuesResponse$: StaticStructureSchema;
64
68
  export declare var DescribeJobsRequest$: StaticStructureSchema;
65
69
  export declare var DescribeJobsResponse$: StaticStructureSchema;
70
+ export declare var DescribeQuotaShareRequest$: StaticStructureSchema;
71
+ export declare var DescribeQuotaShareResponse$: StaticStructureSchema;
66
72
  export declare var DescribeSchedulingPoliciesRequest$: StaticStructureSchema;
67
73
  export declare var DescribeSchedulingPoliciesResponse$: StaticStructureSchema;
68
74
  export declare var DescribeServiceEnvironmentsRequest$: StaticStructureSchema;
@@ -110,6 +116,8 @@ export declare var FargatePlatformConfiguration$: StaticStructureSchema;
110
116
  export declare var FirelensConfiguration$: StaticStructureSchema;
111
117
  export declare var FrontOfQueueDetail$: StaticStructureSchema;
112
118
  export declare var FrontOfQueueJobSummary$: StaticStructureSchema;
119
+ export declare var FrontOfQuotaShareJobSummary$: StaticStructureSchema;
120
+ export declare var FrontOfQuotaSharesDetail$: StaticStructureSchema;
113
121
  export declare var GetJobQueueSnapshotRequest$: StaticStructureSchema;
114
122
  export declare var GetJobQueueSnapshotResponse$: StaticStructureSchema;
115
123
  export declare var Host$: StaticStructureSchema;
@@ -135,6 +143,8 @@ export declare var ListJobsByConsumableResourceResponse$: StaticStructureSchema;
135
143
  export declare var ListJobsByConsumableResourceSummary$: StaticStructureSchema;
136
144
  export declare var ListJobsRequest$: StaticStructureSchema;
137
145
  export declare var ListJobsResponse$: StaticStructureSchema;
146
+ export declare var ListQuotaSharesRequest$: StaticStructureSchema;
147
+ export declare var ListQuotaSharesResponse$: StaticStructureSchema;
138
148
  export declare var ListSchedulingPoliciesRequest$: StaticStructureSchema;
139
149
  export declare var ListSchedulingPoliciesResponse$: StaticStructureSchema;
140
150
  export declare var ListServiceJobsRequest$: StaticStructureSchema;
@@ -153,6 +163,14 @@ export declare var NodePropertyOverride$: StaticStructureSchema;
153
163
  export declare var NodeRangeProperty$: StaticStructureSchema;
154
164
  export declare var QueueSnapshotCapacityUsage$: StaticStructureSchema;
155
165
  export declare var QueueSnapshotUtilizationDetail$: StaticStructureSchema;
166
+ export declare var QuotaShareCapacityLimit$: StaticStructureSchema;
167
+ export declare var QuotaShareCapacityUsage$: StaticStructureSchema;
168
+ export declare var QuotaShareCapacityUtilization$: StaticStructureSchema;
169
+ export declare var QuotaShareDetail$: StaticStructureSchema;
170
+ export declare var QuotaSharePolicy$: StaticStructureSchema;
171
+ export declare var QuotaSharePreemptionConfiguration$: StaticStructureSchema;
172
+ export declare var QuotaShareResourceSharingConfiguration$: StaticStructureSchema;
173
+ export declare var QuotaShareUtilizationDetail$: StaticStructureSchema;
156
174
  export declare var RegisterJobDefinitionRequest$: StaticStructureSchema;
157
175
  export declare var RegisterJobDefinitionResponse$: StaticStructureSchema;
158
176
  export declare var RepositoryCredentials$: StaticStructureSchema;
@@ -168,6 +186,9 @@ export declare var ServiceJobAttemptDetail$: StaticStructureSchema;
168
186
  export declare var ServiceJobCapacityUsageDetail$: StaticStructureSchema;
169
187
  export declare var ServiceJobCapacityUsageSummary$: StaticStructureSchema;
170
188
  export declare var ServiceJobEvaluateOnExit$: StaticStructureSchema;
189
+ export declare var ServiceJobPreemptedAttempt$: StaticStructureSchema;
190
+ export declare var ServiceJobPreemptionConfiguration$: StaticStructureSchema;
191
+ export declare var ServiceJobPreemptionSummary$: StaticStructureSchema;
171
192
  export declare var ServiceJobRetryStrategy$: StaticStructureSchema;
172
193
  export declare var ServiceJobSummary$: StaticStructureSchema;
173
194
  export declare var ServiceJobTimeout$: StaticStructureSchema;
@@ -199,20 +220,26 @@ export declare var UpdateConsumableResourceResponse$: StaticStructureSchema;
199
220
  export declare var UpdateJobQueueRequest$: StaticStructureSchema;
200
221
  export declare var UpdateJobQueueResponse$: StaticStructureSchema;
201
222
  export declare var UpdatePolicy$: StaticStructureSchema;
223
+ export declare var UpdateQuotaShareRequest$: StaticStructureSchema;
224
+ export declare var UpdateQuotaShareResponse$: StaticStructureSchema;
202
225
  export declare var UpdateSchedulingPolicyRequest$: StaticStructureSchema;
203
226
  export declare var UpdateSchedulingPolicyResponse$: StaticStructureSchema;
204
227
  export declare var UpdateServiceEnvironmentRequest$: StaticStructureSchema;
205
228
  export declare var UpdateServiceEnvironmentResponse$: StaticStructureSchema;
229
+ export declare var UpdateServiceJobRequest$: StaticStructureSchema;
230
+ export declare var UpdateServiceJobResponse$: StaticStructureSchema;
206
231
  export declare var Volume$: StaticStructureSchema;
207
232
  export declare var CancelJob$: StaticOperationSchema;
208
233
  export declare var CreateComputeEnvironment$: StaticOperationSchema;
209
234
  export declare var CreateConsumableResource$: StaticOperationSchema;
210
235
  export declare var CreateJobQueue$: StaticOperationSchema;
236
+ export declare var CreateQuotaShare$: StaticOperationSchema;
211
237
  export declare var CreateSchedulingPolicy$: StaticOperationSchema;
212
238
  export declare var CreateServiceEnvironment$: StaticOperationSchema;
213
239
  export declare var DeleteComputeEnvironment$: StaticOperationSchema;
214
240
  export declare var DeleteConsumableResource$: StaticOperationSchema;
215
241
  export declare var DeleteJobQueue$: StaticOperationSchema;
242
+ export declare var DeleteQuotaShare$: StaticOperationSchema;
216
243
  export declare var DeleteSchedulingPolicy$: StaticOperationSchema;
217
244
  export declare var DeleteServiceEnvironment$: StaticOperationSchema;
218
245
  export declare var DeregisterJobDefinition$: StaticOperationSchema;
@@ -221,6 +248,7 @@ export declare var DescribeConsumableResource$: StaticOperationSchema;
221
248
  export declare var DescribeJobDefinitions$: StaticOperationSchema;
222
249
  export declare var DescribeJobQueues$: StaticOperationSchema;
223
250
  export declare var DescribeJobs$: StaticOperationSchema;
251
+ export declare var DescribeQuotaShare$: StaticOperationSchema;
224
252
  export declare var DescribeSchedulingPolicies$: StaticOperationSchema;
225
253
  export declare var DescribeServiceEnvironments$: StaticOperationSchema;
226
254
  export declare var DescribeServiceJob$: StaticOperationSchema;
@@ -228,6 +256,7 @@ export declare var GetJobQueueSnapshot$: StaticOperationSchema;
228
256
  export declare var ListConsumableResources$: StaticOperationSchema;
229
257
  export declare var ListJobs$: StaticOperationSchema;
230
258
  export declare var ListJobsByConsumableResource$: StaticOperationSchema;
259
+ export declare var ListQuotaShares$: StaticOperationSchema;
231
260
  export declare var ListSchedulingPolicies$: StaticOperationSchema;
232
261
  export declare var ListServiceJobs$: StaticOperationSchema;
233
262
  export declare var ListTagsForResource$: StaticOperationSchema;
@@ -241,5 +270,7 @@ export declare var UntagResource$: StaticOperationSchema;
241
270
  export declare var UpdateComputeEnvironment$: StaticOperationSchema;
242
271
  export declare var UpdateConsumableResource$: StaticOperationSchema;
243
272
  export declare var UpdateJobQueue$: StaticOperationSchema;
273
+ export declare var UpdateQuotaShare$: StaticOperationSchema;
244
274
  export declare var UpdateSchedulingPolicy$: StaticOperationSchema;
245
275
  export declare var UpdateServiceEnvironment$: StaticOperationSchema;
276
+ export declare var UpdateServiceJob$: StaticOperationSchema;
@@ -20,6 +20,10 @@ import {
20
20
  CreateJobQueueCommandInput,
21
21
  CreateJobQueueCommandOutput,
22
22
  } from "./commands/CreateJobQueueCommand";
23
+ import {
24
+ CreateQuotaShareCommandInput,
25
+ CreateQuotaShareCommandOutput,
26
+ } from "./commands/CreateQuotaShareCommand";
23
27
  import {
24
28
  CreateSchedulingPolicyCommandInput,
25
29
  CreateSchedulingPolicyCommandOutput,
@@ -40,6 +44,10 @@ import {
40
44
  DeleteJobQueueCommandInput,
41
45
  DeleteJobQueueCommandOutput,
42
46
  } from "./commands/DeleteJobQueueCommand";
47
+ import {
48
+ DeleteQuotaShareCommandInput,
49
+ DeleteQuotaShareCommandOutput,
50
+ } from "./commands/DeleteQuotaShareCommand";
43
51
  import {
44
52
  DeleteSchedulingPolicyCommandInput,
45
53
  DeleteSchedulingPolicyCommandOutput,
@@ -72,6 +80,10 @@ import {
72
80
  DescribeJobsCommandInput,
73
81
  DescribeJobsCommandOutput,
74
82
  } from "./commands/DescribeJobsCommand";
83
+ import {
84
+ DescribeQuotaShareCommandInput,
85
+ DescribeQuotaShareCommandOutput,
86
+ } from "./commands/DescribeQuotaShareCommand";
75
87
  import {
76
88
  DescribeSchedulingPoliciesCommandInput,
77
89
  DescribeSchedulingPoliciesCommandOutput,
@@ -100,6 +112,10 @@ import {
100
112
  ListJobsCommandInput,
101
113
  ListJobsCommandOutput,
102
114
  } from "./commands/ListJobsCommand";
115
+ import {
116
+ ListQuotaSharesCommandInput,
117
+ ListQuotaSharesCommandOutput,
118
+ } from "./commands/ListQuotaSharesCommand";
103
119
  import {
104
120
  ListSchedulingPoliciesCommandInput,
105
121
  ListSchedulingPoliciesCommandOutput,
@@ -152,6 +168,10 @@ import {
152
168
  UpdateJobQueueCommandInput,
153
169
  UpdateJobQueueCommandOutput,
154
170
  } from "./commands/UpdateJobQueueCommand";
171
+ import {
172
+ UpdateQuotaShareCommandInput,
173
+ UpdateQuotaShareCommandOutput,
174
+ } from "./commands/UpdateQuotaShareCommand";
155
175
  import {
156
176
  UpdateSchedulingPolicyCommandInput,
157
177
  UpdateSchedulingPolicyCommandOutput,
@@ -160,6 +180,10 @@ import {
160
180
  UpdateServiceEnvironmentCommandInput,
161
181
  UpdateServiceEnvironmentCommandOutput,
162
182
  } from "./commands/UpdateServiceEnvironmentCommand";
183
+ import {
184
+ UpdateServiceJobCommandInput,
185
+ UpdateServiceJobCommandOutput,
186
+ } from "./commands/UpdateServiceJobCommand";
163
187
  export interface Batch {
164
188
  cancelJob(
165
189
  args: CancelJobCommandInput,
@@ -213,6 +237,19 @@ export interface Batch {
213
237
  options: __HttpHandlerOptions,
214
238
  cb: (err: any, data?: CreateJobQueueCommandOutput) => void
215
239
  ): void;
240
+ createQuotaShare(
241
+ args: CreateQuotaShareCommandInput,
242
+ options?: __HttpHandlerOptions
243
+ ): Promise<CreateQuotaShareCommandOutput>;
244
+ createQuotaShare(
245
+ args: CreateQuotaShareCommandInput,
246
+ cb: (err: any, data?: CreateQuotaShareCommandOutput) => void
247
+ ): void;
248
+ createQuotaShare(
249
+ args: CreateQuotaShareCommandInput,
250
+ options: __HttpHandlerOptions,
251
+ cb: (err: any, data?: CreateQuotaShareCommandOutput) => void
252
+ ): void;
216
253
  createSchedulingPolicy(
217
254
  args: CreateSchedulingPolicyCommandInput,
218
255
  options?: __HttpHandlerOptions
@@ -278,6 +315,19 @@ export interface Batch {
278
315
  options: __HttpHandlerOptions,
279
316
  cb: (err: any, data?: DeleteJobQueueCommandOutput) => void
280
317
  ): void;
318
+ deleteQuotaShare(
319
+ args: DeleteQuotaShareCommandInput,
320
+ options?: __HttpHandlerOptions
321
+ ): Promise<DeleteQuotaShareCommandOutput>;
322
+ deleteQuotaShare(
323
+ args: DeleteQuotaShareCommandInput,
324
+ cb: (err: any, data?: DeleteQuotaShareCommandOutput) => void
325
+ ): void;
326
+ deleteQuotaShare(
327
+ args: DeleteQuotaShareCommandInput,
328
+ options: __HttpHandlerOptions,
329
+ cb: (err: any, data?: DeleteQuotaShareCommandOutput) => void
330
+ ): void;
281
331
  deleteSchedulingPolicy(
282
332
  args: DeleteSchedulingPolicyCommandInput,
283
333
  options?: __HttpHandlerOptions
@@ -385,6 +435,19 @@ export interface Batch {
385
435
  options: __HttpHandlerOptions,
386
436
  cb: (err: any, data?: DescribeJobsCommandOutput) => void
387
437
  ): void;
438
+ describeQuotaShare(
439
+ args: DescribeQuotaShareCommandInput,
440
+ options?: __HttpHandlerOptions
441
+ ): Promise<DescribeQuotaShareCommandOutput>;
442
+ describeQuotaShare(
443
+ args: DescribeQuotaShareCommandInput,
444
+ cb: (err: any, data?: DescribeQuotaShareCommandOutput) => void
445
+ ): void;
446
+ describeQuotaShare(
447
+ args: DescribeQuotaShareCommandInput,
448
+ options: __HttpHandlerOptions,
449
+ cb: (err: any, data?: DescribeQuotaShareCommandOutput) => void
450
+ ): void;
388
451
  describeSchedulingPolicies(
389
452
  args: DescribeSchedulingPoliciesCommandInput,
390
453
  options?: __HttpHandlerOptions
@@ -479,6 +542,19 @@ export interface Batch {
479
542
  options: __HttpHandlerOptions,
480
543
  cb: (err: any, data?: ListJobsByConsumableResourceCommandOutput) => void
481
544
  ): void;
545
+ listQuotaShares(
546
+ args: ListQuotaSharesCommandInput,
547
+ options?: __HttpHandlerOptions
548
+ ): Promise<ListQuotaSharesCommandOutput>;
549
+ listQuotaShares(
550
+ args: ListQuotaSharesCommandInput,
551
+ cb: (err: any, data?: ListQuotaSharesCommandOutput) => void
552
+ ): void;
553
+ listQuotaShares(
554
+ args: ListQuotaSharesCommandInput,
555
+ options: __HttpHandlerOptions,
556
+ cb: (err: any, data?: ListQuotaSharesCommandOutput) => void
557
+ ): void;
482
558
  listSchedulingPolicies(): Promise<ListSchedulingPoliciesCommandOutput>;
483
559
  listSchedulingPolicies(
484
560
  args: ListSchedulingPoliciesCommandInput,
@@ -650,6 +726,19 @@ export interface Batch {
650
726
  options: __HttpHandlerOptions,
651
727
  cb: (err: any, data?: UpdateJobQueueCommandOutput) => void
652
728
  ): void;
729
+ updateQuotaShare(
730
+ args: UpdateQuotaShareCommandInput,
731
+ options?: __HttpHandlerOptions
732
+ ): Promise<UpdateQuotaShareCommandOutput>;
733
+ updateQuotaShare(
734
+ args: UpdateQuotaShareCommandInput,
735
+ cb: (err: any, data?: UpdateQuotaShareCommandOutput) => void
736
+ ): void;
737
+ updateQuotaShare(
738
+ args: UpdateQuotaShareCommandInput,
739
+ options: __HttpHandlerOptions,
740
+ cb: (err: any, data?: UpdateQuotaShareCommandOutput) => void
741
+ ): void;
653
742
  updateSchedulingPolicy(
654
743
  args: UpdateSchedulingPolicyCommandInput,
655
744
  options?: __HttpHandlerOptions
@@ -676,6 +765,19 @@ export interface Batch {
676
765
  options: __HttpHandlerOptions,
677
766
  cb: (err: any, data?: UpdateServiceEnvironmentCommandOutput) => void
678
767
  ): void;
768
+ updateServiceJob(
769
+ args: UpdateServiceJobCommandInput,
770
+ options?: __HttpHandlerOptions
771
+ ): Promise<UpdateServiceJobCommandOutput>;
772
+ updateServiceJob(
773
+ args: UpdateServiceJobCommandInput,
774
+ cb: (err: any, data?: UpdateServiceJobCommandOutput) => void
775
+ ): void;
776
+ updateServiceJob(
777
+ args: UpdateServiceJobCommandInput,
778
+ options: __HttpHandlerOptions,
779
+ cb: (err: any, data?: UpdateServiceJobCommandOutput) => void
780
+ ): void;
679
781
  paginateDescribeComputeEnvironments(
680
782
  args?: DescribeComputeEnvironmentsCommandInput,
681
783
  paginationConfig?: Pick<
@@ -725,6 +827,13 @@ export interface Batch {
725
827
  Exclude<keyof PaginationConfiguration, "client">
726
828
  >
727
829
  ): Paginator<ListJobsByConsumableResourceCommandOutput>;
830
+ paginateListQuotaShares(
831
+ args: ListQuotaSharesCommandInput,
832
+ paginationConfig?: Pick<
833
+ PaginationConfiguration,
834
+ Exclude<keyof PaginationConfiguration, "client">
835
+ >
836
+ ): Paginator<ListQuotaSharesCommandOutput>;
728
837
  paginateListSchedulingPolicies(
729
838
  args?: ListSchedulingPoliciesCommandInput,
730
839
  paginationConfig?: Pick<
@@ -61,6 +61,10 @@ import {
61
61
  CreateJobQueueCommandInput,
62
62
  CreateJobQueueCommandOutput,
63
63
  } from "./commands/CreateJobQueueCommand";
64
+ import {
65
+ CreateQuotaShareCommandInput,
66
+ CreateQuotaShareCommandOutput,
67
+ } from "./commands/CreateQuotaShareCommand";
64
68
  import {
65
69
  CreateSchedulingPolicyCommandInput,
66
70
  CreateSchedulingPolicyCommandOutput,
@@ -81,6 +85,10 @@ import {
81
85
  DeleteJobQueueCommandInput,
82
86
  DeleteJobQueueCommandOutput,
83
87
  } from "./commands/DeleteJobQueueCommand";
88
+ import {
89
+ DeleteQuotaShareCommandInput,
90
+ DeleteQuotaShareCommandOutput,
91
+ } from "./commands/DeleteQuotaShareCommand";
84
92
  import {
85
93
  DeleteSchedulingPolicyCommandInput,
86
94
  DeleteSchedulingPolicyCommandOutput,
@@ -113,6 +121,10 @@ import {
113
121
  DescribeJobsCommandInput,
114
122
  DescribeJobsCommandOutput,
115
123
  } from "./commands/DescribeJobsCommand";
124
+ import {
125
+ DescribeQuotaShareCommandInput,
126
+ DescribeQuotaShareCommandOutput,
127
+ } from "./commands/DescribeQuotaShareCommand";
116
128
  import {
117
129
  DescribeSchedulingPoliciesCommandInput,
118
130
  DescribeSchedulingPoliciesCommandOutput,
@@ -141,6 +153,10 @@ import {
141
153
  ListJobsCommandInput,
142
154
  ListJobsCommandOutput,
143
155
  } from "./commands/ListJobsCommand";
156
+ import {
157
+ ListQuotaSharesCommandInput,
158
+ ListQuotaSharesCommandOutput,
159
+ } from "./commands/ListQuotaSharesCommand";
144
160
  import {
145
161
  ListSchedulingPoliciesCommandInput,
146
162
  ListSchedulingPoliciesCommandOutput,
@@ -193,6 +209,10 @@ import {
193
209
  UpdateJobQueueCommandInput,
194
210
  UpdateJobQueueCommandOutput,
195
211
  } from "./commands/UpdateJobQueueCommand";
212
+ import {
213
+ UpdateQuotaShareCommandInput,
214
+ UpdateQuotaShareCommandOutput,
215
+ } from "./commands/UpdateQuotaShareCommand";
196
216
  import {
197
217
  UpdateSchedulingPolicyCommandInput,
198
218
  UpdateSchedulingPolicyCommandOutput,
@@ -201,6 +221,10 @@ import {
201
221
  UpdateServiceEnvironmentCommandInput,
202
222
  UpdateServiceEnvironmentCommandOutput,
203
223
  } from "./commands/UpdateServiceEnvironmentCommand";
224
+ import {
225
+ UpdateServiceJobCommandInput,
226
+ UpdateServiceJobCommandOutput,
227
+ } from "./commands/UpdateServiceJobCommand";
204
228
  import {
205
229
  ClientInputEndpointParameters,
206
230
  ClientResolvedEndpointParameters,
@@ -213,11 +237,13 @@ export type ServiceInputTypes =
213
237
  | CreateComputeEnvironmentCommandInput
214
238
  | CreateConsumableResourceCommandInput
215
239
  | CreateJobQueueCommandInput
240
+ | CreateQuotaShareCommandInput
216
241
  | CreateSchedulingPolicyCommandInput
217
242
  | CreateServiceEnvironmentCommandInput
218
243
  | DeleteComputeEnvironmentCommandInput
219
244
  | DeleteConsumableResourceCommandInput
220
245
  | DeleteJobQueueCommandInput
246
+ | DeleteQuotaShareCommandInput
221
247
  | DeleteSchedulingPolicyCommandInput
222
248
  | DeleteServiceEnvironmentCommandInput
223
249
  | DeregisterJobDefinitionCommandInput
@@ -226,6 +252,7 @@ export type ServiceInputTypes =
226
252
  | DescribeJobDefinitionsCommandInput
227
253
  | DescribeJobQueuesCommandInput
228
254
  | DescribeJobsCommandInput
255
+ | DescribeQuotaShareCommandInput
229
256
  | DescribeSchedulingPoliciesCommandInput
230
257
  | DescribeServiceEnvironmentsCommandInput
231
258
  | DescribeServiceJobCommandInput
@@ -233,6 +260,7 @@ export type ServiceInputTypes =
233
260
  | ListConsumableResourcesCommandInput
234
261
  | ListJobsByConsumableResourceCommandInput
235
262
  | ListJobsCommandInput
263
+ | ListQuotaSharesCommandInput
236
264
  | ListSchedulingPoliciesCommandInput
237
265
  | ListServiceJobsCommandInput
238
266
  | ListTagsForResourceCommandInput
@@ -246,18 +274,22 @@ export type ServiceInputTypes =
246
274
  | UpdateComputeEnvironmentCommandInput
247
275
  | UpdateConsumableResourceCommandInput
248
276
  | UpdateJobQueueCommandInput
277
+ | UpdateQuotaShareCommandInput
249
278
  | UpdateSchedulingPolicyCommandInput
250
- | UpdateServiceEnvironmentCommandInput;
279
+ | UpdateServiceEnvironmentCommandInput
280
+ | UpdateServiceJobCommandInput;
251
281
  export type ServiceOutputTypes =
252
282
  | CancelJobCommandOutput
253
283
  | CreateComputeEnvironmentCommandOutput
254
284
  | CreateConsumableResourceCommandOutput
255
285
  | CreateJobQueueCommandOutput
286
+ | CreateQuotaShareCommandOutput
256
287
  | CreateSchedulingPolicyCommandOutput
257
288
  | CreateServiceEnvironmentCommandOutput
258
289
  | DeleteComputeEnvironmentCommandOutput
259
290
  | DeleteConsumableResourceCommandOutput
260
291
  | DeleteJobQueueCommandOutput
292
+ | DeleteQuotaShareCommandOutput
261
293
  | DeleteSchedulingPolicyCommandOutput
262
294
  | DeleteServiceEnvironmentCommandOutput
263
295
  | DeregisterJobDefinitionCommandOutput
@@ -266,6 +298,7 @@ export type ServiceOutputTypes =
266
298
  | DescribeJobDefinitionsCommandOutput
267
299
  | DescribeJobQueuesCommandOutput
268
300
  | DescribeJobsCommandOutput
301
+ | DescribeQuotaShareCommandOutput
269
302
  | DescribeSchedulingPoliciesCommandOutput
270
303
  | DescribeServiceEnvironmentsCommandOutput
271
304
  | DescribeServiceJobCommandOutput
@@ -273,6 +306,7 @@ export type ServiceOutputTypes =
273
306
  | ListConsumableResourcesCommandOutput
274
307
  | ListJobsByConsumableResourceCommandOutput
275
308
  | ListJobsCommandOutput
309
+ | ListQuotaSharesCommandOutput
276
310
  | ListSchedulingPoliciesCommandOutput
277
311
  | ListServiceJobsCommandOutput
278
312
  | ListTagsForResourceCommandOutput
@@ -286,8 +320,10 @@ export type ServiceOutputTypes =
286
320
  | UpdateComputeEnvironmentCommandOutput
287
321
  | UpdateConsumableResourceCommandOutput
288
322
  | UpdateJobQueueCommandOutput
323
+ | UpdateQuotaShareCommandOutput
289
324
  | UpdateSchedulingPolicyCommandOutput
290
- | UpdateServiceEnvironmentCommandOutput;
325
+ | UpdateServiceEnvironmentCommandOutput
326
+ | UpdateServiceJobCommandOutput;
291
327
  export interface ClientDefaults
292
328
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
293
329
  requestHandler?: __HttpHandlerUserInput;
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BatchClient";
8
+ import {
9
+ CreateQuotaShareRequest,
10
+ CreateQuotaShareResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateQuotaShareCommandInput extends CreateQuotaShareRequest {}
15
+ export interface CreateQuotaShareCommandOutput
16
+ extends CreateQuotaShareResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateQuotaShareCommand_base: {
19
+ new (
20
+ input: CreateQuotaShareCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateQuotaShareCommandInput,
23
+ CreateQuotaShareCommandOutput,
24
+ BatchClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateQuotaShareCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateQuotaShareCommandInput,
32
+ CreateQuotaShareCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateQuotaShareCommand extends CreateQuotaShareCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateQuotaShareRequest;
43
+ output: CreateQuotaShareResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateQuotaShareCommandInput;
47
+ output: CreateQuotaShareCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BatchClient";
8
+ import {
9
+ DeleteQuotaShareRequest,
10
+ DeleteQuotaShareResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteQuotaShareCommandInput extends DeleteQuotaShareRequest {}
15
+ export interface DeleteQuotaShareCommandOutput
16
+ extends DeleteQuotaShareResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteQuotaShareCommand_base: {
19
+ new (
20
+ input: DeleteQuotaShareCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteQuotaShareCommandInput,
23
+ DeleteQuotaShareCommandOutput,
24
+ BatchClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteQuotaShareCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteQuotaShareCommandInput,
32
+ DeleteQuotaShareCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteQuotaShareCommand extends DeleteQuotaShareCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteQuotaShareRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: DeleteQuotaShareCommandInput;
47
+ output: DeleteQuotaShareCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BatchClient";
8
+ import {
9
+ DescribeQuotaShareRequest,
10
+ DescribeQuotaShareResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeQuotaShareCommandInput
15
+ extends DescribeQuotaShareRequest {}
16
+ export interface DescribeQuotaShareCommandOutput
17
+ extends DescribeQuotaShareResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeQuotaShareCommand_base: {
20
+ new (
21
+ input: DescribeQuotaShareCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeQuotaShareCommandInput,
24
+ DescribeQuotaShareCommandOutput,
25
+ BatchClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeQuotaShareCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeQuotaShareCommandInput,
33
+ DescribeQuotaShareCommandOutput,
34
+ BatchClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeQuotaShareCommand extends DescribeQuotaShareCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeQuotaShareRequest;
44
+ output: DescribeQuotaShareResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeQuotaShareCommandInput;
48
+ output: DescribeQuotaShareCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../BatchClient";
8
+ import {
9
+ ListQuotaSharesRequest,
10
+ ListQuotaSharesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListQuotaSharesCommandInput extends ListQuotaSharesRequest {}
15
+ export interface ListQuotaSharesCommandOutput
16
+ extends ListQuotaSharesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListQuotaSharesCommand_base: {
19
+ new (
20
+ input: ListQuotaSharesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListQuotaSharesCommandInput,
23
+ ListQuotaSharesCommandOutput,
24
+ BatchClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListQuotaSharesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListQuotaSharesCommandInput,
32
+ ListQuotaSharesCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListQuotaSharesCommand extends ListQuotaSharesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListQuotaSharesRequest;
43
+ output: ListQuotaSharesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListQuotaSharesCommandInput;
47
+ output: ListQuotaSharesCommandOutput;
48
+ };
49
+ };
50
+ }