aws-sdk-ecr 1.70.0 → 1.71.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: 45b47e1275c8dac56bc91cc9919bd14be37fa060eddfb4b4cef1b20c3eb53b67
4
- data.tar.gz: 5ad209be6a0346a47ed3ab4fd8428cb2468edcf0fe37826e7608a72d1ca7fec9
3
+ metadata.gz: 65f69d14ed1e0c1c73df15041228487a2d1ab167f12870afdfa54ef3bba9edba
4
+ data.tar.gz: ec0f809f90ce528c4128ddb9df958e6a14d19b4d7001bd53afada9368cf1e17f
5
5
  SHA512:
6
- metadata.gz: 83128e42021ef07c03b357b698c9696fce1a452075fc4835c609904a9a5548000bd7fb2f8852f186a3395ab43ebba5406affa66c63a24158afb4f11d41574613
7
- data.tar.gz: 68db565b6e92ccf8c6debe433a996f61cf7999433b9a9781f2cf44e7f9b3828aef17124046167ba27434bef28128bb9beeb12e46e659ca917f5d198c15b1a40e
6
+ metadata.gz: eefdac7431195a08b855417334e86209992fa3557cff698b87714ab02b0ec40c3bc580fa959c39bbe7a0df0893ee7947d8fd7cf0dff3f8dbbb1064b953523978
7
+ data.tar.gz: 7612cc31a285591527be30c3d63935a8ad782664896cd22b446c42229d68109956dc3a370c8887506972ef9c07221fabb34a4656d778e420c450e48d8ec7cece
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2024-05-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds pull through cache rules support for GitLab container registry in Amazon ECR.
8
+
4
9
  1.70.0 (2024-04-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -801,6 +801,9 @@ module Aws::ECR
801
801
  # * Microsoft Azure Container Registry (`azure-container-registry`) -
802
802
  # `<custom>.azurecr.io`
803
803
  #
804
+ # * GitLab Container Registry (`gitlab-container-registry`) -
805
+ # `registry.gitlab.com`
806
+ #
804
807
  # @option params [String] :registry_id
805
808
  # The Amazon Web Services account ID associated with the registry to
806
809
  # create the pull through cache rule for. If you do not specify a
@@ -829,7 +832,7 @@ module Aws::ECR
829
832
  # ecr_repository_prefix: "PullThroughCacheRuleRepositoryPrefix", # required
830
833
  # upstream_registry_url: "Url", # required
831
834
  # registry_id: "RegistryId",
832
- # upstream_registry: "ecr-public", # accepts ecr-public, quay, k8s, docker-hub, github-container-registry, azure-container-registry
835
+ # upstream_registry: "ecr-public", # accepts ecr-public, quay, k8s, docker-hub, github-container-registry, azure-container-registry, gitlab-container-registry
833
836
  # credential_arn: "CredentialArn",
834
837
  # })
835
838
  #
@@ -839,7 +842,7 @@ module Aws::ECR
839
842
  # resp.upstream_registry_url #=> String
840
843
  # resp.created_at #=> Time
841
844
  # resp.registry_id #=> String
842
- # resp.upstream_registry #=> String, one of "ecr-public", "quay", "k8s", "docker-hub", "github-container-registry", "azure-container-registry"
845
+ # resp.upstream_registry #=> String, one of "ecr-public", "quay", "k8s", "docker-hub", "github-container-registry", "azure-container-registry", "gitlab-container-registry"
843
846
  # resp.credential_arn #=> String
844
847
  #
845
848
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/CreatePullThroughCacheRule AWS API Documentation
@@ -1549,7 +1552,7 @@ module Aws::ECR
1549
1552
  # resp.pull_through_cache_rules[0].created_at #=> Time
1550
1553
  # resp.pull_through_cache_rules[0].registry_id #=> String
1551
1554
  # resp.pull_through_cache_rules[0].credential_arn #=> String
1552
- # resp.pull_through_cache_rules[0].upstream_registry #=> String, one of "ecr-public", "quay", "k8s", "docker-hub", "github-container-registry", "azure-container-registry"
1555
+ # resp.pull_through_cache_rules[0].upstream_registry #=> String, one of "ecr-public", "quay", "k8s", "docker-hub", "github-container-registry", "azure-container-registry", "gitlab-container-registry"
1553
1556
  # resp.pull_through_cache_rules[0].updated_at #=> Time
1554
1557
  # resp.next_token #=> String
1555
1558
  #
@@ -3035,7 +3038,7 @@ module Aws::ECR
3035
3038
  params: params,
3036
3039
  config: config)
3037
3040
  context[:gem_name] = 'aws-sdk-ecr'
3038
- context[:gem_version] = '1.70.0'
3041
+ context[:gem_version] = '1.71.0'
3039
3042
  Seahorse::Client::Request.new(handlers, context)
3040
3043
  end
3041
3044
 
@@ -1200,6 +1200,7 @@ module Aws::ECR
1200
1200
  "endpointPrefix" => "api.ecr",
1201
1201
  "jsonVersion" => "1.1",
1202
1202
  "protocol" => "json",
1203
+ "protocols" => ["json"],
1203
1204
  "serviceAbbreviation" => "Amazon ECR",
1204
1205
  "serviceFullName" => "Amazon EC2 Container Registry",
1205
1206
  "serviceId" => "ECR",
@@ -361,6 +361,9 @@ module Aws::ECR
361
361
  #
362
362
  # * Microsoft Azure Container Registry (`azure-container-registry`) -
363
363
  # `<custom>.azurecr.io`
364
+ #
365
+ # * GitLab Container Registry (`gitlab-container-registry`) -
366
+ # `registry.gitlab.com`
364
367
  # @return [String]
365
368
  #
366
369
  # @!attribute [rw] registry_id
data/lib/aws-sdk-ecr.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ecr/customizations'
53
53
  # @!group service
54
54
  module Aws::ECR
55
55
 
56
- GEM_VERSION = '1.70.0'
56
+ GEM_VERSION = '1.71.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -156,7 +156,7 @@ module Aws
156
156
  def upstream_registry_url: () -> ::String
157
157
  def created_at: () -> ::Time
158
158
  def registry_id: () -> ::String
159
- def upstream_registry: () -> ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry")
159
+ def upstream_registry: () -> ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry" | "gitlab-container-registry")
160
160
  def credential_arn: () -> ::String
161
161
  end
162
162
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECR/Client.html#create_pull_through_cache_rule-instance_method
@@ -164,7 +164,7 @@ module Aws
164
164
  ecr_repository_prefix: ::String,
165
165
  upstream_registry_url: ::String,
166
166
  ?registry_id: ::String,
167
- ?upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry"),
167
+ ?upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry" | "gitlab-container-registry"),
168
168
  ?credential_arn: ::String
169
169
  ) -> _CreatePullThroughCacheRuleResponseSuccess
170
170
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePullThroughCacheRuleResponseSuccess
data/sig/types.rbs CHANGED
@@ -104,7 +104,7 @@ module Aws::ECR
104
104
  attr_accessor ecr_repository_prefix: ::String
105
105
  attr_accessor upstream_registry_url: ::String
106
106
  attr_accessor registry_id: ::String
107
- attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry")
107
+ attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry" | "gitlab-container-registry")
108
108
  attr_accessor credential_arn: ::String
109
109
  SENSITIVE: []
110
110
  end
@@ -114,7 +114,7 @@ module Aws::ECR
114
114
  attr_accessor upstream_registry_url: ::String
115
115
  attr_accessor created_at: ::Time
116
116
  attr_accessor registry_id: ::String
117
- attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry")
117
+ attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry" | "gitlab-container-registry")
118
118
  attr_accessor credential_arn: ::String
119
119
  SENSITIVE: []
120
120
  end
@@ -702,7 +702,7 @@ module Aws::ECR
702
702
  attr_accessor created_at: ::Time
703
703
  attr_accessor registry_id: ::String
704
704
  attr_accessor credential_arn: ::String
705
- attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry")
705
+ attr_accessor upstream_registry: ("ecr-public" | "quay" | "k8s" | "docker-hub" | "github-container-registry" | "azure-container-registry" | "gitlab-container-registry")
706
706
  attr_accessor updated_at: ::Time
707
707
  SENSITIVE: []
708
708
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.70.0
4
+ version: 1.71.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-04-25 00:00:00.000000000 Z
11
+ date: 2024-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core