aws-sdk-apigateway 1.90.0 → 1.91.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,2163 @@
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 APIGateway
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/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 _CreateApiKeyResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApiKey]
77
+ def id: () -> ::String
78
+ def value: () -> ::String
79
+ def name: () -> ::String
80
+ def customer_id: () -> ::String
81
+ def description: () -> ::String
82
+ def enabled: () -> bool
83
+ def created_date: () -> ::Time
84
+ def last_updated_date: () -> ::Time
85
+ def stage_keys: () -> ::Array[::String]
86
+ def tags: () -> ::Hash[::String, ::String]
87
+ end
88
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_api_key-instance_method
89
+ def create_api_key: (
90
+ ?name: ::String,
91
+ ?description: ::String,
92
+ ?enabled: bool,
93
+ ?generate_distinct_id: bool,
94
+ ?value: ::String,
95
+ ?stage_keys: Array[
96
+ {
97
+ rest_api_id: ::String?,
98
+ stage_name: ::String?
99
+ },
100
+ ],
101
+ ?customer_id: ::String,
102
+ ?tags: Hash[::String, ::String]
103
+ ) -> _CreateApiKeyResponseSuccess
104
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApiKeyResponseSuccess
105
+
106
+ interface _CreateAuthorizerResponseSuccess
107
+ include ::Seahorse::Client::_ResponseSuccess[Types::Authorizer]
108
+ def id: () -> ::String
109
+ def name: () -> ::String
110
+ def type: () -> ("TOKEN" | "REQUEST" | "COGNITO_USER_POOLS")
111
+ def provider_arns: () -> ::Array[::String]
112
+ def auth_type: () -> ::String
113
+ def authorizer_uri: () -> ::String
114
+ def authorizer_credentials: () -> ::String
115
+ def identity_source: () -> ::String
116
+ def identity_validation_expression: () -> ::String
117
+ def authorizer_result_ttl_in_seconds: () -> ::Integer
118
+ end
119
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_authorizer-instance_method
120
+ def create_authorizer: (
121
+ rest_api_id: ::String,
122
+ name: ::String,
123
+ type: ("TOKEN" | "REQUEST" | "COGNITO_USER_POOLS"),
124
+ ?provider_arns: Array[::String],
125
+ ?auth_type: ::String,
126
+ ?authorizer_uri: ::String,
127
+ ?authorizer_credentials: ::String,
128
+ ?identity_source: ::String,
129
+ ?identity_validation_expression: ::String,
130
+ ?authorizer_result_ttl_in_seconds: ::Integer
131
+ ) -> _CreateAuthorizerResponseSuccess
132
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAuthorizerResponseSuccess
133
+
134
+ interface _CreateBasePathMappingResponseSuccess
135
+ include ::Seahorse::Client::_ResponseSuccess[Types::BasePathMapping]
136
+ def base_path: () -> ::String
137
+ def rest_api_id: () -> ::String
138
+ def stage: () -> ::String
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_base_path_mapping-instance_method
141
+ def create_base_path_mapping: (
142
+ domain_name: ::String,
143
+ ?base_path: ::String,
144
+ rest_api_id: ::String,
145
+ ?stage: ::String
146
+ ) -> _CreateBasePathMappingResponseSuccess
147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBasePathMappingResponseSuccess
148
+
149
+ interface _CreateDeploymentResponseSuccess
150
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
151
+ def id: () -> ::String
152
+ def description: () -> ::String
153
+ def created_date: () -> ::Time
154
+ def api_summary: () -> ::Hash[::String, ::Hash[::String, Types::MethodSnapshot]]
155
+ end
156
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_deployment-instance_method
157
+ def create_deployment: (
158
+ rest_api_id: ::String,
159
+ ?stage_name: ::String,
160
+ ?stage_description: ::String,
161
+ ?description: ::String,
162
+ ?cache_cluster_enabled: bool,
163
+ ?cache_cluster_size: ("0.5" | "1.6" | "6.1" | "13.5" | "28.4" | "58.2" | "118" | "237"),
164
+ ?variables: Hash[::String, ::String],
165
+ ?canary_settings: {
166
+ percent_traffic: ::Float?,
167
+ stage_variable_overrides: Hash[::String, ::String]?,
168
+ use_stage_cache: bool?
169
+ },
170
+ ?tracing_enabled: bool
171
+ ) -> _CreateDeploymentResponseSuccess
172
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentResponseSuccess
173
+
174
+ interface _CreateDocumentationPartResponseSuccess
175
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationPart]
176
+ def id: () -> ::String
177
+ def location: () -> Types::DocumentationPartLocation
178
+ def properties: () -> ::String
179
+ end
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_documentation_part-instance_method
181
+ def create_documentation_part: (
182
+ rest_api_id: ::String,
183
+ location: {
184
+ type: ("API" | "AUTHORIZER" | "MODEL" | "RESOURCE" | "METHOD" | "PATH_PARAMETER" | "QUERY_PARAMETER" | "REQUEST_HEADER" | "REQUEST_BODY" | "RESPONSE" | "RESPONSE_HEADER" | "RESPONSE_BODY"),
185
+ path: ::String?,
186
+ method: ::String?,
187
+ status_code: ::String?,
188
+ name: ::String?
189
+ },
190
+ properties: ::String
191
+ ) -> _CreateDocumentationPartResponseSuccess
192
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDocumentationPartResponseSuccess
193
+
194
+ interface _CreateDocumentationVersionResponseSuccess
195
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationVersion]
196
+ def version: () -> ::String
197
+ def created_date: () -> ::Time
198
+ def description: () -> ::String
199
+ end
200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_documentation_version-instance_method
201
+ def create_documentation_version: (
202
+ rest_api_id: ::String,
203
+ documentation_version: ::String,
204
+ ?stage_name: ::String,
205
+ ?description: ::String
206
+ ) -> _CreateDocumentationVersionResponseSuccess
207
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDocumentationVersionResponseSuccess
208
+
209
+ interface _CreateDomainNameResponseSuccess
210
+ include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
211
+ def domain_name: () -> ::String
212
+ def certificate_name: () -> ::String
213
+ def certificate_arn: () -> ::String
214
+ def certificate_upload_date: () -> ::Time
215
+ def regional_domain_name: () -> ::String
216
+ def regional_hosted_zone_id: () -> ::String
217
+ def regional_certificate_name: () -> ::String
218
+ def regional_certificate_arn: () -> ::String
219
+ def distribution_domain_name: () -> ::String
220
+ def distribution_hosted_zone_id: () -> ::String
221
+ def endpoint_configuration: () -> Types::EndpointConfiguration
222
+ def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
223
+ def domain_name_status_message: () -> ::String
224
+ def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
225
+ def tags: () -> ::Hash[::String, ::String]
226
+ def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
227
+ def ownership_verification_certificate_arn: () -> ::String
228
+ end
229
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name-instance_method
230
+ def create_domain_name: (
231
+ domain_name: ::String,
232
+ ?certificate_name: ::String,
233
+ ?certificate_body: ::String,
234
+ ?certificate_private_key: ::String,
235
+ ?certificate_chain: ::String,
236
+ ?certificate_arn: ::String,
237
+ ?regional_certificate_name: ::String,
238
+ ?regional_certificate_arn: ::String,
239
+ ?endpoint_configuration: {
240
+ types: Array[("REGIONAL" | "EDGE" | "PRIVATE")]?,
241
+ vpc_endpoint_ids: Array[::String]?
242
+ },
243
+ ?tags: Hash[::String, ::String],
244
+ ?security_policy: ("TLS_1_0" | "TLS_1_2"),
245
+ ?mutual_tls_authentication: {
246
+ truststore_uri: ::String?,
247
+ truststore_version: ::String?
248
+ },
249
+ ?ownership_verification_certificate_arn: ::String
250
+ ) -> _CreateDomainNameResponseSuccess
251
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
252
+
253
+ interface _CreateModelResponseSuccess
254
+ include ::Seahorse::Client::_ResponseSuccess[Types::Model]
255
+ def id: () -> ::String
256
+ def name: () -> ::String
257
+ def description: () -> ::String
258
+ def schema: () -> ::String
259
+ def content_type: () -> ::String
260
+ end
261
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_model-instance_method
262
+ def create_model: (
263
+ rest_api_id: ::String,
264
+ name: ::String,
265
+ ?description: ::String,
266
+ ?schema: ::String,
267
+ content_type: ::String
268
+ ) -> _CreateModelResponseSuccess
269
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelResponseSuccess
270
+
271
+ interface _CreateRequestValidatorResponseSuccess
272
+ include ::Seahorse::Client::_ResponseSuccess[Types::RequestValidator]
273
+ def id: () -> ::String
274
+ def name: () -> ::String
275
+ def validate_request_body: () -> bool
276
+ def validate_request_parameters: () -> bool
277
+ end
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_request_validator-instance_method
279
+ def create_request_validator: (
280
+ rest_api_id: ::String,
281
+ ?name: ::String,
282
+ ?validate_request_body: bool,
283
+ ?validate_request_parameters: bool
284
+ ) -> _CreateRequestValidatorResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRequestValidatorResponseSuccess
286
+
287
+ interface _CreateResourceResponseSuccess
288
+ include ::Seahorse::Client::_ResponseSuccess[Types::Resource]
289
+ def id: () -> ::String
290
+ def parent_id: () -> ::String
291
+ def path_part: () -> ::String
292
+ def path: () -> ::String
293
+ def resource_methods: () -> ::Hash[::String, Types::Method]
294
+ end
295
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_resource-instance_method
296
+ def create_resource: (
297
+ rest_api_id: ::String,
298
+ parent_id: ::String,
299
+ path_part: ::String
300
+ ) -> _CreateResourceResponseSuccess
301
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceResponseSuccess
302
+
303
+ interface _CreateRestApiResponseSuccess
304
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApi]
305
+ def id: () -> ::String
306
+ def name: () -> ::String
307
+ def description: () -> ::String
308
+ def created_date: () -> ::Time
309
+ def version: () -> ::String
310
+ def warnings: () -> ::Array[::String]
311
+ def binary_media_types: () -> ::Array[::String]
312
+ def minimum_compression_size: () -> ::Integer
313
+ def api_key_source: () -> ("HEADER" | "AUTHORIZER")
314
+ def endpoint_configuration: () -> Types::EndpointConfiguration
315
+ def policy: () -> ::String
316
+ def tags: () -> ::Hash[::String, ::String]
317
+ def disable_execute_api_endpoint: () -> bool
318
+ def root_resource_id: () -> ::String
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_rest_api-instance_method
321
+ def create_rest_api: (
322
+ name: ::String,
323
+ ?description: ::String,
324
+ ?version: ::String,
325
+ ?clone_from: ::String,
326
+ ?binary_media_types: Array[::String],
327
+ ?minimum_compression_size: ::Integer,
328
+ ?api_key_source: ("HEADER" | "AUTHORIZER"),
329
+ ?endpoint_configuration: {
330
+ types: Array[("REGIONAL" | "EDGE" | "PRIVATE")]?,
331
+ vpc_endpoint_ids: Array[::String]?
332
+ },
333
+ ?policy: ::String,
334
+ ?tags: Hash[::String, ::String],
335
+ ?disable_execute_api_endpoint: bool
336
+ ) -> _CreateRestApiResponseSuccess
337
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRestApiResponseSuccess
338
+
339
+ interface _CreateStageResponseSuccess
340
+ include ::Seahorse::Client::_ResponseSuccess[Types::Stage]
341
+ def deployment_id: () -> ::String
342
+ def client_certificate_id: () -> ::String
343
+ def stage_name: () -> ::String
344
+ def description: () -> ::String
345
+ def cache_cluster_enabled: () -> bool
346
+ def cache_cluster_size: () -> ("0.5" | "1.6" | "6.1" | "13.5" | "28.4" | "58.2" | "118" | "237")
347
+ def cache_cluster_status: () -> ("CREATE_IN_PROGRESS" | "AVAILABLE" | "DELETE_IN_PROGRESS" | "NOT_AVAILABLE" | "FLUSH_IN_PROGRESS")
348
+ def method_settings: () -> ::Hash[::String, Types::MethodSetting]
349
+ def variables: () -> ::Hash[::String, ::String]
350
+ def documentation_version: () -> ::String
351
+ def access_log_settings: () -> Types::AccessLogSettings
352
+ def canary_settings: () -> Types::CanarySettings
353
+ def tracing_enabled: () -> bool
354
+ def web_acl_arn: () -> ::String
355
+ def tags: () -> ::Hash[::String, ::String]
356
+ def created_date: () -> ::Time
357
+ def last_updated_date: () -> ::Time
358
+ end
359
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_stage-instance_method
360
+ def create_stage: (
361
+ rest_api_id: ::String,
362
+ stage_name: ::String,
363
+ deployment_id: ::String,
364
+ ?description: ::String,
365
+ ?cache_cluster_enabled: bool,
366
+ ?cache_cluster_size: ("0.5" | "1.6" | "6.1" | "13.5" | "28.4" | "58.2" | "118" | "237"),
367
+ ?variables: Hash[::String, ::String],
368
+ ?documentation_version: ::String,
369
+ ?canary_settings: {
370
+ percent_traffic: ::Float?,
371
+ deployment_id: ::String?,
372
+ stage_variable_overrides: Hash[::String, ::String]?,
373
+ use_stage_cache: bool?
374
+ },
375
+ ?tracing_enabled: bool,
376
+ ?tags: Hash[::String, ::String]
377
+ ) -> _CreateStageResponseSuccess
378
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStageResponseSuccess
379
+
380
+ interface _CreateUsagePlanResponseSuccess
381
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlan]
382
+ def id: () -> ::String
383
+ def name: () -> ::String
384
+ def description: () -> ::String
385
+ def api_stages: () -> ::Array[Types::ApiStage]
386
+ def throttle: () -> Types::ThrottleSettings
387
+ def quota: () -> Types::QuotaSettings
388
+ def product_code: () -> ::String
389
+ def tags: () -> ::Hash[::String, ::String]
390
+ end
391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_usage_plan-instance_method
392
+ def create_usage_plan: (
393
+ name: ::String,
394
+ ?description: ::String,
395
+ ?api_stages: Array[
396
+ {
397
+ api_id: ::String?,
398
+ stage: ::String?,
399
+ throttle: Hash[::String, {
400
+ burst_limit: ::Integer?,
401
+ rate_limit: ::Float?
402
+ }]?
403
+ },
404
+ ],
405
+ ?throttle: {
406
+ burst_limit: ::Integer?,
407
+ rate_limit: ::Float?
408
+ },
409
+ ?quota: {
410
+ limit: ::Integer?,
411
+ offset: ::Integer?,
412
+ period: ("DAY" | "WEEK" | "MONTH")?
413
+ },
414
+ ?tags: Hash[::String, ::String]
415
+ ) -> _CreateUsagePlanResponseSuccess
416
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUsagePlanResponseSuccess
417
+
418
+ interface _CreateUsagePlanKeyResponseSuccess
419
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlanKey]
420
+ def id: () -> ::String
421
+ def type: () -> ::String
422
+ def value: () -> ::String
423
+ def name: () -> ::String
424
+ end
425
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_usage_plan_key-instance_method
426
+ def create_usage_plan_key: (
427
+ usage_plan_id: ::String,
428
+ key_id: ::String,
429
+ key_type: ::String
430
+ ) -> _CreateUsagePlanKeyResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUsagePlanKeyResponseSuccess
432
+
433
+ interface _CreateVpcLinkResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::VpcLink]
435
+ def id: () -> ::String
436
+ def name: () -> ::String
437
+ def description: () -> ::String
438
+ def target_arns: () -> ::Array[::String]
439
+ def status: () -> ("AVAILABLE" | "PENDING" | "DELETING" | "FAILED")
440
+ def status_message: () -> ::String
441
+ def tags: () -> ::Hash[::String, ::String]
442
+ end
443
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_vpc_link-instance_method
444
+ def create_vpc_link: (
445
+ name: ::String,
446
+ ?description: ::String,
447
+ target_arns: Array[::String],
448
+ ?tags: Hash[::String, ::String]
449
+ ) -> _CreateVpcLinkResponseSuccess
450
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcLinkResponseSuccess
451
+
452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_api_key-instance_method
453
+ def delete_api_key: (
454
+ api_key: ::String
455
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
456
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
457
+
458
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_authorizer-instance_method
459
+ def delete_authorizer: (
460
+ rest_api_id: ::String,
461
+ authorizer_id: ::String
462
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
464
+
465
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_base_path_mapping-instance_method
466
+ def delete_base_path_mapping: (
467
+ domain_name: ::String,
468
+ base_path: ::String
469
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
470
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
471
+
472
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_client_certificate-instance_method
473
+ def delete_client_certificate: (
474
+ client_certificate_id: ::String
475
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
476
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
477
+
478
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_deployment-instance_method
479
+ def delete_deployment: (
480
+ rest_api_id: ::String,
481
+ deployment_id: ::String
482
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
483
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
484
+
485
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_documentation_part-instance_method
486
+ def delete_documentation_part: (
487
+ rest_api_id: ::String,
488
+ documentation_part_id: ::String
489
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
491
+
492
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_documentation_version-instance_method
493
+ def delete_documentation_version: (
494
+ rest_api_id: ::String,
495
+ documentation_version: ::String
496
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
498
+
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_domain_name-instance_method
500
+ def delete_domain_name: (
501
+ domain_name: ::String
502
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
503
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
504
+
505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_gateway_response-instance_method
506
+ def delete_gateway_response: (
507
+ rest_api_id: ::String,
508
+ response_type: ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED")
509
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
511
+
512
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_integration-instance_method
513
+ def delete_integration: (
514
+ rest_api_id: ::String,
515
+ resource_id: ::String,
516
+ http_method: ::String
517
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
518
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
519
+
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_integration_response-instance_method
521
+ def delete_integration_response: (
522
+ rest_api_id: ::String,
523
+ resource_id: ::String,
524
+ http_method: ::String,
525
+ status_code: ::String
526
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
527
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
528
+
529
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_method-instance_method
530
+ def delete_method: (
531
+ rest_api_id: ::String,
532
+ resource_id: ::String,
533
+ http_method: ::String
534
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
536
+
537
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_method_response-instance_method
538
+ def delete_method_response: (
539
+ rest_api_id: ::String,
540
+ resource_id: ::String,
541
+ http_method: ::String,
542
+ status_code: ::String
543
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
545
+
546
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_model-instance_method
547
+ def delete_model: (
548
+ rest_api_id: ::String,
549
+ model_name: ::String
550
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
551
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
552
+
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_request_validator-instance_method
554
+ def delete_request_validator: (
555
+ rest_api_id: ::String,
556
+ request_validator_id: ::String
557
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
559
+
560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_resource-instance_method
561
+ def delete_resource: (
562
+ rest_api_id: ::String,
563
+ resource_id: ::String
564
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
565
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
566
+
567
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_rest_api-instance_method
568
+ def delete_rest_api: (
569
+ rest_api_id: ::String
570
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
572
+
573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_stage-instance_method
574
+ def delete_stage: (
575
+ rest_api_id: ::String,
576
+ stage_name: ::String
577
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
578
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
579
+
580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_usage_plan-instance_method
581
+ def delete_usage_plan: (
582
+ usage_plan_id: ::String
583
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
584
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
585
+
586
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_usage_plan_key-instance_method
587
+ def delete_usage_plan_key: (
588
+ usage_plan_id: ::String,
589
+ key_id: ::String
590
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
591
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
592
+
593
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#delete_vpc_link-instance_method
594
+ def delete_vpc_link: (
595
+ vpc_link_id: ::String
596
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
597
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
598
+
599
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#flush_stage_authorizers_cache-instance_method
600
+ def flush_stage_authorizers_cache: (
601
+ rest_api_id: ::String,
602
+ stage_name: ::String
603
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
604
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
605
+
606
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#flush_stage_cache-instance_method
607
+ def flush_stage_cache: (
608
+ rest_api_id: ::String,
609
+ stage_name: ::String
610
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
611
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
612
+
613
+ interface _GenerateClientCertificateResponseSuccess
614
+ include ::Seahorse::Client::_ResponseSuccess[Types::ClientCertificate]
615
+ def client_certificate_id: () -> ::String
616
+ def description: () -> ::String
617
+ def pem_encoded_certificate: () -> ::String
618
+ def created_date: () -> ::Time
619
+ def expiration_date: () -> ::Time
620
+ def tags: () -> ::Hash[::String, ::String]
621
+ end
622
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#generate_client_certificate-instance_method
623
+ def generate_client_certificate: (
624
+ ?description: ::String,
625
+ ?tags: Hash[::String, ::String]
626
+ ) -> _GenerateClientCertificateResponseSuccess
627
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GenerateClientCertificateResponseSuccess
628
+
629
+ interface _GetAccountResponseSuccess
630
+ include ::Seahorse::Client::_ResponseSuccess[Types::Account]
631
+ def cloudwatch_role_arn: () -> ::String
632
+ def throttle_settings: () -> Types::ThrottleSettings
633
+ def features: () -> ::Array[::String]
634
+ def api_key_version: () -> ::String
635
+ end
636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_account-instance_method
637
+ def get_account: (
638
+ ) -> _GetAccountResponseSuccess
639
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountResponseSuccess
640
+
641
+ interface _GetApiKeyResponseSuccess
642
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApiKey]
643
+ def id: () -> ::String
644
+ def value: () -> ::String
645
+ def name: () -> ::String
646
+ def customer_id: () -> ::String
647
+ def description: () -> ::String
648
+ def enabled: () -> bool
649
+ def created_date: () -> ::Time
650
+ def last_updated_date: () -> ::Time
651
+ def stage_keys: () -> ::Array[::String]
652
+ def tags: () -> ::Hash[::String, ::String]
653
+ end
654
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_api_key-instance_method
655
+ def get_api_key: (
656
+ api_key: ::String,
657
+ ?include_value: bool
658
+ ) -> _GetApiKeyResponseSuccess
659
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApiKeyResponseSuccess
660
+
661
+ interface _GetApiKeysResponseSuccess
662
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApiKeys]
663
+ def warnings: () -> ::Array[::String]
664
+ def position: () -> ::String
665
+ def items: () -> ::Array[Types::ApiKey]
666
+ end
667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_api_keys-instance_method
668
+ def get_api_keys: (
669
+ ?position: ::String,
670
+ ?limit: ::Integer,
671
+ ?name_query: ::String,
672
+ ?customer_id: ::String,
673
+ ?include_values: bool
674
+ ) -> _GetApiKeysResponseSuccess
675
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetApiKeysResponseSuccess
676
+
677
+ interface _GetAuthorizerResponseSuccess
678
+ include ::Seahorse::Client::_ResponseSuccess[Types::Authorizer]
679
+ def id: () -> ::String
680
+ def name: () -> ::String
681
+ def type: () -> ("TOKEN" | "REQUEST" | "COGNITO_USER_POOLS")
682
+ def provider_arns: () -> ::Array[::String]
683
+ def auth_type: () -> ::String
684
+ def authorizer_uri: () -> ::String
685
+ def authorizer_credentials: () -> ::String
686
+ def identity_source: () -> ::String
687
+ def identity_validation_expression: () -> ::String
688
+ def authorizer_result_ttl_in_seconds: () -> ::Integer
689
+ end
690
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_authorizer-instance_method
691
+ def get_authorizer: (
692
+ rest_api_id: ::String,
693
+ authorizer_id: ::String
694
+ ) -> _GetAuthorizerResponseSuccess
695
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAuthorizerResponseSuccess
696
+
697
+ interface _GetAuthorizersResponseSuccess
698
+ include ::Seahorse::Client::_ResponseSuccess[Types::Authorizers]
699
+ def position: () -> ::String
700
+ def items: () -> ::Array[Types::Authorizer]
701
+ end
702
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_authorizers-instance_method
703
+ def get_authorizers: (
704
+ rest_api_id: ::String,
705
+ ?position: ::String,
706
+ ?limit: ::Integer
707
+ ) -> _GetAuthorizersResponseSuccess
708
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAuthorizersResponseSuccess
709
+
710
+ interface _GetBasePathMappingResponseSuccess
711
+ include ::Seahorse::Client::_ResponseSuccess[Types::BasePathMapping]
712
+ def base_path: () -> ::String
713
+ def rest_api_id: () -> ::String
714
+ def stage: () -> ::String
715
+ end
716
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mapping-instance_method
717
+ def get_base_path_mapping: (
718
+ domain_name: ::String,
719
+ base_path: ::String
720
+ ) -> _GetBasePathMappingResponseSuccess
721
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBasePathMappingResponseSuccess
722
+
723
+ interface _GetBasePathMappingsResponseSuccess
724
+ include ::Seahorse::Client::_ResponseSuccess[Types::BasePathMappings]
725
+ def position: () -> ::String
726
+ def items: () -> ::Array[Types::BasePathMapping]
727
+ end
728
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_base_path_mappings-instance_method
729
+ def get_base_path_mappings: (
730
+ domain_name: ::String,
731
+ ?position: ::String,
732
+ ?limit: ::Integer
733
+ ) -> _GetBasePathMappingsResponseSuccess
734
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBasePathMappingsResponseSuccess
735
+
736
+ interface _GetClientCertificateResponseSuccess
737
+ include ::Seahorse::Client::_ResponseSuccess[Types::ClientCertificate]
738
+ def client_certificate_id: () -> ::String
739
+ def description: () -> ::String
740
+ def pem_encoded_certificate: () -> ::String
741
+ def created_date: () -> ::Time
742
+ def expiration_date: () -> ::Time
743
+ def tags: () -> ::Hash[::String, ::String]
744
+ end
745
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_client_certificate-instance_method
746
+ def get_client_certificate: (
747
+ client_certificate_id: ::String
748
+ ) -> _GetClientCertificateResponseSuccess
749
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetClientCertificateResponseSuccess
750
+
751
+ interface _GetClientCertificatesResponseSuccess
752
+ include ::Seahorse::Client::_ResponseSuccess[Types::ClientCertificates]
753
+ def position: () -> ::String
754
+ def items: () -> ::Array[Types::ClientCertificate]
755
+ end
756
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_client_certificates-instance_method
757
+ def get_client_certificates: (
758
+ ?position: ::String,
759
+ ?limit: ::Integer
760
+ ) -> _GetClientCertificatesResponseSuccess
761
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetClientCertificatesResponseSuccess
762
+
763
+ interface _GetDeploymentResponseSuccess
764
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
765
+ def id: () -> ::String
766
+ def description: () -> ::String
767
+ def created_date: () -> ::Time
768
+ def api_summary: () -> ::Hash[::String, ::Hash[::String, Types::MethodSnapshot]]
769
+ end
770
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_deployment-instance_method
771
+ def get_deployment: (
772
+ rest_api_id: ::String,
773
+ deployment_id: ::String,
774
+ ?embed: Array[::String]
775
+ ) -> _GetDeploymentResponseSuccess
776
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentResponseSuccess
777
+
778
+ interface _GetDeploymentsResponseSuccess
779
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployments]
780
+ def position: () -> ::String
781
+ def items: () -> ::Array[Types::Deployment]
782
+ end
783
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_deployments-instance_method
784
+ def get_deployments: (
785
+ rest_api_id: ::String,
786
+ ?position: ::String,
787
+ ?limit: ::Integer
788
+ ) -> _GetDeploymentsResponseSuccess
789
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentsResponseSuccess
790
+
791
+ interface _GetDocumentationPartResponseSuccess
792
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationPart]
793
+ def id: () -> ::String
794
+ def location: () -> Types::DocumentationPartLocation
795
+ def properties: () -> ::String
796
+ end
797
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_documentation_part-instance_method
798
+ def get_documentation_part: (
799
+ rest_api_id: ::String,
800
+ documentation_part_id: ::String
801
+ ) -> _GetDocumentationPartResponseSuccess
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDocumentationPartResponseSuccess
803
+
804
+ interface _GetDocumentationPartsResponseSuccess
805
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationParts]
806
+ def position: () -> ::String
807
+ def items: () -> ::Array[Types::DocumentationPart]
808
+ end
809
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_documentation_parts-instance_method
810
+ def get_documentation_parts: (
811
+ rest_api_id: ::String,
812
+ ?type: ("API" | "AUTHORIZER" | "MODEL" | "RESOURCE" | "METHOD" | "PATH_PARAMETER" | "QUERY_PARAMETER" | "REQUEST_HEADER" | "REQUEST_BODY" | "RESPONSE" | "RESPONSE_HEADER" | "RESPONSE_BODY"),
813
+ ?name_query: ::String,
814
+ ?path: ::String,
815
+ ?position: ::String,
816
+ ?limit: ::Integer,
817
+ ?location_status: ("DOCUMENTED" | "UNDOCUMENTED")
818
+ ) -> _GetDocumentationPartsResponseSuccess
819
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDocumentationPartsResponseSuccess
820
+
821
+ interface _GetDocumentationVersionResponseSuccess
822
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationVersion]
823
+ def version: () -> ::String
824
+ def created_date: () -> ::Time
825
+ def description: () -> ::String
826
+ end
827
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_documentation_version-instance_method
828
+ def get_documentation_version: (
829
+ rest_api_id: ::String,
830
+ documentation_version: ::String
831
+ ) -> _GetDocumentationVersionResponseSuccess
832
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDocumentationVersionResponseSuccess
833
+
834
+ interface _GetDocumentationVersionsResponseSuccess
835
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationVersions]
836
+ def position: () -> ::String
837
+ def items: () -> ::Array[Types::DocumentationVersion]
838
+ end
839
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_documentation_versions-instance_method
840
+ def get_documentation_versions: (
841
+ rest_api_id: ::String,
842
+ ?position: ::String,
843
+ ?limit: ::Integer
844
+ ) -> _GetDocumentationVersionsResponseSuccess
845
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDocumentationVersionsResponseSuccess
846
+
847
+ interface _GetDomainNameResponseSuccess
848
+ include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
849
+ def domain_name: () -> ::String
850
+ def certificate_name: () -> ::String
851
+ def certificate_arn: () -> ::String
852
+ def certificate_upload_date: () -> ::Time
853
+ def regional_domain_name: () -> ::String
854
+ def regional_hosted_zone_id: () -> ::String
855
+ def regional_certificate_name: () -> ::String
856
+ def regional_certificate_arn: () -> ::String
857
+ def distribution_domain_name: () -> ::String
858
+ def distribution_hosted_zone_id: () -> ::String
859
+ def endpoint_configuration: () -> Types::EndpointConfiguration
860
+ def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
861
+ def domain_name_status_message: () -> ::String
862
+ def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
863
+ def tags: () -> ::Hash[::String, ::String]
864
+ def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
865
+ def ownership_verification_certificate_arn: () -> ::String
866
+ end
867
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name-instance_method
868
+ def get_domain_name: (
869
+ domain_name: ::String
870
+ ) -> _GetDomainNameResponseSuccess
871
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNameResponseSuccess
872
+
873
+ interface _GetDomainNamesResponseSuccess
874
+ include ::Seahorse::Client::_ResponseSuccess[Types::DomainNames]
875
+ def position: () -> ::String
876
+ def items: () -> ::Array[Types::DomainName]
877
+ end
878
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_names-instance_method
879
+ def get_domain_names: (
880
+ ?position: ::String,
881
+ ?limit: ::Integer
882
+ ) -> _GetDomainNamesResponseSuccess
883
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDomainNamesResponseSuccess
884
+
885
+ interface _GetExportResponseSuccess
886
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportResponse]
887
+ def content_type: () -> ::String
888
+ def content_disposition: () -> ::String
889
+ def body: () -> ::String
890
+ end
891
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_export-instance_method
892
+ def get_export: (
893
+ rest_api_id: ::String,
894
+ stage_name: ::String,
895
+ export_type: ::String,
896
+ ?parameters: Hash[::String, ::String],
897
+ ?accepts: ::String
898
+ ) -> _GetExportResponseSuccess
899
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExportResponseSuccess
900
+
901
+ interface _GetGatewayResponseResponseSuccess
902
+ include ::Seahorse::Client::_ResponseSuccess[Types::GatewayResponse]
903
+ def response_type: () -> ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED")
904
+ def status_code: () -> ::String
905
+ def response_parameters: () -> ::Hash[::String, ::String]
906
+ def response_templates: () -> ::Hash[::String, ::String]
907
+ def default_response: () -> bool
908
+ end
909
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_gateway_response-instance_method
910
+ def get_gateway_response: (
911
+ rest_api_id: ::String,
912
+ response_type: ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED")
913
+ ) -> _GetGatewayResponseResponseSuccess
914
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponseResponseSuccess
915
+
916
+ interface _GetGatewayResponsesResponseSuccess
917
+ include ::Seahorse::Client::_ResponseSuccess[Types::GatewayResponses]
918
+ def position: () -> ::String
919
+ def items: () -> ::Array[Types::GatewayResponse]
920
+ end
921
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_gateway_responses-instance_method
922
+ def get_gateway_responses: (
923
+ rest_api_id: ::String,
924
+ ?position: ::String,
925
+ ?limit: ::Integer
926
+ ) -> _GetGatewayResponsesResponseSuccess
927
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGatewayResponsesResponseSuccess
928
+
929
+ interface _GetIntegrationResponseSuccess
930
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
931
+ def type: () -> ("HTTP" | "AWS" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
932
+ def http_method: () -> ::String
933
+ def uri: () -> ::String
934
+ def connection_type: () -> ("INTERNET" | "VPC_LINK")
935
+ def connection_id: () -> ::String
936
+ def credentials: () -> ::String
937
+ def request_parameters: () -> ::Hash[::String, ::String]
938
+ def request_templates: () -> ::Hash[::String, ::String]
939
+ def passthrough_behavior: () -> ::String
940
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
941
+ def timeout_in_millis: () -> ::Integer
942
+ def cache_namespace: () -> ::String
943
+ def cache_key_parameters: () -> ::Array[::String]
944
+ def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
945
+ def tls_config: () -> Types::TlsConfig
946
+ end
947
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_integration-instance_method
948
+ def get_integration: (
949
+ rest_api_id: ::String,
950
+ resource_id: ::String,
951
+ http_method: ::String
952
+ ) -> _GetIntegrationResponseSuccess
953
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntegrationResponseSuccess
954
+
955
+ interface _GetIntegrationResponseResponseSuccess
956
+ include ::Seahorse::Client::_ResponseSuccess[Types::IntegrationResponse]
957
+ def status_code: () -> ::String
958
+ def selection_pattern: () -> ::String
959
+ def response_parameters: () -> ::Hash[::String, ::String]
960
+ def response_templates: () -> ::Hash[::String, ::String]
961
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
962
+ end
963
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_integration_response-instance_method
964
+ def get_integration_response: (
965
+ rest_api_id: ::String,
966
+ resource_id: ::String,
967
+ http_method: ::String,
968
+ status_code: ::String
969
+ ) -> _GetIntegrationResponseResponseSuccess
970
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntegrationResponseResponseSuccess
971
+
972
+ interface _GetMethodResponseSuccess
973
+ include ::Seahorse::Client::_ResponseSuccess[Types::Method]
974
+ def http_method: () -> ::String
975
+ def authorization_type: () -> ::String
976
+ def authorizer_id: () -> ::String
977
+ def api_key_required: () -> bool
978
+ def request_validator_id: () -> ::String
979
+ def operation_name: () -> ::String
980
+ def request_parameters: () -> ::Hash[::String, bool]
981
+ def request_models: () -> ::Hash[::String, ::String]
982
+ def method_responses: () -> ::Hash[::String, Types::MethodResponse]
983
+ def method_integration: () -> Types::Integration
984
+ def authorization_scopes: () -> ::Array[::String]
985
+ end
986
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_method-instance_method
987
+ def get_method: (
988
+ rest_api_id: ::String,
989
+ resource_id: ::String,
990
+ http_method: ::String
991
+ ) -> _GetMethodResponseSuccess
992
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMethodResponseSuccess
993
+
994
+ interface _GetMethodResponseResponseSuccess
995
+ include ::Seahorse::Client::_ResponseSuccess[Types::MethodResponse]
996
+ def status_code: () -> ::String
997
+ def response_parameters: () -> ::Hash[::String, bool]
998
+ def response_models: () -> ::Hash[::String, ::String]
999
+ end
1000
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_method_response-instance_method
1001
+ def get_method_response: (
1002
+ rest_api_id: ::String,
1003
+ resource_id: ::String,
1004
+ http_method: ::String,
1005
+ status_code: ::String
1006
+ ) -> _GetMethodResponseResponseSuccess
1007
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMethodResponseResponseSuccess
1008
+
1009
+ interface _GetModelResponseSuccess
1010
+ include ::Seahorse::Client::_ResponseSuccess[Types::Model]
1011
+ def id: () -> ::String
1012
+ def name: () -> ::String
1013
+ def description: () -> ::String
1014
+ def schema: () -> ::String
1015
+ def content_type: () -> ::String
1016
+ end
1017
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_model-instance_method
1018
+ def get_model: (
1019
+ rest_api_id: ::String,
1020
+ model_name: ::String,
1021
+ ?flatten: bool
1022
+ ) -> _GetModelResponseSuccess
1023
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetModelResponseSuccess
1024
+
1025
+ interface _GetModelTemplateResponseSuccess
1026
+ include ::Seahorse::Client::_ResponseSuccess[Types::Template]
1027
+ def value: () -> ::String
1028
+ end
1029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_model_template-instance_method
1030
+ def get_model_template: (
1031
+ rest_api_id: ::String,
1032
+ model_name: ::String
1033
+ ) -> _GetModelTemplateResponseSuccess
1034
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetModelTemplateResponseSuccess
1035
+
1036
+ interface _GetModelsResponseSuccess
1037
+ include ::Seahorse::Client::_ResponseSuccess[Types::Models]
1038
+ def position: () -> ::String
1039
+ def items: () -> ::Array[Types::Model]
1040
+ end
1041
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_models-instance_method
1042
+ def get_models: (
1043
+ rest_api_id: ::String,
1044
+ ?position: ::String,
1045
+ ?limit: ::Integer
1046
+ ) -> _GetModelsResponseSuccess
1047
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetModelsResponseSuccess
1048
+
1049
+ interface _GetRequestValidatorResponseSuccess
1050
+ include ::Seahorse::Client::_ResponseSuccess[Types::RequestValidator]
1051
+ def id: () -> ::String
1052
+ def name: () -> ::String
1053
+ def validate_request_body: () -> bool
1054
+ def validate_request_parameters: () -> bool
1055
+ end
1056
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_request_validator-instance_method
1057
+ def get_request_validator: (
1058
+ rest_api_id: ::String,
1059
+ request_validator_id: ::String
1060
+ ) -> _GetRequestValidatorResponseSuccess
1061
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRequestValidatorResponseSuccess
1062
+
1063
+ interface _GetRequestValidatorsResponseSuccess
1064
+ include ::Seahorse::Client::_ResponseSuccess[Types::RequestValidators]
1065
+ def position: () -> ::String
1066
+ def items: () -> ::Array[Types::RequestValidator]
1067
+ end
1068
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_request_validators-instance_method
1069
+ def get_request_validators: (
1070
+ rest_api_id: ::String,
1071
+ ?position: ::String,
1072
+ ?limit: ::Integer
1073
+ ) -> _GetRequestValidatorsResponseSuccess
1074
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRequestValidatorsResponseSuccess
1075
+
1076
+ interface _GetResourceResponseSuccess
1077
+ include ::Seahorse::Client::_ResponseSuccess[Types::Resource]
1078
+ def id: () -> ::String
1079
+ def parent_id: () -> ::String
1080
+ def path_part: () -> ::String
1081
+ def path: () -> ::String
1082
+ def resource_methods: () -> ::Hash[::String, Types::Method]
1083
+ end
1084
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_resource-instance_method
1085
+ def get_resource: (
1086
+ rest_api_id: ::String,
1087
+ resource_id: ::String,
1088
+ ?embed: Array[::String]
1089
+ ) -> _GetResourceResponseSuccess
1090
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourceResponseSuccess
1091
+
1092
+ interface _GetResourcesResponseSuccess
1093
+ include ::Seahorse::Client::_ResponseSuccess[Types::Resources]
1094
+ def position: () -> ::String
1095
+ def items: () -> ::Array[Types::Resource]
1096
+ end
1097
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_resources-instance_method
1098
+ def get_resources: (
1099
+ rest_api_id: ::String,
1100
+ ?position: ::String,
1101
+ ?limit: ::Integer,
1102
+ ?embed: Array[::String]
1103
+ ) -> _GetResourcesResponseSuccess
1104
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcesResponseSuccess
1105
+
1106
+ interface _GetRestApiResponseSuccess
1107
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApi]
1108
+ def id: () -> ::String
1109
+ def name: () -> ::String
1110
+ def description: () -> ::String
1111
+ def created_date: () -> ::Time
1112
+ def version: () -> ::String
1113
+ def warnings: () -> ::Array[::String]
1114
+ def binary_media_types: () -> ::Array[::String]
1115
+ def minimum_compression_size: () -> ::Integer
1116
+ def api_key_source: () -> ("HEADER" | "AUTHORIZER")
1117
+ def endpoint_configuration: () -> Types::EndpointConfiguration
1118
+ def policy: () -> ::String
1119
+ def tags: () -> ::Hash[::String, ::String]
1120
+ def disable_execute_api_endpoint: () -> bool
1121
+ def root_resource_id: () -> ::String
1122
+ end
1123
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_rest_api-instance_method
1124
+ def get_rest_api: (
1125
+ rest_api_id: ::String
1126
+ ) -> _GetRestApiResponseSuccess
1127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestApiResponseSuccess
1128
+
1129
+ interface _GetRestApisResponseSuccess
1130
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApis]
1131
+ def position: () -> ::String
1132
+ def items: () -> ::Array[Types::RestApi]
1133
+ end
1134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_rest_apis-instance_method
1135
+ def get_rest_apis: (
1136
+ ?position: ::String,
1137
+ ?limit: ::Integer
1138
+ ) -> _GetRestApisResponseSuccess
1139
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRestApisResponseSuccess
1140
+
1141
+ interface _GetSdkResponseSuccess
1142
+ include ::Seahorse::Client::_ResponseSuccess[Types::SdkResponse]
1143
+ def content_type: () -> ::String
1144
+ def content_disposition: () -> ::String
1145
+ def body: () -> ::String
1146
+ end
1147
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_sdk-instance_method
1148
+ def get_sdk: (
1149
+ rest_api_id: ::String,
1150
+ stage_name: ::String,
1151
+ sdk_type: ::String,
1152
+ ?parameters: Hash[::String, ::String]
1153
+ ) -> _GetSdkResponseSuccess
1154
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSdkResponseSuccess
1155
+
1156
+ interface _GetSdkTypeResponseSuccess
1157
+ include ::Seahorse::Client::_ResponseSuccess[Types::SdkType]
1158
+ def id: () -> ::String
1159
+ def friendly_name: () -> ::String
1160
+ def description: () -> ::String
1161
+ def configuration_properties: () -> ::Array[Types::SdkConfigurationProperty]
1162
+ end
1163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_sdk_type-instance_method
1164
+ def get_sdk_type: (
1165
+ id: ::String
1166
+ ) -> _GetSdkTypeResponseSuccess
1167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSdkTypeResponseSuccess
1168
+
1169
+ interface _GetSdkTypesResponseSuccess
1170
+ include ::Seahorse::Client::_ResponseSuccess[Types::SdkTypes]
1171
+ def position: () -> ::String
1172
+ def items: () -> ::Array[Types::SdkType]
1173
+ end
1174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_sdk_types-instance_method
1175
+ def get_sdk_types: (
1176
+ ?position: ::String,
1177
+ ?limit: ::Integer
1178
+ ) -> _GetSdkTypesResponseSuccess
1179
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSdkTypesResponseSuccess
1180
+
1181
+ interface _GetStageResponseSuccess
1182
+ include ::Seahorse::Client::_ResponseSuccess[Types::Stage]
1183
+ def deployment_id: () -> ::String
1184
+ def client_certificate_id: () -> ::String
1185
+ def stage_name: () -> ::String
1186
+ def description: () -> ::String
1187
+ def cache_cluster_enabled: () -> bool
1188
+ def cache_cluster_size: () -> ("0.5" | "1.6" | "6.1" | "13.5" | "28.4" | "58.2" | "118" | "237")
1189
+ def cache_cluster_status: () -> ("CREATE_IN_PROGRESS" | "AVAILABLE" | "DELETE_IN_PROGRESS" | "NOT_AVAILABLE" | "FLUSH_IN_PROGRESS")
1190
+ def method_settings: () -> ::Hash[::String, Types::MethodSetting]
1191
+ def variables: () -> ::Hash[::String, ::String]
1192
+ def documentation_version: () -> ::String
1193
+ def access_log_settings: () -> Types::AccessLogSettings
1194
+ def canary_settings: () -> Types::CanarySettings
1195
+ def tracing_enabled: () -> bool
1196
+ def web_acl_arn: () -> ::String
1197
+ def tags: () -> ::Hash[::String, ::String]
1198
+ def created_date: () -> ::Time
1199
+ def last_updated_date: () -> ::Time
1200
+ end
1201
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_stage-instance_method
1202
+ def get_stage: (
1203
+ rest_api_id: ::String,
1204
+ stage_name: ::String
1205
+ ) -> _GetStageResponseSuccess
1206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStageResponseSuccess
1207
+
1208
+ interface _GetStagesResponseSuccess
1209
+ include ::Seahorse::Client::_ResponseSuccess[Types::Stages]
1210
+ def item: () -> ::Array[Types::Stage]
1211
+ end
1212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_stages-instance_method
1213
+ def get_stages: (
1214
+ rest_api_id: ::String,
1215
+ ?deployment_id: ::String
1216
+ ) -> _GetStagesResponseSuccess
1217
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStagesResponseSuccess
1218
+
1219
+ interface _GetTagsResponseSuccess
1220
+ include ::Seahorse::Client::_ResponseSuccess[Types::Tags]
1221
+ def tags: () -> ::Hash[::String, ::String]
1222
+ end
1223
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_tags-instance_method
1224
+ def get_tags: (
1225
+ resource_arn: ::String,
1226
+ ?position: ::String,
1227
+ ?limit: ::Integer
1228
+ ) -> _GetTagsResponseSuccess
1229
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTagsResponseSuccess
1230
+
1231
+ interface _GetUsageResponseSuccess
1232
+ include ::Seahorse::Client::_ResponseSuccess[Types::Usage]
1233
+ def usage_plan_id: () -> ::String
1234
+ def start_date: () -> ::String
1235
+ def end_date: () -> ::String
1236
+ def position: () -> ::String
1237
+ def items: () -> ::Hash[::String, ::Array[::Array[::Integer]]]
1238
+ end
1239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_usage-instance_method
1240
+ def get_usage: (
1241
+ usage_plan_id: ::String,
1242
+ ?key_id: ::String,
1243
+ start_date: ::String,
1244
+ end_date: ::String,
1245
+ ?position: ::String,
1246
+ ?limit: ::Integer
1247
+ ) -> _GetUsageResponseSuccess
1248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsageResponseSuccess
1249
+
1250
+ interface _GetUsagePlanResponseSuccess
1251
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlan]
1252
+ def id: () -> ::String
1253
+ def name: () -> ::String
1254
+ def description: () -> ::String
1255
+ def api_stages: () -> ::Array[Types::ApiStage]
1256
+ def throttle: () -> Types::ThrottleSettings
1257
+ def quota: () -> Types::QuotaSettings
1258
+ def product_code: () -> ::String
1259
+ def tags: () -> ::Hash[::String, ::String]
1260
+ end
1261
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_usage_plan-instance_method
1262
+ def get_usage_plan: (
1263
+ usage_plan_id: ::String
1264
+ ) -> _GetUsagePlanResponseSuccess
1265
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsagePlanResponseSuccess
1266
+
1267
+ interface _GetUsagePlanKeyResponseSuccess
1268
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlanKey]
1269
+ def id: () -> ::String
1270
+ def type: () -> ::String
1271
+ def value: () -> ::String
1272
+ def name: () -> ::String
1273
+ end
1274
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_usage_plan_key-instance_method
1275
+ def get_usage_plan_key: (
1276
+ usage_plan_id: ::String,
1277
+ key_id: ::String
1278
+ ) -> _GetUsagePlanKeyResponseSuccess
1279
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsagePlanKeyResponseSuccess
1280
+
1281
+ interface _GetUsagePlanKeysResponseSuccess
1282
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlanKeys]
1283
+ def position: () -> ::String
1284
+ def items: () -> ::Array[Types::UsagePlanKey]
1285
+ end
1286
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_usage_plan_keys-instance_method
1287
+ def get_usage_plan_keys: (
1288
+ usage_plan_id: ::String,
1289
+ ?position: ::String,
1290
+ ?limit: ::Integer,
1291
+ ?name_query: ::String
1292
+ ) -> _GetUsagePlanKeysResponseSuccess
1293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsagePlanKeysResponseSuccess
1294
+
1295
+ interface _GetUsagePlansResponseSuccess
1296
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlans]
1297
+ def position: () -> ::String
1298
+ def items: () -> ::Array[Types::UsagePlan]
1299
+ end
1300
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_usage_plans-instance_method
1301
+ def get_usage_plans: (
1302
+ ?position: ::String,
1303
+ ?key_id: ::String,
1304
+ ?limit: ::Integer
1305
+ ) -> _GetUsagePlansResponseSuccess
1306
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetUsagePlansResponseSuccess
1307
+
1308
+ interface _GetVpcLinkResponseSuccess
1309
+ include ::Seahorse::Client::_ResponseSuccess[Types::VpcLink]
1310
+ def id: () -> ::String
1311
+ def name: () -> ::String
1312
+ def description: () -> ::String
1313
+ def target_arns: () -> ::Array[::String]
1314
+ def status: () -> ("AVAILABLE" | "PENDING" | "DELETING" | "FAILED")
1315
+ def status_message: () -> ::String
1316
+ def tags: () -> ::Hash[::String, ::String]
1317
+ end
1318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_vpc_link-instance_method
1319
+ def get_vpc_link: (
1320
+ vpc_link_id: ::String
1321
+ ) -> _GetVpcLinkResponseSuccess
1322
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVpcLinkResponseSuccess
1323
+
1324
+ interface _GetVpcLinksResponseSuccess
1325
+ include ::Seahorse::Client::_ResponseSuccess[Types::VpcLinks]
1326
+ def position: () -> ::String
1327
+ def items: () -> ::Array[Types::VpcLink]
1328
+ end
1329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_vpc_links-instance_method
1330
+ def get_vpc_links: (
1331
+ ?position: ::String,
1332
+ ?limit: ::Integer
1333
+ ) -> _GetVpcLinksResponseSuccess
1334
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVpcLinksResponseSuccess
1335
+
1336
+ interface _ImportApiKeysResponseSuccess
1337
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApiKeyIds]
1338
+ def ids: () -> ::Array[::String]
1339
+ def warnings: () -> ::Array[::String]
1340
+ end
1341
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#import_api_keys-instance_method
1342
+ def import_api_keys: (
1343
+ body: ::String,
1344
+ format: ("csv"),
1345
+ ?fail_on_warnings: bool
1346
+ ) -> _ImportApiKeysResponseSuccess
1347
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportApiKeysResponseSuccess
1348
+
1349
+ interface _ImportDocumentationPartsResponseSuccess
1350
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationPartIds]
1351
+ def ids: () -> ::Array[::String]
1352
+ def warnings: () -> ::Array[::String]
1353
+ end
1354
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#import_documentation_parts-instance_method
1355
+ def import_documentation_parts: (
1356
+ rest_api_id: ::String,
1357
+ ?mode: ("merge" | "overwrite"),
1358
+ ?fail_on_warnings: bool,
1359
+ body: ::String
1360
+ ) -> _ImportDocumentationPartsResponseSuccess
1361
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportDocumentationPartsResponseSuccess
1362
+
1363
+ interface _ImportRestApiResponseSuccess
1364
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApi]
1365
+ def id: () -> ::String
1366
+ def name: () -> ::String
1367
+ def description: () -> ::String
1368
+ def created_date: () -> ::Time
1369
+ def version: () -> ::String
1370
+ def warnings: () -> ::Array[::String]
1371
+ def binary_media_types: () -> ::Array[::String]
1372
+ def minimum_compression_size: () -> ::Integer
1373
+ def api_key_source: () -> ("HEADER" | "AUTHORIZER")
1374
+ def endpoint_configuration: () -> Types::EndpointConfiguration
1375
+ def policy: () -> ::String
1376
+ def tags: () -> ::Hash[::String, ::String]
1377
+ def disable_execute_api_endpoint: () -> bool
1378
+ def root_resource_id: () -> ::String
1379
+ end
1380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#import_rest_api-instance_method
1381
+ def import_rest_api: (
1382
+ ?fail_on_warnings: bool,
1383
+ ?parameters: Hash[::String, ::String],
1384
+ body: ::String
1385
+ ) -> _ImportRestApiResponseSuccess
1386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportRestApiResponseSuccess
1387
+
1388
+ interface _PutGatewayResponseResponseSuccess
1389
+ include ::Seahorse::Client::_ResponseSuccess[Types::GatewayResponse]
1390
+ def response_type: () -> ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED")
1391
+ def status_code: () -> ::String
1392
+ def response_parameters: () -> ::Hash[::String, ::String]
1393
+ def response_templates: () -> ::Hash[::String, ::String]
1394
+ def default_response: () -> bool
1395
+ end
1396
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_gateway_response-instance_method
1397
+ def put_gateway_response: (
1398
+ rest_api_id: ::String,
1399
+ response_type: ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED"),
1400
+ ?status_code: ::String,
1401
+ ?response_parameters: Hash[::String, ::String],
1402
+ ?response_templates: Hash[::String, ::String]
1403
+ ) -> _PutGatewayResponseResponseSuccess
1404
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutGatewayResponseResponseSuccess
1405
+
1406
+ interface _PutIntegrationResponseSuccess
1407
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
1408
+ def type: () -> ("HTTP" | "AWS" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
1409
+ def http_method: () -> ::String
1410
+ def uri: () -> ::String
1411
+ def connection_type: () -> ("INTERNET" | "VPC_LINK")
1412
+ def connection_id: () -> ::String
1413
+ def credentials: () -> ::String
1414
+ def request_parameters: () -> ::Hash[::String, ::String]
1415
+ def request_templates: () -> ::Hash[::String, ::String]
1416
+ def passthrough_behavior: () -> ::String
1417
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
1418
+ def timeout_in_millis: () -> ::Integer
1419
+ def cache_namespace: () -> ::String
1420
+ def cache_key_parameters: () -> ::Array[::String]
1421
+ def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
1422
+ def tls_config: () -> Types::TlsConfig
1423
+ end
1424
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_integration-instance_method
1425
+ def put_integration: (
1426
+ rest_api_id: ::String,
1427
+ resource_id: ::String,
1428
+ http_method: ::String,
1429
+ type: ("HTTP" | "AWS" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY"),
1430
+ ?integration_http_method: ::String,
1431
+ ?uri: ::String,
1432
+ ?connection_type: ("INTERNET" | "VPC_LINK"),
1433
+ ?connection_id: ::String,
1434
+ ?credentials: ::String,
1435
+ ?request_parameters: Hash[::String, ::String],
1436
+ ?request_templates: Hash[::String, ::String],
1437
+ ?passthrough_behavior: ::String,
1438
+ ?cache_namespace: ::String,
1439
+ ?cache_key_parameters: Array[::String],
1440
+ ?content_handling: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT"),
1441
+ ?timeout_in_millis: ::Integer,
1442
+ ?tls_config: {
1443
+ insecure_skip_verification: bool?
1444
+ }
1445
+ ) -> _PutIntegrationResponseSuccess
1446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseSuccess
1447
+
1448
+ interface _PutIntegrationResponseResponseSuccess
1449
+ include ::Seahorse::Client::_ResponseSuccess[Types::IntegrationResponse]
1450
+ def status_code: () -> ::String
1451
+ def selection_pattern: () -> ::String
1452
+ def response_parameters: () -> ::Hash[::String, ::String]
1453
+ def response_templates: () -> ::Hash[::String, ::String]
1454
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
1455
+ end
1456
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_integration_response-instance_method
1457
+ def put_integration_response: (
1458
+ rest_api_id: ::String,
1459
+ resource_id: ::String,
1460
+ http_method: ::String,
1461
+ status_code: ::String,
1462
+ ?selection_pattern: ::String,
1463
+ ?response_parameters: Hash[::String, ::String],
1464
+ ?response_templates: Hash[::String, ::String],
1465
+ ?content_handling: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
1466
+ ) -> _PutIntegrationResponseResponseSuccess
1467
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutIntegrationResponseResponseSuccess
1468
+
1469
+ interface _PutMethodResponseSuccess
1470
+ include ::Seahorse::Client::_ResponseSuccess[Types::Method]
1471
+ def http_method: () -> ::String
1472
+ def authorization_type: () -> ::String
1473
+ def authorizer_id: () -> ::String
1474
+ def api_key_required: () -> bool
1475
+ def request_validator_id: () -> ::String
1476
+ def operation_name: () -> ::String
1477
+ def request_parameters: () -> ::Hash[::String, bool]
1478
+ def request_models: () -> ::Hash[::String, ::String]
1479
+ def method_responses: () -> ::Hash[::String, Types::MethodResponse]
1480
+ def method_integration: () -> Types::Integration
1481
+ def authorization_scopes: () -> ::Array[::String]
1482
+ end
1483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_method-instance_method
1484
+ def put_method: (
1485
+ rest_api_id: ::String,
1486
+ resource_id: ::String,
1487
+ http_method: ::String,
1488
+ authorization_type: ::String,
1489
+ ?authorizer_id: ::String,
1490
+ ?api_key_required: bool,
1491
+ ?operation_name: ::String,
1492
+ ?request_parameters: Hash[::String, bool],
1493
+ ?request_models: Hash[::String, ::String],
1494
+ ?request_validator_id: ::String,
1495
+ ?authorization_scopes: Array[::String]
1496
+ ) -> _PutMethodResponseSuccess
1497
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutMethodResponseSuccess
1498
+
1499
+ interface _PutMethodResponseResponseSuccess
1500
+ include ::Seahorse::Client::_ResponseSuccess[Types::MethodResponse]
1501
+ def status_code: () -> ::String
1502
+ def response_parameters: () -> ::Hash[::String, bool]
1503
+ def response_models: () -> ::Hash[::String, ::String]
1504
+ end
1505
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_method_response-instance_method
1506
+ def put_method_response: (
1507
+ rest_api_id: ::String,
1508
+ resource_id: ::String,
1509
+ http_method: ::String,
1510
+ status_code: ::String,
1511
+ ?response_parameters: Hash[::String, bool],
1512
+ ?response_models: Hash[::String, ::String]
1513
+ ) -> _PutMethodResponseResponseSuccess
1514
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutMethodResponseResponseSuccess
1515
+
1516
+ interface _PutRestApiResponseSuccess
1517
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApi]
1518
+ def id: () -> ::String
1519
+ def name: () -> ::String
1520
+ def description: () -> ::String
1521
+ def created_date: () -> ::Time
1522
+ def version: () -> ::String
1523
+ def warnings: () -> ::Array[::String]
1524
+ def binary_media_types: () -> ::Array[::String]
1525
+ def minimum_compression_size: () -> ::Integer
1526
+ def api_key_source: () -> ("HEADER" | "AUTHORIZER")
1527
+ def endpoint_configuration: () -> Types::EndpointConfiguration
1528
+ def policy: () -> ::String
1529
+ def tags: () -> ::Hash[::String, ::String]
1530
+ def disable_execute_api_endpoint: () -> bool
1531
+ def root_resource_id: () -> ::String
1532
+ end
1533
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#put_rest_api-instance_method
1534
+ def put_rest_api: (
1535
+ rest_api_id: ::String,
1536
+ ?mode: ("merge" | "overwrite"),
1537
+ ?fail_on_warnings: bool,
1538
+ ?parameters: Hash[::String, ::String],
1539
+ body: ::String
1540
+ ) -> _PutRestApiResponseSuccess
1541
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRestApiResponseSuccess
1542
+
1543
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#tag_resource-instance_method
1544
+ def tag_resource: (
1545
+ resource_arn: ::String,
1546
+ tags: Hash[::String, ::String]
1547
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1548
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1549
+
1550
+ interface _TestInvokeAuthorizerResponseSuccess
1551
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestInvokeAuthorizerResponse]
1552
+ def client_status: () -> ::Integer
1553
+ def log: () -> ::String
1554
+ def latency: () -> ::Integer
1555
+ def principal_id: () -> ::String
1556
+ def policy: () -> ::String
1557
+ def authorization: () -> ::Hash[::String, ::Array[::String]]
1558
+ def claims: () -> ::Hash[::String, ::String]
1559
+ end
1560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#test_invoke_authorizer-instance_method
1561
+ def test_invoke_authorizer: (
1562
+ rest_api_id: ::String,
1563
+ authorizer_id: ::String,
1564
+ ?headers: Hash[::String, ::String],
1565
+ ?multi_value_headers: Hash[::String, Array[::String]],
1566
+ ?path_with_query_string: ::String,
1567
+ ?body: ::String,
1568
+ ?stage_variables: Hash[::String, ::String],
1569
+ ?additional_context: Hash[::String, ::String]
1570
+ ) -> _TestInvokeAuthorizerResponseSuccess
1571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestInvokeAuthorizerResponseSuccess
1572
+
1573
+ interface _TestInvokeMethodResponseSuccess
1574
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestInvokeMethodResponse]
1575
+ def status: () -> ::Integer
1576
+ def body: () -> ::String
1577
+ def headers: () -> ::Hash[::String, ::String]
1578
+ def multi_value_headers: () -> ::Hash[::String, ::Array[::String]]
1579
+ def log: () -> ::String
1580
+ def latency: () -> ::Integer
1581
+ end
1582
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#test_invoke_method-instance_method
1583
+ def test_invoke_method: (
1584
+ rest_api_id: ::String,
1585
+ resource_id: ::String,
1586
+ http_method: ::String,
1587
+ ?path_with_query_string: ::String,
1588
+ ?body: ::String,
1589
+ ?headers: Hash[::String, ::String],
1590
+ ?multi_value_headers: Hash[::String, Array[::String]],
1591
+ ?client_certificate_id: ::String,
1592
+ ?stage_variables: Hash[::String, ::String]
1593
+ ) -> _TestInvokeMethodResponseSuccess
1594
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestInvokeMethodResponseSuccess
1595
+
1596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#untag_resource-instance_method
1597
+ def untag_resource: (
1598
+ resource_arn: ::String,
1599
+ tag_keys: Array[::String]
1600
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1602
+
1603
+ interface _UpdateAccountResponseSuccess
1604
+ include ::Seahorse::Client::_ResponseSuccess[Types::Account]
1605
+ def cloudwatch_role_arn: () -> ::String
1606
+ def throttle_settings: () -> Types::ThrottleSettings
1607
+ def features: () -> ::Array[::String]
1608
+ def api_key_version: () -> ::String
1609
+ end
1610
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_account-instance_method
1611
+ def update_account: (
1612
+ ?patch_operations: Array[
1613
+ {
1614
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1615
+ path: ::String?,
1616
+ value: ::String?,
1617
+ from: ::String?
1618
+ },
1619
+ ]
1620
+ ) -> _UpdateAccountResponseSuccess
1621
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccountResponseSuccess
1622
+
1623
+ interface _UpdateApiKeyResponseSuccess
1624
+ include ::Seahorse::Client::_ResponseSuccess[Types::ApiKey]
1625
+ def id: () -> ::String
1626
+ def value: () -> ::String
1627
+ def name: () -> ::String
1628
+ def customer_id: () -> ::String
1629
+ def description: () -> ::String
1630
+ def enabled: () -> bool
1631
+ def created_date: () -> ::Time
1632
+ def last_updated_date: () -> ::Time
1633
+ def stage_keys: () -> ::Array[::String]
1634
+ def tags: () -> ::Hash[::String, ::String]
1635
+ end
1636
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_api_key-instance_method
1637
+ def update_api_key: (
1638
+ api_key: ::String,
1639
+ ?patch_operations: Array[
1640
+ {
1641
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1642
+ path: ::String?,
1643
+ value: ::String?,
1644
+ from: ::String?
1645
+ },
1646
+ ]
1647
+ ) -> _UpdateApiKeyResponseSuccess
1648
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApiKeyResponseSuccess
1649
+
1650
+ interface _UpdateAuthorizerResponseSuccess
1651
+ include ::Seahorse::Client::_ResponseSuccess[Types::Authorizer]
1652
+ def id: () -> ::String
1653
+ def name: () -> ::String
1654
+ def type: () -> ("TOKEN" | "REQUEST" | "COGNITO_USER_POOLS")
1655
+ def provider_arns: () -> ::Array[::String]
1656
+ def auth_type: () -> ::String
1657
+ def authorizer_uri: () -> ::String
1658
+ def authorizer_credentials: () -> ::String
1659
+ def identity_source: () -> ::String
1660
+ def identity_validation_expression: () -> ::String
1661
+ def authorizer_result_ttl_in_seconds: () -> ::Integer
1662
+ end
1663
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_authorizer-instance_method
1664
+ def update_authorizer: (
1665
+ rest_api_id: ::String,
1666
+ authorizer_id: ::String,
1667
+ ?patch_operations: Array[
1668
+ {
1669
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1670
+ path: ::String?,
1671
+ value: ::String?,
1672
+ from: ::String?
1673
+ },
1674
+ ]
1675
+ ) -> _UpdateAuthorizerResponseSuccess
1676
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAuthorizerResponseSuccess
1677
+
1678
+ interface _UpdateBasePathMappingResponseSuccess
1679
+ include ::Seahorse::Client::_ResponseSuccess[Types::BasePathMapping]
1680
+ def base_path: () -> ::String
1681
+ def rest_api_id: () -> ::String
1682
+ def stage: () -> ::String
1683
+ end
1684
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_base_path_mapping-instance_method
1685
+ def update_base_path_mapping: (
1686
+ domain_name: ::String,
1687
+ base_path: ::String,
1688
+ ?patch_operations: Array[
1689
+ {
1690
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1691
+ path: ::String?,
1692
+ value: ::String?,
1693
+ from: ::String?
1694
+ },
1695
+ ]
1696
+ ) -> _UpdateBasePathMappingResponseSuccess
1697
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBasePathMappingResponseSuccess
1698
+
1699
+ interface _UpdateClientCertificateResponseSuccess
1700
+ include ::Seahorse::Client::_ResponseSuccess[Types::ClientCertificate]
1701
+ def client_certificate_id: () -> ::String
1702
+ def description: () -> ::String
1703
+ def pem_encoded_certificate: () -> ::String
1704
+ def created_date: () -> ::Time
1705
+ def expiration_date: () -> ::Time
1706
+ def tags: () -> ::Hash[::String, ::String]
1707
+ end
1708
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_client_certificate-instance_method
1709
+ def update_client_certificate: (
1710
+ client_certificate_id: ::String,
1711
+ ?patch_operations: Array[
1712
+ {
1713
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1714
+ path: ::String?,
1715
+ value: ::String?,
1716
+ from: ::String?
1717
+ },
1718
+ ]
1719
+ ) -> _UpdateClientCertificateResponseSuccess
1720
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClientCertificateResponseSuccess
1721
+
1722
+ interface _UpdateDeploymentResponseSuccess
1723
+ include ::Seahorse::Client::_ResponseSuccess[Types::Deployment]
1724
+ def id: () -> ::String
1725
+ def description: () -> ::String
1726
+ def created_date: () -> ::Time
1727
+ def api_summary: () -> ::Hash[::String, ::Hash[::String, Types::MethodSnapshot]]
1728
+ end
1729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_deployment-instance_method
1730
+ def update_deployment: (
1731
+ rest_api_id: ::String,
1732
+ deployment_id: ::String,
1733
+ ?patch_operations: Array[
1734
+ {
1735
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1736
+ path: ::String?,
1737
+ value: ::String?,
1738
+ from: ::String?
1739
+ },
1740
+ ]
1741
+ ) -> _UpdateDeploymentResponseSuccess
1742
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeploymentResponseSuccess
1743
+
1744
+ interface _UpdateDocumentationPartResponseSuccess
1745
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationPart]
1746
+ def id: () -> ::String
1747
+ def location: () -> Types::DocumentationPartLocation
1748
+ def properties: () -> ::String
1749
+ end
1750
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_documentation_part-instance_method
1751
+ def update_documentation_part: (
1752
+ rest_api_id: ::String,
1753
+ documentation_part_id: ::String,
1754
+ ?patch_operations: Array[
1755
+ {
1756
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1757
+ path: ::String?,
1758
+ value: ::String?,
1759
+ from: ::String?
1760
+ },
1761
+ ]
1762
+ ) -> _UpdateDocumentationPartResponseSuccess
1763
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDocumentationPartResponseSuccess
1764
+
1765
+ interface _UpdateDocumentationVersionResponseSuccess
1766
+ include ::Seahorse::Client::_ResponseSuccess[Types::DocumentationVersion]
1767
+ def version: () -> ::String
1768
+ def created_date: () -> ::Time
1769
+ def description: () -> ::String
1770
+ end
1771
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_documentation_version-instance_method
1772
+ def update_documentation_version: (
1773
+ rest_api_id: ::String,
1774
+ documentation_version: ::String,
1775
+ ?patch_operations: Array[
1776
+ {
1777
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1778
+ path: ::String?,
1779
+ value: ::String?,
1780
+ from: ::String?
1781
+ },
1782
+ ]
1783
+ ) -> _UpdateDocumentationVersionResponseSuccess
1784
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDocumentationVersionResponseSuccess
1785
+
1786
+ interface _UpdateDomainNameResponseSuccess
1787
+ include ::Seahorse::Client::_ResponseSuccess[Types::DomainName]
1788
+ def domain_name: () -> ::String
1789
+ def certificate_name: () -> ::String
1790
+ def certificate_arn: () -> ::String
1791
+ def certificate_upload_date: () -> ::Time
1792
+ def regional_domain_name: () -> ::String
1793
+ def regional_hosted_zone_id: () -> ::String
1794
+ def regional_certificate_name: () -> ::String
1795
+ def regional_certificate_arn: () -> ::String
1796
+ def distribution_domain_name: () -> ::String
1797
+ def distribution_hosted_zone_id: () -> ::String
1798
+ def endpoint_configuration: () -> Types::EndpointConfiguration
1799
+ def domain_name_status: () -> ("AVAILABLE" | "UPDATING" | "PENDING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
1800
+ def domain_name_status_message: () -> ::String
1801
+ def security_policy: () -> ("TLS_1_0" | "TLS_1_2")
1802
+ def tags: () -> ::Hash[::String, ::String]
1803
+ def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
1804
+ def ownership_verification_certificate_arn: () -> ::String
1805
+ end
1806
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_domain_name-instance_method
1807
+ def update_domain_name: (
1808
+ domain_name: ::String,
1809
+ ?patch_operations: Array[
1810
+ {
1811
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1812
+ path: ::String?,
1813
+ value: ::String?,
1814
+ from: ::String?
1815
+ },
1816
+ ]
1817
+ ) -> _UpdateDomainNameResponseSuccess
1818
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainNameResponseSuccess
1819
+
1820
+ interface _UpdateGatewayResponseResponseSuccess
1821
+ include ::Seahorse::Client::_ResponseSuccess[Types::GatewayResponse]
1822
+ def response_type: () -> ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED")
1823
+ def status_code: () -> ::String
1824
+ def response_parameters: () -> ::Hash[::String, ::String]
1825
+ def response_templates: () -> ::Hash[::String, ::String]
1826
+ def default_response: () -> bool
1827
+ end
1828
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_gateway_response-instance_method
1829
+ def update_gateway_response: (
1830
+ rest_api_id: ::String,
1831
+ response_type: ("DEFAULT_4XX" | "DEFAULT_5XX" | "RESOURCE_NOT_FOUND" | "UNAUTHORIZED" | "INVALID_API_KEY" | "ACCESS_DENIED" | "AUTHORIZER_FAILURE" | "AUTHORIZER_CONFIGURATION_ERROR" | "INVALID_SIGNATURE" | "EXPIRED_TOKEN" | "MISSING_AUTHENTICATION_TOKEN" | "INTEGRATION_FAILURE" | "INTEGRATION_TIMEOUT" | "API_CONFIGURATION_ERROR" | "UNSUPPORTED_MEDIA_TYPE" | "BAD_REQUEST_PARAMETERS" | "BAD_REQUEST_BODY" | "REQUEST_TOO_LARGE" | "THROTTLED" | "QUOTA_EXCEEDED" | "WAF_FILTERED"),
1832
+ ?patch_operations: Array[
1833
+ {
1834
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1835
+ path: ::String?,
1836
+ value: ::String?,
1837
+ from: ::String?
1838
+ },
1839
+ ]
1840
+ ) -> _UpdateGatewayResponseResponseSuccess
1841
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayResponseResponseSuccess
1842
+
1843
+ interface _UpdateIntegrationResponseSuccess
1844
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
1845
+ def type: () -> ("HTTP" | "AWS" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
1846
+ def http_method: () -> ::String
1847
+ def uri: () -> ::String
1848
+ def connection_type: () -> ("INTERNET" | "VPC_LINK")
1849
+ def connection_id: () -> ::String
1850
+ def credentials: () -> ::String
1851
+ def request_parameters: () -> ::Hash[::String, ::String]
1852
+ def request_templates: () -> ::Hash[::String, ::String]
1853
+ def passthrough_behavior: () -> ::String
1854
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
1855
+ def timeout_in_millis: () -> ::Integer
1856
+ def cache_namespace: () -> ::String
1857
+ def cache_key_parameters: () -> ::Array[::String]
1858
+ def integration_responses: () -> ::Hash[::String, Types::IntegrationResponse]
1859
+ def tls_config: () -> Types::TlsConfig
1860
+ end
1861
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_integration-instance_method
1862
+ def update_integration: (
1863
+ rest_api_id: ::String,
1864
+ resource_id: ::String,
1865
+ http_method: ::String,
1866
+ ?patch_operations: Array[
1867
+ {
1868
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1869
+ path: ::String?,
1870
+ value: ::String?,
1871
+ from: ::String?
1872
+ },
1873
+ ]
1874
+ ) -> _UpdateIntegrationResponseSuccess
1875
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntegrationResponseSuccess
1876
+
1877
+ interface _UpdateIntegrationResponseResponseSuccess
1878
+ include ::Seahorse::Client::_ResponseSuccess[Types::IntegrationResponse]
1879
+ def status_code: () -> ::String
1880
+ def selection_pattern: () -> ::String
1881
+ def response_parameters: () -> ::Hash[::String, ::String]
1882
+ def response_templates: () -> ::Hash[::String, ::String]
1883
+ def content_handling: () -> ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
1884
+ end
1885
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_integration_response-instance_method
1886
+ def update_integration_response: (
1887
+ rest_api_id: ::String,
1888
+ resource_id: ::String,
1889
+ http_method: ::String,
1890
+ status_code: ::String,
1891
+ ?patch_operations: Array[
1892
+ {
1893
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1894
+ path: ::String?,
1895
+ value: ::String?,
1896
+ from: ::String?
1897
+ },
1898
+ ]
1899
+ ) -> _UpdateIntegrationResponseResponseSuccess
1900
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntegrationResponseResponseSuccess
1901
+
1902
+ interface _UpdateMethodResponseSuccess
1903
+ include ::Seahorse::Client::_ResponseSuccess[Types::Method]
1904
+ def http_method: () -> ::String
1905
+ def authorization_type: () -> ::String
1906
+ def authorizer_id: () -> ::String
1907
+ def api_key_required: () -> bool
1908
+ def request_validator_id: () -> ::String
1909
+ def operation_name: () -> ::String
1910
+ def request_parameters: () -> ::Hash[::String, bool]
1911
+ def request_models: () -> ::Hash[::String, ::String]
1912
+ def method_responses: () -> ::Hash[::String, Types::MethodResponse]
1913
+ def method_integration: () -> Types::Integration
1914
+ def authorization_scopes: () -> ::Array[::String]
1915
+ end
1916
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_method-instance_method
1917
+ def update_method: (
1918
+ rest_api_id: ::String,
1919
+ resource_id: ::String,
1920
+ http_method: ::String,
1921
+ ?patch_operations: Array[
1922
+ {
1923
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1924
+ path: ::String?,
1925
+ value: ::String?,
1926
+ from: ::String?
1927
+ },
1928
+ ]
1929
+ ) -> _UpdateMethodResponseSuccess
1930
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMethodResponseSuccess
1931
+
1932
+ interface _UpdateMethodResponseResponseSuccess
1933
+ include ::Seahorse::Client::_ResponseSuccess[Types::MethodResponse]
1934
+ def status_code: () -> ::String
1935
+ def response_parameters: () -> ::Hash[::String, bool]
1936
+ def response_models: () -> ::Hash[::String, ::String]
1937
+ end
1938
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_method_response-instance_method
1939
+ def update_method_response: (
1940
+ rest_api_id: ::String,
1941
+ resource_id: ::String,
1942
+ http_method: ::String,
1943
+ status_code: ::String,
1944
+ ?patch_operations: Array[
1945
+ {
1946
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1947
+ path: ::String?,
1948
+ value: ::String?,
1949
+ from: ::String?
1950
+ },
1951
+ ]
1952
+ ) -> _UpdateMethodResponseResponseSuccess
1953
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMethodResponseResponseSuccess
1954
+
1955
+ interface _UpdateModelResponseSuccess
1956
+ include ::Seahorse::Client::_ResponseSuccess[Types::Model]
1957
+ def id: () -> ::String
1958
+ def name: () -> ::String
1959
+ def description: () -> ::String
1960
+ def schema: () -> ::String
1961
+ def content_type: () -> ::String
1962
+ end
1963
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_model-instance_method
1964
+ def update_model: (
1965
+ rest_api_id: ::String,
1966
+ model_name: ::String,
1967
+ ?patch_operations: Array[
1968
+ {
1969
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1970
+ path: ::String?,
1971
+ value: ::String?,
1972
+ from: ::String?
1973
+ },
1974
+ ]
1975
+ ) -> _UpdateModelResponseSuccess
1976
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateModelResponseSuccess
1977
+
1978
+ interface _UpdateRequestValidatorResponseSuccess
1979
+ include ::Seahorse::Client::_ResponseSuccess[Types::RequestValidator]
1980
+ def id: () -> ::String
1981
+ def name: () -> ::String
1982
+ def validate_request_body: () -> bool
1983
+ def validate_request_parameters: () -> bool
1984
+ end
1985
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_request_validator-instance_method
1986
+ def update_request_validator: (
1987
+ rest_api_id: ::String,
1988
+ request_validator_id: ::String,
1989
+ ?patch_operations: Array[
1990
+ {
1991
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
1992
+ path: ::String?,
1993
+ value: ::String?,
1994
+ from: ::String?
1995
+ },
1996
+ ]
1997
+ ) -> _UpdateRequestValidatorResponseSuccess
1998
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRequestValidatorResponseSuccess
1999
+
2000
+ interface _UpdateResourceResponseSuccess
2001
+ include ::Seahorse::Client::_ResponseSuccess[Types::Resource]
2002
+ def id: () -> ::String
2003
+ def parent_id: () -> ::String
2004
+ def path_part: () -> ::String
2005
+ def path: () -> ::String
2006
+ def resource_methods: () -> ::Hash[::String, Types::Method]
2007
+ end
2008
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_resource-instance_method
2009
+ def update_resource: (
2010
+ rest_api_id: ::String,
2011
+ resource_id: ::String,
2012
+ ?patch_operations: Array[
2013
+ {
2014
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2015
+ path: ::String?,
2016
+ value: ::String?,
2017
+ from: ::String?
2018
+ },
2019
+ ]
2020
+ ) -> _UpdateResourceResponseSuccess
2021
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResourceResponseSuccess
2022
+
2023
+ interface _UpdateRestApiResponseSuccess
2024
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestApi]
2025
+ def id: () -> ::String
2026
+ def name: () -> ::String
2027
+ def description: () -> ::String
2028
+ def created_date: () -> ::Time
2029
+ def version: () -> ::String
2030
+ def warnings: () -> ::Array[::String]
2031
+ def binary_media_types: () -> ::Array[::String]
2032
+ def minimum_compression_size: () -> ::Integer
2033
+ def api_key_source: () -> ("HEADER" | "AUTHORIZER")
2034
+ def endpoint_configuration: () -> Types::EndpointConfiguration
2035
+ def policy: () -> ::String
2036
+ def tags: () -> ::Hash[::String, ::String]
2037
+ def disable_execute_api_endpoint: () -> bool
2038
+ def root_resource_id: () -> ::String
2039
+ end
2040
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_rest_api-instance_method
2041
+ def update_rest_api: (
2042
+ rest_api_id: ::String,
2043
+ ?patch_operations: Array[
2044
+ {
2045
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2046
+ path: ::String?,
2047
+ value: ::String?,
2048
+ from: ::String?
2049
+ },
2050
+ ]
2051
+ ) -> _UpdateRestApiResponseSuccess
2052
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRestApiResponseSuccess
2053
+
2054
+ interface _UpdateStageResponseSuccess
2055
+ include ::Seahorse::Client::_ResponseSuccess[Types::Stage]
2056
+ def deployment_id: () -> ::String
2057
+ def client_certificate_id: () -> ::String
2058
+ def stage_name: () -> ::String
2059
+ def description: () -> ::String
2060
+ def cache_cluster_enabled: () -> bool
2061
+ def cache_cluster_size: () -> ("0.5" | "1.6" | "6.1" | "13.5" | "28.4" | "58.2" | "118" | "237")
2062
+ def cache_cluster_status: () -> ("CREATE_IN_PROGRESS" | "AVAILABLE" | "DELETE_IN_PROGRESS" | "NOT_AVAILABLE" | "FLUSH_IN_PROGRESS")
2063
+ def method_settings: () -> ::Hash[::String, Types::MethodSetting]
2064
+ def variables: () -> ::Hash[::String, ::String]
2065
+ def documentation_version: () -> ::String
2066
+ def access_log_settings: () -> Types::AccessLogSettings
2067
+ def canary_settings: () -> Types::CanarySettings
2068
+ def tracing_enabled: () -> bool
2069
+ def web_acl_arn: () -> ::String
2070
+ def tags: () -> ::Hash[::String, ::String]
2071
+ def created_date: () -> ::Time
2072
+ def last_updated_date: () -> ::Time
2073
+ end
2074
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_stage-instance_method
2075
+ def update_stage: (
2076
+ rest_api_id: ::String,
2077
+ stage_name: ::String,
2078
+ ?patch_operations: Array[
2079
+ {
2080
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2081
+ path: ::String?,
2082
+ value: ::String?,
2083
+ from: ::String?
2084
+ },
2085
+ ]
2086
+ ) -> _UpdateStageResponseSuccess
2087
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStageResponseSuccess
2088
+
2089
+ interface _UpdateUsageResponseSuccess
2090
+ include ::Seahorse::Client::_ResponseSuccess[Types::Usage]
2091
+ def usage_plan_id: () -> ::String
2092
+ def start_date: () -> ::String
2093
+ def end_date: () -> ::String
2094
+ def position: () -> ::String
2095
+ def items: () -> ::Hash[::String, ::Array[::Array[::Integer]]]
2096
+ end
2097
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_usage-instance_method
2098
+ def update_usage: (
2099
+ usage_plan_id: ::String,
2100
+ key_id: ::String,
2101
+ ?patch_operations: Array[
2102
+ {
2103
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2104
+ path: ::String?,
2105
+ value: ::String?,
2106
+ from: ::String?
2107
+ },
2108
+ ]
2109
+ ) -> _UpdateUsageResponseSuccess
2110
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUsageResponseSuccess
2111
+
2112
+ interface _UpdateUsagePlanResponseSuccess
2113
+ include ::Seahorse::Client::_ResponseSuccess[Types::UsagePlan]
2114
+ def id: () -> ::String
2115
+ def name: () -> ::String
2116
+ def description: () -> ::String
2117
+ def api_stages: () -> ::Array[Types::ApiStage]
2118
+ def throttle: () -> Types::ThrottleSettings
2119
+ def quota: () -> Types::QuotaSettings
2120
+ def product_code: () -> ::String
2121
+ def tags: () -> ::Hash[::String, ::String]
2122
+ end
2123
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_usage_plan-instance_method
2124
+ def update_usage_plan: (
2125
+ usage_plan_id: ::String,
2126
+ ?patch_operations: Array[
2127
+ {
2128
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2129
+ path: ::String?,
2130
+ value: ::String?,
2131
+ from: ::String?
2132
+ },
2133
+ ]
2134
+ ) -> _UpdateUsagePlanResponseSuccess
2135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUsagePlanResponseSuccess
2136
+
2137
+ interface _UpdateVpcLinkResponseSuccess
2138
+ include ::Seahorse::Client::_ResponseSuccess[Types::VpcLink]
2139
+ def id: () -> ::String
2140
+ def name: () -> ::String
2141
+ def description: () -> ::String
2142
+ def target_arns: () -> ::Array[::String]
2143
+ def status: () -> ("AVAILABLE" | "PENDING" | "DELETING" | "FAILED")
2144
+ def status_message: () -> ::String
2145
+ def tags: () -> ::Hash[::String, ::String]
2146
+ end
2147
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_vpc_link-instance_method
2148
+ def update_vpc_link: (
2149
+ vpc_link_id: ::String,
2150
+ ?patch_operations: Array[
2151
+ {
2152
+ op: ("add" | "remove" | "replace" | "move" | "copy" | "test")?,
2153
+ path: ::String?,
2154
+ value: ::String?,
2155
+ from: ::String?
2156
+ },
2157
+ ]
2158
+ ) -> _UpdateVpcLinkResponseSuccess
2159
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcLinkResponseSuccess
2160
+ end
2161
+ end
2162
+ end
2163
+