@aws-sdk/client-batch 3.1011.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.
- package/README.md +42 -0
- package/dist-cjs/index.js +116 -0
- package/dist-cjs/schemas/schemas_0.js +244 -25
- package/dist-es/Batch.js +14 -0
- package/dist-es/commands/CreateQuotaShareCommand.js +16 -0
- package/dist-es/commands/DeleteQuotaShareCommand.js +16 -0
- package/dist-es/commands/DescribeQuotaShareCommand.js +16 -0
- package/dist-es/commands/ListQuotaSharesCommand.js +16 -0
- package/dist-es/commands/UpdateQuotaShareCommand.js +16 -0
- package/dist-es/commands/UpdateServiceJobCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +23 -0
- package/dist-es/pagination/ListQuotaSharesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +238 -20
- package/dist-types/Batch.d.ts +49 -0
- package/dist-types/BatchClient.d.ts +8 -2
- package/dist-types/commands/CreateQuotaShareCommand.d.ts +101 -0
- package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeleteJobQueueCommand.d.ts +1 -2
- package/dist-types/commands/DeleteQuotaShareCommand.d.ts +82 -0
- package/dist-types/commands/DescribeQuotaShareCommand.d.ts +102 -0
- package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +3 -0
- package/dist-types/commands/DescribeServiceJobCommand.d.ts +15 -0
- package/dist-types/commands/GetJobQueueSnapshotCommand.d.ts +28 -2
- package/dist-types/commands/ListQuotaSharesCommand.d.ts +106 -0
- package/dist-types/commands/ListServiceJobsCommand.d.ts +1 -0
- package/dist-types/commands/SubmitServiceJobCommand.d.ts +4 -0
- package/dist-types/commands/UpdateQuotaShareCommand.d.ts +97 -0
- package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +3 -0
- package/dist-types/commands/UpdateServiceJobCommand.d.ts +85 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +63 -0
- package/dist-types/models/models_0.d.ts +596 -18
- package/dist-types/pagination/ListQuotaSharesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +31 -0
- package/dist-types/ts3.4/Batch.d.ts +109 -0
- package/dist-types/ts3.4/BatchClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateQuotaShareCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteQuotaShareCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeQuotaShareCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListQuotaSharesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateQuotaShareCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateServiceJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -0
- package/dist-types/ts3.4/models/models_0.d.ts +142 -0
- package/dist-types/ts3.4/pagination/ListQuotaSharesPaginator.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 +31 -0
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -219,6 +219,13 @@ CreateJobQueue
|
|
|
219
219
|
</details>
|
|
220
220
|
<details>
|
|
221
221
|
<summary>
|
|
222
|
+
CreateQuotaShare
|
|
223
|
+
</summary>
|
|
224
|
+
|
|
225
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/CreateQuotaShareCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/CreateQuotaShareCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/CreateQuotaShareCommandOutput/)
|
|
226
|
+
</details>
|
|
227
|
+
<details>
|
|
228
|
+
<summary>
|
|
222
229
|
CreateSchedulingPolicy
|
|
223
230
|
</summary>
|
|
224
231
|
|
|
@@ -254,6 +261,13 @@ DeleteJobQueue
|
|
|
254
261
|
</details>
|
|
255
262
|
<details>
|
|
256
263
|
<summary>
|
|
264
|
+
DeleteQuotaShare
|
|
265
|
+
</summary>
|
|
266
|
+
|
|
267
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/DeleteQuotaShareCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/DeleteQuotaShareCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/DeleteQuotaShareCommandOutput/)
|
|
268
|
+
</details>
|
|
269
|
+
<details>
|
|
270
|
+
<summary>
|
|
257
271
|
DeleteSchedulingPolicy
|
|
258
272
|
</summary>
|
|
259
273
|
|
|
@@ -310,6 +324,13 @@ DescribeJobs
|
|
|
310
324
|
</details>
|
|
311
325
|
<details>
|
|
312
326
|
<summary>
|
|
327
|
+
DescribeQuotaShare
|
|
328
|
+
</summary>
|
|
329
|
+
|
|
330
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/DescribeQuotaShareCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/DescribeQuotaShareCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/DescribeQuotaShareCommandOutput/)
|
|
331
|
+
</details>
|
|
332
|
+
<details>
|
|
333
|
+
<summary>
|
|
313
334
|
DescribeSchedulingPolicies
|
|
314
335
|
</summary>
|
|
315
336
|
|
|
@@ -359,6 +380,13 @@ ListJobsByConsumableResource
|
|
|
359
380
|
</details>
|
|
360
381
|
<details>
|
|
361
382
|
<summary>
|
|
383
|
+
ListQuotaShares
|
|
384
|
+
</summary>
|
|
385
|
+
|
|
386
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/ListQuotaSharesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/ListQuotaSharesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/ListQuotaSharesCommandOutput/)
|
|
387
|
+
</details>
|
|
388
|
+
<details>
|
|
389
|
+
<summary>
|
|
362
390
|
ListSchedulingPolicies
|
|
363
391
|
</summary>
|
|
364
392
|
|
|
@@ -450,6 +478,13 @@ UpdateJobQueue
|
|
|
450
478
|
</details>
|
|
451
479
|
<details>
|
|
452
480
|
<summary>
|
|
481
|
+
UpdateQuotaShare
|
|
482
|
+
</summary>
|
|
483
|
+
|
|
484
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/UpdateQuotaShareCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateQuotaShareCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateQuotaShareCommandOutput/)
|
|
485
|
+
</details>
|
|
486
|
+
<details>
|
|
487
|
+
<summary>
|
|
453
488
|
UpdateSchedulingPolicy
|
|
454
489
|
</summary>
|
|
455
490
|
|
|
@@ -462,3 +497,10 @@ UpdateServiceEnvironment
|
|
|
462
497
|
|
|
463
498
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/UpdateServiceEnvironmentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateServiceEnvironmentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateServiceEnvironmentCommandOutput/)
|
|
464
499
|
</details>
|
|
500
|
+
<details>
|
|
501
|
+
<summary>
|
|
502
|
+
UpdateServiceJob
|
|
503
|
+
</summary>
|
|
504
|
+
|
|
505
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/batch/command/UpdateServiceJobCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateServiceJobCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-batch/Interface/UpdateServiceJobCommandOutput/)
|
|
506
|
+
</details>
|
package/dist-cjs/index.js
CHANGED
|
@@ -161,6 +161,18 @@ class CreateJobQueueCommand extends smithyClient.Command
|
|
|
161
161
|
.build() {
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
+
class CreateQuotaShareCommand extends smithyClient.Command
|
|
165
|
+
.classBuilder()
|
|
166
|
+
.ep(commonParams)
|
|
167
|
+
.m(function (Command, cs, config, o) {
|
|
168
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
169
|
+
})
|
|
170
|
+
.s("AWSBatchV20160810", "CreateQuotaShare", {})
|
|
171
|
+
.n("BatchClient", "CreateQuotaShareCommand")
|
|
172
|
+
.sc(schemas_0.CreateQuotaShare$)
|
|
173
|
+
.build() {
|
|
174
|
+
}
|
|
175
|
+
|
|
164
176
|
class CreateSchedulingPolicyCommand extends smithyClient.Command
|
|
165
177
|
.classBuilder()
|
|
166
178
|
.ep(commonParams)
|
|
@@ -221,6 +233,18 @@ class DeleteJobQueueCommand extends smithyClient.Command
|
|
|
221
233
|
.build() {
|
|
222
234
|
}
|
|
223
235
|
|
|
236
|
+
class DeleteQuotaShareCommand extends smithyClient.Command
|
|
237
|
+
.classBuilder()
|
|
238
|
+
.ep(commonParams)
|
|
239
|
+
.m(function (Command, cs, config, o) {
|
|
240
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
241
|
+
})
|
|
242
|
+
.s("AWSBatchV20160810", "DeleteQuotaShare", {})
|
|
243
|
+
.n("BatchClient", "DeleteQuotaShareCommand")
|
|
244
|
+
.sc(schemas_0.DeleteQuotaShare$)
|
|
245
|
+
.build() {
|
|
246
|
+
}
|
|
247
|
+
|
|
224
248
|
class DeleteSchedulingPolicyCommand extends smithyClient.Command
|
|
225
249
|
.classBuilder()
|
|
226
250
|
.ep(commonParams)
|
|
@@ -317,6 +341,18 @@ class DescribeJobsCommand extends smithyClient.Command
|
|
|
317
341
|
.build() {
|
|
318
342
|
}
|
|
319
343
|
|
|
344
|
+
class DescribeQuotaShareCommand extends smithyClient.Command
|
|
345
|
+
.classBuilder()
|
|
346
|
+
.ep(commonParams)
|
|
347
|
+
.m(function (Command, cs, config, o) {
|
|
348
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
349
|
+
})
|
|
350
|
+
.s("AWSBatchV20160810", "DescribeQuotaShare", {})
|
|
351
|
+
.n("BatchClient", "DescribeQuotaShareCommand")
|
|
352
|
+
.sc(schemas_0.DescribeQuotaShare$)
|
|
353
|
+
.build() {
|
|
354
|
+
}
|
|
355
|
+
|
|
320
356
|
class DescribeSchedulingPoliciesCommand extends smithyClient.Command
|
|
321
357
|
.classBuilder()
|
|
322
358
|
.ep(commonParams)
|
|
@@ -401,6 +437,18 @@ class ListJobsCommand extends smithyClient.Command
|
|
|
401
437
|
.build() {
|
|
402
438
|
}
|
|
403
439
|
|
|
440
|
+
class ListQuotaSharesCommand extends smithyClient.Command
|
|
441
|
+
.classBuilder()
|
|
442
|
+
.ep(commonParams)
|
|
443
|
+
.m(function (Command, cs, config, o) {
|
|
444
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
445
|
+
})
|
|
446
|
+
.s("AWSBatchV20160810", "ListQuotaShares", {})
|
|
447
|
+
.n("BatchClient", "ListQuotaSharesCommand")
|
|
448
|
+
.sc(schemas_0.ListQuotaShares$)
|
|
449
|
+
.build() {
|
|
450
|
+
}
|
|
451
|
+
|
|
404
452
|
class ListSchedulingPoliciesCommand extends smithyClient.Command
|
|
405
453
|
.classBuilder()
|
|
406
454
|
.ep(commonParams)
|
|
@@ -557,6 +605,18 @@ class UpdateJobQueueCommand extends smithyClient.Command
|
|
|
557
605
|
.build() {
|
|
558
606
|
}
|
|
559
607
|
|
|
608
|
+
class UpdateQuotaShareCommand extends smithyClient.Command
|
|
609
|
+
.classBuilder()
|
|
610
|
+
.ep(commonParams)
|
|
611
|
+
.m(function (Command, cs, config, o) {
|
|
612
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
613
|
+
})
|
|
614
|
+
.s("AWSBatchV20160810", "UpdateQuotaShare", {})
|
|
615
|
+
.n("BatchClient", "UpdateQuotaShareCommand")
|
|
616
|
+
.sc(schemas_0.UpdateQuotaShare$)
|
|
617
|
+
.build() {
|
|
618
|
+
}
|
|
619
|
+
|
|
560
620
|
class UpdateSchedulingPolicyCommand extends smithyClient.Command
|
|
561
621
|
.classBuilder()
|
|
562
622
|
.ep(commonParams)
|
|
@@ -581,6 +641,18 @@ class UpdateServiceEnvironmentCommand extends smithyClient.Command
|
|
|
581
641
|
.build() {
|
|
582
642
|
}
|
|
583
643
|
|
|
644
|
+
class UpdateServiceJobCommand extends smithyClient.Command
|
|
645
|
+
.classBuilder()
|
|
646
|
+
.ep(commonParams)
|
|
647
|
+
.m(function (Command, cs, config, o) {
|
|
648
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
649
|
+
})
|
|
650
|
+
.s("AWSBatchV20160810", "UpdateServiceJob", {})
|
|
651
|
+
.n("BatchClient", "UpdateServiceJobCommand")
|
|
652
|
+
.sc(schemas_0.UpdateServiceJob$)
|
|
653
|
+
.build() {
|
|
654
|
+
}
|
|
655
|
+
|
|
584
656
|
const paginateDescribeComputeEnvironments = core.createPaginator(BatchClient, DescribeComputeEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
585
657
|
|
|
586
658
|
const paginateDescribeJobDefinitions = core.createPaginator(BatchClient, DescribeJobDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -595,6 +667,8 @@ const paginateListJobsByConsumableResource = core.createPaginator(BatchClient, L
|
|
|
595
667
|
|
|
596
668
|
const paginateListJobs = core.createPaginator(BatchClient, ListJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
597
669
|
|
|
670
|
+
const paginateListQuotaShares = core.createPaginator(BatchClient, ListQuotaSharesCommand, "nextToken", "nextToken", "maxResults");
|
|
671
|
+
|
|
598
672
|
const paginateListSchedulingPolicies = core.createPaginator(BatchClient, ListSchedulingPoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
599
673
|
|
|
600
674
|
const paginateListServiceJobs = core.createPaginator(BatchClient, ListServiceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -604,11 +678,13 @@ const commands = {
|
|
|
604
678
|
CreateComputeEnvironmentCommand,
|
|
605
679
|
CreateConsumableResourceCommand,
|
|
606
680
|
CreateJobQueueCommand,
|
|
681
|
+
CreateQuotaShareCommand,
|
|
607
682
|
CreateSchedulingPolicyCommand,
|
|
608
683
|
CreateServiceEnvironmentCommand,
|
|
609
684
|
DeleteComputeEnvironmentCommand,
|
|
610
685
|
DeleteConsumableResourceCommand,
|
|
611
686
|
DeleteJobQueueCommand,
|
|
687
|
+
DeleteQuotaShareCommand,
|
|
612
688
|
DeleteSchedulingPolicyCommand,
|
|
613
689
|
DeleteServiceEnvironmentCommand,
|
|
614
690
|
DeregisterJobDefinitionCommand,
|
|
@@ -617,6 +693,7 @@ const commands = {
|
|
|
617
693
|
DescribeJobDefinitionsCommand,
|
|
618
694
|
DescribeJobQueuesCommand,
|
|
619
695
|
DescribeJobsCommand,
|
|
696
|
+
DescribeQuotaShareCommand,
|
|
620
697
|
DescribeSchedulingPoliciesCommand,
|
|
621
698
|
DescribeServiceEnvironmentsCommand,
|
|
622
699
|
DescribeServiceJobCommand,
|
|
@@ -624,6 +701,7 @@ const commands = {
|
|
|
624
701
|
ListConsumableResourcesCommand,
|
|
625
702
|
ListJobsCommand,
|
|
626
703
|
ListJobsByConsumableResourceCommand,
|
|
704
|
+
ListQuotaSharesCommand,
|
|
627
705
|
ListSchedulingPoliciesCommand,
|
|
628
706
|
ListServiceJobsCommand,
|
|
629
707
|
ListTagsForResourceCommand,
|
|
@@ -637,8 +715,10 @@ const commands = {
|
|
|
637
715
|
UpdateComputeEnvironmentCommand,
|
|
638
716
|
UpdateConsumableResourceCommand,
|
|
639
717
|
UpdateJobQueueCommand,
|
|
718
|
+
UpdateQuotaShareCommand,
|
|
640
719
|
UpdateSchedulingPolicyCommand,
|
|
641
720
|
UpdateServiceEnvironmentCommand,
|
|
721
|
+
UpdateServiceJobCommand,
|
|
642
722
|
};
|
|
643
723
|
const paginators = {
|
|
644
724
|
paginateDescribeComputeEnvironments,
|
|
@@ -648,6 +728,7 @@ const paginators = {
|
|
|
648
728
|
paginateListConsumableResources,
|
|
649
729
|
paginateListJobs,
|
|
650
730
|
paginateListJobsByConsumableResource,
|
|
731
|
+
paginateListQuotaShares,
|
|
651
732
|
paginateListSchedulingPolicies,
|
|
652
733
|
paginateListServiceJobs,
|
|
653
734
|
};
|
|
@@ -704,6 +785,22 @@ const JQState = {
|
|
|
704
785
|
DISABLED: "DISABLED",
|
|
705
786
|
ENABLED: "ENABLED",
|
|
706
787
|
};
|
|
788
|
+
const QuotaShareInSharePreemptionState = {
|
|
789
|
+
DISABLED: "DISABLED",
|
|
790
|
+
ENABLED: "ENABLED",
|
|
791
|
+
};
|
|
792
|
+
const QuotaShareResourceSharingStrategy = {
|
|
793
|
+
LEND: "LEND",
|
|
794
|
+
LEND_AND_BORROW: "LEND_AND_BORROW",
|
|
795
|
+
RESERVE: "RESERVE",
|
|
796
|
+
};
|
|
797
|
+
const QuotaShareState = {
|
|
798
|
+
DISABLED: "DISABLED",
|
|
799
|
+
ENABLED: "ENABLED",
|
|
800
|
+
};
|
|
801
|
+
const QuotaShareIdleResourceAssignmentStrategy = {
|
|
802
|
+
FIFO: "FIFO",
|
|
803
|
+
};
|
|
707
804
|
const ServiceEnvironmentType = {
|
|
708
805
|
SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING",
|
|
709
806
|
};
|
|
@@ -780,6 +877,13 @@ const JobStatus = {
|
|
|
780
877
|
SUBMITTED: "SUBMITTED",
|
|
781
878
|
SUCCEEDED: "SUCCEEDED",
|
|
782
879
|
};
|
|
880
|
+
const QuotaShareStatus = {
|
|
881
|
+
CREATING: "CREATING",
|
|
882
|
+
DELETING: "DELETING",
|
|
883
|
+
INVALID: "INVALID",
|
|
884
|
+
UPDATING: "UPDATING",
|
|
885
|
+
VALID: "VALID",
|
|
886
|
+
};
|
|
783
887
|
const ServiceEnvironmentStatus = {
|
|
784
888
|
CREATING: "CREATING",
|
|
785
889
|
DELETED: "DELETED",
|
|
@@ -835,11 +939,13 @@ exports.CancelJobCommand = CancelJobCommand;
|
|
|
835
939
|
exports.CreateComputeEnvironmentCommand = CreateComputeEnvironmentCommand;
|
|
836
940
|
exports.CreateConsumableResourceCommand = CreateConsumableResourceCommand;
|
|
837
941
|
exports.CreateJobQueueCommand = CreateJobQueueCommand;
|
|
942
|
+
exports.CreateQuotaShareCommand = CreateQuotaShareCommand;
|
|
838
943
|
exports.CreateSchedulingPolicyCommand = CreateSchedulingPolicyCommand;
|
|
839
944
|
exports.CreateServiceEnvironmentCommand = CreateServiceEnvironmentCommand;
|
|
840
945
|
exports.DeleteComputeEnvironmentCommand = DeleteComputeEnvironmentCommand;
|
|
841
946
|
exports.DeleteConsumableResourceCommand = DeleteConsumableResourceCommand;
|
|
842
947
|
exports.DeleteJobQueueCommand = DeleteJobQueueCommand;
|
|
948
|
+
exports.DeleteQuotaShareCommand = DeleteQuotaShareCommand;
|
|
843
949
|
exports.DeleteSchedulingPolicyCommand = DeleteSchedulingPolicyCommand;
|
|
844
950
|
exports.DeleteServiceEnvironmentCommand = DeleteServiceEnvironmentCommand;
|
|
845
951
|
exports.DeregisterJobDefinitionCommand = DeregisterJobDefinitionCommand;
|
|
@@ -848,6 +954,7 @@ exports.DescribeConsumableResourceCommand = DescribeConsumableResourceCommand;
|
|
|
848
954
|
exports.DescribeJobDefinitionsCommand = DescribeJobDefinitionsCommand;
|
|
849
955
|
exports.DescribeJobQueuesCommand = DescribeJobQueuesCommand;
|
|
850
956
|
exports.DescribeJobsCommand = DescribeJobsCommand;
|
|
957
|
+
exports.DescribeQuotaShareCommand = DescribeQuotaShareCommand;
|
|
851
958
|
exports.DescribeSchedulingPoliciesCommand = DescribeSchedulingPoliciesCommand;
|
|
852
959
|
exports.DescribeServiceEnvironmentsCommand = DescribeServiceEnvironmentsCommand;
|
|
853
960
|
exports.DescribeServiceJobCommand = DescribeServiceJobCommand;
|
|
@@ -866,12 +973,18 @@ exports.JobStatus = JobStatus;
|
|
|
866
973
|
exports.ListConsumableResourcesCommand = ListConsumableResourcesCommand;
|
|
867
974
|
exports.ListJobsByConsumableResourceCommand = ListJobsByConsumableResourceCommand;
|
|
868
975
|
exports.ListJobsCommand = ListJobsCommand;
|
|
976
|
+
exports.ListQuotaSharesCommand = ListQuotaSharesCommand;
|
|
869
977
|
exports.ListSchedulingPoliciesCommand = ListSchedulingPoliciesCommand;
|
|
870
978
|
exports.ListServiceJobsCommand = ListServiceJobsCommand;
|
|
871
979
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
872
980
|
exports.LogDriver = LogDriver;
|
|
873
981
|
exports.OrchestrationType = OrchestrationType;
|
|
874
982
|
exports.PlatformCapability = PlatformCapability;
|
|
983
|
+
exports.QuotaShareIdleResourceAssignmentStrategy = QuotaShareIdleResourceAssignmentStrategy;
|
|
984
|
+
exports.QuotaShareInSharePreemptionState = QuotaShareInSharePreemptionState;
|
|
985
|
+
exports.QuotaShareResourceSharingStrategy = QuotaShareResourceSharingStrategy;
|
|
986
|
+
exports.QuotaShareState = QuotaShareState;
|
|
987
|
+
exports.QuotaShareStatus = QuotaShareStatus;
|
|
875
988
|
exports.RegisterJobDefinitionCommand = RegisterJobDefinitionCommand;
|
|
876
989
|
exports.ResourceType = ResourceType;
|
|
877
990
|
exports.RetryAction = RetryAction;
|
|
@@ -891,8 +1004,10 @@ exports.UntagResourceCommand = UntagResourceCommand;
|
|
|
891
1004
|
exports.UpdateComputeEnvironmentCommand = UpdateComputeEnvironmentCommand;
|
|
892
1005
|
exports.UpdateConsumableResourceCommand = UpdateConsumableResourceCommand;
|
|
893
1006
|
exports.UpdateJobQueueCommand = UpdateJobQueueCommand;
|
|
1007
|
+
exports.UpdateQuotaShareCommand = UpdateQuotaShareCommand;
|
|
894
1008
|
exports.UpdateSchedulingPolicyCommand = UpdateSchedulingPolicyCommand;
|
|
895
1009
|
exports.UpdateServiceEnvironmentCommand = UpdateServiceEnvironmentCommand;
|
|
1010
|
+
exports.UpdateServiceJobCommand = UpdateServiceJobCommand;
|
|
896
1011
|
exports.UserdataType = UserdataType;
|
|
897
1012
|
exports.paginateDescribeComputeEnvironments = paginateDescribeComputeEnvironments;
|
|
898
1013
|
exports.paginateDescribeJobDefinitions = paginateDescribeJobDefinitions;
|
|
@@ -901,6 +1016,7 @@ exports.paginateDescribeServiceEnvironments = paginateDescribeServiceEnvironment
|
|
|
901
1016
|
exports.paginateListConsumableResources = paginateListConsumableResources;
|
|
902
1017
|
exports.paginateListJobs = paginateListJobs;
|
|
903
1018
|
exports.paginateListJobsByConsumableResource = paginateListJobsByConsumableResource;
|
|
1019
|
+
exports.paginateListQuotaShares = paginateListQuotaShares;
|
|
904
1020
|
exports.paginateListSchedulingPolicies = paginateListSchedulingPolicies;
|
|
905
1021
|
exports.paginateListServiceJobs = paginateListServiceJobs;
|
|
906
1022
|
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|