aws-sdk-globalaccelerator 1.55.0 → 1.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-globalaccelerator/client.rb +1 -1
- data/lib/aws-sdk-globalaccelerator/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-globalaccelerator.rb +1 -1
- data/sig/client.rbs +807 -0
- data/sig/errors.rbs +76 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +947 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,807 @@
|
|
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 GlobalAccelerator
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AddCustomRoutingEndpointsResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddCustomRoutingEndpointsResponse]
|
78
|
+
def endpoint_descriptions: () -> ::Array[Types::CustomRoutingEndpointDescription]
|
79
|
+
def endpoint_group_arn: () -> ::String
|
80
|
+
end
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#add_custom_routing_endpoints-instance_method
|
82
|
+
def add_custom_routing_endpoints: (
|
83
|
+
endpoint_configurations: Array[
|
84
|
+
{
|
85
|
+
endpoint_id: ::String?,
|
86
|
+
attachment_arn: ::String?
|
87
|
+
},
|
88
|
+
],
|
89
|
+
endpoint_group_arn: ::String
|
90
|
+
) -> _AddCustomRoutingEndpointsResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddCustomRoutingEndpointsResponseSuccess
|
92
|
+
|
93
|
+
interface _AddEndpointsResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddEndpointsResponse]
|
95
|
+
def endpoint_descriptions: () -> ::Array[Types::EndpointDescription]
|
96
|
+
def endpoint_group_arn: () -> ::String
|
97
|
+
end
|
98
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#add_endpoints-instance_method
|
99
|
+
def add_endpoints: (
|
100
|
+
endpoint_configurations: Array[
|
101
|
+
{
|
102
|
+
endpoint_id: ::String?,
|
103
|
+
weight: ::Integer?,
|
104
|
+
client_ip_preservation_enabled: bool?,
|
105
|
+
attachment_arn: ::String?
|
106
|
+
},
|
107
|
+
],
|
108
|
+
endpoint_group_arn: ::String
|
109
|
+
) -> _AddEndpointsResponseSuccess
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddEndpointsResponseSuccess
|
111
|
+
|
112
|
+
interface _AdvertiseByoipCidrResponseSuccess
|
113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AdvertiseByoipCidrResponse]
|
114
|
+
def byoip_cidr: () -> Types::ByoipCidr
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#advertise_byoip_cidr-instance_method
|
117
|
+
def advertise_byoip_cidr: (
|
118
|
+
cidr: ::String
|
119
|
+
) -> _AdvertiseByoipCidrResponseSuccess
|
120
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AdvertiseByoipCidrResponseSuccess
|
121
|
+
|
122
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#allow_custom_routing_traffic-instance_method
|
123
|
+
def allow_custom_routing_traffic: (
|
124
|
+
endpoint_group_arn: ::String,
|
125
|
+
endpoint_id: ::String,
|
126
|
+
?destination_addresses: Array[::String],
|
127
|
+
?destination_ports: Array[::Integer],
|
128
|
+
?allow_all_traffic_to_endpoint: bool
|
129
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
130
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
131
|
+
|
132
|
+
interface _CreateAcceleratorResponseSuccess
|
133
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAcceleratorResponse]
|
134
|
+
def accelerator: () -> Types::Accelerator
|
135
|
+
end
|
136
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_accelerator-instance_method
|
137
|
+
def create_accelerator: (
|
138
|
+
name: ::String,
|
139
|
+
?ip_address_type: ("IPV4" | "DUAL_STACK"),
|
140
|
+
?ip_addresses: Array[::String],
|
141
|
+
?enabled: bool,
|
142
|
+
idempotency_token: ::String,
|
143
|
+
?tags: Array[
|
144
|
+
{
|
145
|
+
key: ::String,
|
146
|
+
value: ::String
|
147
|
+
},
|
148
|
+
]
|
149
|
+
) -> _CreateAcceleratorResponseSuccess
|
150
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAcceleratorResponseSuccess
|
151
|
+
|
152
|
+
interface _CreateCrossAccountAttachmentResponseSuccess
|
153
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCrossAccountAttachmentResponse]
|
154
|
+
def cross_account_attachment: () -> Types::Attachment
|
155
|
+
end
|
156
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_cross_account_attachment-instance_method
|
157
|
+
def create_cross_account_attachment: (
|
158
|
+
name: ::String,
|
159
|
+
?principals: Array[::String],
|
160
|
+
?resources: Array[
|
161
|
+
{
|
162
|
+
endpoint_id: ::String,
|
163
|
+
region: ::String?
|
164
|
+
},
|
165
|
+
],
|
166
|
+
idempotency_token: ::String,
|
167
|
+
?tags: Array[
|
168
|
+
{
|
169
|
+
key: ::String,
|
170
|
+
value: ::String
|
171
|
+
},
|
172
|
+
]
|
173
|
+
) -> _CreateCrossAccountAttachmentResponseSuccess
|
174
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCrossAccountAttachmentResponseSuccess
|
175
|
+
|
176
|
+
interface _CreateCustomRoutingAcceleratorResponseSuccess
|
177
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomRoutingAcceleratorResponse]
|
178
|
+
def accelerator: () -> Types::CustomRoutingAccelerator
|
179
|
+
end
|
180
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_custom_routing_accelerator-instance_method
|
181
|
+
def create_custom_routing_accelerator: (
|
182
|
+
name: ::String,
|
183
|
+
?ip_address_type: ("IPV4" | "DUAL_STACK"),
|
184
|
+
?ip_addresses: Array[::String],
|
185
|
+
?enabled: bool,
|
186
|
+
idempotency_token: ::String,
|
187
|
+
?tags: Array[
|
188
|
+
{
|
189
|
+
key: ::String,
|
190
|
+
value: ::String
|
191
|
+
},
|
192
|
+
]
|
193
|
+
) -> _CreateCustomRoutingAcceleratorResponseSuccess
|
194
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomRoutingAcceleratorResponseSuccess
|
195
|
+
|
196
|
+
interface _CreateCustomRoutingEndpointGroupResponseSuccess
|
197
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomRoutingEndpointGroupResponse]
|
198
|
+
def endpoint_group: () -> Types::CustomRoutingEndpointGroup
|
199
|
+
end
|
200
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_custom_routing_endpoint_group-instance_method
|
201
|
+
def create_custom_routing_endpoint_group: (
|
202
|
+
listener_arn: ::String,
|
203
|
+
endpoint_group_region: ::String,
|
204
|
+
destination_configurations: Array[
|
205
|
+
{
|
206
|
+
from_port: ::Integer,
|
207
|
+
to_port: ::Integer,
|
208
|
+
protocols: Array[("TCP" | "UDP")]
|
209
|
+
},
|
210
|
+
],
|
211
|
+
idempotency_token: ::String
|
212
|
+
) -> _CreateCustomRoutingEndpointGroupResponseSuccess
|
213
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomRoutingEndpointGroupResponseSuccess
|
214
|
+
|
215
|
+
interface _CreateCustomRoutingListenerResponseSuccess
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCustomRoutingListenerResponse]
|
217
|
+
def listener: () -> Types::CustomRoutingListener
|
218
|
+
end
|
219
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_custom_routing_listener-instance_method
|
220
|
+
def create_custom_routing_listener: (
|
221
|
+
accelerator_arn: ::String,
|
222
|
+
port_ranges: Array[
|
223
|
+
{
|
224
|
+
from_port: ::Integer?,
|
225
|
+
to_port: ::Integer?
|
226
|
+
},
|
227
|
+
],
|
228
|
+
idempotency_token: ::String
|
229
|
+
) -> _CreateCustomRoutingListenerResponseSuccess
|
230
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomRoutingListenerResponseSuccess
|
231
|
+
|
232
|
+
interface _CreateEndpointGroupResponseSuccess
|
233
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateEndpointGroupResponse]
|
234
|
+
def endpoint_group: () -> Types::EndpointGroup
|
235
|
+
end
|
236
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_endpoint_group-instance_method
|
237
|
+
def create_endpoint_group: (
|
238
|
+
listener_arn: ::String,
|
239
|
+
endpoint_group_region: ::String,
|
240
|
+
?endpoint_configurations: Array[
|
241
|
+
{
|
242
|
+
endpoint_id: ::String?,
|
243
|
+
weight: ::Integer?,
|
244
|
+
client_ip_preservation_enabled: bool?,
|
245
|
+
attachment_arn: ::String?
|
246
|
+
},
|
247
|
+
],
|
248
|
+
?traffic_dial_percentage: ::Float,
|
249
|
+
?health_check_port: ::Integer,
|
250
|
+
?health_check_protocol: ("TCP" | "HTTP" | "HTTPS"),
|
251
|
+
?health_check_path: ::String,
|
252
|
+
?health_check_interval_seconds: ::Integer,
|
253
|
+
?threshold_count: ::Integer,
|
254
|
+
idempotency_token: ::String,
|
255
|
+
?port_overrides: Array[
|
256
|
+
{
|
257
|
+
listener_port: ::Integer?,
|
258
|
+
endpoint_port: ::Integer?
|
259
|
+
},
|
260
|
+
]
|
261
|
+
) -> _CreateEndpointGroupResponseSuccess
|
262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEndpointGroupResponseSuccess
|
263
|
+
|
264
|
+
interface _CreateListenerResponseSuccess
|
265
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateListenerResponse]
|
266
|
+
def listener: () -> Types::Listener
|
267
|
+
end
|
268
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#create_listener-instance_method
|
269
|
+
def create_listener: (
|
270
|
+
accelerator_arn: ::String,
|
271
|
+
port_ranges: Array[
|
272
|
+
{
|
273
|
+
from_port: ::Integer?,
|
274
|
+
to_port: ::Integer?
|
275
|
+
},
|
276
|
+
],
|
277
|
+
protocol: ("TCP" | "UDP"),
|
278
|
+
?client_affinity: ("NONE" | "SOURCE_IP"),
|
279
|
+
idempotency_token: ::String
|
280
|
+
) -> _CreateListenerResponseSuccess
|
281
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListenerResponseSuccess
|
282
|
+
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_accelerator-instance_method
|
284
|
+
def delete_accelerator: (
|
285
|
+
accelerator_arn: ::String
|
286
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
287
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
288
|
+
|
289
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_cross_account_attachment-instance_method
|
290
|
+
def delete_cross_account_attachment: (
|
291
|
+
attachment_arn: ::String
|
292
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
293
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
294
|
+
|
295
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_custom_routing_accelerator-instance_method
|
296
|
+
def delete_custom_routing_accelerator: (
|
297
|
+
accelerator_arn: ::String
|
298
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
299
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
300
|
+
|
301
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_custom_routing_endpoint_group-instance_method
|
302
|
+
def delete_custom_routing_endpoint_group: (
|
303
|
+
endpoint_group_arn: ::String
|
304
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
305
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
306
|
+
|
307
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_custom_routing_listener-instance_method
|
308
|
+
def delete_custom_routing_listener: (
|
309
|
+
listener_arn: ::String
|
310
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
311
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
312
|
+
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_endpoint_group-instance_method
|
314
|
+
def delete_endpoint_group: (
|
315
|
+
endpoint_group_arn: ::String
|
316
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
317
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
318
|
+
|
319
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#delete_listener-instance_method
|
320
|
+
def delete_listener: (
|
321
|
+
listener_arn: ::String
|
322
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
323
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
324
|
+
|
325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#deny_custom_routing_traffic-instance_method
|
326
|
+
def deny_custom_routing_traffic: (
|
327
|
+
endpoint_group_arn: ::String,
|
328
|
+
endpoint_id: ::String,
|
329
|
+
?destination_addresses: Array[::String],
|
330
|
+
?destination_ports: Array[::Integer],
|
331
|
+
?deny_all_traffic_to_endpoint: bool
|
332
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
333
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
334
|
+
|
335
|
+
interface _DeprovisionByoipCidrResponseSuccess
|
336
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeprovisionByoipCidrResponse]
|
337
|
+
def byoip_cidr: () -> Types::ByoipCidr
|
338
|
+
end
|
339
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#deprovision_byoip_cidr-instance_method
|
340
|
+
def deprovision_byoip_cidr: (
|
341
|
+
cidr: ::String
|
342
|
+
) -> _DeprovisionByoipCidrResponseSuccess
|
343
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeprovisionByoipCidrResponseSuccess
|
344
|
+
|
345
|
+
interface _DescribeAcceleratorResponseSuccess
|
346
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAcceleratorResponse]
|
347
|
+
def accelerator: () -> Types::Accelerator
|
348
|
+
end
|
349
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_accelerator-instance_method
|
350
|
+
def describe_accelerator: (
|
351
|
+
accelerator_arn: ::String
|
352
|
+
) -> _DescribeAcceleratorResponseSuccess
|
353
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAcceleratorResponseSuccess
|
354
|
+
|
355
|
+
interface _DescribeAcceleratorAttributesResponseSuccess
|
356
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAcceleratorAttributesResponse]
|
357
|
+
def accelerator_attributes: () -> Types::AcceleratorAttributes
|
358
|
+
end
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_accelerator_attributes-instance_method
|
360
|
+
def describe_accelerator_attributes: (
|
361
|
+
accelerator_arn: ::String
|
362
|
+
) -> _DescribeAcceleratorAttributesResponseSuccess
|
363
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAcceleratorAttributesResponseSuccess
|
364
|
+
|
365
|
+
interface _DescribeCrossAccountAttachmentResponseSuccess
|
366
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCrossAccountAttachmentResponse]
|
367
|
+
def cross_account_attachment: () -> Types::Attachment
|
368
|
+
end
|
369
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_cross_account_attachment-instance_method
|
370
|
+
def describe_cross_account_attachment: (
|
371
|
+
attachment_arn: ::String
|
372
|
+
) -> _DescribeCrossAccountAttachmentResponseSuccess
|
373
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCrossAccountAttachmentResponseSuccess
|
374
|
+
|
375
|
+
interface _DescribeCustomRoutingAcceleratorResponseSuccess
|
376
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomRoutingAcceleratorResponse]
|
377
|
+
def accelerator: () -> Types::CustomRoutingAccelerator
|
378
|
+
end
|
379
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_custom_routing_accelerator-instance_method
|
380
|
+
def describe_custom_routing_accelerator: (
|
381
|
+
accelerator_arn: ::String
|
382
|
+
) -> _DescribeCustomRoutingAcceleratorResponseSuccess
|
383
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomRoutingAcceleratorResponseSuccess
|
384
|
+
|
385
|
+
interface _DescribeCustomRoutingAcceleratorAttributesResponseSuccess
|
386
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomRoutingAcceleratorAttributesResponse]
|
387
|
+
def accelerator_attributes: () -> Types::CustomRoutingAcceleratorAttributes
|
388
|
+
end
|
389
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_custom_routing_accelerator_attributes-instance_method
|
390
|
+
def describe_custom_routing_accelerator_attributes: (
|
391
|
+
accelerator_arn: ::String
|
392
|
+
) -> _DescribeCustomRoutingAcceleratorAttributesResponseSuccess
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomRoutingAcceleratorAttributesResponseSuccess
|
394
|
+
|
395
|
+
interface _DescribeCustomRoutingEndpointGroupResponseSuccess
|
396
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomRoutingEndpointGroupResponse]
|
397
|
+
def endpoint_group: () -> Types::CustomRoutingEndpointGroup
|
398
|
+
end
|
399
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_custom_routing_endpoint_group-instance_method
|
400
|
+
def describe_custom_routing_endpoint_group: (
|
401
|
+
endpoint_group_arn: ::String
|
402
|
+
) -> _DescribeCustomRoutingEndpointGroupResponseSuccess
|
403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomRoutingEndpointGroupResponseSuccess
|
404
|
+
|
405
|
+
interface _DescribeCustomRoutingListenerResponseSuccess
|
406
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeCustomRoutingListenerResponse]
|
407
|
+
def listener: () -> Types::CustomRoutingListener
|
408
|
+
end
|
409
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_custom_routing_listener-instance_method
|
410
|
+
def describe_custom_routing_listener: (
|
411
|
+
listener_arn: ::String
|
412
|
+
) -> _DescribeCustomRoutingListenerResponseSuccess
|
413
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeCustomRoutingListenerResponseSuccess
|
414
|
+
|
415
|
+
interface _DescribeEndpointGroupResponseSuccess
|
416
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEndpointGroupResponse]
|
417
|
+
def endpoint_group: () -> Types::EndpointGroup
|
418
|
+
end
|
419
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_endpoint_group-instance_method
|
420
|
+
def describe_endpoint_group: (
|
421
|
+
endpoint_group_arn: ::String
|
422
|
+
) -> _DescribeEndpointGroupResponseSuccess
|
423
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEndpointGroupResponseSuccess
|
424
|
+
|
425
|
+
interface _DescribeListenerResponseSuccess
|
426
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeListenerResponse]
|
427
|
+
def listener: () -> Types::Listener
|
428
|
+
end
|
429
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#describe_listener-instance_method
|
430
|
+
def describe_listener: (
|
431
|
+
listener_arn: ::String
|
432
|
+
) -> _DescribeListenerResponseSuccess
|
433
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeListenerResponseSuccess
|
434
|
+
|
435
|
+
interface _ListAcceleratorsResponseSuccess
|
436
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAcceleratorsResponse]
|
437
|
+
def accelerators: () -> ::Array[Types::Accelerator]
|
438
|
+
def next_token: () -> ::String
|
439
|
+
end
|
440
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_accelerators-instance_method
|
441
|
+
def list_accelerators: (
|
442
|
+
?max_results: ::Integer,
|
443
|
+
?next_token: ::String
|
444
|
+
) -> _ListAcceleratorsResponseSuccess
|
445
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAcceleratorsResponseSuccess
|
446
|
+
|
447
|
+
interface _ListByoipCidrsResponseSuccess
|
448
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListByoipCidrsResponse]
|
449
|
+
def byoip_cidrs: () -> ::Array[Types::ByoipCidr]
|
450
|
+
def next_token: () -> ::String
|
451
|
+
end
|
452
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_byoip_cidrs-instance_method
|
453
|
+
def list_byoip_cidrs: (
|
454
|
+
?max_results: ::Integer,
|
455
|
+
?next_token: ::String
|
456
|
+
) -> _ListByoipCidrsResponseSuccess
|
457
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListByoipCidrsResponseSuccess
|
458
|
+
|
459
|
+
interface _ListCrossAccountAttachmentsResponseSuccess
|
460
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCrossAccountAttachmentsResponse]
|
461
|
+
def cross_account_attachments: () -> ::Array[Types::Attachment]
|
462
|
+
def next_token: () -> ::String
|
463
|
+
end
|
464
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_cross_account_attachments-instance_method
|
465
|
+
def list_cross_account_attachments: (
|
466
|
+
?max_results: ::Integer,
|
467
|
+
?next_token: ::String
|
468
|
+
) -> _ListCrossAccountAttachmentsResponseSuccess
|
469
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCrossAccountAttachmentsResponseSuccess
|
470
|
+
|
471
|
+
interface _ListCrossAccountResourceAccountsResponseSuccess
|
472
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCrossAccountResourceAccountsResponse]
|
473
|
+
def resource_owner_aws_account_ids: () -> ::Array[::String]
|
474
|
+
end
|
475
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_cross_account_resource_accounts-instance_method
|
476
|
+
def list_cross_account_resource_accounts: (
|
477
|
+
) -> _ListCrossAccountResourceAccountsResponseSuccess
|
478
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCrossAccountResourceAccountsResponseSuccess
|
479
|
+
|
480
|
+
interface _ListCrossAccountResourcesResponseSuccess
|
481
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCrossAccountResourcesResponse]
|
482
|
+
def cross_account_resources: () -> ::Array[Types::CrossAccountResource]
|
483
|
+
def next_token: () -> ::String
|
484
|
+
end
|
485
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_cross_account_resources-instance_method
|
486
|
+
def list_cross_account_resources: (
|
487
|
+
?accelerator_arn: ::String,
|
488
|
+
resource_owner_aws_account_id: ::String,
|
489
|
+
?max_results: ::Integer,
|
490
|
+
?next_token: ::String
|
491
|
+
) -> _ListCrossAccountResourcesResponseSuccess
|
492
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCrossAccountResourcesResponseSuccess
|
493
|
+
|
494
|
+
interface _ListCustomRoutingAcceleratorsResponseSuccess
|
495
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomRoutingAcceleratorsResponse]
|
496
|
+
def accelerators: () -> ::Array[Types::CustomRoutingAccelerator]
|
497
|
+
def next_token: () -> ::String
|
498
|
+
end
|
499
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_custom_routing_accelerators-instance_method
|
500
|
+
def list_custom_routing_accelerators: (
|
501
|
+
?max_results: ::Integer,
|
502
|
+
?next_token: ::String
|
503
|
+
) -> _ListCustomRoutingAcceleratorsResponseSuccess
|
504
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomRoutingAcceleratorsResponseSuccess
|
505
|
+
|
506
|
+
interface _ListCustomRoutingEndpointGroupsResponseSuccess
|
507
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomRoutingEndpointGroupsResponse]
|
508
|
+
def endpoint_groups: () -> ::Array[Types::CustomRoutingEndpointGroup]
|
509
|
+
def next_token: () -> ::String
|
510
|
+
end
|
511
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_custom_routing_endpoint_groups-instance_method
|
512
|
+
def list_custom_routing_endpoint_groups: (
|
513
|
+
listener_arn: ::String,
|
514
|
+
?max_results: ::Integer,
|
515
|
+
?next_token: ::String
|
516
|
+
) -> _ListCustomRoutingEndpointGroupsResponseSuccess
|
517
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomRoutingEndpointGroupsResponseSuccess
|
518
|
+
|
519
|
+
interface _ListCustomRoutingListenersResponseSuccess
|
520
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomRoutingListenersResponse]
|
521
|
+
def listeners: () -> ::Array[Types::CustomRoutingListener]
|
522
|
+
def next_token: () -> ::String
|
523
|
+
end
|
524
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_custom_routing_listeners-instance_method
|
525
|
+
def list_custom_routing_listeners: (
|
526
|
+
accelerator_arn: ::String,
|
527
|
+
?max_results: ::Integer,
|
528
|
+
?next_token: ::String
|
529
|
+
) -> _ListCustomRoutingListenersResponseSuccess
|
530
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomRoutingListenersResponseSuccess
|
531
|
+
|
532
|
+
interface _ListCustomRoutingPortMappingsResponseSuccess
|
533
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomRoutingPortMappingsResponse]
|
534
|
+
def port_mappings: () -> ::Array[Types::PortMapping]
|
535
|
+
def next_token: () -> ::String
|
536
|
+
end
|
537
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_custom_routing_port_mappings-instance_method
|
538
|
+
def list_custom_routing_port_mappings: (
|
539
|
+
accelerator_arn: ::String,
|
540
|
+
?endpoint_group_arn: ::String,
|
541
|
+
?max_results: ::Integer,
|
542
|
+
?next_token: ::String
|
543
|
+
) -> _ListCustomRoutingPortMappingsResponseSuccess
|
544
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomRoutingPortMappingsResponseSuccess
|
545
|
+
|
546
|
+
interface _ListCustomRoutingPortMappingsByDestinationResponseSuccess
|
547
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCustomRoutingPortMappingsByDestinationResponse]
|
548
|
+
def destination_port_mappings: () -> ::Array[Types::DestinationPortMapping]
|
549
|
+
def next_token: () -> ::String
|
550
|
+
end
|
551
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_custom_routing_port_mappings_by_destination-instance_method
|
552
|
+
def list_custom_routing_port_mappings_by_destination: (
|
553
|
+
endpoint_id: ::String,
|
554
|
+
destination_address: ::String,
|
555
|
+
?max_results: ::Integer,
|
556
|
+
?next_token: ::String
|
557
|
+
) -> _ListCustomRoutingPortMappingsByDestinationResponseSuccess
|
558
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCustomRoutingPortMappingsByDestinationResponseSuccess
|
559
|
+
|
560
|
+
interface _ListEndpointGroupsResponseSuccess
|
561
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEndpointGroupsResponse]
|
562
|
+
def endpoint_groups: () -> ::Array[Types::EndpointGroup]
|
563
|
+
def next_token: () -> ::String
|
564
|
+
end
|
565
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_endpoint_groups-instance_method
|
566
|
+
def list_endpoint_groups: (
|
567
|
+
listener_arn: ::String,
|
568
|
+
?max_results: ::Integer,
|
569
|
+
?next_token: ::String
|
570
|
+
) -> _ListEndpointGroupsResponseSuccess
|
571
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEndpointGroupsResponseSuccess
|
572
|
+
|
573
|
+
interface _ListListenersResponseSuccess
|
574
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListListenersResponse]
|
575
|
+
def listeners: () -> ::Array[Types::Listener]
|
576
|
+
def next_token: () -> ::String
|
577
|
+
end
|
578
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_listeners-instance_method
|
579
|
+
def list_listeners: (
|
580
|
+
accelerator_arn: ::String,
|
581
|
+
?max_results: ::Integer,
|
582
|
+
?next_token: ::String
|
583
|
+
) -> _ListListenersResponseSuccess
|
584
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListListenersResponseSuccess
|
585
|
+
|
586
|
+
interface _ListTagsForResourceResponseSuccess
|
587
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
588
|
+
def tags: () -> ::Array[Types::Tag]
|
589
|
+
end
|
590
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#list_tags_for_resource-instance_method
|
591
|
+
def list_tags_for_resource: (
|
592
|
+
resource_arn: ::String
|
593
|
+
) -> _ListTagsForResourceResponseSuccess
|
594
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
595
|
+
|
596
|
+
interface _ProvisionByoipCidrResponseSuccess
|
597
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ProvisionByoipCidrResponse]
|
598
|
+
def byoip_cidr: () -> Types::ByoipCidr
|
599
|
+
end
|
600
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#provision_byoip_cidr-instance_method
|
601
|
+
def provision_byoip_cidr: (
|
602
|
+
cidr: ::String,
|
603
|
+
cidr_authorization_context: {
|
604
|
+
message: ::String,
|
605
|
+
signature: ::String
|
606
|
+
}
|
607
|
+
) -> _ProvisionByoipCidrResponseSuccess
|
608
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ProvisionByoipCidrResponseSuccess
|
609
|
+
|
610
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#remove_custom_routing_endpoints-instance_method
|
611
|
+
def remove_custom_routing_endpoints: (
|
612
|
+
endpoint_ids: Array[::String],
|
613
|
+
endpoint_group_arn: ::String
|
614
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
615
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
616
|
+
|
617
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#remove_endpoints-instance_method
|
618
|
+
def remove_endpoints: (
|
619
|
+
endpoint_identifiers: Array[
|
620
|
+
{
|
621
|
+
endpoint_id: ::String,
|
622
|
+
client_ip_preservation_enabled: bool?
|
623
|
+
},
|
624
|
+
],
|
625
|
+
endpoint_group_arn: ::String
|
626
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
627
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
628
|
+
|
629
|
+
interface _TagResourceResponseSuccess
|
630
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
631
|
+
end
|
632
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#tag_resource-instance_method
|
633
|
+
def tag_resource: (
|
634
|
+
resource_arn: ::String,
|
635
|
+
tags: Array[
|
636
|
+
{
|
637
|
+
key: ::String,
|
638
|
+
value: ::String
|
639
|
+
},
|
640
|
+
]
|
641
|
+
) -> _TagResourceResponseSuccess
|
642
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
643
|
+
|
644
|
+
interface _UntagResourceResponseSuccess
|
645
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
646
|
+
end
|
647
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#untag_resource-instance_method
|
648
|
+
def untag_resource: (
|
649
|
+
resource_arn: ::String,
|
650
|
+
tag_keys: Array[::String]
|
651
|
+
) -> _UntagResourceResponseSuccess
|
652
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
653
|
+
|
654
|
+
interface _UpdateAcceleratorResponseSuccess
|
655
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAcceleratorResponse]
|
656
|
+
def accelerator: () -> Types::Accelerator
|
657
|
+
end
|
658
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_accelerator-instance_method
|
659
|
+
def update_accelerator: (
|
660
|
+
accelerator_arn: ::String,
|
661
|
+
?name: ::String,
|
662
|
+
?ip_address_type: ("IPV4" | "DUAL_STACK"),
|
663
|
+
?enabled: bool
|
664
|
+
) -> _UpdateAcceleratorResponseSuccess
|
665
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAcceleratorResponseSuccess
|
666
|
+
|
667
|
+
interface _UpdateAcceleratorAttributesResponseSuccess
|
668
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAcceleratorAttributesResponse]
|
669
|
+
def accelerator_attributes: () -> Types::AcceleratorAttributes
|
670
|
+
end
|
671
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_accelerator_attributes-instance_method
|
672
|
+
def update_accelerator_attributes: (
|
673
|
+
accelerator_arn: ::String,
|
674
|
+
?flow_logs_enabled: bool,
|
675
|
+
?flow_logs_s3_bucket: ::String,
|
676
|
+
?flow_logs_s3_prefix: ::String
|
677
|
+
) -> _UpdateAcceleratorAttributesResponseSuccess
|
678
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAcceleratorAttributesResponseSuccess
|
679
|
+
|
680
|
+
interface _UpdateCrossAccountAttachmentResponseSuccess
|
681
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCrossAccountAttachmentResponse]
|
682
|
+
def cross_account_attachment: () -> Types::Attachment
|
683
|
+
end
|
684
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_cross_account_attachment-instance_method
|
685
|
+
def update_cross_account_attachment: (
|
686
|
+
attachment_arn: ::String,
|
687
|
+
?name: ::String,
|
688
|
+
?add_principals: Array[::String],
|
689
|
+
?remove_principals: Array[::String],
|
690
|
+
?add_resources: Array[
|
691
|
+
{
|
692
|
+
endpoint_id: ::String,
|
693
|
+
region: ::String?
|
694
|
+
},
|
695
|
+
],
|
696
|
+
?remove_resources: Array[
|
697
|
+
{
|
698
|
+
endpoint_id: ::String,
|
699
|
+
region: ::String?
|
700
|
+
},
|
701
|
+
]
|
702
|
+
) -> _UpdateCrossAccountAttachmentResponseSuccess
|
703
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCrossAccountAttachmentResponseSuccess
|
704
|
+
|
705
|
+
interface _UpdateCustomRoutingAcceleratorResponseSuccess
|
706
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCustomRoutingAcceleratorResponse]
|
707
|
+
def accelerator: () -> Types::CustomRoutingAccelerator
|
708
|
+
end
|
709
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_custom_routing_accelerator-instance_method
|
710
|
+
def update_custom_routing_accelerator: (
|
711
|
+
accelerator_arn: ::String,
|
712
|
+
?name: ::String,
|
713
|
+
?ip_address_type: ("IPV4" | "DUAL_STACK"),
|
714
|
+
?enabled: bool
|
715
|
+
) -> _UpdateCustomRoutingAcceleratorResponseSuccess
|
716
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomRoutingAcceleratorResponseSuccess
|
717
|
+
|
718
|
+
interface _UpdateCustomRoutingAcceleratorAttributesResponseSuccess
|
719
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCustomRoutingAcceleratorAttributesResponse]
|
720
|
+
def accelerator_attributes: () -> Types::CustomRoutingAcceleratorAttributes
|
721
|
+
end
|
722
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_custom_routing_accelerator_attributes-instance_method
|
723
|
+
def update_custom_routing_accelerator_attributes: (
|
724
|
+
accelerator_arn: ::String,
|
725
|
+
?flow_logs_enabled: bool,
|
726
|
+
?flow_logs_s3_bucket: ::String,
|
727
|
+
?flow_logs_s3_prefix: ::String
|
728
|
+
) -> _UpdateCustomRoutingAcceleratorAttributesResponseSuccess
|
729
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomRoutingAcceleratorAttributesResponseSuccess
|
730
|
+
|
731
|
+
interface _UpdateCustomRoutingListenerResponseSuccess
|
732
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCustomRoutingListenerResponse]
|
733
|
+
def listener: () -> Types::CustomRoutingListener
|
734
|
+
end
|
735
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_custom_routing_listener-instance_method
|
736
|
+
def update_custom_routing_listener: (
|
737
|
+
listener_arn: ::String,
|
738
|
+
port_ranges: Array[
|
739
|
+
{
|
740
|
+
from_port: ::Integer?,
|
741
|
+
to_port: ::Integer?
|
742
|
+
},
|
743
|
+
]
|
744
|
+
) -> _UpdateCustomRoutingListenerResponseSuccess
|
745
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCustomRoutingListenerResponseSuccess
|
746
|
+
|
747
|
+
interface _UpdateEndpointGroupResponseSuccess
|
748
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateEndpointGroupResponse]
|
749
|
+
def endpoint_group: () -> Types::EndpointGroup
|
750
|
+
end
|
751
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_endpoint_group-instance_method
|
752
|
+
def update_endpoint_group: (
|
753
|
+
endpoint_group_arn: ::String,
|
754
|
+
?endpoint_configurations: Array[
|
755
|
+
{
|
756
|
+
endpoint_id: ::String?,
|
757
|
+
weight: ::Integer?,
|
758
|
+
client_ip_preservation_enabled: bool?,
|
759
|
+
attachment_arn: ::String?
|
760
|
+
},
|
761
|
+
],
|
762
|
+
?traffic_dial_percentage: ::Float,
|
763
|
+
?health_check_port: ::Integer,
|
764
|
+
?health_check_protocol: ("TCP" | "HTTP" | "HTTPS"),
|
765
|
+
?health_check_path: ::String,
|
766
|
+
?health_check_interval_seconds: ::Integer,
|
767
|
+
?threshold_count: ::Integer,
|
768
|
+
?port_overrides: Array[
|
769
|
+
{
|
770
|
+
listener_port: ::Integer?,
|
771
|
+
endpoint_port: ::Integer?
|
772
|
+
},
|
773
|
+
]
|
774
|
+
) -> _UpdateEndpointGroupResponseSuccess
|
775
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEndpointGroupResponseSuccess
|
776
|
+
|
777
|
+
interface _UpdateListenerResponseSuccess
|
778
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateListenerResponse]
|
779
|
+
def listener: () -> Types::Listener
|
780
|
+
end
|
781
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#update_listener-instance_method
|
782
|
+
def update_listener: (
|
783
|
+
listener_arn: ::String,
|
784
|
+
?port_ranges: Array[
|
785
|
+
{
|
786
|
+
from_port: ::Integer?,
|
787
|
+
to_port: ::Integer?
|
788
|
+
},
|
789
|
+
],
|
790
|
+
?protocol: ("TCP" | "UDP"),
|
791
|
+
?client_affinity: ("NONE" | "SOURCE_IP")
|
792
|
+
) -> _UpdateListenerResponseSuccess
|
793
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateListenerResponseSuccess
|
794
|
+
|
795
|
+
interface _WithdrawByoipCidrResponseSuccess
|
796
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::WithdrawByoipCidrResponse]
|
797
|
+
def byoip_cidr: () -> Types::ByoipCidr
|
798
|
+
end
|
799
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlobalAccelerator/Client.html#withdraw_byoip_cidr-instance_method
|
800
|
+
def withdraw_byoip_cidr: (
|
801
|
+
cidr: ::String
|
802
|
+
) -> _WithdrawByoipCidrResponseSuccess
|
803
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _WithdrawByoipCidrResponseSuccess
|
804
|
+
end
|
805
|
+
end
|
806
|
+
end
|
807
|
+
|