aws-sdk-serverlessapplicationrepository 1.55.0 → 1.57.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: a5cb4991aa0b1b1e317d29987875d54c389afe08ae9bef8e7efd2f4a8cb27b20
4
- data.tar.gz: 7073b495a1679163eb4865d2397e79ed4c547dc437d431730bb0a0dec39db0c7
3
+ metadata.gz: 01d97296bc4d3b54783580e770362c7cc349274756967837a31ecdd0c2ed30e7
4
+ data.tar.gz: ff2d6a2d39a85bbf4d90d13836ebef28d974d89ea88656244b26c0772766975f
5
5
  SHA512:
6
- metadata.gz: 6508d4717f8da75c166e07da425ccd6e29c7512c3e743f33c77afd5164ee7da20cc4b30d563b4ea9505174e6571058c9adb85eda2aee566fabeb435a9fe4fb87
7
- data.tar.gz: 0c8fa68a69e717f494b840fc497b850270948e18e0f50158d4fa60f11227c4030c8093da37d73bd4f6936aa28af360829bf97cce1f20779e24f7c742beccafc4
6
+ metadata.gz: b8a32d7aa99117f668a9723d238a32175ee23124ea5659c58c4112431d076a8b1e94104c65f4657f9197023ca273c240efc26a784edd0c89ef381c72c68b988a
7
+ data.tar.gz: ad8854687737a9b0ab38d83924091286b520c8966f60065b1bf4ee387842a64ceb6e83fab46c554caba1d392567c231f0c9d84ad27d685aa4ea8d84c3f7520d3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.57.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.56.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.55.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.57.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::ServerlessApplicationRepository
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::ServerlessApplicationRepository
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
@@ -337,50 +346,65 @@ module Aws::ServerlessApplicationRepository
337
346
  # @option options [Aws::ServerlessApplicationRepository::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ServerlessApplicationRepository::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -1199,7 +1223,7 @@ module Aws::ServerlessApplicationRepository
1199
1223
  params: params,
1200
1224
  config: config)
1201
1225
  context[:gem_name] = 'aws-sdk-serverlessapplicationrepository'
1202
- context[:gem_version] = '1.55.0'
1226
+ context[:gem_version] = '1.57.0'
1203
1227
  Seahorse::Client::Request.new(handlers, context)
1204
1228
  end
1205
1229
 
@@ -14,6 +14,7 @@ module Aws::ServerlessApplicationRepository
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ServerlessApplicationRepository::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-serverlessapplicationrepository/customizations'
52
52
  # @!group service
53
53
  module Aws::ServerlessApplicationRepository
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.57.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,344 @@
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 ServerlessApplicationRepository
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CreateApplicationResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
77
+ def application_id: () -> ::String
78
+ def author: () -> ::String
79
+ def creation_time: () -> ::String
80
+ def description: () -> ::String
81
+ def home_page_url: () -> ::String
82
+ def is_verified_author: () -> bool
83
+ def labels: () -> ::Array[::String]
84
+ def license_url: () -> ::String
85
+ def name: () -> ::String
86
+ def readme_url: () -> ::String
87
+ def spdx_license_id: () -> ::String
88
+ def verified_author_url: () -> ::String
89
+ def version: () -> Types::Version
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#create_application-instance_method
92
+ def create_application: (
93
+ author: ::String,
94
+ description: ::String,
95
+ ?home_page_url: ::String,
96
+ ?labels: Array[::String],
97
+ ?license_body: ::String,
98
+ ?license_url: ::String,
99
+ name: ::String,
100
+ ?readme_body: ::String,
101
+ ?readme_url: ::String,
102
+ ?semantic_version: ::String,
103
+ ?source_code_archive_url: ::String,
104
+ ?source_code_url: ::String,
105
+ ?spdx_license_id: ::String,
106
+ ?template_body: ::String,
107
+ ?template_url: ::String
108
+ ) -> _CreateApplicationResponseSuccess
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
110
+
111
+ interface _CreateApplicationVersionResponseSuccess
112
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationVersionResponse]
113
+ def application_id: () -> ::String
114
+ def creation_time: () -> ::String
115
+ def parameter_definitions: () -> ::Array[Types::ParameterDefinition]
116
+ def required_capabilities: () -> ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND" | "CAPABILITY_RESOURCE_POLICY")]
117
+ def resources_supported: () -> bool
118
+ def semantic_version: () -> ::String
119
+ def source_code_archive_url: () -> ::String
120
+ def source_code_url: () -> ::String
121
+ def template_url: () -> ::String
122
+ end
123
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#create_application_version-instance_method
124
+ def create_application_version: (
125
+ application_id: ::String,
126
+ semantic_version: ::String,
127
+ ?source_code_archive_url: ::String,
128
+ ?source_code_url: ::String,
129
+ ?template_body: ::String,
130
+ ?template_url: ::String
131
+ ) -> _CreateApplicationVersionResponseSuccess
132
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationVersionResponseSuccess
133
+
134
+ interface _CreateCloudFormationChangeSetResponseSuccess
135
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudFormationChangeSetResponse]
136
+ def application_id: () -> ::String
137
+ def change_set_id: () -> ::String
138
+ def semantic_version: () -> ::String
139
+ def stack_id: () -> ::String
140
+ end
141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#create_cloud_formation_change_set-instance_method
142
+ def create_cloud_formation_change_set: (
143
+ application_id: ::String,
144
+ ?capabilities: Array[::String],
145
+ ?change_set_name: ::String,
146
+ ?client_token: ::String,
147
+ ?description: ::String,
148
+ ?notification_arns: Array[::String],
149
+ ?parameter_overrides: Array[
150
+ {
151
+ name: ::String,
152
+ value: ::String
153
+ },
154
+ ],
155
+ ?resource_types: Array[::String],
156
+ ?rollback_configuration: {
157
+ monitoring_time_in_minutes: ::Integer?,
158
+ rollback_triggers: Array[
159
+ {
160
+ arn: ::String,
161
+ type: ::String
162
+ },
163
+ ]?
164
+ },
165
+ ?semantic_version: ::String,
166
+ stack_name: ::String,
167
+ ?tags: Array[
168
+ {
169
+ key: ::String,
170
+ value: ::String
171
+ },
172
+ ],
173
+ ?template_id: ::String
174
+ ) -> _CreateCloudFormationChangeSetResponseSuccess
175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudFormationChangeSetResponseSuccess
176
+
177
+ interface _CreateCloudFormationTemplateResponseSuccess
178
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCloudFormationTemplateResponse]
179
+ def application_id: () -> ::String
180
+ def creation_time: () -> ::String
181
+ def expiration_time: () -> ::String
182
+ def semantic_version: () -> ::String
183
+ def status: () -> ("PREPARING" | "ACTIVE" | "EXPIRED")
184
+ def template_id: () -> ::String
185
+ def template_url: () -> ::String
186
+ end
187
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#create_cloud_formation_template-instance_method
188
+ def create_cloud_formation_template: (
189
+ application_id: ::String,
190
+ ?semantic_version: ::String
191
+ ) -> _CreateCloudFormationTemplateResponseSuccess
192
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudFormationTemplateResponseSuccess
193
+
194
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#delete_application-instance_method
195
+ def delete_application: (
196
+ application_id: ::String
197
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
198
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
199
+
200
+ interface _GetApplicationResponseSuccess
201
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationResponse]
202
+ def application_id: () -> ::String
203
+ def author: () -> ::String
204
+ def creation_time: () -> ::String
205
+ def description: () -> ::String
206
+ def home_page_url: () -> ::String
207
+ def is_verified_author: () -> bool
208
+ def labels: () -> ::Array[::String]
209
+ def license_url: () -> ::String
210
+ def name: () -> ::String
211
+ def readme_url: () -> ::String
212
+ def spdx_license_id: () -> ::String
213
+ def verified_author_url: () -> ::String
214
+ def version: () -> Types::Version
215
+ end
216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#get_application-instance_method
217
+ def get_application: (
218
+ application_id: ::String,
219
+ ?semantic_version: ::String
220
+ ) -> _GetApplicationResponseSuccess
221
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationResponseSuccess
222
+
223
+ interface _GetApplicationPolicyResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetApplicationPolicyResponse]
225
+ def statements: () -> ::Array[Types::ApplicationPolicyStatement]
226
+ end
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#get_application_policy-instance_method
228
+ def get_application_policy: (
229
+ application_id: ::String
230
+ ) -> _GetApplicationPolicyResponseSuccess
231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApplicationPolicyResponseSuccess
232
+
233
+ interface _GetCloudFormationTemplateResponseSuccess
234
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCloudFormationTemplateResponse]
235
+ def application_id: () -> ::String
236
+ def creation_time: () -> ::String
237
+ def expiration_time: () -> ::String
238
+ def semantic_version: () -> ::String
239
+ def status: () -> ("PREPARING" | "ACTIVE" | "EXPIRED")
240
+ def template_id: () -> ::String
241
+ def template_url: () -> ::String
242
+ end
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#get_cloud_formation_template-instance_method
244
+ def get_cloud_formation_template: (
245
+ application_id: ::String,
246
+ template_id: ::String
247
+ ) -> _GetCloudFormationTemplateResponseSuccess
248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudFormationTemplateResponseSuccess
249
+
250
+ interface _ListApplicationDependenciesResponseSuccess
251
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationDependenciesResponse]
252
+ def dependencies: () -> ::Array[Types::ApplicationDependencySummary]
253
+ def next_token: () -> ::String
254
+ end
255
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#list_application_dependencies-instance_method
256
+ def list_application_dependencies: (
257
+ application_id: ::String,
258
+ ?max_items: ::Integer,
259
+ ?next_token: ::String,
260
+ ?semantic_version: ::String
261
+ ) -> _ListApplicationDependenciesResponseSuccess
262
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationDependenciesResponseSuccess
263
+
264
+ interface _ListApplicationVersionsResponseSuccess
265
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationVersionsResponse]
266
+ def next_token: () -> ::String
267
+ def versions: () -> ::Array[Types::VersionSummary]
268
+ end
269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#list_application_versions-instance_method
270
+ def list_application_versions: (
271
+ application_id: ::String,
272
+ ?max_items: ::Integer,
273
+ ?next_token: ::String
274
+ ) -> _ListApplicationVersionsResponseSuccess
275
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationVersionsResponseSuccess
276
+
277
+ interface _ListApplicationsResponseSuccess
278
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
279
+ def applications: () -> ::Array[Types::ApplicationSummary]
280
+ def next_token: () -> ::String
281
+ end
282
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#list_applications-instance_method
283
+ def list_applications: (
284
+ ?max_items: ::Integer,
285
+ ?next_token: ::String
286
+ ) -> _ListApplicationsResponseSuccess
287
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
288
+
289
+ interface _PutApplicationPolicyResponseSuccess
290
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutApplicationPolicyResponse]
291
+ def statements: () -> ::Array[Types::ApplicationPolicyStatement]
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#put_application_policy-instance_method
294
+ def put_application_policy: (
295
+ application_id: ::String,
296
+ statements: Array[
297
+ {
298
+ actions: Array[::String],
299
+ principal_org_i_ds: Array[::String]?,
300
+ principals: Array[::String],
301
+ statement_id: ::String?
302
+ },
303
+ ]
304
+ ) -> _PutApplicationPolicyResponseSuccess
305
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutApplicationPolicyResponseSuccess
306
+
307
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#unshare_application-instance_method
308
+ def unshare_application: (
309
+ application_id: ::String,
310
+ organization_id: ::String
311
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
312
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
313
+
314
+ interface _UpdateApplicationResponseSuccess
315
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
316
+ def application_id: () -> ::String
317
+ def author: () -> ::String
318
+ def creation_time: () -> ::String
319
+ def description: () -> ::String
320
+ def home_page_url: () -> ::String
321
+ def is_verified_author: () -> bool
322
+ def labels: () -> ::Array[::String]
323
+ def license_url: () -> ::String
324
+ def name: () -> ::String
325
+ def readme_url: () -> ::String
326
+ def spdx_license_id: () -> ::String
327
+ def verified_author_url: () -> ::String
328
+ def version: () -> Types::Version
329
+ end
330
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Client.html#update_application-instance_method
331
+ def update_application: (
332
+ application_id: ::String,
333
+ ?author: ::String,
334
+ ?description: ::String,
335
+ ?home_page_url: ::String,
336
+ ?labels: Array[::String],
337
+ ?readme_body: ::String,
338
+ ?readme_url: ::String
339
+ ) -> _UpdateApplicationResponseSuccess
340
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
341
+ end
342
+ end
343
+ end
344
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,40 @@
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 ServerlessApplicationRepository
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class BadRequestException < ::Aws::Errors::ServiceError
15
+ def error_code: () -> ::String
16
+ def message: () -> ::String
17
+ end
18
+ class ConflictException < ::Aws::Errors::ServiceError
19
+ def error_code: () -> ::String
20
+ def message: () -> ::String
21
+ end
22
+ class ForbiddenException < ::Aws::Errors::ServiceError
23
+ def error_code: () -> ::String
24
+ def message: () -> ::String
25
+ end
26
+ class InternalServerErrorException < ::Aws::Errors::ServiceError
27
+ def error_code: () -> ::String
28
+ def message: () -> ::String
29
+ end
30
+ class NotFoundException < ::Aws::Errors::ServiceError
31
+ def error_code: () -> ::String
32
+ def message: () -> ::String
33
+ end
34
+ class TooManyRequestsException < ::Aws::Errors::ServiceError
35
+ def error_code: () -> ::String
36
+ def message: () -> ::String
37
+ end
38
+ end
39
+ end
40
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 ServerlessApplicationRepository
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServerlessApplicationRepository/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,492 @@
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::ServerlessApplicationRepository
9
+ module Types
10
+
11
+ class Application
12
+ attr_accessor application_id: ::String
13
+ attr_accessor author: ::String
14
+ attr_accessor creation_time: ::String
15
+ attr_accessor description: ::String
16
+ attr_accessor home_page_url: ::String
17
+ attr_accessor is_verified_author: bool
18
+ attr_accessor labels: ::Array[::String]
19
+ attr_accessor license_url: ::String
20
+ attr_accessor name: ::String
21
+ attr_accessor readme_url: ::String
22
+ attr_accessor spdx_license_id: ::String
23
+ attr_accessor verified_author_url: ::String
24
+ attr_accessor version: Types::Version
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class ApplicationDependencyPage
29
+ attr_accessor dependencies: ::Array[Types::ApplicationDependencySummary]
30
+ attr_accessor next_token: ::String
31
+ SENSITIVE: []
32
+ end
33
+
34
+ class ApplicationDependencySummary
35
+ attr_accessor application_id: ::String
36
+ attr_accessor semantic_version: ::String
37
+ SENSITIVE: []
38
+ end
39
+
40
+ class ApplicationPage
41
+ attr_accessor applications: ::Array[Types::ApplicationSummary]
42
+ attr_accessor next_token: ::String
43
+ SENSITIVE: []
44
+ end
45
+
46
+ class ApplicationPolicy
47
+ attr_accessor statements: ::Array[Types::ApplicationPolicyStatement]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class ApplicationPolicyStatement
52
+ attr_accessor actions: ::Array[::String]
53
+ attr_accessor principal_org_i_ds: ::Array[::String]
54
+ attr_accessor principals: ::Array[::String]
55
+ attr_accessor statement_id: ::String
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class ApplicationSummary
60
+ attr_accessor application_id: ::String
61
+ attr_accessor author: ::String
62
+ attr_accessor creation_time: ::String
63
+ attr_accessor description: ::String
64
+ attr_accessor home_page_url: ::String
65
+ attr_accessor labels: ::Array[::String]
66
+ attr_accessor name: ::String
67
+ attr_accessor spdx_license_id: ::String
68
+ SENSITIVE: []
69
+ end
70
+
71
+ class ApplicationVersionPage
72
+ attr_accessor next_token: ::String
73
+ attr_accessor versions: ::Array[Types::VersionSummary]
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class BadRequestException
78
+ attr_accessor error_code: ::String
79
+ attr_accessor message: ::String
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class ChangeSetDetails
84
+ attr_accessor application_id: ::String
85
+ attr_accessor change_set_id: ::String
86
+ attr_accessor semantic_version: ::String
87
+ attr_accessor stack_id: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class ConflictException
92
+ attr_accessor error_code: ::String
93
+ attr_accessor message: ::String
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class CreateApplicationInput
98
+ attr_accessor author: ::String
99
+ attr_accessor description: ::String
100
+ attr_accessor home_page_url: ::String
101
+ attr_accessor labels: ::Array[::String]
102
+ attr_accessor license_body: ::String
103
+ attr_accessor license_url: ::String
104
+ attr_accessor name: ::String
105
+ attr_accessor readme_body: ::String
106
+ attr_accessor readme_url: ::String
107
+ attr_accessor semantic_version: ::String
108
+ attr_accessor source_code_archive_url: ::String
109
+ attr_accessor source_code_url: ::String
110
+ attr_accessor spdx_license_id: ::String
111
+ attr_accessor template_body: ::String
112
+ attr_accessor template_url: ::String
113
+ SENSITIVE: []
114
+ end
115
+
116
+ class CreateApplicationRequest
117
+ attr_accessor author: ::String
118
+ attr_accessor description: ::String
119
+ attr_accessor home_page_url: ::String
120
+ attr_accessor labels: ::Array[::String]
121
+ attr_accessor license_body: ::String
122
+ attr_accessor license_url: ::String
123
+ attr_accessor name: ::String
124
+ attr_accessor readme_body: ::String
125
+ attr_accessor readme_url: ::String
126
+ attr_accessor semantic_version: ::String
127
+ attr_accessor source_code_archive_url: ::String
128
+ attr_accessor source_code_url: ::String
129
+ attr_accessor spdx_license_id: ::String
130
+ attr_accessor template_body: ::String
131
+ attr_accessor template_url: ::String
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class CreateApplicationResponse
136
+ attr_accessor application_id: ::String
137
+ attr_accessor author: ::String
138
+ attr_accessor creation_time: ::String
139
+ attr_accessor description: ::String
140
+ attr_accessor home_page_url: ::String
141
+ attr_accessor is_verified_author: bool
142
+ attr_accessor labels: ::Array[::String]
143
+ attr_accessor license_url: ::String
144
+ attr_accessor name: ::String
145
+ attr_accessor readme_url: ::String
146
+ attr_accessor spdx_license_id: ::String
147
+ attr_accessor verified_author_url: ::String
148
+ attr_accessor version: Types::Version
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class CreateApplicationVersionInput
153
+ attr_accessor source_code_archive_url: ::String
154
+ attr_accessor source_code_url: ::String
155
+ attr_accessor template_body: ::String
156
+ attr_accessor template_url: ::String
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class CreateApplicationVersionRequest
161
+ attr_accessor application_id: ::String
162
+ attr_accessor semantic_version: ::String
163
+ attr_accessor source_code_archive_url: ::String
164
+ attr_accessor source_code_url: ::String
165
+ attr_accessor template_body: ::String
166
+ attr_accessor template_url: ::String
167
+ SENSITIVE: []
168
+ end
169
+
170
+ class CreateApplicationVersionResponse
171
+ attr_accessor application_id: ::String
172
+ attr_accessor creation_time: ::String
173
+ attr_accessor parameter_definitions: ::Array[Types::ParameterDefinition]
174
+ attr_accessor required_capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND" | "CAPABILITY_RESOURCE_POLICY")]
175
+ attr_accessor resources_supported: bool
176
+ attr_accessor semantic_version: ::String
177
+ attr_accessor source_code_archive_url: ::String
178
+ attr_accessor source_code_url: ::String
179
+ attr_accessor template_url: ::String
180
+ SENSITIVE: []
181
+ end
182
+
183
+ class CreateCloudFormationChangeSetInput
184
+ attr_accessor capabilities: ::Array[::String]
185
+ attr_accessor change_set_name: ::String
186
+ attr_accessor client_token: ::String
187
+ attr_accessor description: ::String
188
+ attr_accessor notification_arns: ::Array[::String]
189
+ attr_accessor parameter_overrides: ::Array[Types::ParameterValue]
190
+ attr_accessor resource_types: ::Array[::String]
191
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
192
+ attr_accessor semantic_version: ::String
193
+ attr_accessor stack_name: ::String
194
+ attr_accessor tags: ::Array[Types::Tag]
195
+ attr_accessor template_id: ::String
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class CreateCloudFormationChangeSetRequest
200
+ attr_accessor application_id: ::String
201
+ attr_accessor capabilities: ::Array[::String]
202
+ attr_accessor change_set_name: ::String
203
+ attr_accessor client_token: ::String
204
+ attr_accessor description: ::String
205
+ attr_accessor notification_arns: ::Array[::String]
206
+ attr_accessor parameter_overrides: ::Array[Types::ParameterValue]
207
+ attr_accessor resource_types: ::Array[::String]
208
+ attr_accessor rollback_configuration: Types::RollbackConfiguration
209
+ attr_accessor semantic_version: ::String
210
+ attr_accessor stack_name: ::String
211
+ attr_accessor tags: ::Array[Types::Tag]
212
+ attr_accessor template_id: ::String
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class CreateCloudFormationChangeSetResponse
217
+ attr_accessor application_id: ::String
218
+ attr_accessor change_set_id: ::String
219
+ attr_accessor semantic_version: ::String
220
+ attr_accessor stack_id: ::String
221
+ SENSITIVE: []
222
+ end
223
+
224
+ class CreateCloudFormationTemplateRequest
225
+ attr_accessor application_id: ::String
226
+ attr_accessor semantic_version: ::String
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class CreateCloudFormationTemplateResponse
231
+ attr_accessor application_id: ::String
232
+ attr_accessor creation_time: ::String
233
+ attr_accessor expiration_time: ::String
234
+ attr_accessor semantic_version: ::String
235
+ attr_accessor status: ("PREPARING" | "ACTIVE" | "EXPIRED")
236
+ attr_accessor template_id: ::String
237
+ attr_accessor template_url: ::String
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class DeleteApplicationRequest
242
+ attr_accessor application_id: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class ForbiddenException
247
+ attr_accessor error_code: ::String
248
+ attr_accessor message: ::String
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class GetApplicationPolicyRequest
253
+ attr_accessor application_id: ::String
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class GetApplicationPolicyResponse
258
+ attr_accessor statements: ::Array[Types::ApplicationPolicyStatement]
259
+ SENSITIVE: []
260
+ end
261
+
262
+ class GetApplicationRequest
263
+ attr_accessor application_id: ::String
264
+ attr_accessor semantic_version: ::String
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class GetApplicationResponse
269
+ attr_accessor application_id: ::String
270
+ attr_accessor author: ::String
271
+ attr_accessor creation_time: ::String
272
+ attr_accessor description: ::String
273
+ attr_accessor home_page_url: ::String
274
+ attr_accessor is_verified_author: bool
275
+ attr_accessor labels: ::Array[::String]
276
+ attr_accessor license_url: ::String
277
+ attr_accessor name: ::String
278
+ attr_accessor readme_url: ::String
279
+ attr_accessor spdx_license_id: ::String
280
+ attr_accessor verified_author_url: ::String
281
+ attr_accessor version: Types::Version
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class GetCloudFormationTemplateRequest
286
+ attr_accessor application_id: ::String
287
+ attr_accessor template_id: ::String
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class GetCloudFormationTemplateResponse
292
+ attr_accessor application_id: ::String
293
+ attr_accessor creation_time: ::String
294
+ attr_accessor expiration_time: ::String
295
+ attr_accessor semantic_version: ::String
296
+ attr_accessor status: ("PREPARING" | "ACTIVE" | "EXPIRED")
297
+ attr_accessor template_id: ::String
298
+ attr_accessor template_url: ::String
299
+ SENSITIVE: []
300
+ end
301
+
302
+ class InternalServerErrorException
303
+ attr_accessor error_code: ::String
304
+ attr_accessor message: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class ListApplicationDependenciesRequest
309
+ attr_accessor application_id: ::String
310
+ attr_accessor max_items: ::Integer
311
+ attr_accessor next_token: ::String
312
+ attr_accessor semantic_version: ::String
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class ListApplicationDependenciesResponse
317
+ attr_accessor dependencies: ::Array[Types::ApplicationDependencySummary]
318
+ attr_accessor next_token: ::String
319
+ SENSITIVE: []
320
+ end
321
+
322
+ class ListApplicationVersionsRequest
323
+ attr_accessor application_id: ::String
324
+ attr_accessor max_items: ::Integer
325
+ attr_accessor next_token: ::String
326
+ SENSITIVE: []
327
+ end
328
+
329
+ class ListApplicationVersionsResponse
330
+ attr_accessor next_token: ::String
331
+ attr_accessor versions: ::Array[Types::VersionSummary]
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class ListApplicationsRequest
336
+ attr_accessor max_items: ::Integer
337
+ attr_accessor next_token: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class ListApplicationsResponse
342
+ attr_accessor applications: ::Array[Types::ApplicationSummary]
343
+ attr_accessor next_token: ::String
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class NotFoundException
348
+ attr_accessor error_code: ::String
349
+ attr_accessor message: ::String
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class ParameterDefinition
354
+ attr_accessor allowed_pattern: ::String
355
+ attr_accessor allowed_values: ::Array[::String]
356
+ attr_accessor constraint_description: ::String
357
+ attr_accessor default_value: ::String
358
+ attr_accessor description: ::String
359
+ attr_accessor max_length: ::Integer
360
+ attr_accessor max_value: ::Integer
361
+ attr_accessor min_length: ::Integer
362
+ attr_accessor min_value: ::Integer
363
+ attr_accessor name: ::String
364
+ attr_accessor no_echo: bool
365
+ attr_accessor referenced_by_resources: ::Array[::String]
366
+ attr_accessor type: ::String
367
+ SENSITIVE: []
368
+ end
369
+
370
+ class ParameterValue
371
+ attr_accessor name: ::String
372
+ attr_accessor value: ::String
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class PutApplicationPolicyRequest
377
+ attr_accessor application_id: ::String
378
+ attr_accessor statements: ::Array[Types::ApplicationPolicyStatement]
379
+ SENSITIVE: []
380
+ end
381
+
382
+ class PutApplicationPolicyResponse
383
+ attr_accessor statements: ::Array[Types::ApplicationPolicyStatement]
384
+ SENSITIVE: []
385
+ end
386
+
387
+ class RollbackConfiguration
388
+ attr_accessor monitoring_time_in_minutes: ::Integer
389
+ attr_accessor rollback_triggers: ::Array[Types::RollbackTrigger]
390
+ SENSITIVE: []
391
+ end
392
+
393
+ class RollbackTrigger
394
+ attr_accessor arn: ::String
395
+ attr_accessor type: ::String
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class Tag
400
+ attr_accessor key: ::String
401
+ attr_accessor value: ::String
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class TemplateDetails
406
+ attr_accessor application_id: ::String
407
+ attr_accessor creation_time: ::String
408
+ attr_accessor expiration_time: ::String
409
+ attr_accessor semantic_version: ::String
410
+ attr_accessor status: ("PREPARING" | "ACTIVE" | "EXPIRED")
411
+ attr_accessor template_id: ::String
412
+ attr_accessor template_url: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class TooManyRequestsException
417
+ attr_accessor error_code: ::String
418
+ attr_accessor message: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class UnshareApplicationInput
423
+ attr_accessor organization_id: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class UnshareApplicationRequest
428
+ attr_accessor application_id: ::String
429
+ attr_accessor organization_id: ::String
430
+ SENSITIVE: []
431
+ end
432
+
433
+ class UpdateApplicationInput
434
+ attr_accessor author: ::String
435
+ attr_accessor description: ::String
436
+ attr_accessor home_page_url: ::String
437
+ attr_accessor labels: ::Array[::String]
438
+ attr_accessor readme_body: ::String
439
+ attr_accessor readme_url: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class UpdateApplicationRequest
444
+ attr_accessor application_id: ::String
445
+ attr_accessor author: ::String
446
+ attr_accessor description: ::String
447
+ attr_accessor home_page_url: ::String
448
+ attr_accessor labels: ::Array[::String]
449
+ attr_accessor readme_body: ::String
450
+ attr_accessor readme_url: ::String
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class UpdateApplicationResponse
455
+ attr_accessor application_id: ::String
456
+ attr_accessor author: ::String
457
+ attr_accessor creation_time: ::String
458
+ attr_accessor description: ::String
459
+ attr_accessor home_page_url: ::String
460
+ attr_accessor is_verified_author: bool
461
+ attr_accessor labels: ::Array[::String]
462
+ attr_accessor license_url: ::String
463
+ attr_accessor name: ::String
464
+ attr_accessor readme_url: ::String
465
+ attr_accessor spdx_license_id: ::String
466
+ attr_accessor verified_author_url: ::String
467
+ attr_accessor version: Types::Version
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class Version
472
+ attr_accessor application_id: ::String
473
+ attr_accessor creation_time: ::String
474
+ attr_accessor parameter_definitions: ::Array[Types::ParameterDefinition]
475
+ attr_accessor required_capabilities: ::Array[("CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND" | "CAPABILITY_RESOURCE_POLICY")]
476
+ attr_accessor resources_supported: bool
477
+ attr_accessor semantic_version: ::String
478
+ attr_accessor source_code_archive_url: ::String
479
+ attr_accessor source_code_url: ::String
480
+ attr_accessor template_url: ::String
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class VersionSummary
485
+ attr_accessor application_id: ::String
486
+ attr_accessor creation_time: ::String
487
+ attr_accessor semantic_version: ::String
488
+ attr_accessor source_code_url: ::String
489
+ SENSITIVE: []
490
+ end
491
+ end
492
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 ServerlessApplicationRepository
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-serverlessapplicationrepository
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.188.0
22
+ version: 3.193.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.188.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-serverlessapplicationrepository/plugins/endpoints.rb
67
67
  - lib/aws-sdk-serverlessapplicationrepository/resource.rb
68
68
  - lib/aws-sdk-serverlessapplicationrepository/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-serverlessapplicationrepository
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-serverlessapplicationrepository/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWSServerlessApplicationRepository
94
99
  test_files: []