aws-sdk-ecrpublic 1.64.0 → 1.65.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: 7232a20a69077c3b8bc58d17fcdb0dc57145fc8c309f63a2cd7354b845fb308a
4
- data.tar.gz: 54de3cd85b08a3dccb4aeffe801caa954ca9732bb0dd9362adca08adb28cd77c
3
+ metadata.gz: d8b69aefc8da5cd28058c774e863f4866471b0b80122debc92688f1b5782870d
4
+ data.tar.gz: 2498303d89e61343128208107f848fc94d76a793de0c7e45be90fe8fe8801b4b
5
5
  SHA512:
6
- metadata.gz: 5eb9b8543749e53413ecdd7d048323e2462b032468c5371772d9de93bf4dcc796581eacbee583f2f863396590ec190a825bc2c79b8b76d5512588a788ce5d4b3
7
- data.tar.gz: cb74036031b2474afa30b99224998f133fd2ed77b13ab7c254b8a2ec6667a0641e18613582d6ceb6d33671632be4cfeb1bbb3f4bba283263aa7cf068b655bb86
6
+ metadata.gz: ac406435d03c4b604c1651c2db7b83d8f0d9627da8a0ae1dd3d08281b8eed5bfefd64a6f3b7c1cd0b00b67d58f32018c02d52b5c37ca5fcb8aaa93ebf4b4ac35
7
+ data.tar.gz: f83b921855697d60432b8cdf1d4ea3e9506658aaabc044fd010d4607db1961401d704b681257e8461027bce500f1cc85997ce2ab334280526a7945f63237eac2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.64.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.65.0
@@ -1696,7 +1696,7 @@ module Aws::ECRPublic
1696
1696
  tracer: tracer
1697
1697
  )
1698
1698
  context[:gem_name] = 'aws-sdk-ecrpublic'
1699
- context[:gem_version] = '1.64.0'
1699
+ context[:gem_version] = '1.65.0'
1700
1700
  Seahorse::Client::Request.new(handlers, context)
1701
1701
  end
1702
1702
 
@@ -54,7 +54,7 @@ module Aws::ECRPublic
54
54
  autoload :EndpointProvider, 'aws-sdk-ecrpublic/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ecrpublic/endpoints'
56
56
 
57
- GEM_VERSION = '1.64.0'
57
+ GEM_VERSION = '1.65.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -105,7 +105,7 @@ module Aws
105
105
  {
106
106
  image_digest: ::String?,
107
107
  image_tag: ::String?
108
- },
108
+ }
109
109
  ]
110
110
  ) -> _BatchDeleteImageResponseSuccess
111
111
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteImageResponseSuccess
@@ -134,19 +134,12 @@ module Aws
134
134
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#create_repository-instance_method
135
135
  def create_repository: (
136
136
  repository_name: ::String,
137
- ?catalog_data: {
138
- description: ::String?,
139
- architectures: Array[::String]?,
140
- operating_systems: Array[::String]?,
141
- logo_image_blob: ::String?,
142
- about_text: ::String?,
143
- usage_text: ::String?
144
- },
137
+ ?catalog_data: Params::repository_catalog_data_input,
145
138
  ?tags: Array[
146
139
  {
147
140
  key: ::String?,
148
141
  value: ::String?
149
- },
142
+ }
150
143
  ]
151
144
  ) -> _CreateRepositoryResponseSuccess
152
145
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRepositoryResponseSuccess
@@ -203,7 +196,7 @@ module Aws
203
196
  {
204
197
  image_digest: ::String?,
205
198
  image_tag: ::String?
206
- },
199
+ }
207
200
  ],
208
201
  ?next_token: ::String,
209
202
  ?max_results: ::Integer
@@ -333,14 +326,7 @@ module Aws
333
326
  def put_repository_catalog_data: (
334
327
  ?registry_id: ::String,
335
328
  repository_name: ::String,
336
- catalog_data: {
337
- description: ::String?,
338
- architectures: Array[::String]?,
339
- operating_systems: Array[::String]?,
340
- logo_image_blob: ::String?,
341
- about_text: ::String?,
342
- usage_text: ::String?
343
- }
329
+ catalog_data: Params::repository_catalog_data_input
344
330
  ) -> _PutRepositoryCatalogDataResponseSuccess
345
331
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRepositoryCatalogDataResponseSuccess
346
332
 
@@ -369,7 +355,7 @@ module Aws
369
355
  {
370
356
  key: ::String?,
371
357
  value: ::String?
372
- },
358
+ }
373
359
  ]
374
360
  ) -> _TagResourceResponseSuccess
375
361
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,22 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module ECRPublic
10
+ module Params
11
+ type repository_catalog_data_input = {
12
+ description: ::String?,
13
+ architectures: Array[::String]?,
14
+ operating_systems: Array[::String]?,
15
+ logo_image_blob: ::String?,
16
+ about_text: ::String?,
17
+ usage_text: ::String?
18
+ }
19
+
20
+ end
21
+ end
22
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecrpublic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.65.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-ecrpublic/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs