@aws-sdk/client-batch 3.774.0 → 3.777.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 (41) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +24 -18
  3. package/dist-es/BatchClient.js +2 -1
  4. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  5. package/dist-es/endpoint/EndpointParameters.js +2 -3
  6. package/dist-es/models/models_0.js +5 -0
  7. package/dist-es/runtimeExtensions.js +2 -14
  8. package/dist-types/commands/CancelJobCommand.d.ts +8 -5
  9. package/dist-types/commands/CreateComputeEnvironmentCommand.d.ts +44 -45
  10. package/dist-types/commands/CreateConsumableResourceCommand.d.ts +11 -11
  11. package/dist-types/commands/CreateJobQueueCommand.d.ts +22 -23
  12. package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +1 -0
  13. package/dist-types/commands/DeleteComputeEnvironmentCommand.d.ts +7 -4
  14. package/dist-types/commands/DeleteConsumableResourceCommand.d.ts +7 -4
  15. package/dist-types/commands/DeleteJobQueueCommand.d.ts +7 -4
  16. package/dist-types/commands/DeleteSchedulingPolicyCommand.d.ts +1 -0
  17. package/dist-types/commands/DeregisterJobDefinitionCommand.d.ts +7 -4
  18. package/dist-types/commands/DescribeComputeEnvironmentsCommand.d.ts +26 -26
  19. package/dist-types/commands/DescribeConsumableResourceCommand.d.ts +14 -14
  20. package/dist-types/commands/DescribeJobDefinitionsCommand.d.ts +40 -24
  21. package/dist-types/commands/DescribeJobQueuesCommand.d.ts +14 -14
  22. package/dist-types/commands/DescribeJobsCommand.d.ts +44 -28
  23. package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +1 -0
  24. package/dist-types/commands/GetJobQueueSnapshotCommand.d.ts +1 -0
  25. package/dist-types/commands/ListConsumableResourcesCommand.d.ts +13 -13
  26. package/dist-types/commands/ListJobsByConsumableResourceCommand.d.ts +20 -20
  27. package/dist-types/commands/ListJobsCommand.d.ts +13 -14
  28. package/dist-types/commands/ListSchedulingPoliciesCommand.d.ts +1 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -8
  30. package/dist-types/commands/RegisterJobDefinitionCommand.d.ts +58 -43
  31. package/dist-types/commands/SubmitJobCommand.d.ts +9 -9
  32. package/dist-types/commands/TagResourceCommand.d.ts +9 -6
  33. package/dist-types/commands/TerminateJobCommand.d.ts +8 -5
  34. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  35. package/dist-types/commands/UpdateComputeEnvironmentCommand.d.ts +7 -7
  36. package/dist-types/commands/UpdateConsumableResourceCommand.d.ts +9 -9
  37. package/dist-types/commands/UpdateJobQueueCommand.d.ts +7 -7
  38. package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +1 -0
  39. package/dist-types/models/models_0.d.ts +127 -45
  40. package/dist-types/ts3.4/models/models_0.d.ts +17 -0
  41. package/package.json +33 -33
@@ -115,50 +115,49 @@ declare const ListJobsCommand_base: {
115
115
  * @throws {@link BatchServiceException}
116
116
  * <p>Base exception class for all service exceptions from Batch service.</p>
117
117
  *
118
- * @public
118
+ *
119
119
  * @example To list running jobs
120
120
  * ```javascript
121
121
  * // This example lists the running jobs in the HighPriority job queue.
122
122
  * const input = {
123
- * "jobQueue": "HighPriority"
123
+ * jobQueue: "HighPriority"
124
124
  * };
125
125
  * const command = new ListJobsCommand(input);
126
126
  * const response = await client.send(command);
127
- * /* response ==
127
+ * /* response is
128
128
  * {
129
- * "jobSummaryList": [
129
+ * jobSummaryList: [
130
130
  * {
131
- * "jobId": "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb",
132
- * "jobName": "example"
131
+ * jobId: "e66ff5fd-a1ff-4640-b1a2-0b0a142f49bb",
132
+ * jobName: "example"
133
133
  * }
134
134
  * ]
135
135
  * }
136
136
  * *\/
137
- * // example id: to-list-running-jobs-1481154202164
138
137
  * ```
139
138
  *
140
139
  * @example To list submitted jobs
141
140
  * ```javascript
142
141
  * // This example lists jobs in the HighPriority job queue that are in the SUBMITTED job status.
143
142
  * const input = {
144
- * "jobQueue": "HighPriority",
145
- * "jobStatus": "SUBMITTED"
143
+ * jobQueue: "HighPriority",
144
+ * jobStatus: "SUBMITTED"
146
145
  * };
147
146
  * const command = new ListJobsCommand(input);
148
147
  * const response = await client.send(command);
149
- * /* response ==
148
+ * /* response is
150
149
  * {
151
- * "jobSummaryList": [
150
+ * jobSummaryList: [
152
151
  * {
153
- * "jobId": "68f0c163-fbd4-44e6-9fd1-25b14a434786",
154
- * "jobName": "example"
152
+ * jobId: "68f0c163-fbd4-44e6-9fd1-25b14a434786",
153
+ * jobName: "example"
155
154
  * }
156
155
  * ]
157
156
  * }
158
157
  * *\/
159
- * // example id: to-list-submitted-jobs-1481154251623
160
158
  * ```
161
159
  *
160
+ * @public
162
161
  */
163
162
  export declare class ListJobsCommand extends ListJobsCommand_base {
164
163
  /** @internal type navigation helper, not in runtime. */
@@ -68,6 +68,7 @@ declare const ListSchedulingPoliciesCommand_base: {
68
68
  * @throws {@link BatchServiceException}
69
69
  * <p>Base exception class for all service exceptions from Batch service.</p>
70
70
  *
71
+ *
71
72
  * @public
72
73
  */
73
74
  export declare class ListSchedulingPoliciesCommand extends ListSchedulingPoliciesCommand_base {
@@ -65,27 +65,27 @@ declare const ListTagsForResourceCommand_base: {
65
65
  * @throws {@link BatchServiceException}
66
66
  * <p>Base exception class for all service exceptions from Batch service.</p>
67
67
  *
68
- * @public
68
+ *
69
69
  * @example ListTagsForResource Example
70
70
  * ```javascript
71
71
  * // This demonstrates calling the ListTagsForResource action.
72
72
  * const input = {
73
- * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1"
73
+ * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1"
74
74
  * };
75
75
  * const command = new ListTagsForResourceCommand(input);
76
76
  * const response = await client.send(command);
77
- * /* response ==
77
+ * /* response is
78
78
  * {
79
- * "tags": {
80
- * "Department": "Engineering",
81
- * "Stage": "Alpha",
82
- * "User": "JaneDoe"
79
+ * tags: {
80
+ * Department: "Engineering",
81
+ * Stage: "Alpha",
82
+ * User: "JaneDoe"
83
83
  * }
84
84
  * }
85
85
  * *\/
86
- * // example id: listtagsforresource-example-1591293003710
87
86
  * ```
88
87
  *
88
+ * @public
89
89
  */
90
90
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
91
91
  /** @internal type navigation helper, not in runtime. */
@@ -123,7 +123,7 @@ declare const RegisterJobDefinitionCommand_base: {
123
123
  * swappiness: Number("int"),
124
124
  * },
125
125
  * logConfiguration: { // LogConfiguration
126
- * logDriver: "json-file" || "syslog" || "journald" || "gelf" || "fluentd" || "awslogs" || "splunk", // required
126
+ * logDriver: "json-file" || "syslog" || "journald" || "gelf" || "fluentd" || "awslogs" || "splunk" || "awsfirelens", // required
127
127
  * options: { // LogConfigurationOptionsMap
128
128
  * "<keys>": "STRING_VALUE",
129
129
  * },
@@ -146,6 +146,7 @@ declare const RegisterJobDefinitionCommand_base: {
146
146
  * fargatePlatformConfiguration: { // FargatePlatformConfiguration
147
147
  * platformVersion: "STRING_VALUE",
148
148
  * },
149
+ * enableExecuteCommand: true || false,
149
150
  * ephemeralStorage: { // EphemeralStorage
150
151
  * sizeInGiB: Number("int"), // required
151
152
  * },
@@ -243,7 +244,7 @@ declare const RegisterJobDefinitionCommand_base: {
243
244
  * swappiness: Number("int"),
244
245
  * },
245
246
  * logConfiguration: {
246
- * logDriver: "json-file" || "syslog" || "journald" || "gelf" || "fluentd" || "awslogs" || "splunk", // required
247
+ * logDriver: "json-file" || "syslog" || "journald" || "gelf" || "fluentd" || "awslogs" || "splunk" || "awsfirelens", // required
247
248
  * options: {
248
249
  * "<keys>": "STRING_VALUE",
249
250
  * },
@@ -256,6 +257,7 @@ declare const RegisterJobDefinitionCommand_base: {
256
257
  * fargatePlatformConfiguration: {
257
258
  * platformVersion: "STRING_VALUE",
258
259
  * },
260
+ * enableExecuteCommand: true || false,
259
261
  * ephemeralStorage: {
260
262
  * sizeInGiB: Number("int"), // required
261
263
  * },
@@ -282,6 +284,12 @@ declare const RegisterJobDefinitionCommand_base: {
282
284
  * ],
283
285
  * environment: "<EnvironmentVariables>",
284
286
  * essential: true || false,
287
+ * firelensConfiguration: { // FirelensConfiguration
288
+ * type: "fluentd" || "fluentbit", // required
289
+ * options: { // FirelensConfigurationOptionsMap
290
+ * "<keys>": "STRING_VALUE",
291
+ * },
292
+ * },
285
293
  * image: "STRING_VALUE", // required
286
294
  * linuxParameters: "<LinuxParameters>",
287
295
  * logConfiguration: "<LogConfiguration>",
@@ -305,6 +313,7 @@ declare const RegisterJobDefinitionCommand_base: {
305
313
  * networkConfiguration: "<NetworkConfiguration>",
306
314
  * runtimePlatform: "<RuntimePlatform>",
307
315
  * volumes: "<Volumes>",
316
+ * enableExecuteCommand: true || false,
308
317
  * },
309
318
  * ],
310
319
  * },
@@ -594,6 +603,12 @@ declare const RegisterJobDefinitionCommand_base: {
594
603
  * ],
595
604
  * environment: "<EnvironmentVariables>",
596
605
  * essential: true || false,
606
+ * firelensConfiguration: {
607
+ * type: "fluentd" || "fluentbit", // required
608
+ * options: {
609
+ * "<keys>": "STRING_VALUE",
610
+ * },
611
+ * },
597
612
  * image: "STRING_VALUE", // required
598
613
  * linuxParameters: "<LinuxParameters>",
599
614
  * logConfiguration: "<LogConfiguration>",
@@ -617,6 +632,7 @@ declare const RegisterJobDefinitionCommand_base: {
617
632
  * networkConfiguration: "<NetworkConfiguration>",
618
633
  * runtimePlatform: "<RuntimePlatform>",
619
634
  * volumes: "<Volumes>",
635
+ * enableExecuteCommand: true || false,
620
636
  * },
621
637
  * ],
622
638
  * },
@@ -656,83 +672,82 @@ declare const RegisterJobDefinitionCommand_base: {
656
672
  * @throws {@link BatchServiceException}
657
673
  * <p>Base exception class for all service exceptions from Batch service.</p>
658
674
  *
659
- * @public
660
- * @example To register a job definition
675
+ *
676
+ * @example RegisterJobDefinition with tags
661
677
  * ```javascript
662
- * // This example registers a job definition for a simple container job.
678
+ * // This demonstrates calling the RegisterJobDefinition action, including tags.
663
679
  * const input = {
664
- * "type": "container",
665
- * "containerProperties": {
666
- * "command": [
680
+ * containerProperties: {
681
+ * command: [
667
682
  * "sleep",
668
- * "10"
683
+ * "30"
669
684
  * ],
670
- * "image": "busybox",
671
- * "resourceRequirements": [
685
+ * image: "busybox",
686
+ * resourceRequirements: [
672
687
  * {
673
- * "type": "MEMORY",
674
- * "value": "128"
688
+ * type: "MEMORY",
689
+ * value: "128"
675
690
  * },
676
691
  * {
677
- * "type": "VCPU",
678
- * "value": "1"
692
+ * type: "VCPU",
693
+ * value: "1"
679
694
  * }
680
695
  * ]
681
696
  * },
682
- * "jobDefinitionName": "sleep10"
697
+ * jobDefinitionName: "sleep30",
698
+ * tags: {
699
+ * Department: "Engineering",
700
+ * User: "JaneDoe"
701
+ * },
702
+ * type: "container"
683
703
  * };
684
704
  * const command = new RegisterJobDefinitionCommand(input);
685
705
  * const response = await client.send(command);
686
- * /* response ==
706
+ * /* response is
687
707
  * {
688
- * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1",
689
- * "jobDefinitionName": "sleep10",
690
- * "revision": 1
708
+ * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/sleep30:1",
709
+ * jobDefinitionName: "sleep30",
710
+ * revision: 1
691
711
  * }
692
712
  * *\/
693
- * // example id: to-register-a-job-definition-1481154325325
694
713
  * ```
695
714
  *
696
- * @example RegisterJobDefinition with tags
715
+ * @example To register a job definition
697
716
  * ```javascript
698
- * // This demonstrates calling the RegisterJobDefinition action, including tags.
717
+ * // This example registers a job definition for a simple container job.
699
718
  * const input = {
700
- * "type": "container",
701
- * "containerProperties": {
702
- * "command": [
719
+ * containerProperties: {
720
+ * command: [
703
721
  * "sleep",
704
- * "30"
722
+ * "10"
705
723
  * ],
706
- * "image": "busybox",
707
- * "resourceRequirements": [
724
+ * image: "busybox",
725
+ * resourceRequirements: [
708
726
  * {
709
- * "type": "MEMORY",
710
- * "value": "128"
727
+ * type: "MEMORY",
728
+ * value: "128"
711
729
  * },
712
730
  * {
713
- * "type": "VCPU",
714
- * "value": "1"
731
+ * type: "VCPU",
732
+ * value: "1"
715
733
  * }
716
734
  * ]
717
735
  * },
718
- * "jobDefinitionName": "sleep30",
719
- * "tags": {
720
- * "Department": "Engineering",
721
- * "User": "JaneDoe"
722
- * }
736
+ * jobDefinitionName: "sleep10",
737
+ * type: "container"
723
738
  * };
724
739
  * const command = new RegisterJobDefinitionCommand(input);
725
740
  * const response = await client.send(command);
726
- * /* response ==
741
+ * /* response is
727
742
  * {
728
- * "jobDefinitionArn": "arn:aws:batch:us-east-1:012345678910:job-definition/sleep30:1",
729
- * "jobDefinitionName": "sleep30",
730
- * "revision": 1
743
+ * jobDefinitionArn: "arn:aws:batch:us-east-1:012345678910:job-definition/sleep10:1",
744
+ * jobDefinitionName: "sleep10",
745
+ * revision: 1
731
746
  * }
732
747
  * *\/
733
- * // example id: registerjobdefinition-with-tags-1591290509028
734
748
  * ```
735
749
  *
750
+ * @public
736
751
  */
737
752
  export declare class RegisterJobDefinitionCommand extends RegisterJobDefinitionCommand_base {
738
753
  /** @internal type navigation helper, not in runtime. */
@@ -34,7 +34,7 @@ declare const SubmitJobCommand_base: {
34
34
  * parameters in a <code>resourceRequirements</code> object that's included in the
35
35
  * <code>containerOverrides</code> parameter.</p>
36
36
  * <note>
37
- * <p>Job queues with a scheduling policy are limited to 500 active fair share identifiers at
37
+ * <p>Job queues with a scheduling policy are limited to 500 active share identifiers at
38
38
  * a time. </p>
39
39
  * </note>
40
40
  * <important>
@@ -319,26 +319,26 @@ declare const SubmitJobCommand_base: {
319
319
  * @throws {@link BatchServiceException}
320
320
  * <p>Base exception class for all service exceptions from Batch service.</p>
321
321
  *
322
- * @public
322
+ *
323
323
  * @example To submit a job to a queue
324
324
  * ```javascript
325
325
  * // This example submits a simple container job called example to the HighPriority job queue.
326
326
  * const input = {
327
- * "jobDefinition": "sleep60",
328
- * "jobName": "example",
329
- * "jobQueue": "HighPriority"
327
+ * jobDefinition: "sleep60",
328
+ * jobName: "example",
329
+ * jobQueue: "HighPriority"
330
330
  * };
331
331
  * const command = new SubmitJobCommand(input);
332
332
  * const response = await client.send(command);
333
- * /* response ==
333
+ * /* response is
334
334
  * {
335
- * "jobId": "876da822-4198-45f2-a252-6cea32512ea8",
336
- * "jobName": "example"
335
+ * jobId: "876da822-4198-45f2-a252-6cea32512ea8",
336
+ * jobName: "example"
337
337
  * }
338
338
  * *\/
339
- * // example id: to-submit-a-job-to-a-queue-1481154481673
340
339
  * ```
341
340
  *
341
+ * @public
342
342
  */
343
343
  export declare class SubmitJobCommand extends SubmitJobCommand_base {
344
344
  /** @internal type navigation helper, not in runtime. */
@@ -67,21 +67,24 @@ declare const TagResourceCommand_base: {
67
67
  * @throws {@link BatchServiceException}
68
68
  * <p>Base exception class for all service exceptions from Batch service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example TagResource Example
72
72
  * ```javascript
73
73
  * // This demonstrates calling the TagResource action.
74
74
  * const input = {
75
- * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
76
- * "tags": {
77
- * "Stage": "Alpha"
75
+ * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
76
+ * tags: {
77
+ * Stage: "Alpha"
78
78
  * }
79
79
  * };
80
80
  * const command = new TagResourceCommand(input);
81
- * await client.send(command);
82
- * // example id: tagresource-example-1591291959952
81
+ * const response = await client.send(command);
82
+ * /* response is
83
+ * { /* empty *\/ }
84
+ * *\/
83
85
  * ```
84
86
  *
87
+ * @public
85
88
  */
86
89
  export declare class TagResourceCommand extends TagResourceCommand_base {
87
90
  /** @internal type navigation helper, not in runtime. */
@@ -64,19 +64,22 @@ declare const TerminateJobCommand_base: {
64
64
  * @throws {@link BatchServiceException}
65
65
  * <p>Base exception class for all service exceptions from Batch service.</p>
66
66
  *
67
- * @public
67
+ *
68
68
  * @example To terminate a job
69
69
  * ```javascript
70
70
  * // This example terminates a job with the specified job ID.
71
71
  * const input = {
72
- * "jobId": "61e743ed-35e4-48da-b2de-5c8333821c84",
73
- * "reason": "Terminating job."
72
+ * jobId: "61e743ed-35e4-48da-b2de-5c8333821c84",
73
+ * reason: "Terminating job."
74
74
  * };
75
75
  * const command = new TerminateJobCommand(input);
76
- * await client.send(command);
77
- * // example id: to-terminate-a-job-1481154558276
76
+ * const response = await client.send(command);
77
+ * /* response is
78
+ * { /* empty *\/ }
79
+ * *\/
78
80
  * ```
79
81
  *
82
+ * @public
80
83
  */
81
84
  export declare class TerminateJobCommand extends TerminateJobCommand_base {
82
85
  /** @internal type navigation helper, not in runtime. */
@@ -63,21 +63,24 @@ declare const UntagResourceCommand_base: {
63
63
  * @throws {@link BatchServiceException}
64
64
  * <p>Base exception class for all service exceptions from Batch service.</p>
65
65
  *
66
- * @public
66
+ *
67
67
  * @example UntagResource Example
68
68
  * ```javascript
69
69
  * // This demonstrates calling the UntagResource action.
70
70
  * const input = {
71
- * "resourceArn": "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
72
- * "tagKeys": [
71
+ * resourceArn: "arn:aws:batch:us-east-1:123456789012:job-definition/sleep30:1",
72
+ * tagKeys: [
73
73
  * "Stage"
74
74
  * ]
75
75
  * };
76
76
  * const command = new UntagResourceCommand(input);
77
- * await client.send(command);
78
- * // example id: untagresource-example-1591292811042
77
+ * const response = await client.send(command);
78
+ * /* response is
79
+ * { /* empty *\/ }
80
+ * *\/
79
81
  * ```
80
82
  *
83
+ * @public
81
84
  */
82
85
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
83
86
  /** @internal type navigation helper, not in runtime. */
@@ -118,25 +118,25 @@ declare const UpdateComputeEnvironmentCommand_base: {
118
118
  * @throws {@link BatchServiceException}
119
119
  * <p>Base exception class for all service exceptions from Batch service.</p>
120
120
  *
121
- * @public
121
+ *
122
122
  * @example To update a compute environment
123
123
  * ```javascript
124
124
  * // This example disables the P2OnDemand compute environment so it can be deleted.
125
125
  * const input = {
126
- * "computeEnvironment": "P2OnDemand",
127
- * "state": "DISABLED"
126
+ * computeEnvironment: "P2OnDemand",
127
+ * state: "DISABLED"
128
128
  * };
129
129
  * const command = new UpdateComputeEnvironmentCommand(input);
130
130
  * const response = await client.send(command);
131
- * /* response ==
131
+ * /* response is
132
132
  * {
133
- * "computeEnvironmentArn": "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand",
134
- * "computeEnvironmentName": "P2OnDemand"
133
+ * computeEnvironmentArn: "arn:aws:batch:us-east-1:012345678910:compute-environment/P2OnDemand",
134
+ * computeEnvironmentName: "P2OnDemand"
135
135
  * }
136
136
  * *\/
137
- * // example id: to-update-a-compute-environment-1481154702731
138
137
  * ```
139
138
  *
139
+ * @public
140
140
  */
141
141
  export declare class UpdateComputeEnvironmentCommand extends UpdateComputeEnvironmentCommand_base {
142
142
  /** @internal type navigation helper, not in runtime. */
@@ -67,27 +67,27 @@ declare const UpdateConsumableResourceCommand_base: {
67
67
  * @throws {@link BatchServiceException}
68
68
  * <p>Base exception class for all service exceptions from Batch service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example To update a consumable resource
72
72
  * ```javascript
73
73
  * // Updates a consumable resource.
74
74
  * const input = {
75
- * "consumableResource": "myConsumableResource",
76
- * "operation": "ADD",
77
- * "quantity": 12
75
+ * consumableResource: "myConsumableResource",
76
+ * operation: "ADD",
77
+ * quantity: 12
78
78
  * };
79
79
  * const command = new UpdateConsumableResourceCommand(input);
80
80
  * const response = await client.send(command);
81
- * /* response ==
81
+ * /* response is
82
82
  * {
83
- * "consumableResourceArn": "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource",
84
- * "consumableResourceName": "myConsumableResource",
85
- * "totalQuantity": 135
83
+ * consumableResourceArn: "arn:aws:batch:us-east-1:012345678910:consumable-resource/myConsumableResource",
84
+ * consumableResourceName: "myConsumableResource",
85
+ * totalQuantity: 135
86
86
  * }
87
87
  * *\/
88
- * // example id: to-update-a-consumable-resource-1739497761692
89
88
  * ```
90
89
  *
90
+ * @public
91
91
  */
92
92
  export declare class UpdateConsumableResourceCommand extends UpdateConsumableResourceCommand_base {
93
93
  /** @internal type navigation helper, not in runtime. */
@@ -80,25 +80,25 @@ declare const UpdateJobQueueCommand_base: {
80
80
  * @throws {@link BatchServiceException}
81
81
  * <p>Base exception class for all service exceptions from Batch service.</p>
82
82
  *
83
- * @public
83
+ *
84
84
  * @example To update a job queue
85
85
  * ```javascript
86
86
  * // This example disables a job queue so that it can be deleted.
87
87
  * const input = {
88
- * "jobQueue": "GPGPU",
89
- * "state": "DISABLED"
88
+ * jobQueue: "GPGPU",
89
+ * state: "DISABLED"
90
90
  * };
91
91
  * const command = new UpdateJobQueueCommand(input);
92
92
  * const response = await client.send(command);
93
- * /* response ==
93
+ * /* response is
94
94
  * {
95
- * "jobQueueArn": "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU",
96
- * "jobQueueName": "GPGPU"
95
+ * jobQueueArn: "arn:aws:batch:us-east-1:012345678910:job-queue/GPGPU",
96
+ * jobQueueName: "GPGPU"
97
97
  * }
98
98
  * *\/
99
- * // example id: to-update-a-job-queue-1481154806981
100
99
  * ```
101
100
  *
101
+ * @public
102
102
  */
103
103
  export declare class UpdateJobQueueCommand extends UpdateJobQueueCommand_base {
104
104
  /** @internal type navigation helper, not in runtime. */
@@ -70,6 +70,7 @@ declare const UpdateSchedulingPolicyCommand_base: {
70
70
  * @throws {@link BatchServiceException}
71
71
  * <p>Base exception class for all service exceptions from Batch service.</p>
72
72
  *
73
+ *
73
74
  * @public
74
75
  */
75
76
  export declare class UpdateSchedulingPolicyCommand extends UpdateSchedulingPolicyCommand_base {