aws-sdk-ecrpublic 1.25.0 → 1.27.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: c0be4b8357d2ec2e88c96a0c997950d860e6d35416590f0f757a0fcee53d44c8
4
- data.tar.gz: 4f3d3f4f1cb4d6499119e0844d5feb1bece2611960fdb33d3bac12cdc573cfec
3
+ metadata.gz: 8faae65e925cbcd71af3b9c1861981f493981b736b41a07ee70131920673f5e9
4
+ data.tar.gz: 64f64cfafda4613b6af8a68c7aab7d15c7524794d507cad092e78c0162b519fc
5
5
  SHA512:
6
- metadata.gz: 5e6409caeff4f3c5b68061c806c22bcb0929f618ae5ac78b33fd65804a4133d5b1c85f8d740967f950deeb5bd00bf53e161e3207cc08ae1bb3cb08a3758989ee
7
- data.tar.gz: f35274af17c0ce1d834d04c43512313b32e141a585daefb856c1ed02e94bc4c39a1212cd366313a7e4134d0c408dfbae409c8f16049a3f725ce57edb9656f162
6
+ metadata.gz: 72c0619b227c1fb002d406078a6039c16022f6f07bdbd39f41ea77d50313f701535fd300943925f2454c98d401971dbecb4f0c6ac1b1c3c23082d4a7b27c6969
7
+ data.tar.gz: 97e9998f43198cf8c9d6cbf81dc7f2999b7d4d2af5c798ab7be2ee49c25a0ec0a7fb845462a43f259ba594f15040e1ee8d00ad5315fef5e80aac6f25c1d56c73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.26.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.25.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::ECRPublic
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::ECRPublic
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::ECRPublic
347
356
  # @option options [Aws::ECRPublic::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ECRPublic::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -1606,7 +1630,7 @@ module Aws::ECRPublic
1606
1630
  params: params,
1607
1631
  config: config)
1608
1632
  context[:gem_name] = 'aws-sdk-ecrpublic'
1609
- context[:gem_version] = '1.25.0'
1633
+ context[:gem_version] = '1.27.0'
1610
1634
  Seahorse::Client::Request.new(handlers, context)
1611
1635
  end
1612
1636
 
@@ -14,6 +14,7 @@ module Aws::ECRPublic
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ECRPublic::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ecrpublic/customizations'
52
52
  # @!group service
53
53
  module Aws::ECRPublic
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,401 @@
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
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _BatchCheckLayerAvailabilityResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchCheckLayerAvailabilityResponse]
78
+ def layers: () -> ::Array[Types::Layer]
79
+ def failures: () -> ::Array[Types::LayerFailure]
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#batch_check_layer_availability-instance_method
82
+ def batch_check_layer_availability: (
83
+ ?registry_id: ::String,
84
+ repository_name: ::String,
85
+ layer_digests: Array[::String]
86
+ ) -> _BatchCheckLayerAvailabilityResponseSuccess
87
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCheckLayerAvailabilityResponseSuccess
88
+
89
+ interface _BatchDeleteImageResponseSuccess
90
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteImageResponse]
91
+ def image_ids: () -> ::Array[Types::ImageIdentifier]
92
+ def failures: () -> ::Array[Types::ImageFailure]
93
+ end
94
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#batch_delete_image-instance_method
95
+ def batch_delete_image: (
96
+ ?registry_id: ::String,
97
+ repository_name: ::String,
98
+ image_ids: Array[
99
+ {
100
+ image_digest: ::String?,
101
+ image_tag: ::String?
102
+ },
103
+ ]
104
+ ) -> _BatchDeleteImageResponseSuccess
105
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteImageResponseSuccess
106
+
107
+ interface _CompleteLayerUploadResponseSuccess
108
+ include ::Seahorse::Client::_ResponseSuccess[Types::CompleteLayerUploadResponse]
109
+ def registry_id: () -> ::String
110
+ def repository_name: () -> ::String
111
+ def upload_id: () -> ::String
112
+ def layer_digest: () -> ::String
113
+ end
114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#complete_layer_upload-instance_method
115
+ def complete_layer_upload: (
116
+ ?registry_id: ::String,
117
+ repository_name: ::String,
118
+ upload_id: ::String,
119
+ layer_digests: Array[::String]
120
+ ) -> _CompleteLayerUploadResponseSuccess
121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CompleteLayerUploadResponseSuccess
122
+
123
+ interface _CreateRepositoryResponseSuccess
124
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRepositoryResponse]
125
+ def repository: () -> Types::Repository
126
+ def catalog_data: () -> Types::RepositoryCatalogData
127
+ end
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#create_repository-instance_method
129
+ def create_repository: (
130
+ repository_name: ::String,
131
+ ?catalog_data: {
132
+ description: ::String?,
133
+ architectures: Array[::String]?,
134
+ operating_systems: Array[::String]?,
135
+ logo_image_blob: ::String?,
136
+ about_text: ::String?,
137
+ usage_text: ::String?
138
+ },
139
+ ?tags: Array[
140
+ {
141
+ key: ::String?,
142
+ value: ::String?
143
+ },
144
+ ]
145
+ ) -> _CreateRepositoryResponseSuccess
146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRepositoryResponseSuccess
147
+
148
+ interface _DeleteRepositoryResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRepositoryResponse]
150
+ def repository: () -> Types::Repository
151
+ end
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#delete_repository-instance_method
153
+ def delete_repository: (
154
+ ?registry_id: ::String,
155
+ repository_name: ::String,
156
+ ?force: bool
157
+ ) -> _DeleteRepositoryResponseSuccess
158
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRepositoryResponseSuccess
159
+
160
+ interface _DeleteRepositoryPolicyResponseSuccess
161
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRepositoryPolicyResponse]
162
+ def registry_id: () -> ::String
163
+ def repository_name: () -> ::String
164
+ def policy_text: () -> ::String
165
+ end
166
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#delete_repository_policy-instance_method
167
+ def delete_repository_policy: (
168
+ ?registry_id: ::String,
169
+ repository_name: ::String
170
+ ) -> _DeleteRepositoryPolicyResponseSuccess
171
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRepositoryPolicyResponseSuccess
172
+
173
+ interface _DescribeImageTagsResponseSuccess
174
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImageTagsResponse]
175
+ def image_tag_details: () -> ::Array[Types::ImageTagDetail]
176
+ def next_token: () -> ::String
177
+ end
178
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#describe_image_tags-instance_method
179
+ def describe_image_tags: (
180
+ ?registry_id: ::String,
181
+ repository_name: ::String,
182
+ ?next_token: ::String,
183
+ ?max_results: ::Integer
184
+ ) -> _DescribeImageTagsResponseSuccess
185
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImageTagsResponseSuccess
186
+
187
+ interface _DescribeImagesResponseSuccess
188
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImagesResponse]
189
+ def image_details: () -> ::Array[Types::ImageDetail]
190
+ def next_token: () -> ::String
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#describe_images-instance_method
193
+ def describe_images: (
194
+ ?registry_id: ::String,
195
+ repository_name: ::String,
196
+ ?image_ids: Array[
197
+ {
198
+ image_digest: ::String?,
199
+ image_tag: ::String?
200
+ },
201
+ ],
202
+ ?next_token: ::String,
203
+ ?max_results: ::Integer
204
+ ) -> _DescribeImagesResponseSuccess
205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImagesResponseSuccess
206
+
207
+ interface _DescribeRegistriesResponseSuccess
208
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRegistriesResponse]
209
+ def registries: () -> ::Array[Types::Registry]
210
+ def next_token: () -> ::String
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#describe_registries-instance_method
213
+ def describe_registries: (
214
+ ?next_token: ::String,
215
+ ?max_results: ::Integer
216
+ ) -> _DescribeRegistriesResponseSuccess
217
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRegistriesResponseSuccess
218
+
219
+ interface _DescribeRepositoriesResponseSuccess
220
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRepositoriesResponse]
221
+ def repositories: () -> ::Array[Types::Repository]
222
+ def next_token: () -> ::String
223
+ end
224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#describe_repositories-instance_method
225
+ def describe_repositories: (
226
+ ?registry_id: ::String,
227
+ ?repository_names: Array[::String],
228
+ ?next_token: ::String,
229
+ ?max_results: ::Integer
230
+ ) -> _DescribeRepositoriesResponseSuccess
231
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRepositoriesResponseSuccess
232
+
233
+ interface _GetAuthorizationTokenResponseSuccess
234
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAuthorizationTokenResponse]
235
+ def authorization_data: () -> Types::AuthorizationData
236
+ end
237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#get_authorization_token-instance_method
238
+ def get_authorization_token: (
239
+ ) -> _GetAuthorizationTokenResponseSuccess
240
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAuthorizationTokenResponseSuccess
241
+
242
+ interface _GetRegistryCatalogDataResponseSuccess
243
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRegistryCatalogDataResponse]
244
+ def registry_catalog_data: () -> Types::RegistryCatalogData
245
+ end
246
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#get_registry_catalog_data-instance_method
247
+ def get_registry_catalog_data: (
248
+ ) -> _GetRegistryCatalogDataResponseSuccess
249
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRegistryCatalogDataResponseSuccess
250
+
251
+ interface _GetRepositoryCatalogDataResponseSuccess
252
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRepositoryCatalogDataResponse]
253
+ def catalog_data: () -> Types::RepositoryCatalogData
254
+ end
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#get_repository_catalog_data-instance_method
256
+ def get_repository_catalog_data: (
257
+ ?registry_id: ::String,
258
+ repository_name: ::String
259
+ ) -> _GetRepositoryCatalogDataResponseSuccess
260
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryCatalogDataResponseSuccess
261
+
262
+ interface _GetRepositoryPolicyResponseSuccess
263
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRepositoryPolicyResponse]
264
+ def registry_id: () -> ::String
265
+ def repository_name: () -> ::String
266
+ def policy_text: () -> ::String
267
+ end
268
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#get_repository_policy-instance_method
269
+ def get_repository_policy: (
270
+ ?registry_id: ::String,
271
+ repository_name: ::String
272
+ ) -> _GetRepositoryPolicyResponseSuccess
273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRepositoryPolicyResponseSuccess
274
+
275
+ interface _InitiateLayerUploadResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::InitiateLayerUploadResponse]
277
+ def upload_id: () -> ::String
278
+ def part_size: () -> ::Integer
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#initiate_layer_upload-instance_method
281
+ def initiate_layer_upload: (
282
+ ?registry_id: ::String,
283
+ repository_name: ::String
284
+ ) -> _InitiateLayerUploadResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitiateLayerUploadResponseSuccess
286
+
287
+ interface _ListTagsForResourceResponseSuccess
288
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
289
+ def tags: () -> ::Array[Types::Tag]
290
+ end
291
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#list_tags_for_resource-instance_method
292
+ def list_tags_for_resource: (
293
+ resource_arn: ::String
294
+ ) -> _ListTagsForResourceResponseSuccess
295
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
296
+
297
+ interface _PutImageResponseSuccess
298
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutImageResponse]
299
+ def image: () -> Types::Image
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#put_image-instance_method
302
+ def put_image: (
303
+ ?registry_id: ::String,
304
+ repository_name: ::String,
305
+ image_manifest: ::String,
306
+ ?image_manifest_media_type: ::String,
307
+ ?image_tag: ::String,
308
+ ?image_digest: ::String
309
+ ) -> _PutImageResponseSuccess
310
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutImageResponseSuccess
311
+
312
+ interface _PutRegistryCatalogDataResponseSuccess
313
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutRegistryCatalogDataResponse]
314
+ def registry_catalog_data: () -> Types::RegistryCatalogData
315
+ end
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#put_registry_catalog_data-instance_method
317
+ def put_registry_catalog_data: (
318
+ ?display_name: ::String
319
+ ) -> _PutRegistryCatalogDataResponseSuccess
320
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRegistryCatalogDataResponseSuccess
321
+
322
+ interface _PutRepositoryCatalogDataResponseSuccess
323
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutRepositoryCatalogDataResponse]
324
+ def catalog_data: () -> Types::RepositoryCatalogData
325
+ end
326
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#put_repository_catalog_data-instance_method
327
+ def put_repository_catalog_data: (
328
+ ?registry_id: ::String,
329
+ repository_name: ::String,
330
+ catalog_data: {
331
+ description: ::String?,
332
+ architectures: Array[::String]?,
333
+ operating_systems: Array[::String]?,
334
+ logo_image_blob: ::String?,
335
+ about_text: ::String?,
336
+ usage_text: ::String?
337
+ }
338
+ ) -> _PutRepositoryCatalogDataResponseSuccess
339
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRepositoryCatalogDataResponseSuccess
340
+
341
+ interface _SetRepositoryPolicyResponseSuccess
342
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetRepositoryPolicyResponse]
343
+ def registry_id: () -> ::String
344
+ def repository_name: () -> ::String
345
+ def policy_text: () -> ::String
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#set_repository_policy-instance_method
348
+ def set_repository_policy: (
349
+ ?registry_id: ::String,
350
+ repository_name: ::String,
351
+ policy_text: ::String,
352
+ ?force: bool
353
+ ) -> _SetRepositoryPolicyResponseSuccess
354
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetRepositoryPolicyResponseSuccess
355
+
356
+ interface _TagResourceResponseSuccess
357
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
358
+ end
359
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#tag_resource-instance_method
360
+ def tag_resource: (
361
+ resource_arn: ::String,
362
+ tags: Array[
363
+ {
364
+ key: ::String?,
365
+ value: ::String?
366
+ },
367
+ ]
368
+ ) -> _TagResourceResponseSuccess
369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
370
+
371
+ interface _UntagResourceResponseSuccess
372
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
373
+ end
374
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#untag_resource-instance_method
375
+ def untag_resource: (
376
+ resource_arn: ::String,
377
+ tag_keys: Array[::String]
378
+ ) -> _UntagResourceResponseSuccess
379
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
380
+
381
+ interface _UploadLayerPartResponseSuccess
382
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadLayerPartResponse]
383
+ def registry_id: () -> ::String
384
+ def repository_name: () -> ::String
385
+ def upload_id: () -> ::String
386
+ def last_byte_received: () -> ::Integer
387
+ end
388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ECRPublic/Client.html#upload_layer_part-instance_method
389
+ def upload_layer_part: (
390
+ ?registry_id: ::String,
391
+ repository_name: ::String,
392
+ upload_id: ::String,
393
+ part_first_byte: ::Integer,
394
+ part_last_byte: ::Integer,
395
+ layer_part_blob: ::String
396
+ ) -> _UploadLayerPartResponseSuccess
397
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadLayerPartResponseSuccess
398
+ end
399
+ end
400
+ end
401
+