aws-sdk-eks 1.124.0 → 1.125.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: 02ae06a9baee4cb37b6fc2400ac1dd214cac1ea48f96d56661df4b32ba0ae3c4
4
- data.tar.gz: c54299ecf1988524ee260a3dbca86ef8fb31b0e934302a2eb042e02d608733dc
3
+ metadata.gz: 6d19db4e40a4e5b8204537c27d2ca12412b79594527d0ba650ba3a415a23ec3f
4
+ data.tar.gz: 6aab48422cb4626a9ae0aeff3fb9f68203ff8cd71118e82bfaa06a905a55e1fe
5
5
  SHA512:
6
- metadata.gz: dd440a08b05d4cfb8a906e05ff73a879ef07d41e4da93623bf98f1e8ba058d3fbfbac76160aa52ffda24cbca72934d6f8c1bad560ccde41395ceb98cdaac498b
7
- data.tar.gz: 73f1890dee53b8fb818946d2b7f6d95594c798d5a28920ad0421c616d5bbb5df336aff2b8e889b4472548f54e08fd9a1b6df0633fdac5b2d45d27e3ec5cc826b
6
+ metadata.gz: d8503e64fb520cc6ff7abdad381f870da6cefb4855b1495c37366ba854298a319d0d849d81fdf3749253c3e76de08b21fae06ab92f93c9e5adcf525a1a8b73a2
7
+ data.tar.gz: 47befc2c1bffdf1b7b788bf8fec04f01586479a4a89701cb54bdd959b069cf74a156e33002cc3b17b6c48bb966500fa90b6e222451a6171d01366190ba7f56ea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.125.0 (2024-12-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support dates
8
+
4
9
  1.124.0 (2024-12-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.125.0
@@ -2970,6 +2970,71 @@ module Aws::EKS
2970
2970
  req.send_request(options)
2971
2971
  end
2972
2972
 
2973
+ # Lists available Kubernetes versions for Amazon EKS clusters.
2974
+ #
2975
+ # @option params [String] :cluster_type
2976
+ # The type of cluster to filter versions by.
2977
+ #
2978
+ # @option params [Integer] :max_results
2979
+ # Maximum number of results to return.
2980
+ #
2981
+ # @option params [String] :next_token
2982
+ # Pagination token for the next set of results.
2983
+ #
2984
+ # @option params [Boolean] :default_only
2985
+ # Filter to show only default versions.
2986
+ #
2987
+ # @option params [Boolean] :include_all
2988
+ # Include all available versions in the response.
2989
+ #
2990
+ # @option params [Array<String>] :cluster_versions
2991
+ # List of specific cluster versions to describe.
2992
+ #
2993
+ # @option params [String] :status
2994
+ # Filter versions by their current status.
2995
+ #
2996
+ # @return [Types::DescribeClusterVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2997
+ #
2998
+ # * {Types::DescribeClusterVersionsResponse#next_token #next_token} => String
2999
+ # * {Types::DescribeClusterVersionsResponse#cluster_versions #cluster_versions} => Array&lt;Types::ClusterVersionInformation&gt;
3000
+ #
3001
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3002
+ #
3003
+ # @example Request syntax with placeholder values
3004
+ #
3005
+ # resp = client.describe_cluster_versions({
3006
+ # cluster_type: "String",
3007
+ # max_results: 1,
3008
+ # next_token: "String",
3009
+ # default_only: false,
3010
+ # include_all: false,
3011
+ # cluster_versions: ["String"],
3012
+ # status: "unsupported", # accepts unsupported, standard-support, extended-support
3013
+ # })
3014
+ #
3015
+ # @example Response structure
3016
+ #
3017
+ # resp.next_token #=> String
3018
+ # resp.cluster_versions #=> Array
3019
+ # resp.cluster_versions[0].cluster_version #=> String
3020
+ # resp.cluster_versions[0].cluster_type #=> String
3021
+ # resp.cluster_versions[0].default_platform_version #=> String
3022
+ # resp.cluster_versions[0].default_version #=> Boolean
3023
+ # resp.cluster_versions[0].release_date #=> Time
3024
+ # resp.cluster_versions[0].end_of_standard_support_date #=> Time
3025
+ # resp.cluster_versions[0].end_of_extended_support_date #=> Time
3026
+ # resp.cluster_versions[0].status #=> String, one of "unsupported", "standard-support", "extended-support"
3027
+ # resp.cluster_versions[0].kubernetes_patch_version #=> String
3028
+ #
3029
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersions AWS API Documentation
3030
+ #
3031
+ # @overload describe_cluster_versions(params = {})
3032
+ # @param [Hash] params ({})
3033
+ def describe_cluster_versions(params = {}, options = {})
3034
+ req = build_request(:describe_cluster_versions, params)
3035
+ req.send_request(options)
3036
+ end
3037
+
2973
3038
  # Returns descriptive information about a subscription.
2974
3039
  #
2975
3040
  # @option params [required, String] :id
@@ -5352,7 +5417,7 @@ module Aws::EKS
5352
5417
  tracer: tracer
5353
5418
  )
5354
5419
  context[:gem_name] = 'aws-sdk-eks'
5355
- context[:gem_version] = '1.124.0'
5420
+ context[:gem_version] = '1.125.0'
5356
5421
  Seahorse::Client::Request.new(handlers, context)
5357
5422
  end
5358
5423
 
@@ -70,6 +70,9 @@ module Aws::EKS
70
70
  ClusterIssueList = Shapes::ListShape.new(name: 'ClusterIssueList')
71
71
  ClusterName = Shapes::StringShape.new(name: 'ClusterName')
72
72
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
73
+ ClusterVersionInformation = Shapes::StructureShape.new(name: 'ClusterVersionInformation')
74
+ ClusterVersionList = Shapes::ListShape.new(name: 'ClusterVersionList')
75
+ ClusterVersionStatus = Shapes::StringShape.new(name: 'ClusterVersionStatus')
73
76
  Compatibilities = Shapes::ListShape.new(name: 'Compatibilities')
74
77
  Compatibility = Shapes::StructureShape.new(name: 'Compatibility')
75
78
  ComputeConfigRequest = Shapes::StructureShape.new(name: 'ComputeConfigRequest')
@@ -123,6 +126,9 @@ module Aws::EKS
123
126
  DescribeAddonVersionsResponse = Shapes::StructureShape.new(name: 'DescribeAddonVersionsResponse')
124
127
  DescribeClusterRequest = Shapes::StructureShape.new(name: 'DescribeClusterRequest')
125
128
  DescribeClusterResponse = Shapes::StructureShape.new(name: 'DescribeClusterResponse')
129
+ DescribeClusterVersionMaxResults = Shapes::IntegerShape.new(name: 'DescribeClusterVersionMaxResults')
130
+ DescribeClusterVersionsRequest = Shapes::StructureShape.new(name: 'DescribeClusterVersionsRequest')
131
+ DescribeClusterVersionsResponse = Shapes::StructureShape.new(name: 'DescribeClusterVersionsResponse')
126
132
  DescribeEksAnywhereSubscriptionRequest = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionRequest')
127
133
  DescribeEksAnywhereSubscriptionResponse = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionResponse')
128
134
  DescribeFargateProfileRequest = Shapes::StructureShape.new(name: 'DescribeFargateProfileRequest')
@@ -531,6 +537,19 @@ module Aws::EKS
531
537
 
532
538
  ClusterIssueList.member = Shapes::ShapeRef.new(shape: ClusterIssue)
533
539
 
540
+ ClusterVersionInformation.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
541
+ ClusterVersionInformation.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location_name: "clusterType"))
542
+ ClusterVersionInformation.add_member(:default_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "defaultPlatformVersion"))
543
+ ClusterVersionInformation.add_member(:default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "defaultVersion"))
544
+ ClusterVersionInformation.add_member(:release_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "releaseDate"))
545
+ ClusterVersionInformation.add_member(:end_of_standard_support_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endOfStandardSupportDate"))
546
+ ClusterVersionInformation.add_member(:end_of_extended_support_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endOfExtendedSupportDate"))
547
+ ClusterVersionInformation.add_member(:status, Shapes::ShapeRef.new(shape: ClusterVersionStatus, location_name: "status"))
548
+ ClusterVersionInformation.add_member(:kubernetes_patch_version, Shapes::ShapeRef.new(shape: String, location_name: "kubernetesPatchVersion"))
549
+ ClusterVersionInformation.struct_class = Types::ClusterVersionInformation
550
+
551
+ ClusterVersionList.member = Shapes::ShapeRef.new(shape: ClusterVersionInformation)
552
+
534
553
  Compatibilities.member = Shapes::ShapeRef.new(shape: Compatibility)
535
554
 
536
555
  Compatibility.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
@@ -781,6 +800,19 @@ module Aws::EKS
781
800
  DescribeClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
782
801
  DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
783
802
 
803
+ DescribeClusterVersionsRequest.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "clusterType"))
804
+ DescribeClusterVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeClusterVersionMaxResults, location: "querystring", location_name: "maxResults"))
805
+ DescribeClusterVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
806
+ DescribeClusterVersionsRequest.add_member(:default_only, Shapes::ShapeRef.new(shape: BoxedBoolean, location: "querystring", location_name: "defaultOnly"))
807
+ DescribeClusterVersionsRequest.add_member(:include_all, Shapes::ShapeRef.new(shape: BoxedBoolean, location: "querystring", location_name: "includeAll"))
808
+ DescribeClusterVersionsRequest.add_member(:cluster_versions, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "clusterVersions"))
809
+ DescribeClusterVersionsRequest.add_member(:status, Shapes::ShapeRef.new(shape: ClusterVersionStatus, location: "querystring", location_name: "status"))
810
+ DescribeClusterVersionsRequest.struct_class = Types::DescribeClusterVersionsRequest
811
+
812
+ DescribeClusterVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
813
+ DescribeClusterVersionsResponse.add_member(:cluster_versions, Shapes::ShapeRef.new(shape: ClusterVersionList, location_name: "clusterVersions"))
814
+ DescribeClusterVersionsResponse.struct_class = Types::DescribeClusterVersionsResponse
815
+
784
816
  DescribeEksAnywhereSubscriptionRequest.add_member(:id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "id"))
785
817
  DescribeEksAnywhereSubscriptionRequest.struct_class = Types::DescribeEksAnywhereSubscriptionRequest
786
818
 
@@ -1838,6 +1870,23 @@ module Aws::EKS
1838
1870
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1839
1871
  end)
1840
1872
 
1873
+ api.add_operation(:describe_cluster_versions, Seahorse::Model::Operation.new.tap do |o|
1874
+ o.name = "DescribeClusterVersions"
1875
+ o.http_method = "GET"
1876
+ o.http_request_uri = "/cluster-versions"
1877
+ o.input = Shapes::ShapeRef.new(shape: DescribeClusterVersionsRequest)
1878
+ o.output = Shapes::ShapeRef.new(shape: DescribeClusterVersionsResponse)
1879
+ o.errors << Shapes::ShapeRef.new(shape: ServerException)
1880
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1881
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1882
+ o[:pager] = Aws::Pager.new(
1883
+ limit_key: "max_results",
1884
+ tokens: {
1885
+ "next_token" => "next_token"
1886
+ }
1887
+ )
1888
+ end)
1889
+
1841
1890
  api.add_operation(:describe_eks_anywhere_subscription, Seahorse::Model::Operation.new.tap do |o|
1842
1891
  o.name = "DescribeEksAnywhereSubscription"
1843
1892
  o.http_method = "GET"
@@ -286,17 +286,14 @@ module Aws::EKS
286
286
  include Aws::Structure
287
287
  end
288
288
 
289
- # The summary information about the Amazon EKS add-on compatibility for
290
- # the next Kubernetes version for an insight check in the
291
- # `UPGRADE_READINESS` category.
289
+ # Contains compatibility information for an Amazon EKS add-on.
292
290
  #
293
291
  # @!attribute [rw] name
294
292
  # The name of the Amazon EKS add-on.
295
293
  # @return [String]
296
294
  #
297
295
  # @!attribute [rw] compatible_versions
298
- # The list of compatible Amazon EKS add-on versions for the next
299
- # Kubernetes version.
296
+ # A list of compatible add-on versions.
300
297
  # @return [Array<String>]
301
298
  #
302
299
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonCompatibilityDetail AWS API Documentation
@@ -1019,6 +1016,60 @@ module Aws::EKS
1019
1016
  include Aws::Structure
1020
1017
  end
1021
1018
 
1019
+ # Contains details about a specific EKS cluster version.
1020
+ #
1021
+ # @!attribute [rw] cluster_version
1022
+ # The Kubernetes version for the cluster.
1023
+ # @return [String]
1024
+ #
1025
+ # @!attribute [rw] cluster_type
1026
+ # The type of cluster this version is for.
1027
+ # @return [String]
1028
+ #
1029
+ # @!attribute [rw] default_platform_version
1030
+ # Default platform version for this Kubernetes version.
1031
+ # @return [String]
1032
+ #
1033
+ # @!attribute [rw] default_version
1034
+ # Indicates if this is a default version.
1035
+ # @return [Boolean]
1036
+ #
1037
+ # @!attribute [rw] release_date
1038
+ # The release date of this cluster version.
1039
+ # @return [Time]
1040
+ #
1041
+ # @!attribute [rw] end_of_standard_support_date
1042
+ # Date when standard support ends for this version.
1043
+ # @return [Time]
1044
+ #
1045
+ # @!attribute [rw] end_of_extended_support_date
1046
+ # Date when extended support ends for this version.
1047
+ # @return [Time]
1048
+ #
1049
+ # @!attribute [rw] status
1050
+ # Current status of this cluster version.
1051
+ # @return [String]
1052
+ #
1053
+ # @!attribute [rw] kubernetes_patch_version
1054
+ # The patch version of Kubernetes for this cluster version.
1055
+ # @return [String]
1056
+ #
1057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterVersionInformation AWS API Documentation
1058
+ #
1059
+ class ClusterVersionInformation < Struct.new(
1060
+ :cluster_version,
1061
+ :cluster_type,
1062
+ :default_platform_version,
1063
+ :default_version,
1064
+ :release_date,
1065
+ :end_of_standard_support_date,
1066
+ :end_of_extended_support_date,
1067
+ :status,
1068
+ :kubernetes_patch_version)
1069
+ SENSITIVE = []
1070
+ include Aws::Structure
1071
+ end
1072
+
1022
1073
  # Compatibility information.
1023
1074
  #
1024
1075
  # @!attribute [rw] cluster_version
@@ -2692,6 +2743,65 @@ module Aws::EKS
2692
2743
  include Aws::Structure
2693
2744
  end
2694
2745
 
2746
+ # @!attribute [rw] cluster_type
2747
+ # The type of cluster to filter versions by.
2748
+ # @return [String]
2749
+ #
2750
+ # @!attribute [rw] max_results
2751
+ # Maximum number of results to return.
2752
+ # @return [Integer]
2753
+ #
2754
+ # @!attribute [rw] next_token
2755
+ # Pagination token for the next set of results.
2756
+ # @return [String]
2757
+ #
2758
+ # @!attribute [rw] default_only
2759
+ # Filter to show only default versions.
2760
+ # @return [Boolean]
2761
+ #
2762
+ # @!attribute [rw] include_all
2763
+ # Include all available versions in the response.
2764
+ # @return [Boolean]
2765
+ #
2766
+ # @!attribute [rw] cluster_versions
2767
+ # List of specific cluster versions to describe.
2768
+ # @return [Array<String>]
2769
+ #
2770
+ # @!attribute [rw] status
2771
+ # Filter versions by their current status.
2772
+ # @return [String]
2773
+ #
2774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersionsRequest AWS API Documentation
2775
+ #
2776
+ class DescribeClusterVersionsRequest < Struct.new(
2777
+ :cluster_type,
2778
+ :max_results,
2779
+ :next_token,
2780
+ :default_only,
2781
+ :include_all,
2782
+ :cluster_versions,
2783
+ :status)
2784
+ SENSITIVE = []
2785
+ include Aws::Structure
2786
+ end
2787
+
2788
+ # @!attribute [rw] next_token
2789
+ # Pagination token for the next set of results.
2790
+ # @return [String]
2791
+ #
2792
+ # @!attribute [rw] cluster_versions
2793
+ # List of cluster version information objects.
2794
+ # @return [Array<Types::ClusterVersionInformation>]
2795
+ #
2796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersionsResponse AWS API Documentation
2797
+ #
2798
+ class DescribeClusterVersionsResponse < Struct.new(
2799
+ :next_token,
2800
+ :cluster_versions)
2801
+ SENSITIVE = []
2802
+ include Aws::Structure
2803
+ end
2804
+
2695
2805
  # @!attribute [rw] id
2696
2806
  # The ID of the subscription.
2697
2807
  # @return [String]
@@ -3440,7 +3550,7 @@ module Aws::EKS
3440
3550
  # @return [Array<Types::DeprecationDetail>]
3441
3551
  #
3442
3552
  # @!attribute [rw] addon_compatibility_details
3443
- # A list of `AddonCompatibilityDetail` objects for Amazon EKS add-ons.
3553
+ # A list of AddonCompatibilityDetail objects for Amazon EKS add-ons.
3444
3554
  # @return [Array<Types::AddonCompatibilityDetail>]
3445
3555
  #
3446
3556
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InsightCategorySpecificSummary AWS API Documentation
data/lib/aws-sdk-eks.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::EKS
55
55
  autoload :EndpointProvider, 'aws-sdk-eks/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-eks/endpoints'
57
57
 
58
- GEM_VERSION = '1.124.0'
58
+ GEM_VERSION = '1.125.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -511,6 +511,23 @@ module Aws
511
511
  ) -> _DescribeClusterResponseSuccess
512
512
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
513
513
 
514
+ interface _DescribeClusterVersionsResponseSuccess
515
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterVersionsResponse]
516
+ def next_token: () -> ::String
517
+ def cluster_versions: () -> ::Array[Types::ClusterVersionInformation]
518
+ end
519
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_cluster_versions-instance_method
520
+ def describe_cluster_versions: (
521
+ ?cluster_type: ::String,
522
+ ?max_results: ::Integer,
523
+ ?next_token: ::String,
524
+ ?default_only: bool,
525
+ ?include_all: bool,
526
+ ?cluster_versions: Array[::String],
527
+ ?status: ("unsupported" | "standard-support" | "extended-support")
528
+ ) -> _DescribeClusterVersionsResponseSuccess
529
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterVersionsResponseSuccess
530
+
514
531
  interface _DescribeEksAnywhereSubscriptionResponseSuccess
515
532
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEksAnywhereSubscriptionResponse]
516
533
  def subscription: () -> Types::EksAnywhereSubscription
data/sig/types.rbs CHANGED
@@ -240,6 +240,19 @@ module Aws::EKS
240
240
  SENSITIVE: []
241
241
  end
242
242
 
243
+ class ClusterVersionInformation
244
+ attr_accessor cluster_version: ::String
245
+ attr_accessor cluster_type: ::String
246
+ attr_accessor default_platform_version: ::String
247
+ attr_accessor default_version: bool
248
+ attr_accessor release_date: ::Time
249
+ attr_accessor end_of_standard_support_date: ::Time
250
+ attr_accessor end_of_extended_support_date: ::Time
251
+ attr_accessor status: ("unsupported" | "standard-support" | "extended-support")
252
+ attr_accessor kubernetes_patch_version: ::String
253
+ SENSITIVE: []
254
+ end
255
+
243
256
  class Compatibility
244
257
  attr_accessor cluster_version: ::String
245
258
  attr_accessor platform_versions: ::Array[::String]
@@ -583,6 +596,23 @@ module Aws::EKS
583
596
  SENSITIVE: []
584
597
  end
585
598
 
599
+ class DescribeClusterVersionsRequest
600
+ attr_accessor cluster_type: ::String
601
+ attr_accessor max_results: ::Integer
602
+ attr_accessor next_token: ::String
603
+ attr_accessor default_only: bool
604
+ attr_accessor include_all: bool
605
+ attr_accessor cluster_versions: ::Array[::String]
606
+ attr_accessor status: ("unsupported" | "standard-support" | "extended-support")
607
+ SENSITIVE: []
608
+ end
609
+
610
+ class DescribeClusterVersionsResponse
611
+ attr_accessor next_token: ::String
612
+ attr_accessor cluster_versions: ::Array[Types::ClusterVersionInformation]
613
+ SENSITIVE: []
614
+ end
615
+
586
616
  class DescribeEksAnywhereSubscriptionRequest
587
617
  attr_accessor id: ::String
588
618
  SENSITIVE: []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.124.0
4
+ version: 1.125.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: 2024-12-20 00:00:00.000000000 Z
11
+ date: 2024-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core