aws-sdk-batch 1.68.0 → 1.69.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c346d8e5823142438ef0d4a9214fcaea8cd6a106c073590f5f698f4ed1f36b6
4
- data.tar.gz: 1991abc736fa5611bdf676a5a4194da6ed80ed8ec5132fdb2130bdf8b8f17f33
3
+ metadata.gz: e99ba0443af5c6117d862fab503c1190c9d4ec5031e812571837ab4c2cfda2c7
4
+ data.tar.gz: b060571a6d2c87e8f66b25bc54b02d4b7b297963059011f5ddf607b55cd5b369
5
5
  SHA512:
6
- metadata.gz: 14f9fc1bf9bfdd50207613a3b049caf537cd92bf5470ad4e6b9cd9b72baf863d1e31e30f34f0c0d6c7be7fc915209ed092f0d61d5e4bfe15fa654c439f0f8b2d
7
- data.tar.gz: a3ee30dac6555e6b3a2ea3a32f34a3bb82145f46460aa2f413026af44e65ba3a8c3575b5a4ee7634f05566972147c43e6f8a9a2538ceb131d147fe0007d29224
6
+ metadata.gz: 871f4c9d3e0abd334978f341409d3fbdd608edd2072206c867e4a70db7831fce54c2886a6ea7ea1de15edbad18b2f6142fa960ef382495b6f4e94841a05eb1b5
7
+ data.tar.gz: 28987410dd745e2de8604f15cc9641a72426062f8d01edc8412a9f9398bcdd73ec26f67fd9f45a88e9da204242bcfc20025e23a74e0f542b42202d96399f34a5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2023-03-30)
5
+ ------------------
6
+
7
+ * Feature - This feature allows Batch on EKS to support configuration of Pod Labels through Metadata for Batch on EKS Jobs.
8
+
4
9
  1.68.0 (2023-03-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -2000,6 +2000,8 @@ module Aws::Batch
2000
2000
  # resp.jobs[0].eks_properties.pod_properties.volumes[0].secret.optional #=> Boolean
2001
2001
  # resp.jobs[0].eks_properties.pod_properties.pod_name #=> String
2002
2002
  # resp.jobs[0].eks_properties.pod_properties.node_name #=> String
2003
+ # resp.jobs[0].eks_properties.pod_properties.metadata.labels #=> Hash
2004
+ # resp.jobs[0].eks_properties.pod_properties.metadata.labels["String"] #=> String
2003
2005
  # resp.jobs[0].eks_attempts #=> Array
2004
2006
  # resp.jobs[0].eks_attempts[0].containers #=> Array
2005
2007
  # resp.jobs[0].eks_attempts[0].containers[0].exit_code #=> Integer
@@ -3656,7 +3658,7 @@ module Aws::Batch
3656
3658
  params: params,
3657
3659
  config: config)
3658
3660
  context[:gem_name] = 'aws-sdk-batch'
3659
- context[:gem_version] = '1.68.0'
3661
+ context[:gem_version] = '1.69.0'
3660
3662
  Seahorse::Client::Request.new(handlers, context)
3661
3663
  end
3662
3664
 
@@ -616,6 +616,7 @@ module Aws::Batch
616
616
  EksPodPropertiesDetail.add_member(:volumes, Shapes::ShapeRef.new(shape: EksVolumes, location_name: "volumes"))
617
617
  EksPodPropertiesDetail.add_member(:pod_name, Shapes::ShapeRef.new(shape: String, location_name: "podName"))
618
618
  EksPodPropertiesDetail.add_member(:node_name, Shapes::ShapeRef.new(shape: String, location_name: "nodeName"))
619
+ EksPodPropertiesDetail.add_member(:metadata, Shapes::ShapeRef.new(shape: EksMetadata, location_name: "metadata"))
619
620
  EksPodPropertiesDetail.struct_class = Types::EksPodPropertiesDetail
620
621
 
621
622
  EksPodPropertiesOverride.add_member(:containers, Shapes::ShapeRef.new(shape: EksContainerOverrideList, location_name: "containers"))
@@ -1480,7 +1480,7 @@ module Aws::Batch
1480
1480
  # @return [Types::FargatePlatformConfiguration]
1481
1481
  #
1482
1482
  # @!attribute [rw] ephemeral_storage
1483
- # The amount of ephemeral storage to allocate for the task. This
1483
+ # The amount of ephemeral storage allocated for the task. This
1484
1484
  # parameter is used to expand the total amount of ephemeral storage
1485
1485
  # available, beyond the default amount, for tasks hosted on Fargate.
1486
1486
  # @return [Types::EphemeralStorage]
@@ -3587,7 +3587,21 @@ module Aws::Batch
3587
3587
  include Aws::Structure
3588
3588
  end
3589
3589
 
3590
+ # Describes and uniquely identifies Kubernetes resources. For example,
3591
+ # the compute environment that a pod runs in or the `jobID` for a job
3592
+ # running in the pod. For more information, see [Understanding
3593
+ # Kubernetes Objects][1] in the *Kubernetes documentation*.
3594
+ #
3595
+ #
3596
+ #
3597
+ # [1]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
3598
+ #
3590
3599
  # @!attribute [rw] labels
3600
+ # Key-value pairs used to identify, sort, and organize cube resources.
3601
+ # Can contain up to 63 uppercase letters, lowercase letters, numbers,
3602
+ # hyphens (-), and underscores (\_). Labels can be added or modified
3603
+ # at any time. Each resource can have multiple labels, but each key
3604
+ # must be unique for a given object.
3591
3605
  # @return [Hash<String,String>]
3592
3606
  #
3593
3607
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EksMetadata AWS API Documentation
@@ -3656,6 +3670,13 @@ module Aws::Batch
3656
3670
  # @return [Array<Types::EksVolume>]
3657
3671
  #
3658
3672
  # @!attribute [rw] metadata
3673
+ # Metadata about the Kubernetes pod. For more information, see
3674
+ # [Understanding Kubernetes Objects][1] in the *Kubernetes
3675
+ # documentation*.
3676
+ #
3677
+ #
3678
+ #
3679
+ # [1]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
3659
3680
  # @return [Types::EksMetadata]
3660
3681
  #
3661
3682
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EksPodProperties AWS API Documentation
@@ -3744,6 +3765,17 @@ module Aws::Batch
3744
3765
  # The name of the node for this job.
3745
3766
  # @return [String]
3746
3767
  #
3768
+ # @!attribute [rw] metadata
3769
+ # Describes and uniquely identifies Kubernetes resources. For example,
3770
+ # the compute environment that a pod runs in or the `jobID` for a job
3771
+ # running in the pod. For more information, see [Understanding
3772
+ # Kubernetes Objects][1] in the *Kubernetes documentation*.
3773
+ #
3774
+ #
3775
+ #
3776
+ # [1]: https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/
3777
+ # @return [Types::EksMetadata]
3778
+ #
3747
3779
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EksPodPropertiesDetail AWS API Documentation
3748
3780
  #
3749
3781
  class EksPodPropertiesDetail < Struct.new(
@@ -3753,7 +3785,8 @@ module Aws::Batch
3753
3785
  :containers,
3754
3786
  :volumes,
3755
3787
  :pod_name,
3756
- :node_name)
3788
+ :node_name,
3789
+ :metadata)
3757
3790
  SENSITIVE = []
3758
3791
  include Aws::Structure
3759
3792
  end
@@ -3766,6 +3799,8 @@ module Aws::Batch
3766
3799
  # @return [Array<Types::EksContainerOverride>]
3767
3800
  #
3768
3801
  # @!attribute [rw] metadata
3802
+ # Metadata about the overrides for the container that's used on the
3803
+ # Amazon EKS pod.
3769
3804
  # @return [Types::EksMetadata]
3770
3805
  #
3771
3806
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/EksPodPropertiesOverride AWS API Documentation
data/lib/aws-sdk-batch.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-batch/customizations'
52
52
  # @!group service
53
53
  module Aws::Batch
54
54
 
55
- GEM_VERSION = '1.68.0'
55
+ GEM_VERSION = '1.69.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.68.0
4
+ version: 1.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-23 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core