aws-sdk-batch 1.110.0 → 1.112.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.
@@ -704,9 +704,9 @@ module Aws::Batch
704
704
  # Key-value pair tags to be applied to Amazon EC2 resources that are
705
705
  # launched in the compute environment. For Batch, these take the form
706
706
  # of `"String1": "String2"`, where `String1` is the tag key and
707
- # `String2` is the tag value-for example, `{ "Name": "Batch Instance -
708
- # C4OnDemand" }`. This is helpful for recognizing your Batch instances
709
- # in the Amazon EC2 console. Updating these tags requires an
707
+ # `String2` is the tag value (for example, `{ "Name": "Batch Instance
708
+ # - C4OnDemand" }`). This is helpful for recognizing your Batch
709
+ # instances in the Amazon EC2 console. Updating these tags requires an
710
710
  # infrastructure update to the compute environment. For more
711
711
  # information, see [Updating compute environments][1] in the *Batch
712
712
  # User Guide*. These tags aren't seen when using the Batch
@@ -1100,10 +1100,10 @@ module Aws::Batch
1100
1100
  # Key-value pair tags to be applied to Amazon EC2 resources that are
1101
1101
  # launched in the compute environment. For Batch, these take the form
1102
1102
  # of `"String1": "String2"`, where `String1` is the tag key and
1103
- # `String2` is the tag value-for example, `{ "Name": "Batch Instance -
1104
- # C4OnDemand" }`. This is helpful for recognizing your Batch instances
1105
- # in the Amazon EC2 console. These tags aren't seen when using the
1106
- # Batch `ListTagsForResource` API operation.
1103
+ # `String2` is the tag value (for example, `{ "Name": "Batch Instance
1104
+ # - C4OnDemand" }`). This is helpful for recognizing your Batch
1105
+ # instances in the Amazon EC2 console. These tags aren't seen when
1106
+ # using the Batch `ListTagsForResource` API operation.
1107
1107
  #
1108
1108
  # When updating a compute environment, changing this setting requires
1109
1109
  # an infrastructure update of the compute environment. For more
@@ -1327,6 +1327,78 @@ module Aws::Batch
1327
1327
  include Aws::Structure
1328
1328
  end
1329
1329
 
1330
+ # Contains a list of consumable resources required by a job.
1331
+ #
1332
+ # @!attribute [rw] consumable_resource_list
1333
+ # The list of consumable resources required by a job.
1334
+ # @return [Array<Types::ConsumableResourceRequirement>]
1335
+ #
1336
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ConsumableResourceProperties AWS API Documentation
1337
+ #
1338
+ class ConsumableResourceProperties < Struct.new(
1339
+ :consumable_resource_list)
1340
+ SENSITIVE = []
1341
+ include Aws::Structure
1342
+ end
1343
+
1344
+ # Information about a consumable resource required to run a job.
1345
+ #
1346
+ # @!attribute [rw] consumable_resource
1347
+ # The name or ARN of the consumable resource.
1348
+ # @return [String]
1349
+ #
1350
+ # @!attribute [rw] quantity
1351
+ # The quantity of the consumable resource that is needed.
1352
+ # @return [Integer]
1353
+ #
1354
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ConsumableResourceRequirement AWS API Documentation
1355
+ #
1356
+ class ConsumableResourceRequirement < Struct.new(
1357
+ :consumable_resource,
1358
+ :quantity)
1359
+ SENSITIVE = []
1360
+ include Aws::Structure
1361
+ end
1362
+
1363
+ # Current information about a consumable resource.
1364
+ #
1365
+ # @!attribute [rw] consumable_resource_arn
1366
+ # The Amazon Resource Name (ARN) of the consumable resource.
1367
+ # @return [String]
1368
+ #
1369
+ # @!attribute [rw] consumable_resource_name
1370
+ # The name of the consumable resource.
1371
+ # @return [String]
1372
+ #
1373
+ # @!attribute [rw] total_quantity
1374
+ # The total amount of the consumable resource that is available.
1375
+ # @return [Integer]
1376
+ #
1377
+ # @!attribute [rw] in_use_quantity
1378
+ # The amount of the consumable resource that is currently in use.
1379
+ # @return [Integer]
1380
+ #
1381
+ # @!attribute [rw] resource_type
1382
+ # Indicates whether the resource is available to be re-used after a
1383
+ # job completes. Can be one of:
1384
+ #
1385
+ # * `REPLENISHABLE`
1386
+ #
1387
+ # * `NON_REPLENISHABLE`
1388
+ # @return [String]
1389
+ #
1390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ConsumableResourceSummary AWS API Documentation
1391
+ #
1392
+ class ConsumableResourceSummary < Struct.new(
1393
+ :consumable_resource_arn,
1394
+ :consumable_resource_name,
1395
+ :total_quantity,
1396
+ :in_use_quantity,
1397
+ :resource_type)
1398
+ SENSITIVE = []
1399
+ include Aws::Structure
1400
+ end
1401
+
1330
1402
  # An object that represents the details of a container that's part of a
1331
1403
  # job.
1332
1404
  #
@@ -1591,6 +1663,12 @@ module Aws::Batch
1591
1663
  # The private repository authentication credentials to use.
1592
1664
  # @return [Types::RepositoryCredentials]
1593
1665
  #
1666
+ # @!attribute [rw] enable_execute_command
1667
+ # Determines whether execute command functionality is turned on for
1668
+ # this task. If `true`, execute command functionality is turned on all
1669
+ # the containers in the task.
1670
+ # @return [Boolean]
1671
+ #
1594
1672
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ContainerDetail AWS API Documentation
1595
1673
  #
1596
1674
  class ContainerDetail < Struct.new(
@@ -1622,7 +1700,8 @@ module Aws::Batch
1622
1700
  :fargate_platform_configuration,
1623
1701
  :ephemeral_storage,
1624
1702
  :runtime_platform,
1625
- :repository_credentials)
1703
+ :repository_credentials,
1704
+ :enable_execute_command)
1626
1705
  SENSITIVE = []
1627
1706
  include Aws::Structure
1628
1707
  end
@@ -2022,6 +2101,12 @@ module Aws::Batch
2022
2101
  # specify this parameter.
2023
2102
  # @return [Types::FargatePlatformConfiguration]
2024
2103
  #
2104
+ # @!attribute [rw] enable_execute_command
2105
+ # Determines whether execute command functionality is turned on for
2106
+ # this task. If `true`, execute command functionality is turned on all
2107
+ # the containers in the task.
2108
+ # @return [Boolean]
2109
+ #
2025
2110
  # @!attribute [rw] ephemeral_storage
2026
2111
  # The amount of ephemeral storage to allocate for the task. This
2027
2112
  # parameter is used to expand the total amount of ephemeral storage
@@ -2060,6 +2145,7 @@ module Aws::Batch
2060
2145
  :secrets,
2061
2146
  :network_configuration,
2062
2147
  :fargate_platform_configuration,
2148
+ :enable_execute_command,
2063
2149
  :ephemeral_storage,
2064
2150
  :runtime_platform,
2065
2151
  :repository_credentials)
@@ -2258,6 +2344,63 @@ module Aws::Batch
2258
2344
  include Aws::Structure
2259
2345
  end
2260
2346
 
2347
+ # @!attribute [rw] consumable_resource_name
2348
+ # The name of the consumable resource. Must be unique.
2349
+ # @return [String]
2350
+ #
2351
+ # @!attribute [rw] total_quantity
2352
+ # The total amount of the consumable resource that is available. Must
2353
+ # be non-negative.
2354
+ # @return [Integer]
2355
+ #
2356
+ # @!attribute [rw] resource_type
2357
+ # Indicates whether the resource is available to be re-used after a
2358
+ # job completes. Can be one of:
2359
+ #
2360
+ # * `REPLENISHABLE` (default)
2361
+ #
2362
+ # * `NON_REPLENISHABLE`
2363
+ # @return [String]
2364
+ #
2365
+ # @!attribute [rw] tags
2366
+ # The tags that you apply to the consumable resource to help you
2367
+ # categorize and organize your resources. Each tag consists of a key
2368
+ # and an optional value. For more information, see [Tagging your Batch
2369
+ # resources][1].
2370
+ #
2371
+ #
2372
+ #
2373
+ # [1]: https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html
2374
+ # @return [Hash<String,String>]
2375
+ #
2376
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/CreateConsumableResourceRequest AWS API Documentation
2377
+ #
2378
+ class CreateConsumableResourceRequest < Struct.new(
2379
+ :consumable_resource_name,
2380
+ :total_quantity,
2381
+ :resource_type,
2382
+ :tags)
2383
+ SENSITIVE = []
2384
+ include Aws::Structure
2385
+ end
2386
+
2387
+ # @!attribute [rw] consumable_resource_name
2388
+ # The name of the consumable resource.
2389
+ # @return [String]
2390
+ #
2391
+ # @!attribute [rw] consumable_resource_arn
2392
+ # The Amazon Resource Name (ARN) of the consumable resource.
2393
+ # @return [String]
2394
+ #
2395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/CreateConsumableResourceResponse AWS API Documentation
2396
+ #
2397
+ class CreateConsumableResourceResponse < Struct.new(
2398
+ :consumable_resource_name,
2399
+ :consumable_resource_arn)
2400
+ SENSITIVE = []
2401
+ include Aws::Structure
2402
+ end
2403
+
2261
2404
  # Contains the parameters for `CreateJobQueue`.
2262
2405
  #
2263
2406
  # @!attribute [rw] job_queue_name
@@ -2450,6 +2593,22 @@ module Aws::Batch
2450
2593
  #
2451
2594
  class DeleteComputeEnvironmentResponse < Aws::EmptyStructure; end
2452
2595
 
2596
+ # @!attribute [rw] consumable_resource
2597
+ # The name or ARN of the consumable resource that will be deleted.
2598
+ # @return [String]
2599
+ #
2600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/DeleteConsumableResourceRequest AWS API Documentation
2601
+ #
2602
+ class DeleteConsumableResourceRequest < Struct.new(
2603
+ :consumable_resource)
2604
+ SENSITIVE = []
2605
+ include Aws::Structure
2606
+ end
2607
+
2608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/DeleteConsumableResourceResponse AWS API Documentation
2609
+ #
2610
+ class DeleteConsumableResourceResponse < Aws::EmptyStructure; end
2611
+
2453
2612
  # Contains the parameters for `DeleteJobQueue`.
2454
2613
  #
2455
2614
  # @!attribute [rw] job_queue
@@ -2570,6 +2729,80 @@ module Aws::Batch
2570
2729
  include Aws::Structure
2571
2730
  end
2572
2731
 
2732
+ # @!attribute [rw] consumable_resource
2733
+ # The name or ARN of the consumable resource whose description will be
2734
+ # returned.
2735
+ # @return [String]
2736
+ #
2737
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/DescribeConsumableResourceRequest AWS API Documentation
2738
+ #
2739
+ class DescribeConsumableResourceRequest < Struct.new(
2740
+ :consumable_resource)
2741
+ SENSITIVE = []
2742
+ include Aws::Structure
2743
+ end
2744
+
2745
+ # @!attribute [rw] consumable_resource_name
2746
+ # The name of the consumable resource.
2747
+ # @return [String]
2748
+ #
2749
+ # @!attribute [rw] consumable_resource_arn
2750
+ # The Amazon Resource Name (ARN) of the consumable resource.
2751
+ # @return [String]
2752
+ #
2753
+ # @!attribute [rw] total_quantity
2754
+ # The total amount of the consumable resource that is available.
2755
+ # @return [Integer]
2756
+ #
2757
+ # @!attribute [rw] in_use_quantity
2758
+ # The amount of the consumable resource that is currently in use.
2759
+ # @return [Integer]
2760
+ #
2761
+ # @!attribute [rw] available_quantity
2762
+ # The amount of the consumable resource that is currently available to
2763
+ # use.
2764
+ # @return [Integer]
2765
+ #
2766
+ # @!attribute [rw] resource_type
2767
+ # Indicates whether the resource is available to be re-used after a
2768
+ # job completes. Can be one of:
2769
+ #
2770
+ # * `REPLENISHABLE`
2771
+ #
2772
+ # * `NON_REPLENISHABLE`
2773
+ # @return [String]
2774
+ #
2775
+ # @!attribute [rw] created_at
2776
+ # The Unix timestamp (in milliseconds) for when the consumable
2777
+ # resource was created.
2778
+ # @return [Integer]
2779
+ #
2780
+ # @!attribute [rw] tags
2781
+ # The tags that you apply to the consumable resource to help you
2782
+ # categorize and organize your resources. Each tag consists of a key
2783
+ # and an optional value. For more information, see [Tagging your Batch
2784
+ # resources][1].
2785
+ #
2786
+ #
2787
+ #
2788
+ # [1]: https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html
2789
+ # @return [Hash<String,String>]
2790
+ #
2791
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/DescribeConsumableResourceResponse AWS API Documentation
2792
+ #
2793
+ class DescribeConsumableResourceResponse < Struct.new(
2794
+ :consumable_resource_name,
2795
+ :consumable_resource_arn,
2796
+ :total_quantity,
2797
+ :in_use_quantity,
2798
+ :available_quantity,
2799
+ :resource_type,
2800
+ :created_at,
2801
+ :tags)
2802
+ SENSITIVE = []
2803
+ include Aws::Structure
2804
+ end
2805
+
2573
2806
  # Contains the parameters for `DescribeJobDefinitions`.
2574
2807
  #
2575
2808
  # @!attribute [rw] job_definitions
@@ -3150,6 +3383,12 @@ module Aws::Batch
3150
3383
  # A list of data volumes used in a job.
3151
3384
  # @return [Array<Types::Volume>]
3152
3385
  #
3386
+ # @!attribute [rw] enable_execute_command
3387
+ # Determines whether execute command functionality is turned on for
3388
+ # this task. If `true`, execute command functionality is turned on all
3389
+ # the containers in the task.
3390
+ # @return [Boolean]
3391
+ #
3153
3392
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EcsTaskDetails AWS API Documentation
3154
3393
  #
3155
3394
  class EcsTaskDetails < Struct.new(
@@ -3164,7 +3403,8 @@ module Aws::Batch
3164
3403
  :pid_mode,
3165
3404
  :network_configuration,
3166
3405
  :runtime_platform,
3167
- :volumes)
3406
+ :volumes,
3407
+ :enable_execute_command)
3168
3408
  SENSITIVE = []
3169
3409
  include Aws::Structure
3170
3410
  end
@@ -3284,6 +3524,12 @@ module Aws::Batch
3284
3524
  # A list of volumes that are associated with the job.
3285
3525
  # @return [Array<Types::Volume>]
3286
3526
  #
3527
+ # @!attribute [rw] enable_execute_command
3528
+ # Determines whether execute command functionality is turned on for
3529
+ # this task. If `true`, execute command functionality is turned on all
3530
+ # the containers in the task.
3531
+ # @return [Boolean]
3532
+ #
3287
3533
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EcsTaskProperties AWS API Documentation
3288
3534
  #
3289
3535
  class EcsTaskProperties < Struct.new(
@@ -3296,7 +3542,8 @@ module Aws::Batch
3296
3542
  :pid_mode,
3297
3543
  :network_configuration,
3298
3544
  :runtime_platform,
3299
- :volumes)
3545
+ :volumes,
3546
+ :enable_execute_command)
3300
3547
  SENSITIVE = []
3301
3548
  include Aws::Structure
3302
3549
  end
@@ -4695,7 +4942,7 @@ module Aws::Batch
4695
4942
  # jobs that ran earlier. Consider adjusting this number if you have
4696
4943
  # jobs that (on average) run longer than ten minutes, or a large
4697
4944
  # difference in job count or job run times between share identifiers,
4698
- # and the allocation of resources doesnt meet your needs.
4945
+ # and the allocation of resources doesn't meet your needs.
4699
4946
  # @return [Integer]
4700
4947
  #
4701
4948
  # @!attribute [rw] compute_reservation
@@ -4760,6 +5007,45 @@ module Aws::Batch
4760
5007
  include Aws::Structure
4761
5008
  end
4762
5009
 
5010
+ # The FireLens configuration for the container. This is used to specify
5011
+ # and configure a log router for container logs. For more information,
5012
+ # see [Custom log][1] routing in the *Amazon Elastic Container Service
5013
+ # Developer Guide*.
5014
+ #
5015
+ #
5016
+ #
5017
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
5018
+ #
5019
+ # @!attribute [rw] type
5020
+ # The log router to use. The valid values are `fluentd` or
5021
+ # `fluentbit`.
5022
+ # @return [String]
5023
+ #
5024
+ # @!attribute [rw] options
5025
+ # The options to use when configuring the log router. This field is
5026
+ # optional and can be used to specify a custom configuration file or
5027
+ # to add additional metadata, such as the task, task definition,
5028
+ # cluster, and container instance details to the log event. If
5029
+ # specified, the syntax to use is
5030
+ # `"options":{"enable-ecs-log-metadata":"true|false","config-file-type:"s3|file","config-file-value":"arn:aws:s3:::mybucket/fluent.conf|filepath"}`.
5031
+ # For more information, see [Creating a task definition that uses a
5032
+ # FireLens configuration][1] in the *Amazon Elastic Container Service
5033
+ # Developer Guide*.
5034
+ #
5035
+ #
5036
+ #
5037
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html#firelens-taskdef
5038
+ # @return [Hash<String,String>]
5039
+ #
5040
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/FirelensConfiguration AWS API Documentation
5041
+ #
5042
+ class FirelensConfiguration < Struct.new(
5043
+ :type,
5044
+ :options)
5045
+ SENSITIVE = []
5046
+ include Aws::Structure
5047
+ end
5048
+
4763
5049
  # Contains a list of the first 100 `RUNNABLE` jobs associated to a
4764
5050
  # single job queue.
4765
5051
  #
@@ -5000,6 +5286,10 @@ module Aws::Batch
5000
5286
  # are `ECS` (default) or `EKS`.
5001
5287
  # @return [String]
5002
5288
  #
5289
+ # @!attribute [rw] consumable_resource_properties
5290
+ # Contains a list of consumable resources required by the job.
5291
+ # @return [Types::ConsumableResourceProperties]
5292
+ #
5003
5293
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/JobDefinition AWS API Documentation
5004
5294
  #
5005
5295
  class JobDefinition < Struct.new(
@@ -5019,7 +5309,8 @@ module Aws::Batch
5019
5309
  :platform_capabilities,
5020
5310
  :ecs_properties,
5021
5311
  :eks_properties,
5022
- :container_orchestration_type)
5312
+ :container_orchestration_type,
5313
+ :consumable_resource_properties)
5023
5314
  SENSITIVE = []
5024
5315
  include Aws::Structure
5025
5316
  end
@@ -5225,6 +5516,10 @@ module Aws::Batch
5225
5516
  # Indicates whether the job is terminated.
5226
5517
  # @return [Boolean]
5227
5518
  #
5519
+ # @!attribute [rw] consumable_resource_properties
5520
+ # Contains a list of consumable resources required by the job.
5521
+ # @return [Types::ConsumableResourceProperties]
5522
+ #
5228
5523
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/JobDetail AWS API Documentation
5229
5524
  #
5230
5525
  class JobDetail < Struct.new(
@@ -5256,7 +5551,8 @@ module Aws::Batch
5256
5551
  :eks_attempts,
5257
5552
  :ecs_properties,
5258
5553
  :is_cancelled,
5259
- :is_terminated)
5554
+ :is_terminated,
5555
+ :consumable_resource_properties)
5260
5556
  SENSITIVE = []
5261
5557
  include Aws::Structure
5262
5558
  end
@@ -5535,7 +5831,8 @@ module Aws::Batch
5535
5831
  end
5536
5832
 
5537
5833
  # A filter name and value pair that's used to return a more specific
5538
- # list of results from a `ListJobs` API operation.
5834
+ # list of results from a `ListJobs` or `ListJobsByConsumableResource`
5835
+ # API operation.
5539
5836
  #
5540
5837
  # @!attribute [rw] name
5541
5838
  # The name of the filter. Filter names are case sensitive.
@@ -5898,6 +6195,240 @@ module Aws::Batch
5898
6195
  include Aws::Structure
5899
6196
  end
5900
6197
 
6198
+ # @!attribute [rw] filters
6199
+ # The filters to apply to the consumable resource list query. If used,
6200
+ # only those consumable resources that match the filter are listed.
6201
+ # Filter names and values can be:
6202
+ #
6203
+ # * name: `CONSUMABLE_RESOURCE_NAME `
6204
+ #
6205
+ # values: case-insensitive matches for the consumable resource name.
6206
+ # If a filter value ends with an asterisk (*), it matches any
6207
+ # consumable resource name that begins with the string before the
6208
+ # '*'.
6209
+ # @return [Array<Types::KeyValuesPair>]
6210
+ #
6211
+ # @!attribute [rw] max_results
6212
+ # The maximum number of results returned by `ListConsumableResources`
6213
+ # in paginated output. When this parameter is used,
6214
+ # `ListConsumableResources` only returns `maxResults` results in a
6215
+ # single page and a `nextToken` response element. The remaining
6216
+ # results of the initial request can be seen by sending another
6217
+ # `ListConsumableResources` request with the returned `nextToken`
6218
+ # value. This value can be between 1 and 100. If this parameter isn't
6219
+ # used, then `ListConsumableResources` returns up to 100 results and a
6220
+ # `nextToken` value if applicable.
6221
+ # @return [Integer]
6222
+ #
6223
+ # @!attribute [rw] next_token
6224
+ # The `nextToken` value returned from a previous paginated
6225
+ # `ListConsumableResources` request where `maxResults` was used and
6226
+ # the results exceeded the value of that parameter. Pagination
6227
+ # continues from the end of the previous results that returned the
6228
+ # `nextToken` value. This value is `null` when there are no more
6229
+ # results to return.
6230
+ #
6231
+ # <note markdown="1"> Treat this token as an opaque identifier that's only used to
6232
+ # retrieve the next items in a list and not for other programmatic
6233
+ # purposes.
6234
+ #
6235
+ # </note>
6236
+ # @return [String]
6237
+ #
6238
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListConsumableResourcesRequest AWS API Documentation
6239
+ #
6240
+ class ListConsumableResourcesRequest < Struct.new(
6241
+ :filters,
6242
+ :max_results,
6243
+ :next_token)
6244
+ SENSITIVE = []
6245
+ include Aws::Structure
6246
+ end
6247
+
6248
+ # @!attribute [rw] consumable_resources
6249
+ # A list of consumable resources that match the request.
6250
+ # @return [Array<Types::ConsumableResourceSummary>]
6251
+ #
6252
+ # @!attribute [rw] next_token
6253
+ # The `nextToken` value to include in a future
6254
+ # `ListConsumableResources` request. When the results of a
6255
+ # `ListConsumableResources` request exceed `maxResults`, this value
6256
+ # can be used to retrieve the next page of results. This value is
6257
+ # `null` when there are no more results to return.
6258
+ # @return [String]
6259
+ #
6260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListConsumableResourcesResponse AWS API Documentation
6261
+ #
6262
+ class ListConsumableResourcesResponse < Struct.new(
6263
+ :consumable_resources,
6264
+ :next_token)
6265
+ SENSITIVE = []
6266
+ include Aws::Structure
6267
+ end
6268
+
6269
+ # @!attribute [rw] consumable_resource
6270
+ # The name or ARN of the consumable resource.
6271
+ # @return [String]
6272
+ #
6273
+ # @!attribute [rw] filters
6274
+ # The filters to apply to the job list query. If used, only those jobs
6275
+ # requiring the specified consumable resource (`consumableResource`)
6276
+ # and that match the value of the filters are listed. The filter names
6277
+ # and values can be:
6278
+ #
6279
+ # * name: `JOB_STATUS`
6280
+ #
6281
+ # values: `SUBMITTED | PENDING | RUNNABLE | STARTING | RUNNING |
6282
+ # SUCCEEDED | FAILED`
6283
+ #
6284
+ # * name: `JOB_NAME `
6285
+ #
6286
+ # The values are case-insensitive matches for the job name. If a
6287
+ # filter value ends with an asterisk (*), it matches any job name
6288
+ # that begins with the string before the '*'.
6289
+ # @return [Array<Types::KeyValuesPair>]
6290
+ #
6291
+ # @!attribute [rw] max_results
6292
+ # The maximum number of results returned by
6293
+ # `ListJobsByConsumableResource` in paginated output. When this
6294
+ # parameter is used, `ListJobsByConsumableResource` only returns
6295
+ # `maxResults` results in a single page and a `nextToken` response
6296
+ # element. The remaining results of the initial request can be seen by
6297
+ # sending another `ListJobsByConsumableResource` request with the
6298
+ # returned `nextToken` value. This value can be between 1 and 100. If
6299
+ # this parameter isn't used, then `ListJobsByConsumableResource`
6300
+ # returns up to 100 results and a `nextToken` value if applicable.
6301
+ # @return [Integer]
6302
+ #
6303
+ # @!attribute [rw] next_token
6304
+ # The `nextToken` value returned from a previous paginated
6305
+ # `ListJobsByConsumableResource` request where `maxResults` was used
6306
+ # and the results exceeded the value of that parameter. Pagination
6307
+ # continues from the end of the previous results that returned the
6308
+ # `nextToken` value. This value is `null` when there are no more
6309
+ # results to return.
6310
+ #
6311
+ # <note markdown="1"> Treat this token as an opaque identifier that's only used to
6312
+ # retrieve the next items in a list and not for other programmatic
6313
+ # purposes.
6314
+ #
6315
+ # </note>
6316
+ # @return [String]
6317
+ #
6318
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListJobsByConsumableResourceRequest AWS API Documentation
6319
+ #
6320
+ class ListJobsByConsumableResourceRequest < Struct.new(
6321
+ :consumable_resource,
6322
+ :filters,
6323
+ :max_results,
6324
+ :next_token)
6325
+ SENSITIVE = []
6326
+ include Aws::Structure
6327
+ end
6328
+
6329
+ # @!attribute [rw] jobs
6330
+ # The list of jobs that require the specified consumable resources.
6331
+ # @return [Array<Types::ListJobsByConsumableResourceSummary>]
6332
+ #
6333
+ # @!attribute [rw] next_token
6334
+ # The `nextToken` value to include in a future
6335
+ # `ListJobsByConsumableResource` request. When the results of a
6336
+ # `ListJobsByConsumableResource` request exceed `maxResults`, this
6337
+ # value can be used to retrieve the next page of results. This value
6338
+ # is `null` when there are no more results to return.
6339
+ # @return [String]
6340
+ #
6341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListJobsByConsumableResourceResponse AWS API Documentation
6342
+ #
6343
+ class ListJobsByConsumableResourceResponse < Struct.new(
6344
+ :jobs,
6345
+ :next_token)
6346
+ SENSITIVE = []
6347
+ include Aws::Structure
6348
+ end
6349
+
6350
+ # Current information about a consumable resource required by a job.
6351
+ #
6352
+ # @!attribute [rw] job_arn
6353
+ # The Amazon Resource Name (ARN) of the job.
6354
+ # @return [String]
6355
+ #
6356
+ # @!attribute [rw] job_queue_arn
6357
+ # The Amazon Resource Name (ARN) of the job queue.
6358
+ # @return [String]
6359
+ #
6360
+ # @!attribute [rw] job_name
6361
+ # The name of the job.
6362
+ # @return [String]
6363
+ #
6364
+ # @!attribute [rw] job_definition_arn
6365
+ # The Amazon Resource Name (ARN) of the job definition.
6366
+ # @return [String]
6367
+ #
6368
+ # @!attribute [rw] share_identifier
6369
+ # The fair-share scheduling policy identifier for the job.
6370
+ # @return [String]
6371
+ #
6372
+ # @!attribute [rw] job_status
6373
+ # The status of the job. Can be one of:
6374
+ #
6375
+ # * `SUBMITTED`
6376
+ #
6377
+ # * `PENDING`
6378
+ #
6379
+ # * `RUNNABLE`
6380
+ #
6381
+ # * `STARTING`
6382
+ #
6383
+ # * `RUNNING`
6384
+ #
6385
+ # * `SUCCEEDED`
6386
+ #
6387
+ # * `FAILED`
6388
+ # @return [String]
6389
+ #
6390
+ # @!attribute [rw] quantity
6391
+ # The total amount of the consumable resource that is available.
6392
+ # @return [Integer]
6393
+ #
6394
+ # @!attribute [rw] status_reason
6395
+ # A short, human-readable string to provide more details for the
6396
+ # current status of the job.
6397
+ # @return [String]
6398
+ #
6399
+ # @!attribute [rw] started_at
6400
+ # The Unix timestamp for when the job was started. More specifically,
6401
+ # it's when the job transitioned from the `STARTING` state to the
6402
+ # `RUNNING` state.
6403
+ # @return [Integer]
6404
+ #
6405
+ # @!attribute [rw] created_at
6406
+ # The Unix timestamp (in milliseconds) for when the consumable
6407
+ # resource was created.
6408
+ # @return [Integer]
6409
+ #
6410
+ # @!attribute [rw] consumable_resource_properties
6411
+ # Contains a list of consumable resources required by the job.
6412
+ # @return [Types::ConsumableResourceProperties]
6413
+ #
6414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ListJobsByConsumableResourceSummary AWS API Documentation
6415
+ #
6416
+ class ListJobsByConsumableResourceSummary < Struct.new(
6417
+ :job_arn,
6418
+ :job_queue_arn,
6419
+ :job_name,
6420
+ :job_definition_arn,
6421
+ :share_identifier,
6422
+ :job_status,
6423
+ :quantity,
6424
+ :status_reason,
6425
+ :started_at,
6426
+ :created_at,
6427
+ :consumable_resource_properties)
6428
+ SENSITIVE = []
6429
+ include Aws::Structure
6430
+ end
6431
+
5901
6432
  # Contains the parameters for `ListJobs`.
5902
6433
  #
5903
6434
  # @!attribute [rw] job_queue
@@ -6147,52 +6678,59 @@ module Aws::Batch
6147
6678
  #
6148
6679
  # </note>
6149
6680
  #
6681
+ # awsfirelens
6682
+ #
6683
+ # : Specifies the firelens logging driver. For more information on
6684
+ # configuring Firelens, see [Send Amazon ECS logs to an Amazon Web
6685
+ # Services service or Amazon Web Services Partner][1] in the *Amazon
6686
+ # Elastic Container Service Developer Guide*.
6687
+ #
6150
6688
  # awslogs
6151
6689
  #
6152
6690
  # : Specifies the Amazon CloudWatch Logs logging driver. For more
6153
- # information, see [Using the awslogs log driver][1] in the *Batch
6154
- # User Guide* and [Amazon CloudWatch Logs logging driver][2] in the
6691
+ # information, see [Using the awslogs log driver][2] in the *Batch
6692
+ # User Guide* and [Amazon CloudWatch Logs logging driver][3] in the
6155
6693
  # Docker documentation.
6156
6694
  #
6157
6695
  # fluentd
6158
6696
  #
6159
6697
  # : Specifies the Fluentd logging driver. For more information
6160
- # including usage and options, see [Fluentd logging driver][3] in
6698
+ # including usage and options, see [Fluentd logging driver][4] in
6161
6699
  # the *Docker documentation*.
6162
6700
  #
6163
6701
  # gelf
6164
6702
  #
6165
6703
  # : Specifies the Graylog Extended Format (GELF) logging driver. For
6166
6704
  # more information including usage and options, see [Graylog
6167
- # Extended Format logging driver][4] in the *Docker documentation*.
6705
+ # Extended Format logging driver][5] in the *Docker documentation*.
6168
6706
  #
6169
6707
  # journald
6170
6708
  #
6171
6709
  # : Specifies the journald logging driver. For more information
6172
- # including usage and options, see [Journald logging driver][5] in
6710
+ # including usage and options, see [Journald logging driver][6] in
6173
6711
  # the *Docker documentation*.
6174
6712
  #
6175
6713
  # json-file
6176
6714
  #
6177
6715
  # : Specifies the JSON file logging driver. For more information
6178
- # including usage and options, see [JSON File logging driver][6] in
6716
+ # including usage and options, see [JSON File logging driver][7] in
6179
6717
  # the *Docker documentation*.
6180
6718
  #
6181
6719
  # splunk
6182
6720
  #
6183
6721
  # : Specifies the Splunk logging driver. For more information
6184
- # including usage and options, see [Splunk logging driver][7] in the
6722
+ # including usage and options, see [Splunk logging driver][8] in the
6185
6723
  # *Docker documentation*.
6186
6724
  #
6187
6725
  # syslog
6188
6726
  #
6189
6727
  # : Specifies the syslog logging driver. For more information
6190
- # including usage and options, see [Syslog logging driver][8] in the
6728
+ # including usage and options, see [Syslog logging driver][9] in the
6191
6729
  # *Docker documentation*.
6192
6730
  #
6193
6731
  # <note markdown="1"> If you have a custom driver that's not listed earlier that you want
6194
6732
  # to work with the Amazon ECS container agent, you can fork the Amazon
6195
- # ECS container agent project that's [available on GitHub][9] and
6733
+ # ECS container agent project that's [available on GitHub][10] and
6196
6734
  # customize it to work with that driver. We encourage you to submit
6197
6735
  # pull requests for changes that you want to have included. However,
6198
6736
  # Amazon Web Services doesn't currently support running modified
@@ -6208,15 +6746,16 @@ module Aws::Batch
6208
6746
  #
6209
6747
  #
6210
6748
  #
6211
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/using_awslogs.html
6212
- # [2]: https://docs.docker.com/config/containers/logging/awslogs/
6213
- # [3]: https://docs.docker.com/config/containers/logging/fluentd/
6214
- # [4]: https://docs.docker.com/config/containers/logging/gelf/
6215
- # [5]: https://docs.docker.com/config/containers/logging/journald/
6216
- # [6]: https://docs.docker.com/config/containers/logging/json-file/
6217
- # [7]: https://docs.docker.com/config/containers/logging/splunk/
6218
- # [8]: https://docs.docker.com/config/containers/logging/syslog/
6219
- # [9]: https://github.com/aws/amazon-ecs-agent
6749
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
6750
+ # [2]: https://docs.aws.amazon.com/batch/latest/userguide/using_awslogs.html
6751
+ # [3]: https://docs.docker.com/config/containers/logging/awslogs/
6752
+ # [4]: https://docs.docker.com/config/containers/logging/fluentd/
6753
+ # [5]: https://docs.docker.com/config/containers/logging/gelf/
6754
+ # [6]: https://docs.docker.com/config/containers/logging/journald/
6755
+ # [7]: https://docs.docker.com/config/containers/logging/json-file/
6756
+ # [8]: https://docs.docker.com/config/containers/logging/splunk/
6757
+ # [9]: https://docs.docker.com/config/containers/logging/syslog/
6758
+ # [10]: https://github.com/aws/amazon-ecs-agent
6220
6759
  # @return [String]
6221
6760
  #
6222
6761
  # @!attribute [rw] options
@@ -6493,6 +7032,11 @@ module Aws::Batch
6493
7032
  # the existing Amazon EKS resources of a job.
6494
7033
  # @return [Types::EksPropertiesOverride]
6495
7034
  #
7035
+ # @!attribute [rw] consumable_resource_properties_override
7036
+ # An object that contains overrides for the consumable resources of a
7037
+ # job.
7038
+ # @return [Types::ConsumableResourceProperties]
7039
+ #
6496
7040
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/NodePropertyOverride AWS API Documentation
6497
7041
  #
6498
7042
  class NodePropertyOverride < Struct.new(
@@ -6500,7 +7044,8 @@ module Aws::Batch
6500
7044
  :container_overrides,
6501
7045
  :ecs_properties_override,
6502
7046
  :instance_types,
6503
- :eks_properties_override)
7047
+ :eks_properties_override,
7048
+ :consumable_resource_properties_override)
6504
7049
  SENSITIVE = []
6505
7050
  include Aws::Structure
6506
7051
  end
@@ -6545,6 +7090,10 @@ module Aws::Batch
6545
7090
  # for a multi-node parallel job.
6546
7091
  # @return [Types::EksProperties]
6547
7092
  #
7093
+ # @!attribute [rw] consumable_resource_properties
7094
+ # Contains a list of consumable resources required by a job.
7095
+ # @return [Types::ConsumableResourceProperties]
7096
+ #
6548
7097
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/NodeRangeProperty AWS API Documentation
6549
7098
  #
6550
7099
  class NodeRangeProperty < Struct.new(
@@ -6552,7 +7101,8 @@ module Aws::Batch
6552
7101
  :container,
6553
7102
  :instance_types,
6554
7103
  :ecs_properties,
6555
- :eks_properties)
7104
+ :eks_properties,
7105
+ :consumable_resource_properties)
6556
7106
  SENSITIVE = []
6557
7107
  include Aws::Structure
6558
7108
  end
@@ -6707,6 +7257,10 @@ module Aws::Batch
6707
7257
  # definitions.
6708
7258
  # @return [Types::EcsProperties]
6709
7259
  #
7260
+ # @!attribute [rw] consumable_resource_properties
7261
+ # Contains a list of consumable resources required by the job.
7262
+ # @return [Types::ConsumableResourceProperties]
7263
+ #
6710
7264
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/RegisterJobDefinitionRequest AWS API Documentation
6711
7265
  #
6712
7266
  class RegisterJobDefinitionRequest < Struct.new(
@@ -6722,7 +7276,8 @@ module Aws::Batch
6722
7276
  :tags,
6723
7277
  :platform_capabilities,
6724
7278
  :eks_properties,
6725
- :ecs_properties)
7279
+ :ecs_properties,
7280
+ :consumable_resource_properties)
6726
7281
  SENSITIVE = []
6727
7282
  include Aws::Structure
6728
7283
  end
@@ -7333,6 +7888,11 @@ module Aws::Batch
7333
7888
  # ECS resources.
7334
7889
  # @return [Types::EcsPropertiesOverride]
7335
7890
  #
7891
+ # @!attribute [rw] consumable_resource_properties_override
7892
+ # An object that contains overrides for the consumable resources of a
7893
+ # job.
7894
+ # @return [Types::ConsumableResourceProperties]
7895
+ #
7336
7896
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/SubmitJobRequest AWS API Documentation
7337
7897
  #
7338
7898
  class SubmitJobRequest < Struct.new(
@@ -7351,7 +7911,8 @@ module Aws::Batch
7351
7911
  :timeout,
7352
7912
  :tags,
7353
7913
  :eks_properties_override,
7354
- :ecs_properties_override)
7914
+ :ecs_properties_override,
7915
+ :consumable_resource_properties_override)
7355
7916
  SENSITIVE = []
7356
7917
  include Aws::Structure
7357
7918
  end
@@ -7502,6 +8063,17 @@ module Aws::Batch
7502
8063
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
7503
8064
  # @return [Boolean]
7504
8065
  #
8066
+ # @!attribute [rw] firelens_configuration
8067
+ # The FireLens configuration for the container. This is used to
8068
+ # specify and configure a log router for container logs. For more
8069
+ # information, see [Custom log][1] routing in the *Amazon Elastic
8070
+ # Container Service Developer Guide*.
8071
+ #
8072
+ #
8073
+ #
8074
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
8075
+ # @return [Types::FirelensConfiguration]
8076
+ #
7505
8077
  # @!attribute [rw] image
7506
8078
  # The image used to start a container. This string is passed directly
7507
8079
  # to the Docker daemon. By default, images in the Docker Hub registry
@@ -7751,6 +8323,7 @@ module Aws::Batch
7751
8323
  :depends_on,
7752
8324
  :environment,
7753
8325
  :essential,
8326
+ :firelens_configuration,
7754
8327
  :image,
7755
8328
  :linux_parameters,
7756
8329
  :log_configuration,
@@ -7886,6 +8459,17 @@ module Aws::Batch
7886
8459
  # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html
7887
8460
  # @return [Boolean]
7888
8461
  #
8462
+ # @!attribute [rw] firelens_configuration
8463
+ # The FireLens configuration for the container. This is used to
8464
+ # specify and configure a log router for container logs. For more
8465
+ # information, see [Custom log][1] routing in the *Amazon Elastic
8466
+ # Container Service Developer Guide*.
8467
+ #
8468
+ #
8469
+ #
8470
+ # [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html
8471
+ # @return [Types::FirelensConfiguration]
8472
+ #
7889
8473
  # @!attribute [rw] image
7890
8474
  # The image used to start a container. This string is passed directly
7891
8475
  # to the Docker daemon. By default, images in the Docker Hub registry
@@ -8110,6 +8694,7 @@ module Aws::Batch
8110
8694
  :depends_on,
8111
8695
  :environment,
8112
8696
  :essential,
8697
+ :firelens_configuration,
8113
8698
  :image,
8114
8699
  :linux_parameters,
8115
8700
  :log_configuration,
@@ -8414,6 +8999,81 @@ module Aws::Batch
8414
8999
  include Aws::Structure
8415
9000
  end
8416
9001
 
9002
+ # @!attribute [rw] consumable_resource
9003
+ # The name or ARN of the consumable resource to be updated.
9004
+ # @return [String]
9005
+ #
9006
+ # @!attribute [rw] operation
9007
+ # Indicates how the quantity of the consumable resource will be
9008
+ # updated. Must be one of:
9009
+ #
9010
+ # * `SET`
9011
+ #
9012
+ # Sets the quantity of the resource to the value specified by the
9013
+ # `quantity` parameter.
9014
+ #
9015
+ # * `ADD`
9016
+ #
9017
+ # Increases the quantity of the resource by the value specified by
9018
+ # the `quantity` parameter.
9019
+ #
9020
+ # * `REMOVE`
9021
+ #
9022
+ # Reduces the quantity of the resource by the value specified by the
9023
+ # `quantity` parameter.
9024
+ # @return [String]
9025
+ #
9026
+ # @!attribute [rw] quantity
9027
+ # The change in the total quantity of the consumable resource. The
9028
+ # `operation` parameter determines whether the value specified here
9029
+ # will be the new total quantity, or the amount by which the total
9030
+ # quantity will be increased or reduced. Must be a non-negative value.
9031
+ # @return [Integer]
9032
+ #
9033
+ # @!attribute [rw] client_token
9034
+ # If this parameter is specified and two update requests with
9035
+ # identical payloads and `clientToken`s are received, these requests
9036
+ # are considered the same request and the second request is rejected.
9037
+ # A `clientToken` is valid for 8 hours or until one hour after the
9038
+ # consumable resource is deleted, whichever is less.
9039
+ #
9040
+ # **A suitable default value is auto-generated.** You should normally
9041
+ # not need to pass this option.
9042
+ # @return [String]
9043
+ #
9044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/UpdateConsumableResourceRequest AWS API Documentation
9045
+ #
9046
+ class UpdateConsumableResourceRequest < Struct.new(
9047
+ :consumable_resource,
9048
+ :operation,
9049
+ :quantity,
9050
+ :client_token)
9051
+ SENSITIVE = []
9052
+ include Aws::Structure
9053
+ end
9054
+
9055
+ # @!attribute [rw] consumable_resource_name
9056
+ # The name of the consumable resource to be updated.
9057
+ # @return [String]
9058
+ #
9059
+ # @!attribute [rw] consumable_resource_arn
9060
+ # The Amazon Resource Name (ARN) of the consumable resource.
9061
+ # @return [String]
9062
+ #
9063
+ # @!attribute [rw] total_quantity
9064
+ # The total amount of the consumable resource that is available.
9065
+ # @return [Integer]
9066
+ #
9067
+ # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/UpdateConsumableResourceResponse AWS API Documentation
9068
+ #
9069
+ class UpdateConsumableResourceResponse < Struct.new(
9070
+ :consumable_resource_name,
9071
+ :consumable_resource_arn,
9072
+ :total_quantity)
9073
+ SENSITIVE = []
9074
+ include Aws::Structure
9075
+ end
9076
+
8417
9077
  # Contains the parameters for `UpdateJobQueue`.
8418
9078
  #
8419
9079
  # @!attribute [rw] job_queue
@@ -8503,7 +9163,7 @@ module Aws::Batch
8503
9163
  include Aws::Structure
8504
9164
  end
8505
9165
 
8506
- # Specifies the infrastructure update policy for the compute
9166
+ # Specifies the infrastructure update policy for the Amazon EC2 compute
8507
9167
  # environment. For more information about infrastructure updates, see
8508
9168
  # [Updating compute environments][1] in the *Batch User Guide*.
8509
9169
  #