aws-sdk-vpclattice 1.10.0 → 1.11.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,1029 @@
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 VPCLattice
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/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 _BatchUpdateRuleResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateRuleResponse]
77
+ def successful: () -> ::Array[Types::RuleUpdateSuccess]
78
+ def unsuccessful: () -> ::Array[Types::RuleUpdateFailure]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#batch_update_rule-instance_method
81
+ def batch_update_rule: (
82
+ listener_identifier: ::String,
83
+ rules: Array[
84
+ {
85
+ action: {
86
+ fixed_response: {
87
+ status_code: ::Integer
88
+ }?,
89
+ forward: {
90
+ target_groups: Array[
91
+ {
92
+ target_group_identifier: ::String,
93
+ weight: ::Integer?
94
+ },
95
+ ]
96
+ }?
97
+ }?,
98
+ match: {
99
+ http_match: {
100
+ header_matches: Array[
101
+ {
102
+ case_sensitive: bool?,
103
+ match: {
104
+ contains: ::String?,
105
+ exact: ::String?,
106
+ prefix: ::String?
107
+ },
108
+ name: ::String
109
+ },
110
+ ]?,
111
+ method: ::String?,
112
+ path_match: {
113
+ case_sensitive: bool?,
114
+ match: {
115
+ exact: ::String?,
116
+ prefix: ::String?
117
+ }
118
+ }?
119
+ }?
120
+ }?,
121
+ priority: ::Integer?,
122
+ rule_identifier: ::String
123
+ },
124
+ ],
125
+ service_identifier: ::String
126
+ ) -> _BatchUpdateRuleResponseSuccess
127
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateRuleResponseSuccess
128
+
129
+ interface _CreateAccessLogSubscriptionResponseSuccess
130
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccessLogSubscriptionResponse]
131
+ def arn: () -> ::String
132
+ def destination_arn: () -> ::String
133
+ def id: () -> ::String
134
+ def resource_arn: () -> ::String
135
+ def resource_id: () -> ::String
136
+ end
137
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_access_log_subscription-instance_method
138
+ def create_access_log_subscription: (
139
+ ?client_token: ::String,
140
+ destination_arn: ::String,
141
+ resource_identifier: ::String,
142
+ ?tags: Hash[::String, ::String]
143
+ ) -> _CreateAccessLogSubscriptionResponseSuccess
144
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessLogSubscriptionResponseSuccess
145
+
146
+ interface _CreateListenerResponseSuccess
147
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateListenerResponse]
148
+ def arn: () -> ::String
149
+ def default_action: () -> Types::RuleAction
150
+ def id: () -> ::String
151
+ def name: () -> ::String
152
+ def port: () -> ::Integer
153
+ def protocol: () -> ("HTTP" | "HTTPS")
154
+ def service_arn: () -> ::String
155
+ def service_id: () -> ::String
156
+ end
157
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_listener-instance_method
158
+ def create_listener: (
159
+ ?client_token: ::String,
160
+ default_action: {
161
+ fixed_response: {
162
+ status_code: ::Integer
163
+ }?,
164
+ forward: {
165
+ target_groups: Array[
166
+ {
167
+ target_group_identifier: ::String,
168
+ weight: ::Integer?
169
+ },
170
+ ]
171
+ }?
172
+ },
173
+ name: ::String,
174
+ ?port: ::Integer,
175
+ protocol: ("HTTP" | "HTTPS"),
176
+ service_identifier: ::String,
177
+ ?tags: Hash[::String, ::String]
178
+ ) -> _CreateListenerResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListenerResponseSuccess
180
+
181
+ interface _CreateRuleResponseSuccess
182
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRuleResponse]
183
+ def action: () -> Types::RuleAction
184
+ def arn: () -> ::String
185
+ def id: () -> ::String
186
+ def match: () -> Types::RuleMatch
187
+ def name: () -> ::String
188
+ def priority: () -> ::Integer
189
+ end
190
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_rule-instance_method
191
+ def create_rule: (
192
+ action: {
193
+ fixed_response: {
194
+ status_code: ::Integer
195
+ }?,
196
+ forward: {
197
+ target_groups: Array[
198
+ {
199
+ target_group_identifier: ::String,
200
+ weight: ::Integer?
201
+ },
202
+ ]
203
+ }?
204
+ },
205
+ ?client_token: ::String,
206
+ listener_identifier: ::String,
207
+ match: {
208
+ http_match: {
209
+ header_matches: Array[
210
+ {
211
+ case_sensitive: bool?,
212
+ match: {
213
+ contains: ::String?,
214
+ exact: ::String?,
215
+ prefix: ::String?
216
+ },
217
+ name: ::String
218
+ },
219
+ ]?,
220
+ method: ::String?,
221
+ path_match: {
222
+ case_sensitive: bool?,
223
+ match: {
224
+ exact: ::String?,
225
+ prefix: ::String?
226
+ }
227
+ }?
228
+ }?
229
+ },
230
+ name: ::String,
231
+ priority: ::Integer,
232
+ service_identifier: ::String,
233
+ ?tags: Hash[::String, ::String]
234
+ ) -> _CreateRuleResponseSuccess
235
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRuleResponseSuccess
236
+
237
+ interface _CreateServiceResponseSuccess
238
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceResponse]
239
+ def arn: () -> ::String
240
+ def auth_type: () -> ("NONE" | "AWS_IAM")
241
+ def certificate_arn: () -> ::String
242
+ def custom_domain_name: () -> ::String
243
+ def dns_entry: () -> Types::DnsEntry
244
+ def id: () -> ::String
245
+ def name: () -> ::String
246
+ def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
247
+ end
248
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service-instance_method
249
+ def create_service: (
250
+ ?auth_type: ("NONE" | "AWS_IAM"),
251
+ ?certificate_arn: ::String,
252
+ ?client_token: ::String,
253
+ ?custom_domain_name: ::String,
254
+ name: ::String,
255
+ ?tags: Hash[::String, ::String]
256
+ ) -> _CreateServiceResponseSuccess
257
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceResponseSuccess
258
+
259
+ interface _CreateServiceNetworkResponseSuccess
260
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceNetworkResponse]
261
+ def arn: () -> ::String
262
+ def auth_type: () -> ("NONE" | "AWS_IAM")
263
+ def id: () -> ::String
264
+ def name: () -> ::String
265
+ end
266
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network-instance_method
267
+ def create_service_network: (
268
+ ?auth_type: ("NONE" | "AWS_IAM"),
269
+ ?client_token: ::String,
270
+ name: ::String,
271
+ ?tags: Hash[::String, ::String]
272
+ ) -> _CreateServiceNetworkResponseSuccess
273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkResponseSuccess
274
+
275
+ interface _CreateServiceNetworkServiceAssociationResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceNetworkServiceAssociationResponse]
277
+ def arn: () -> ::String
278
+ def created_by: () -> ::String
279
+ def custom_domain_name: () -> ::String
280
+ def dns_entry: () -> Types::DnsEntry
281
+ def id: () -> ::String
282
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network_service_association-instance_method
285
+ def create_service_network_service_association: (
286
+ ?client_token: ::String,
287
+ service_identifier: ::String,
288
+ service_network_identifier: ::String,
289
+ ?tags: Hash[::String, ::String]
290
+ ) -> _CreateServiceNetworkServiceAssociationResponseSuccess
291
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkServiceAssociationResponseSuccess
292
+
293
+ interface _CreateServiceNetworkVpcAssociationResponseSuccess
294
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceNetworkVpcAssociationResponse]
295
+ def arn: () -> ::String
296
+ def created_by: () -> ::String
297
+ def id: () -> ::String
298
+ def security_group_ids: () -> ::Array[::String]
299
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network_vpc_association-instance_method
302
+ def create_service_network_vpc_association: (
303
+ ?client_token: ::String,
304
+ ?security_group_ids: Array[::String],
305
+ service_network_identifier: ::String,
306
+ ?tags: Hash[::String, ::String],
307
+ vpc_identifier: ::String
308
+ ) -> _CreateServiceNetworkVpcAssociationResponseSuccess
309
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkVpcAssociationResponseSuccess
310
+
311
+ interface _CreateTargetGroupResponseSuccess
312
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTargetGroupResponse]
313
+ def arn: () -> ::String
314
+ def config: () -> Types::TargetGroupConfig
315
+ def id: () -> ::String
316
+ def name: () -> ::String
317
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
318
+ def type: () -> ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
319
+ end
320
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_target_group-instance_method
321
+ def create_target_group: (
322
+ ?client_token: ::String,
323
+ ?config: {
324
+ health_check: {
325
+ enabled: bool?,
326
+ health_check_interval_seconds: ::Integer?,
327
+ health_check_timeout_seconds: ::Integer?,
328
+ healthy_threshold_count: ::Integer?,
329
+ matcher: {
330
+ http_code: ::String?
331
+ }?,
332
+ path: ::String?,
333
+ port: ::Integer?,
334
+ protocol: ("HTTP" | "HTTPS")?,
335
+ protocol_version: ("HTTP1" | "HTTP2")?,
336
+ unhealthy_threshold_count: ::Integer?
337
+ }?,
338
+ ip_address_type: ("IPV4" | "IPV6")?,
339
+ lambda_event_structure_version: ("V1" | "V2")?,
340
+ port: ::Integer?,
341
+ protocol: ("HTTP" | "HTTPS")?,
342
+ protocol_version: ("HTTP1" | "HTTP2" | "GRPC")?,
343
+ vpc_identifier: ::String?
344
+ },
345
+ name: ::String,
346
+ ?tags: Hash[::String, ::String],
347
+ type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
348
+ ) -> _CreateTargetGroupResponseSuccess
349
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTargetGroupResponseSuccess
350
+
351
+ interface _DeleteAccessLogSubscriptionResponseSuccess
352
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccessLogSubscriptionResponse]
353
+ end
354
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_access_log_subscription-instance_method
355
+ def delete_access_log_subscription: (
356
+ access_log_subscription_identifier: ::String
357
+ ) -> _DeleteAccessLogSubscriptionResponseSuccess
358
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccessLogSubscriptionResponseSuccess
359
+
360
+ interface _DeleteAuthPolicyResponseSuccess
361
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAuthPolicyResponse]
362
+ end
363
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_auth_policy-instance_method
364
+ def delete_auth_policy: (
365
+ resource_identifier: ::String
366
+ ) -> _DeleteAuthPolicyResponseSuccess
367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAuthPolicyResponseSuccess
368
+
369
+ interface _DeleteListenerResponseSuccess
370
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteListenerResponse]
371
+ end
372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_listener-instance_method
373
+ def delete_listener: (
374
+ listener_identifier: ::String,
375
+ service_identifier: ::String
376
+ ) -> _DeleteListenerResponseSuccess
377
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListenerResponseSuccess
378
+
379
+ interface _DeleteResourcePolicyResponseSuccess
380
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
381
+ end
382
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_resource_policy-instance_method
383
+ def delete_resource_policy: (
384
+ resource_arn: ::String
385
+ ) -> _DeleteResourcePolicyResponseSuccess
386
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
387
+
388
+ interface _DeleteRuleResponseSuccess
389
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRuleResponse]
390
+ end
391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_rule-instance_method
392
+ def delete_rule: (
393
+ listener_identifier: ::String,
394
+ rule_identifier: ::String,
395
+ service_identifier: ::String
396
+ ) -> _DeleteRuleResponseSuccess
397
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRuleResponseSuccess
398
+
399
+ interface _DeleteServiceResponseSuccess
400
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceResponse]
401
+ def arn: () -> ::String
402
+ def id: () -> ::String
403
+ def name: () -> ::String
404
+ def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
405
+ end
406
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_service-instance_method
407
+ def delete_service: (
408
+ service_identifier: ::String
409
+ ) -> _DeleteServiceResponseSuccess
410
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceResponseSuccess
411
+
412
+ interface _DeleteServiceNetworkResponseSuccess
413
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceNetworkResponse]
414
+ end
415
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_service_network-instance_method
416
+ def delete_service_network: (
417
+ service_network_identifier: ::String
418
+ ) -> _DeleteServiceNetworkResponseSuccess
419
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceNetworkResponseSuccess
420
+
421
+ interface _DeleteServiceNetworkServiceAssociationResponseSuccess
422
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceNetworkServiceAssociationResponse]
423
+ def arn: () -> ::String
424
+ def id: () -> ::String
425
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_service_network_service_association-instance_method
428
+ def delete_service_network_service_association: (
429
+ service_network_service_association_identifier: ::String
430
+ ) -> _DeleteServiceNetworkServiceAssociationResponseSuccess
431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceNetworkServiceAssociationResponseSuccess
432
+
433
+ interface _DeleteServiceNetworkVpcAssociationResponseSuccess
434
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceNetworkVpcAssociationResponse]
435
+ def arn: () -> ::String
436
+ def id: () -> ::String
437
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
438
+ end
439
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_service_network_vpc_association-instance_method
440
+ def delete_service_network_vpc_association: (
441
+ service_network_vpc_association_identifier: ::String
442
+ ) -> _DeleteServiceNetworkVpcAssociationResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceNetworkVpcAssociationResponseSuccess
444
+
445
+ interface _DeleteTargetGroupResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTargetGroupResponse]
447
+ def arn: () -> ::String
448
+ def id: () -> ::String
449
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
450
+ end
451
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_target_group-instance_method
452
+ def delete_target_group: (
453
+ target_group_identifier: ::String
454
+ ) -> _DeleteTargetGroupResponseSuccess
455
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTargetGroupResponseSuccess
456
+
457
+ interface _DeregisterTargetsResponseSuccess
458
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterTargetsResponse]
459
+ def successful: () -> ::Array[Types::Target]
460
+ def unsuccessful: () -> ::Array[Types::TargetFailure]
461
+ end
462
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#deregister_targets-instance_method
463
+ def deregister_targets: (
464
+ target_group_identifier: ::String,
465
+ targets: Array[
466
+ {
467
+ id: ::String,
468
+ port: ::Integer?
469
+ },
470
+ ]
471
+ ) -> _DeregisterTargetsResponseSuccess
472
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterTargetsResponseSuccess
473
+
474
+ interface _GetAccessLogSubscriptionResponseSuccess
475
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccessLogSubscriptionResponse]
476
+ def arn: () -> ::String
477
+ def created_at: () -> ::Time
478
+ def destination_arn: () -> ::String
479
+ def id: () -> ::String
480
+ def last_updated_at: () -> ::Time
481
+ def resource_arn: () -> ::String
482
+ def resource_id: () -> ::String
483
+ end
484
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_access_log_subscription-instance_method
485
+ def get_access_log_subscription: (
486
+ access_log_subscription_identifier: ::String
487
+ ) -> _GetAccessLogSubscriptionResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccessLogSubscriptionResponseSuccess
489
+
490
+ interface _GetAuthPolicyResponseSuccess
491
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAuthPolicyResponse]
492
+ def created_at: () -> ::Time
493
+ def last_updated_at: () -> ::Time
494
+ def policy: () -> ::String
495
+ def state: () -> ("Active" | "Inactive")
496
+ end
497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_auth_policy-instance_method
498
+ def get_auth_policy: (
499
+ resource_identifier: ::String
500
+ ) -> _GetAuthPolicyResponseSuccess
501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAuthPolicyResponseSuccess
502
+
503
+ interface _GetListenerResponseSuccess
504
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetListenerResponse]
505
+ def arn: () -> ::String
506
+ def created_at: () -> ::Time
507
+ def default_action: () -> Types::RuleAction
508
+ def id: () -> ::String
509
+ def last_updated_at: () -> ::Time
510
+ def name: () -> ::String
511
+ def port: () -> ::Integer
512
+ def protocol: () -> ("HTTP" | "HTTPS")
513
+ def service_arn: () -> ::String
514
+ def service_id: () -> ::String
515
+ end
516
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_listener-instance_method
517
+ def get_listener: (
518
+ listener_identifier: ::String,
519
+ service_identifier: ::String
520
+ ) -> _GetListenerResponseSuccess
521
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListenerResponseSuccess
522
+
523
+ interface _GetResourcePolicyResponseSuccess
524
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
525
+ def policy: () -> ::String
526
+ end
527
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_resource_policy-instance_method
528
+ def get_resource_policy: (
529
+ resource_arn: ::String
530
+ ) -> _GetResourcePolicyResponseSuccess
531
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
532
+
533
+ interface _GetRuleResponseSuccess
534
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRuleResponse]
535
+ def action: () -> Types::RuleAction
536
+ def arn: () -> ::String
537
+ def created_at: () -> ::Time
538
+ def id: () -> ::String
539
+ def is_default: () -> bool
540
+ def last_updated_at: () -> ::Time
541
+ def match: () -> Types::RuleMatch
542
+ def name: () -> ::String
543
+ def priority: () -> ::Integer
544
+ end
545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_rule-instance_method
546
+ def get_rule: (
547
+ listener_identifier: ::String,
548
+ rule_identifier: ::String,
549
+ service_identifier: ::String
550
+ ) -> _GetRuleResponseSuccess
551
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRuleResponseSuccess
552
+
553
+ interface _GetServiceResponseSuccess
554
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceResponse]
555
+ def arn: () -> ::String
556
+ def auth_type: () -> ("NONE" | "AWS_IAM")
557
+ def certificate_arn: () -> ::String
558
+ def created_at: () -> ::Time
559
+ def custom_domain_name: () -> ::String
560
+ def dns_entry: () -> Types::DnsEntry
561
+ def failure_code: () -> ::String
562
+ def failure_message: () -> ::String
563
+ def id: () -> ::String
564
+ def last_updated_at: () -> ::Time
565
+ def name: () -> ::String
566
+ def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service-instance_method
569
+ def get_service: (
570
+ service_identifier: ::String
571
+ ) -> _GetServiceResponseSuccess
572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceResponseSuccess
573
+
574
+ interface _GetServiceNetworkResponseSuccess
575
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceNetworkResponse]
576
+ def arn: () -> ::String
577
+ def auth_type: () -> ("NONE" | "AWS_IAM")
578
+ def created_at: () -> ::Time
579
+ def id: () -> ::String
580
+ def last_updated_at: () -> ::Time
581
+ def name: () -> ::String
582
+ def number_of_associated_services: () -> ::Integer
583
+ def number_of_associated_vp_cs: () -> ::Integer
584
+ end
585
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network-instance_method
586
+ def get_service_network: (
587
+ service_network_identifier: ::String
588
+ ) -> _GetServiceNetworkResponseSuccess
589
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceNetworkResponseSuccess
590
+
591
+ interface _GetServiceNetworkServiceAssociationResponseSuccess
592
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceNetworkServiceAssociationResponse]
593
+ def arn: () -> ::String
594
+ def created_at: () -> ::Time
595
+ def created_by: () -> ::String
596
+ def custom_domain_name: () -> ::String
597
+ def dns_entry: () -> Types::DnsEntry
598
+ def failure_code: () -> ::String
599
+ def failure_message: () -> ::String
600
+ def id: () -> ::String
601
+ def service_arn: () -> ::String
602
+ def service_id: () -> ::String
603
+ def service_name: () -> ::String
604
+ def service_network_arn: () -> ::String
605
+ def service_network_id: () -> ::String
606
+ def service_network_name: () -> ::String
607
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
608
+ end
609
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network_service_association-instance_method
610
+ def get_service_network_service_association: (
611
+ service_network_service_association_identifier: ::String
612
+ ) -> _GetServiceNetworkServiceAssociationResponseSuccess
613
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceNetworkServiceAssociationResponseSuccess
614
+
615
+ interface _GetServiceNetworkVpcAssociationResponseSuccess
616
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceNetworkVpcAssociationResponse]
617
+ def arn: () -> ::String
618
+ def created_at: () -> ::Time
619
+ def created_by: () -> ::String
620
+ def failure_code: () -> ::String
621
+ def failure_message: () -> ::String
622
+ def id: () -> ::String
623
+ def last_updated_at: () -> ::Time
624
+ def security_group_ids: () -> ::Array[::String]
625
+ def service_network_arn: () -> ::String
626
+ def service_network_id: () -> ::String
627
+ def service_network_name: () -> ::String
628
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
629
+ def vpc_id: () -> ::String
630
+ end
631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network_vpc_association-instance_method
632
+ def get_service_network_vpc_association: (
633
+ service_network_vpc_association_identifier: ::String
634
+ ) -> _GetServiceNetworkVpcAssociationResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceNetworkVpcAssociationResponseSuccess
636
+
637
+ interface _GetTargetGroupResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTargetGroupResponse]
639
+ def arn: () -> ::String
640
+ def config: () -> Types::TargetGroupConfig
641
+ def created_at: () -> ::Time
642
+ def failure_code: () -> ::String
643
+ def failure_message: () -> ::String
644
+ def id: () -> ::String
645
+ def last_updated_at: () -> ::Time
646
+ def name: () -> ::String
647
+ def service_arns: () -> ::Array[::String]
648
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
649
+ def type: () -> ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
650
+ end
651
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_target_group-instance_method
652
+ def get_target_group: (
653
+ target_group_identifier: ::String
654
+ ) -> _GetTargetGroupResponseSuccess
655
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTargetGroupResponseSuccess
656
+
657
+ interface _ListAccessLogSubscriptionsResponseSuccess
658
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAccessLogSubscriptionsResponse]
659
+ def items: () -> ::Array[Types::AccessLogSubscriptionSummary]
660
+ def next_token: () -> ::String
661
+ end
662
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_access_log_subscriptions-instance_method
663
+ def list_access_log_subscriptions: (
664
+ ?max_results: ::Integer,
665
+ ?next_token: ::String,
666
+ resource_identifier: ::String
667
+ ) -> _ListAccessLogSubscriptionsResponseSuccess
668
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccessLogSubscriptionsResponseSuccess
669
+
670
+ interface _ListListenersResponseSuccess
671
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListListenersResponse]
672
+ def items: () -> ::Array[Types::ListenerSummary]
673
+ def next_token: () -> ::String
674
+ end
675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_listeners-instance_method
676
+ def list_listeners: (
677
+ ?max_results: ::Integer,
678
+ ?next_token: ::String,
679
+ service_identifier: ::String
680
+ ) -> _ListListenersResponseSuccess
681
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListListenersResponseSuccess
682
+
683
+ interface _ListRulesResponseSuccess
684
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRulesResponse]
685
+ def items: () -> ::Array[Types::RuleSummary]
686
+ def next_token: () -> ::String
687
+ end
688
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_rules-instance_method
689
+ def list_rules: (
690
+ listener_identifier: ::String,
691
+ ?max_results: ::Integer,
692
+ ?next_token: ::String,
693
+ service_identifier: ::String
694
+ ) -> _ListRulesResponseSuccess
695
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRulesResponseSuccess
696
+
697
+ interface _ListServiceNetworkServiceAssociationsResponseSuccess
698
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworkServiceAssociationsResponse]
699
+ def items: () -> ::Array[Types::ServiceNetworkServiceAssociationSummary]
700
+ def next_token: () -> ::String
701
+ end
702
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_service_network_service_associations-instance_method
703
+ def list_service_network_service_associations: (
704
+ ?max_results: ::Integer,
705
+ ?next_token: ::String,
706
+ ?service_identifier: ::String,
707
+ ?service_network_identifier: ::String
708
+ ) -> _ListServiceNetworkServiceAssociationsResponseSuccess
709
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworkServiceAssociationsResponseSuccess
710
+
711
+ interface _ListServiceNetworkVpcAssociationsResponseSuccess
712
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworkVpcAssociationsResponse]
713
+ def items: () -> ::Array[Types::ServiceNetworkVpcAssociationSummary]
714
+ def next_token: () -> ::String
715
+ end
716
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_service_network_vpc_associations-instance_method
717
+ def list_service_network_vpc_associations: (
718
+ ?max_results: ::Integer,
719
+ ?next_token: ::String,
720
+ ?service_network_identifier: ::String,
721
+ ?vpc_identifier: ::String
722
+ ) -> _ListServiceNetworkVpcAssociationsResponseSuccess
723
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworkVpcAssociationsResponseSuccess
724
+
725
+ interface _ListServiceNetworksResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworksResponse]
727
+ def items: () -> ::Array[Types::ServiceNetworkSummary]
728
+ def next_token: () -> ::String
729
+ end
730
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_service_networks-instance_method
731
+ def list_service_networks: (
732
+ ?max_results: ::Integer,
733
+ ?next_token: ::String
734
+ ) -> _ListServiceNetworksResponseSuccess
735
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworksResponseSuccess
736
+
737
+ interface _ListServicesResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListServicesResponse]
739
+ def items: () -> ::Array[Types::ServiceSummary]
740
+ def next_token: () -> ::String
741
+ end
742
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_services-instance_method
743
+ def list_services: (
744
+ ?max_results: ::Integer,
745
+ ?next_token: ::String
746
+ ) -> _ListServicesResponseSuccess
747
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
748
+
749
+ interface _ListTagsForResourceResponseSuccess
750
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
751
+ def tags: () -> ::Hash[::String, ::String]
752
+ end
753
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_tags_for_resource-instance_method
754
+ def list_tags_for_resource: (
755
+ resource_arn: ::String
756
+ ) -> _ListTagsForResourceResponseSuccess
757
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
758
+
759
+ interface _ListTargetGroupsResponseSuccess
760
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetGroupsResponse]
761
+ def items: () -> ::Array[Types::TargetGroupSummary]
762
+ def next_token: () -> ::String
763
+ end
764
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_target_groups-instance_method
765
+ def list_target_groups: (
766
+ ?max_results: ::Integer,
767
+ ?next_token: ::String,
768
+ ?target_group_type: ("IP" | "LAMBDA" | "INSTANCE" | "ALB"),
769
+ ?vpc_identifier: ::String
770
+ ) -> _ListTargetGroupsResponseSuccess
771
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetGroupsResponseSuccess
772
+
773
+ interface _ListTargetsResponseSuccess
774
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTargetsResponse]
775
+ def items: () -> ::Array[Types::TargetSummary]
776
+ def next_token: () -> ::String
777
+ end
778
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_targets-instance_method
779
+ def list_targets: (
780
+ ?max_results: ::Integer,
781
+ ?next_token: ::String,
782
+ target_group_identifier: ::String,
783
+ ?targets: Array[
784
+ {
785
+ id: ::String,
786
+ port: ::Integer?
787
+ },
788
+ ]
789
+ ) -> _ListTargetsResponseSuccess
790
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTargetsResponseSuccess
791
+
792
+ interface _PutAuthPolicyResponseSuccess
793
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutAuthPolicyResponse]
794
+ def policy: () -> ::String
795
+ def state: () -> ("Active" | "Inactive")
796
+ end
797
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#put_auth_policy-instance_method
798
+ def put_auth_policy: (
799
+ policy: ::String,
800
+ resource_identifier: ::String
801
+ ) -> _PutAuthPolicyResponseSuccess
802
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAuthPolicyResponseSuccess
803
+
804
+ interface _PutResourcePolicyResponseSuccess
805
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
806
+ end
807
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#put_resource_policy-instance_method
808
+ def put_resource_policy: (
809
+ policy: ::String,
810
+ resource_arn: ::String
811
+ ) -> _PutResourcePolicyResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
813
+
814
+ interface _RegisterTargetsResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterTargetsResponse]
816
+ def successful: () -> ::Array[Types::Target]
817
+ def unsuccessful: () -> ::Array[Types::TargetFailure]
818
+ end
819
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#register_targets-instance_method
820
+ def register_targets: (
821
+ target_group_identifier: ::String,
822
+ targets: Array[
823
+ {
824
+ id: ::String,
825
+ port: ::Integer?
826
+ },
827
+ ]
828
+ ) -> _RegisterTargetsResponseSuccess
829
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterTargetsResponseSuccess
830
+
831
+ interface _TagResourceResponseSuccess
832
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
833
+ end
834
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#tag_resource-instance_method
835
+ def tag_resource: (
836
+ resource_arn: ::String,
837
+ tags: Hash[::String, ::String]
838
+ ) -> _TagResourceResponseSuccess
839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
840
+
841
+ interface _UntagResourceResponseSuccess
842
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
843
+ end
844
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#untag_resource-instance_method
845
+ def untag_resource: (
846
+ resource_arn: ::String,
847
+ tag_keys: Array[::String]
848
+ ) -> _UntagResourceResponseSuccess
849
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
850
+
851
+ interface _UpdateAccessLogSubscriptionResponseSuccess
852
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAccessLogSubscriptionResponse]
853
+ def arn: () -> ::String
854
+ def destination_arn: () -> ::String
855
+ def id: () -> ::String
856
+ def resource_arn: () -> ::String
857
+ def resource_id: () -> ::String
858
+ end
859
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_access_log_subscription-instance_method
860
+ def update_access_log_subscription: (
861
+ access_log_subscription_identifier: ::String,
862
+ destination_arn: ::String
863
+ ) -> _UpdateAccessLogSubscriptionResponseSuccess
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAccessLogSubscriptionResponseSuccess
865
+
866
+ interface _UpdateListenerResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateListenerResponse]
868
+ def arn: () -> ::String
869
+ def default_action: () -> Types::RuleAction
870
+ def id: () -> ::String
871
+ def name: () -> ::String
872
+ def port: () -> ::Integer
873
+ def protocol: () -> ("HTTP" | "HTTPS")
874
+ def service_arn: () -> ::String
875
+ def service_id: () -> ::String
876
+ end
877
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_listener-instance_method
878
+ def update_listener: (
879
+ default_action: {
880
+ fixed_response: {
881
+ status_code: ::Integer
882
+ }?,
883
+ forward: {
884
+ target_groups: Array[
885
+ {
886
+ target_group_identifier: ::String,
887
+ weight: ::Integer?
888
+ },
889
+ ]
890
+ }?
891
+ },
892
+ listener_identifier: ::String,
893
+ service_identifier: ::String
894
+ ) -> _UpdateListenerResponseSuccess
895
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateListenerResponseSuccess
896
+
897
+ interface _UpdateRuleResponseSuccess
898
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleResponse]
899
+ def action: () -> Types::RuleAction
900
+ def arn: () -> ::String
901
+ def id: () -> ::String
902
+ def is_default: () -> bool
903
+ def match: () -> Types::RuleMatch
904
+ def name: () -> ::String
905
+ def priority: () -> ::Integer
906
+ end
907
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_rule-instance_method
908
+ def update_rule: (
909
+ ?action: {
910
+ fixed_response: {
911
+ status_code: ::Integer
912
+ }?,
913
+ forward: {
914
+ target_groups: Array[
915
+ {
916
+ target_group_identifier: ::String,
917
+ weight: ::Integer?
918
+ },
919
+ ]
920
+ }?
921
+ },
922
+ listener_identifier: ::String,
923
+ ?match: {
924
+ http_match: {
925
+ header_matches: Array[
926
+ {
927
+ case_sensitive: bool?,
928
+ match: {
929
+ contains: ::String?,
930
+ exact: ::String?,
931
+ prefix: ::String?
932
+ },
933
+ name: ::String
934
+ },
935
+ ]?,
936
+ method: ::String?,
937
+ path_match: {
938
+ case_sensitive: bool?,
939
+ match: {
940
+ exact: ::String?,
941
+ prefix: ::String?
942
+ }
943
+ }?
944
+ }?
945
+ },
946
+ ?priority: ::Integer,
947
+ rule_identifier: ::String,
948
+ service_identifier: ::String
949
+ ) -> _UpdateRuleResponseSuccess
950
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRuleResponseSuccess
951
+
952
+ interface _UpdateServiceResponseSuccess
953
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceResponse]
954
+ def arn: () -> ::String
955
+ def auth_type: () -> ("NONE" | "AWS_IAM")
956
+ def certificate_arn: () -> ::String
957
+ def custom_domain_name: () -> ::String
958
+ def id: () -> ::String
959
+ def name: () -> ::String
960
+ end
961
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_service-instance_method
962
+ def update_service: (
963
+ ?auth_type: ("NONE" | "AWS_IAM"),
964
+ ?certificate_arn: ::String,
965
+ service_identifier: ::String
966
+ ) -> _UpdateServiceResponseSuccess
967
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceResponseSuccess
968
+
969
+ interface _UpdateServiceNetworkResponseSuccess
970
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceNetworkResponse]
971
+ def arn: () -> ::String
972
+ def auth_type: () -> ("NONE" | "AWS_IAM")
973
+ def id: () -> ::String
974
+ def name: () -> ::String
975
+ end
976
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_service_network-instance_method
977
+ def update_service_network: (
978
+ auth_type: ("NONE" | "AWS_IAM"),
979
+ service_network_identifier: ::String
980
+ ) -> _UpdateServiceNetworkResponseSuccess
981
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceNetworkResponseSuccess
982
+
983
+ interface _UpdateServiceNetworkVpcAssociationResponseSuccess
984
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateServiceNetworkVpcAssociationResponse]
985
+ def arn: () -> ::String
986
+ def created_by: () -> ::String
987
+ def id: () -> ::String
988
+ def security_group_ids: () -> ::Array[::String]
989
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED" | "UPDATE_FAILED")
990
+ end
991
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_service_network_vpc_association-instance_method
992
+ def update_service_network_vpc_association: (
993
+ security_group_ids: Array[::String],
994
+ service_network_vpc_association_identifier: ::String
995
+ ) -> _UpdateServiceNetworkVpcAssociationResponseSuccess
996
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceNetworkVpcAssociationResponseSuccess
997
+
998
+ interface _UpdateTargetGroupResponseSuccess
999
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTargetGroupResponse]
1000
+ def arn: () -> ::String
1001
+ def config: () -> Types::TargetGroupConfig
1002
+ def id: () -> ::String
1003
+ def name: () -> ::String
1004
+ def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
1005
+ def type: () -> ("IP" | "LAMBDA" | "INSTANCE" | "ALB")
1006
+ end
1007
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_target_group-instance_method
1008
+ def update_target_group: (
1009
+ health_check: {
1010
+ enabled: bool?,
1011
+ health_check_interval_seconds: ::Integer?,
1012
+ health_check_timeout_seconds: ::Integer?,
1013
+ healthy_threshold_count: ::Integer?,
1014
+ matcher: {
1015
+ http_code: ::String?
1016
+ }?,
1017
+ path: ::String?,
1018
+ port: ::Integer?,
1019
+ protocol: ("HTTP" | "HTTPS")?,
1020
+ protocol_version: ("HTTP1" | "HTTP2")?,
1021
+ unhealthy_threshold_count: ::Integer?
1022
+ },
1023
+ target_group_identifier: ::String
1024
+ ) -> _UpdateTargetGroupResponseSuccess
1025
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTargetGroupResponseSuccess
1026
+ end
1027
+ end
1028
+ end
1029
+