aws-sdk-apprunner 1.35.0 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,686 @@
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 AppRunner
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/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 _AssociateCustomDomainResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateCustomDomainResponse]
78
+ def dns_target: () -> ::String
79
+ def service_arn: () -> ::String
80
+ def custom_domain: () -> Types::CustomDomain
81
+ def vpc_dns_targets: () -> ::Array[Types::VpcDNSTarget]
82
+ end
83
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#associate_custom_domain-instance_method
84
+ def associate_custom_domain: (
85
+ service_arn: ::String,
86
+ domain_name: ::String,
87
+ ?enable_www_subdomain: bool
88
+ ) -> _AssociateCustomDomainResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateCustomDomainResponseSuccess
90
+
91
+ interface _CreateAutoScalingConfigurationResponseSuccess
92
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAutoScalingConfigurationResponse]
93
+ def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
94
+ end
95
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_auto_scaling_configuration-instance_method
96
+ def create_auto_scaling_configuration: (
97
+ auto_scaling_configuration_name: ::String,
98
+ ?max_concurrency: ::Integer,
99
+ ?min_size: ::Integer,
100
+ ?max_size: ::Integer,
101
+ ?tags: Array[
102
+ {
103
+ key: ::String?,
104
+ value: ::String?
105
+ },
106
+ ]
107
+ ) -> _CreateAutoScalingConfigurationResponseSuccess
108
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAutoScalingConfigurationResponseSuccess
109
+
110
+ interface _CreateConnectionResponseSuccess
111
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionResponse]
112
+ def connection: () -> Types::Connection
113
+ end
114
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_connection-instance_method
115
+ def create_connection: (
116
+ connection_name: ::String,
117
+ provider_type: ("GITHUB" | "BITBUCKET"),
118
+ ?tags: Array[
119
+ {
120
+ key: ::String?,
121
+ value: ::String?
122
+ },
123
+ ]
124
+ ) -> _CreateConnectionResponseSuccess
125
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
126
+
127
+ interface _CreateObservabilityConfigurationResponseSuccess
128
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateObservabilityConfigurationResponse]
129
+ def observability_configuration: () -> Types::ObservabilityConfiguration
130
+ end
131
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_observability_configuration-instance_method
132
+ def create_observability_configuration: (
133
+ observability_configuration_name: ::String,
134
+ ?trace_configuration: {
135
+ vendor: ("AWSXRAY")
136
+ },
137
+ ?tags: Array[
138
+ {
139
+ key: ::String?,
140
+ value: ::String?
141
+ },
142
+ ]
143
+ ) -> _CreateObservabilityConfigurationResponseSuccess
144
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateObservabilityConfigurationResponseSuccess
145
+
146
+ interface _CreateServiceResponseSuccess
147
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceResponse]
148
+ def service: () -> Types::Service
149
+ def operation_id: () -> ::String
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_service-instance_method
152
+ def create_service: (
153
+ service_name: ::String,
154
+ source_configuration: {
155
+ code_repository: {
156
+ repository_url: ::String,
157
+ source_code_version: {
158
+ type: ("BRANCH"),
159
+ value: ::String
160
+ },
161
+ code_configuration: {
162
+ configuration_source: ("REPOSITORY" | "API"),
163
+ code_configuration_values: {
164
+ runtime: ("PYTHON_3" | "NODEJS_12" | "NODEJS_14" | "CORRETTO_8" | "CORRETTO_11" | "NODEJS_16" | "GO_1" | "DOTNET_6" | "PHP_81" | "RUBY_31" | "PYTHON_311" | "NODEJS_18"),
165
+ build_command: ::String?,
166
+ start_command: ::String?,
167
+ port: ::String?,
168
+ runtime_environment_variables: Hash[::String, ::String]?,
169
+ runtime_environment_secrets: Hash[::String, ::String]?
170
+ }?
171
+ }?,
172
+ source_directory: ::String?
173
+ }?,
174
+ image_repository: {
175
+ image_identifier: ::String,
176
+ image_configuration: {
177
+ runtime_environment_variables: Hash[::String, ::String]?,
178
+ start_command: ::String?,
179
+ port: ::String?,
180
+ runtime_environment_secrets: Hash[::String, ::String]?
181
+ }?,
182
+ image_repository_type: ("ECR" | "ECR_PUBLIC")
183
+ }?,
184
+ auto_deployments_enabled: bool?,
185
+ authentication_configuration: {
186
+ connection_arn: ::String?,
187
+ access_role_arn: ::String?
188
+ }?
189
+ },
190
+ ?instance_configuration: {
191
+ cpu: ::String?,
192
+ memory: ::String?,
193
+ instance_role_arn: ::String?
194
+ },
195
+ ?tags: Array[
196
+ {
197
+ key: ::String?,
198
+ value: ::String?
199
+ },
200
+ ],
201
+ ?encryption_configuration: {
202
+ kms_key: ::String
203
+ },
204
+ ?health_check_configuration: {
205
+ protocol: ("TCP" | "HTTP")?,
206
+ path: ::String?,
207
+ interval: ::Integer?,
208
+ timeout: ::Integer?,
209
+ healthy_threshold: ::Integer?,
210
+ unhealthy_threshold: ::Integer?
211
+ },
212
+ ?auto_scaling_configuration_arn: ::String,
213
+ ?network_configuration: {
214
+ egress_configuration: {
215
+ egress_type: ("DEFAULT" | "VPC")?,
216
+ vpc_connector_arn: ::String?
217
+ }?,
218
+ ingress_configuration: {
219
+ is_publicly_accessible: bool?
220
+ }?,
221
+ ip_address_type: ("IPV4" | "DUAL_STACK")?
222
+ },
223
+ ?observability_configuration: {
224
+ observability_enabled: bool,
225
+ observability_configuration_arn: ::String?
226
+ }
227
+ ) -> _CreateServiceResponseSuccess
228
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceResponseSuccess
229
+
230
+ interface _CreateVpcConnectorResponseSuccess
231
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcConnectorResponse]
232
+ def vpc_connector: () -> Types::VpcConnector
233
+ end
234
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_vpc_connector-instance_method
235
+ def create_vpc_connector: (
236
+ vpc_connector_name: ::String,
237
+ subnets: Array[::String],
238
+ ?security_groups: Array[::String],
239
+ ?tags: Array[
240
+ {
241
+ key: ::String?,
242
+ value: ::String?
243
+ },
244
+ ]
245
+ ) -> _CreateVpcConnectorResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcConnectorResponseSuccess
247
+
248
+ interface _CreateVpcIngressConnectionResponseSuccess
249
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcIngressConnectionResponse]
250
+ def vpc_ingress_connection: () -> Types::VpcIngressConnection
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#create_vpc_ingress_connection-instance_method
253
+ def create_vpc_ingress_connection: (
254
+ service_arn: ::String,
255
+ vpc_ingress_connection_name: ::String,
256
+ ingress_vpc_configuration: {
257
+ vpc_id: ::String?,
258
+ vpc_endpoint_id: ::String?
259
+ },
260
+ ?tags: Array[
261
+ {
262
+ key: ::String?,
263
+ value: ::String?
264
+ },
265
+ ]
266
+ ) -> _CreateVpcIngressConnectionResponseSuccess
267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcIngressConnectionResponseSuccess
268
+
269
+ interface _DeleteAutoScalingConfigurationResponseSuccess
270
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAutoScalingConfigurationResponse]
271
+ def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_auto_scaling_configuration-instance_method
274
+ def delete_auto_scaling_configuration: (
275
+ auto_scaling_configuration_arn: ::String,
276
+ ?delete_all_revisions: bool
277
+ ) -> _DeleteAutoScalingConfigurationResponseSuccess
278
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAutoScalingConfigurationResponseSuccess
279
+
280
+ interface _DeleteConnectionResponseSuccess
281
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConnectionResponse]
282
+ def connection: () -> Types::Connection
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_connection-instance_method
285
+ def delete_connection: (
286
+ connection_arn: ::String
287
+ ) -> _DeleteConnectionResponseSuccess
288
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConnectionResponseSuccess
289
+
290
+ interface _DeleteObservabilityConfigurationResponseSuccess
291
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteObservabilityConfigurationResponse]
292
+ def observability_configuration: () -> Types::ObservabilityConfiguration
293
+ end
294
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_observability_configuration-instance_method
295
+ def delete_observability_configuration: (
296
+ observability_configuration_arn: ::String
297
+ ) -> _DeleteObservabilityConfigurationResponseSuccess
298
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObservabilityConfigurationResponseSuccess
299
+
300
+ interface _DeleteServiceResponseSuccess
301
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceResponse]
302
+ def service: () -> Types::Service
303
+ def operation_id: () -> ::String
304
+ end
305
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_service-instance_method
306
+ def delete_service: (
307
+ service_arn: ::String
308
+ ) -> _DeleteServiceResponseSuccess
309
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceResponseSuccess
310
+
311
+ interface _DeleteVpcConnectorResponseSuccess
312
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcConnectorResponse]
313
+ def vpc_connector: () -> Types::VpcConnector
314
+ end
315
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_vpc_connector-instance_method
316
+ def delete_vpc_connector: (
317
+ vpc_connector_arn: ::String
318
+ ) -> _DeleteVpcConnectorResponseSuccess
319
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcConnectorResponseSuccess
320
+
321
+ interface _DeleteVpcIngressConnectionResponseSuccess
322
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcIngressConnectionResponse]
323
+ def vpc_ingress_connection: () -> Types::VpcIngressConnection
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#delete_vpc_ingress_connection-instance_method
326
+ def delete_vpc_ingress_connection: (
327
+ vpc_ingress_connection_arn: ::String
328
+ ) -> _DeleteVpcIngressConnectionResponseSuccess
329
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcIngressConnectionResponseSuccess
330
+
331
+ interface _DescribeAutoScalingConfigurationResponseSuccess
332
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAutoScalingConfigurationResponse]
333
+ def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
334
+ end
335
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_auto_scaling_configuration-instance_method
336
+ def describe_auto_scaling_configuration: (
337
+ auto_scaling_configuration_arn: ::String
338
+ ) -> _DescribeAutoScalingConfigurationResponseSuccess
339
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAutoScalingConfigurationResponseSuccess
340
+
341
+ interface _DescribeCustomDomainsResponseSuccess
342
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomDomainsResponse]
343
+ def dns_target: () -> ::String
344
+ def service_arn: () -> ::String
345
+ def custom_domains: () -> ::Array[Types::CustomDomain]
346
+ def vpc_dns_targets: () -> ::Array[Types::VpcDNSTarget]
347
+ def next_token: () -> ::String
348
+ end
349
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_custom_domains-instance_method
350
+ def describe_custom_domains: (
351
+ service_arn: ::String,
352
+ ?next_token: ::String,
353
+ ?max_results: ::Integer
354
+ ) -> _DescribeCustomDomainsResponseSuccess
355
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomDomainsResponseSuccess
356
+
357
+ interface _DescribeObservabilityConfigurationResponseSuccess
358
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeObservabilityConfigurationResponse]
359
+ def observability_configuration: () -> Types::ObservabilityConfiguration
360
+ end
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_observability_configuration-instance_method
362
+ def describe_observability_configuration: (
363
+ observability_configuration_arn: ::String
364
+ ) -> _DescribeObservabilityConfigurationResponseSuccess
365
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeObservabilityConfigurationResponseSuccess
366
+
367
+ interface _DescribeServiceResponseSuccess
368
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeServiceResponse]
369
+ def service: () -> Types::Service
370
+ end
371
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_service-instance_method
372
+ def describe_service: (
373
+ service_arn: ::String
374
+ ) -> _DescribeServiceResponseSuccess
375
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeServiceResponseSuccess
376
+
377
+ interface _DescribeVpcConnectorResponseSuccess
378
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcConnectorResponse]
379
+ def vpc_connector: () -> Types::VpcConnector
380
+ end
381
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_vpc_connector-instance_method
382
+ def describe_vpc_connector: (
383
+ vpc_connector_arn: ::String
384
+ ) -> _DescribeVpcConnectorResponseSuccess
385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcConnectorResponseSuccess
386
+
387
+ interface _DescribeVpcIngressConnectionResponseSuccess
388
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcIngressConnectionResponse]
389
+ def vpc_ingress_connection: () -> Types::VpcIngressConnection
390
+ end
391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#describe_vpc_ingress_connection-instance_method
392
+ def describe_vpc_ingress_connection: (
393
+ vpc_ingress_connection_arn: ::String
394
+ ) -> _DescribeVpcIngressConnectionResponseSuccess
395
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcIngressConnectionResponseSuccess
396
+
397
+ interface _DisassociateCustomDomainResponseSuccess
398
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateCustomDomainResponse]
399
+ def dns_target: () -> ::String
400
+ def service_arn: () -> ::String
401
+ def custom_domain: () -> Types::CustomDomain
402
+ def vpc_dns_targets: () -> ::Array[Types::VpcDNSTarget]
403
+ end
404
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#disassociate_custom_domain-instance_method
405
+ def disassociate_custom_domain: (
406
+ service_arn: ::String,
407
+ domain_name: ::String
408
+ ) -> _DisassociateCustomDomainResponseSuccess
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateCustomDomainResponseSuccess
410
+
411
+ interface _ListAutoScalingConfigurationsResponseSuccess
412
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAutoScalingConfigurationsResponse]
413
+ def auto_scaling_configuration_summary_list: () -> ::Array[Types::AutoScalingConfigurationSummary]
414
+ def next_token: () -> ::String
415
+ end
416
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_auto_scaling_configurations-instance_method
417
+ def list_auto_scaling_configurations: (
418
+ ?auto_scaling_configuration_name: ::String,
419
+ ?latest_only: bool,
420
+ ?max_results: ::Integer,
421
+ ?next_token: ::String
422
+ ) -> _ListAutoScalingConfigurationsResponseSuccess
423
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAutoScalingConfigurationsResponseSuccess
424
+
425
+ interface _ListConnectionsResponseSuccess
426
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionsResponse]
427
+ def connection_summary_list: () -> ::Array[Types::ConnectionSummary]
428
+ def next_token: () -> ::String
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_connections-instance_method
431
+ def list_connections: (
432
+ ?connection_name: ::String,
433
+ ?max_results: ::Integer,
434
+ ?next_token: ::String
435
+ ) -> _ListConnectionsResponseSuccess
436
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
437
+
438
+ interface _ListObservabilityConfigurationsResponseSuccess
439
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListObservabilityConfigurationsResponse]
440
+ def observability_configuration_summary_list: () -> ::Array[Types::ObservabilityConfigurationSummary]
441
+ def next_token: () -> ::String
442
+ end
443
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_observability_configurations-instance_method
444
+ def list_observability_configurations: (
445
+ ?observability_configuration_name: ::String,
446
+ ?latest_only: bool,
447
+ ?max_results: ::Integer,
448
+ ?next_token: ::String
449
+ ) -> _ListObservabilityConfigurationsResponseSuccess
450
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListObservabilityConfigurationsResponseSuccess
451
+
452
+ interface _ListOperationsResponseSuccess
453
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListOperationsResponse]
454
+ def operation_summary_list: () -> ::Array[Types::OperationSummary]
455
+ def next_token: () -> ::String
456
+ end
457
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_operations-instance_method
458
+ def list_operations: (
459
+ service_arn: ::String,
460
+ ?next_token: ::String,
461
+ ?max_results: ::Integer
462
+ ) -> _ListOperationsResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOperationsResponseSuccess
464
+
465
+ interface _ListServicesResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServicesResponse]
467
+ def service_summary_list: () -> ::Array[Types::ServiceSummary]
468
+ def next_token: () -> ::String
469
+ end
470
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_services-instance_method
471
+ def list_services: (
472
+ ?next_token: ::String,
473
+ ?max_results: ::Integer
474
+ ) -> _ListServicesResponseSuccess
475
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
476
+
477
+ interface _ListServicesForAutoScalingConfigurationResponseSuccess
478
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServicesForAutoScalingConfigurationResponse]
479
+ def service_arn_list: () -> ::Array[::String]
480
+ def next_token: () -> ::String
481
+ end
482
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_services_for_auto_scaling_configuration-instance_method
483
+ def list_services_for_auto_scaling_configuration: (
484
+ auto_scaling_configuration_arn: ::String,
485
+ ?max_results: ::Integer,
486
+ ?next_token: ::String
487
+ ) -> _ListServicesForAutoScalingConfigurationResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesForAutoScalingConfigurationResponseSuccess
489
+
490
+ interface _ListTagsForResourceResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
492
+ def tags: () -> ::Array[Types::Tag]
493
+ end
494
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_tags_for_resource-instance_method
495
+ def list_tags_for_resource: (
496
+ resource_arn: ::String
497
+ ) -> _ListTagsForResourceResponseSuccess
498
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
499
+
500
+ interface _ListVpcConnectorsResponseSuccess
501
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcConnectorsResponse]
502
+ def vpc_connectors: () -> ::Array[Types::VpcConnector]
503
+ def next_token: () -> ::String
504
+ end
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_vpc_connectors-instance_method
506
+ def list_vpc_connectors: (
507
+ ?max_results: ::Integer,
508
+ ?next_token: ::String
509
+ ) -> _ListVpcConnectorsResponseSuccess
510
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcConnectorsResponseSuccess
511
+
512
+ interface _ListVpcIngressConnectionsResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcIngressConnectionsResponse]
514
+ def vpc_ingress_connection_summary_list: () -> ::Array[Types::VpcIngressConnectionSummary]
515
+ def next_token: () -> ::String
516
+ end
517
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#list_vpc_ingress_connections-instance_method
518
+ def list_vpc_ingress_connections: (
519
+ ?filter: {
520
+ service_arn: ::String?,
521
+ vpc_endpoint_id: ::String?
522
+ },
523
+ ?max_results: ::Integer,
524
+ ?next_token: ::String
525
+ ) -> _ListVpcIngressConnectionsResponseSuccess
526
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcIngressConnectionsResponseSuccess
527
+
528
+ interface _PauseServiceResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::PauseServiceResponse]
530
+ def service: () -> Types::Service
531
+ def operation_id: () -> ::String
532
+ end
533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#pause_service-instance_method
534
+ def pause_service: (
535
+ service_arn: ::String
536
+ ) -> _PauseServiceResponseSuccess
537
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PauseServiceResponseSuccess
538
+
539
+ interface _ResumeServiceResponseSuccess
540
+ include ::Seahorse::Client::_ResponseSuccess[Types::ResumeServiceResponse]
541
+ def service: () -> Types::Service
542
+ def operation_id: () -> ::String
543
+ end
544
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#resume_service-instance_method
545
+ def resume_service: (
546
+ service_arn: ::String
547
+ ) -> _ResumeServiceResponseSuccess
548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResumeServiceResponseSuccess
549
+
550
+ interface _StartDeploymentResponseSuccess
551
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDeploymentResponse]
552
+ def operation_id: () -> ::String
553
+ end
554
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#start_deployment-instance_method
555
+ def start_deployment: (
556
+ service_arn: ::String
557
+ ) -> _StartDeploymentResponseSuccess
558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDeploymentResponseSuccess
559
+
560
+ interface _TagResourceResponseSuccess
561
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
562
+ end
563
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#tag_resource-instance_method
564
+ def tag_resource: (
565
+ resource_arn: ::String,
566
+ tags: Array[
567
+ {
568
+ key: ::String?,
569
+ value: ::String?
570
+ },
571
+ ]
572
+ ) -> _TagResourceResponseSuccess
573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
574
+
575
+ interface _UntagResourceResponseSuccess
576
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
577
+ end
578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#untag_resource-instance_method
579
+ def untag_resource: (
580
+ resource_arn: ::String,
581
+ tag_keys: Array[::String]
582
+ ) -> _UntagResourceResponseSuccess
583
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
584
+
585
+ interface _UpdateDefaultAutoScalingConfigurationResponseSuccess
586
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDefaultAutoScalingConfigurationResponse]
587
+ def auto_scaling_configuration: () -> Types::AutoScalingConfiguration
588
+ end
589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#update_default_auto_scaling_configuration-instance_method
590
+ def update_default_auto_scaling_configuration: (
591
+ auto_scaling_configuration_arn: ::String
592
+ ) -> _UpdateDefaultAutoScalingConfigurationResponseSuccess
593
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDefaultAutoScalingConfigurationResponseSuccess
594
+
595
+ interface _UpdateServiceResponseSuccess
596
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceResponse]
597
+ def service: () -> Types::Service
598
+ def operation_id: () -> ::String
599
+ end
600
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#update_service-instance_method
601
+ def update_service: (
602
+ service_arn: ::String,
603
+ ?source_configuration: {
604
+ code_repository: {
605
+ repository_url: ::String,
606
+ source_code_version: {
607
+ type: ("BRANCH"),
608
+ value: ::String
609
+ },
610
+ code_configuration: {
611
+ configuration_source: ("REPOSITORY" | "API"),
612
+ code_configuration_values: {
613
+ runtime: ("PYTHON_3" | "NODEJS_12" | "NODEJS_14" | "CORRETTO_8" | "CORRETTO_11" | "NODEJS_16" | "GO_1" | "DOTNET_6" | "PHP_81" | "RUBY_31" | "PYTHON_311" | "NODEJS_18"),
614
+ build_command: ::String?,
615
+ start_command: ::String?,
616
+ port: ::String?,
617
+ runtime_environment_variables: Hash[::String, ::String]?,
618
+ runtime_environment_secrets: Hash[::String, ::String]?
619
+ }?
620
+ }?,
621
+ source_directory: ::String?
622
+ }?,
623
+ image_repository: {
624
+ image_identifier: ::String,
625
+ image_configuration: {
626
+ runtime_environment_variables: Hash[::String, ::String]?,
627
+ start_command: ::String?,
628
+ port: ::String?,
629
+ runtime_environment_secrets: Hash[::String, ::String]?
630
+ }?,
631
+ image_repository_type: ("ECR" | "ECR_PUBLIC")
632
+ }?,
633
+ auto_deployments_enabled: bool?,
634
+ authentication_configuration: {
635
+ connection_arn: ::String?,
636
+ access_role_arn: ::String?
637
+ }?
638
+ },
639
+ ?instance_configuration: {
640
+ cpu: ::String?,
641
+ memory: ::String?,
642
+ instance_role_arn: ::String?
643
+ },
644
+ ?auto_scaling_configuration_arn: ::String,
645
+ ?health_check_configuration: {
646
+ protocol: ("TCP" | "HTTP")?,
647
+ path: ::String?,
648
+ interval: ::Integer?,
649
+ timeout: ::Integer?,
650
+ healthy_threshold: ::Integer?,
651
+ unhealthy_threshold: ::Integer?
652
+ },
653
+ ?network_configuration: {
654
+ egress_configuration: {
655
+ egress_type: ("DEFAULT" | "VPC")?,
656
+ vpc_connector_arn: ::String?
657
+ }?,
658
+ ingress_configuration: {
659
+ is_publicly_accessible: bool?
660
+ }?,
661
+ ip_address_type: ("IPV4" | "DUAL_STACK")?
662
+ },
663
+ ?observability_configuration: {
664
+ observability_enabled: bool,
665
+ observability_configuration_arn: ::String?
666
+ }
667
+ ) -> _UpdateServiceResponseSuccess
668
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceResponseSuccess
669
+
670
+ interface _UpdateVpcIngressConnectionResponseSuccess
671
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVpcIngressConnectionResponse]
672
+ def vpc_ingress_connection: () -> Types::VpcIngressConnection
673
+ end
674
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppRunner/Client.html#update_vpc_ingress_connection-instance_method
675
+ def update_vpc_ingress_connection: (
676
+ vpc_ingress_connection_arn: ::String,
677
+ ingress_vpc_configuration: {
678
+ vpc_id: ::String?,
679
+ vpc_endpoint_id: ::String?
680
+ }
681
+ ) -> _UpdateVpcIngressConnectionResponseSuccess
682
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcIngressConnectionResponseSuccess
683
+ end
684
+ end
685
+ end
686
+