aws-sdk-batch 1.68.0 → 1.70.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c346d8e5823142438ef0d4a9214fcaea8cd6a106c073590f5f698f4ed1f36b6
4
- data.tar.gz: 1991abc736fa5611bdf676a5a4194da6ed80ed8ec5132fdb2130bdf8b8f17f33
3
+ metadata.gz: 89076906955df3d16959ac793c834f230a53c6e86efb09b7a868aed16f91be47
4
+ data.tar.gz: b1b07710064b2565e5f15c9345d6019af7dd8dde9270f06c2da918936bf3b76f
5
5
  SHA512:
6
- metadata.gz: 14f9fc1bf9bfdd50207613a3b049caf537cd92bf5470ad4e6b9cd9b72baf863d1e31e30f34f0c0d6c7be7fc915209ed092f0d61d5e4bfe15fa654c439f0f8b2d
7
- data.tar.gz: a3ee30dac6555e6b3a2ea3a32f34a3bb82145f46460aa2f413026af44e65ba3a8c3575b5a4ee7634f05566972147c43e6f8a9a2538ceb131d147fe0007d29224
6
+ metadata.gz: 6b2d18f672f0e2a424798ed4fd9bfacb914ee43778f0bb8520cc2174d3431bb27d41c900d96e47f6f0b4440d75788d8328010d627535d2048199a32739e21edf
7
+ data.tar.gz: 8246eb7381355ae089f0a02786a390c55037d856f727961e9117e6eb8770947647a161fc6cb73165a36c93c1243445220afca54f9b34db0f12daa62479cda193
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.69.0 (2023-03-30)
10
+ ------------------
11
+
12
+ * Feature - This feature allows Batch on EKS to support configuration of Pod Labels through Metadata for Batch on EKS Jobs.
13
+
4
14
  1.68.0 (2023-03-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -275,6 +275,11 @@ module Aws::Batch
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -2000,6 +2005,8 @@ module Aws::Batch
2000
2005
  # resp.jobs[0].eks_properties.pod_properties.volumes[0].secret.optional #=> Boolean
2001
2006
  # resp.jobs[0].eks_properties.pod_properties.pod_name #=> String
2002
2007
  # resp.jobs[0].eks_properties.pod_properties.node_name #=> String
2008
+ # resp.jobs[0].eks_properties.pod_properties.metadata.labels #=> Hash
2009
+ # resp.jobs[0].eks_properties.pod_properties.metadata.labels["String"] #=> String
2003
2010
  # resp.jobs[0].eks_attempts #=> Array
2004
2011
  # resp.jobs[0].eks_attempts[0].containers #=> Array
2005
2012
  # resp.jobs[0].eks_attempts[0].containers[0].exit_code #=> Integer
@@ -3656,7 +3663,7 @@ module Aws::Batch
3656
3663
  params: params,
3657
3664
  config: config)
3658
3665
  context[:gem_name] = 'aws-sdk-batch'
3659
- context[:gem_version] = '1.68.0'
3666
+ context[:gem_version] = '1.70.0'
3660
3667
  Seahorse::Client::Request.new(handlers, context)
3661
3668
  end
3662
3669
 
@@ -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.70.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.70.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-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement