aws-sdk-vpclattice 1.23.0 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-vpclattice/client.rb +1162 -140
- data/lib/aws-sdk-vpclattice/client_api.rb +695 -8
- data/lib/aws-sdk-vpclattice/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-vpclattice/endpoint_provider.rb +13 -17
- data/lib/aws-sdk-vpclattice/endpoints.rb +2 -570
- data/lib/aws-sdk-vpclattice/plugins/endpoints.rb +1 -110
- data/lib/aws-sdk-vpclattice/types.rb +1803 -199
- data/lib/aws-sdk-vpclattice.rb +1 -1
- data/sig/client.rbs +331 -0
- data/sig/resource.rbs +3 -0
- data/sig/types.rbs +414 -0
- metadata +8 -11
data/lib/aws-sdk-vpclattice.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -39,7 +40,9 @@ module Aws
|
|
39
40
|
?logger: untyped,
|
40
41
|
?max_attempts: Integer,
|
41
42
|
?profile: String,
|
43
|
+
?request_checksum_calculation: String,
|
42
44
|
?request_min_compression_size_bytes: Integer,
|
45
|
+
?response_checksum_validation: String,
|
43
46
|
?retry_backoff: Proc,
|
44
47
|
?retry_base_delay: Float,
|
45
48
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -136,12 +139,14 @@ module Aws
|
|
136
139
|
def id: () -> ::String
|
137
140
|
def resource_arn: () -> ::String
|
138
141
|
def resource_id: () -> ::String
|
142
|
+
def service_network_log_type: () -> ("SERVICE" | "RESOURCE")
|
139
143
|
end
|
140
144
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_access_log_subscription-instance_method
|
141
145
|
def create_access_log_subscription: (
|
142
146
|
?client_token: ::String,
|
143
147
|
destination_arn: ::String,
|
144
148
|
resource_identifier: ::String,
|
149
|
+
?service_network_log_type: ("SERVICE" | "RESOURCE"),
|
145
150
|
?tags: Hash[::String, ::String]
|
146
151
|
) -> _CreateAccessLogSubscriptionResponseSuccess
|
147
152
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccessLogSubscriptionResponseSuccess
|
@@ -181,6 +186,71 @@ module Aws
|
|
181
186
|
) -> _CreateListenerResponseSuccess
|
182
187
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListenerResponseSuccess
|
183
188
|
|
189
|
+
interface _CreateResourceConfigurationResponseSuccess
|
190
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateResourceConfigurationResponse]
|
191
|
+
def allow_association_to_shareable_service_network: () -> bool
|
192
|
+
def arn: () -> ::String
|
193
|
+
def created_at: () -> ::Time
|
194
|
+
def failure_reason: () -> ::String
|
195
|
+
def id: () -> ::String
|
196
|
+
def name: () -> ::String
|
197
|
+
def port_ranges: () -> ::Array[::String]
|
198
|
+
def protocol: () -> ("TCP")
|
199
|
+
def resource_configuration_definition: () -> Types::ResourceConfigurationDefinition
|
200
|
+
def resource_configuration_group_id: () -> ::String
|
201
|
+
def resource_gateway_id: () -> ::String
|
202
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
203
|
+
def type: () -> ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
204
|
+
end
|
205
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_resource_configuration-instance_method
|
206
|
+
def create_resource_configuration: (
|
207
|
+
?allow_association_to_shareable_service_network: bool,
|
208
|
+
?client_token: ::String,
|
209
|
+
name: ::String,
|
210
|
+
?port_ranges: Array[::String],
|
211
|
+
?protocol: ("TCP"),
|
212
|
+
?resource_configuration_definition: {
|
213
|
+
arn_resource: {
|
214
|
+
arn: ::String?
|
215
|
+
}?,
|
216
|
+
dns_resource: {
|
217
|
+
domain_name: ::String?,
|
218
|
+
ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")?
|
219
|
+
}?,
|
220
|
+
ip_resource: {
|
221
|
+
ip_address: ::String?
|
222
|
+
}?
|
223
|
+
},
|
224
|
+
?resource_configuration_group_identifier: ::String,
|
225
|
+
?resource_gateway_identifier: ::String,
|
226
|
+
?tags: Hash[::String, ::String],
|
227
|
+
type: ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
228
|
+
) -> _CreateResourceConfigurationResponseSuccess
|
229
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceConfigurationResponseSuccess
|
230
|
+
|
231
|
+
interface _CreateResourceGatewayResponseSuccess
|
232
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateResourceGatewayResponse]
|
233
|
+
def arn: () -> ::String
|
234
|
+
def id: () -> ::String
|
235
|
+
def ip_address_type: () -> ("IPV4" | "IPV6" | "DUALSTACK")
|
236
|
+
def name: () -> ::String
|
237
|
+
def security_group_ids: () -> ::Array[::String]
|
238
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
239
|
+
def subnet_ids: () -> ::Array[::String]
|
240
|
+
def vpc_identifier: () -> ::String
|
241
|
+
end
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_resource_gateway-instance_method
|
243
|
+
def create_resource_gateway: (
|
244
|
+
?client_token: ::String,
|
245
|
+
?ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK"),
|
246
|
+
name: ::String,
|
247
|
+
?security_group_ids: Array[::String],
|
248
|
+
subnet_ids: Array[::String],
|
249
|
+
?tags: Hash[::String, ::String],
|
250
|
+
vpc_identifier: ::String
|
251
|
+
) -> _CreateResourceGatewayResponseSuccess
|
252
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceGatewayResponseSuccess
|
253
|
+
|
184
254
|
interface _CreateRuleResponseSuccess
|
185
255
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRuleResponse]
|
186
256
|
def action: () -> Types::RuleAction
|
@@ -265,16 +335,36 @@ module Aws
|
|
265
335
|
def auth_type: () -> ("NONE" | "AWS_IAM")
|
266
336
|
def id: () -> ::String
|
267
337
|
def name: () -> ::String
|
338
|
+
def sharing_config: () -> Types::SharingConfig
|
268
339
|
end
|
269
340
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network-instance_method
|
270
341
|
def create_service_network: (
|
271
342
|
?auth_type: ("NONE" | "AWS_IAM"),
|
272
343
|
?client_token: ::String,
|
273
344
|
name: ::String,
|
345
|
+
?sharing_config: {
|
346
|
+
enabled: bool?
|
347
|
+
},
|
274
348
|
?tags: Hash[::String, ::String]
|
275
349
|
) -> _CreateServiceNetworkResponseSuccess
|
276
350
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkResponseSuccess
|
277
351
|
|
352
|
+
interface _CreateServiceNetworkResourceAssociationResponseSuccess
|
353
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceNetworkResourceAssociationResponse]
|
354
|
+
def arn: () -> ::String
|
355
|
+
def created_by: () -> ::String
|
356
|
+
def id: () -> ::String
|
357
|
+
def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
358
|
+
end
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service_network_resource_association-instance_method
|
360
|
+
def create_service_network_resource_association: (
|
361
|
+
?client_token: ::String,
|
362
|
+
resource_configuration_identifier: ::String,
|
363
|
+
service_network_identifier: ::String,
|
364
|
+
?tags: Hash[::String, ::String]
|
365
|
+
) -> _CreateServiceNetworkResourceAssociationResponseSuccess
|
366
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceNetworkResourceAssociationResponseSuccess
|
367
|
+
|
278
368
|
interface _CreateServiceNetworkServiceAssociationResponseSuccess
|
279
369
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateServiceNetworkServiceAssociationResponse]
|
280
370
|
def arn: () -> ::String
|
@@ -379,6 +469,42 @@ module Aws
|
|
379
469
|
) -> _DeleteListenerResponseSuccess
|
380
470
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteListenerResponseSuccess
|
381
471
|
|
472
|
+
interface _DeleteResourceConfigurationResponseSuccess
|
473
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourceConfigurationResponse]
|
474
|
+
end
|
475
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_resource_configuration-instance_method
|
476
|
+
def delete_resource_configuration: (
|
477
|
+
resource_configuration_identifier: ::String
|
478
|
+
) -> _DeleteResourceConfigurationResponseSuccess
|
479
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourceConfigurationResponseSuccess
|
480
|
+
|
481
|
+
interface _DeleteResourceEndpointAssociationResponseSuccess
|
482
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourceEndpointAssociationResponse]
|
483
|
+
def arn: () -> ::String
|
484
|
+
def id: () -> ::String
|
485
|
+
def resource_configuration_arn: () -> ::String
|
486
|
+
def resource_configuration_id: () -> ::String
|
487
|
+
def vpc_endpoint_id: () -> ::String
|
488
|
+
end
|
489
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_resource_endpoint_association-instance_method
|
490
|
+
def delete_resource_endpoint_association: (
|
491
|
+
resource_endpoint_association_identifier: ::String
|
492
|
+
) -> _DeleteResourceEndpointAssociationResponseSuccess
|
493
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourceEndpointAssociationResponseSuccess
|
494
|
+
|
495
|
+
interface _DeleteResourceGatewayResponseSuccess
|
496
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourceGatewayResponse]
|
497
|
+
def arn: () -> ::String
|
498
|
+
def id: () -> ::String
|
499
|
+
def name: () -> ::String
|
500
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
501
|
+
end
|
502
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_resource_gateway-instance_method
|
503
|
+
def delete_resource_gateway: (
|
504
|
+
resource_gateway_identifier: ::String
|
505
|
+
) -> _DeleteResourceGatewayResponseSuccess
|
506
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourceGatewayResponseSuccess
|
507
|
+
|
382
508
|
interface _DeleteResourcePolicyResponseSuccess
|
383
509
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
|
384
510
|
end
|
@@ -421,6 +547,18 @@ module Aws
|
|
421
547
|
) -> _DeleteServiceNetworkResponseSuccess
|
422
548
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceNetworkResponseSuccess
|
423
549
|
|
550
|
+
interface _DeleteServiceNetworkResourceAssociationResponseSuccess
|
551
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceNetworkResourceAssociationResponse]
|
552
|
+
def arn: () -> ::String
|
553
|
+
def id: () -> ::String
|
554
|
+
def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
555
|
+
end
|
556
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#delete_service_network_resource_association-instance_method
|
557
|
+
def delete_service_network_resource_association: (
|
558
|
+
service_network_resource_association_identifier: ::String
|
559
|
+
) -> _DeleteServiceNetworkResourceAssociationResponseSuccess
|
560
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteServiceNetworkResourceAssociationResponseSuccess
|
561
|
+
|
424
562
|
interface _DeleteServiceNetworkServiceAssociationResponseSuccess
|
425
563
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteServiceNetworkServiceAssociationResponse]
|
426
564
|
def arn: () -> ::String
|
@@ -483,6 +621,7 @@ module Aws
|
|
483
621
|
def last_updated_at: () -> ::Time
|
484
622
|
def resource_arn: () -> ::String
|
485
623
|
def resource_id: () -> ::String
|
624
|
+
def service_network_log_type: () -> ("SERVICE" | "RESOURCE")
|
486
625
|
end
|
487
626
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_access_log_subscription-instance_method
|
488
627
|
def get_access_log_subscription: (
|
@@ -523,6 +662,50 @@ module Aws
|
|
523
662
|
) -> _GetListenerResponseSuccess
|
524
663
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetListenerResponseSuccess
|
525
664
|
|
665
|
+
interface _GetResourceConfigurationResponseSuccess
|
666
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourceConfigurationResponse]
|
667
|
+
def allow_association_to_shareable_service_network: () -> bool
|
668
|
+
def amazon_managed: () -> bool
|
669
|
+
def arn: () -> ::String
|
670
|
+
def created_at: () -> ::Time
|
671
|
+
def custom_domain_name: () -> ::String
|
672
|
+
def failure_reason: () -> ::String
|
673
|
+
def id: () -> ::String
|
674
|
+
def last_updated_at: () -> ::Time
|
675
|
+
def name: () -> ::String
|
676
|
+
def port_ranges: () -> ::Array[::String]
|
677
|
+
def protocol: () -> ("TCP")
|
678
|
+
def resource_configuration_definition: () -> Types::ResourceConfigurationDefinition
|
679
|
+
def resource_configuration_group_id: () -> ::String
|
680
|
+
def resource_gateway_id: () -> ::String
|
681
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
682
|
+
def type: () -> ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
683
|
+
end
|
684
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_resource_configuration-instance_method
|
685
|
+
def get_resource_configuration: (
|
686
|
+
resource_configuration_identifier: ::String
|
687
|
+
) -> _GetResourceConfigurationResponseSuccess
|
688
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourceConfigurationResponseSuccess
|
689
|
+
|
690
|
+
interface _GetResourceGatewayResponseSuccess
|
691
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourceGatewayResponse]
|
692
|
+
def arn: () -> ::String
|
693
|
+
def created_at: () -> ::Time
|
694
|
+
def id: () -> ::String
|
695
|
+
def ip_address_type: () -> ("IPV4" | "IPV6" | "DUALSTACK")
|
696
|
+
def last_updated_at: () -> ::Time
|
697
|
+
def name: () -> ::String
|
698
|
+
def security_group_ids: () -> ::Array[::String]
|
699
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
700
|
+
def subnet_ids: () -> ::Array[::String]
|
701
|
+
def vpc_id: () -> ::String
|
702
|
+
end
|
703
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_resource_gateway-instance_method
|
704
|
+
def get_resource_gateway: (
|
705
|
+
resource_gateway_identifier: ::String
|
706
|
+
) -> _GetResourceGatewayResponseSuccess
|
707
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourceGatewayResponseSuccess
|
708
|
+
|
526
709
|
interface _GetResourcePolicyResponseSuccess
|
527
710
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
|
528
711
|
def policy: () -> ::String
|
@@ -584,6 +767,7 @@ module Aws
|
|
584
767
|
def name: () -> ::String
|
585
768
|
def number_of_associated_services: () -> ::Integer
|
586
769
|
def number_of_associated_vp_cs: () -> ::Integer
|
770
|
+
def sharing_config: () -> Types::SharingConfig
|
587
771
|
end
|
588
772
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network-instance_method
|
589
773
|
def get_service_network: (
|
@@ -591,6 +775,32 @@ module Aws
|
|
591
775
|
) -> _GetServiceNetworkResponseSuccess
|
592
776
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceNetworkResponseSuccess
|
593
777
|
|
778
|
+
interface _GetServiceNetworkResourceAssociationResponseSuccess
|
779
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceNetworkResourceAssociationResponse]
|
780
|
+
def arn: () -> ::String
|
781
|
+
def created_at: () -> ::Time
|
782
|
+
def created_by: () -> ::String
|
783
|
+
def dns_entry: () -> Types::DnsEntry
|
784
|
+
def failure_code: () -> ::String
|
785
|
+
def failure_reason: () -> ::String
|
786
|
+
def id: () -> ::String
|
787
|
+
def is_managed_association: () -> bool
|
788
|
+
def last_updated_at: () -> ::Time
|
789
|
+
def private_dns_entry: () -> Types::DnsEntry
|
790
|
+
def resource_configuration_arn: () -> ::String
|
791
|
+
def resource_configuration_id: () -> ::String
|
792
|
+
def resource_configuration_name: () -> ::String
|
793
|
+
def service_network_arn: () -> ::String
|
794
|
+
def service_network_id: () -> ::String
|
795
|
+
def service_network_name: () -> ::String
|
796
|
+
def status: () -> ("CREATE_IN_PROGRESS" | "ACTIVE" | "PARTIAL" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
|
797
|
+
end
|
798
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#get_service_network_resource_association-instance_method
|
799
|
+
def get_service_network_resource_association: (
|
800
|
+
service_network_resource_association_identifier: ::String
|
801
|
+
) -> _GetServiceNetworkResourceAssociationResponseSuccess
|
802
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceNetworkResourceAssociationResponseSuccess
|
803
|
+
|
594
804
|
interface _GetServiceNetworkServiceAssociationResponseSuccess
|
595
805
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetServiceNetworkServiceAssociationResponse]
|
596
806
|
def arn: () -> ::String
|
@@ -683,6 +893,48 @@ module Aws
|
|
683
893
|
) -> _ListListenersResponseSuccess
|
684
894
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListListenersResponseSuccess
|
685
895
|
|
896
|
+
interface _ListResourceConfigurationsResponseSuccess
|
897
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceConfigurationsResponse]
|
898
|
+
def items: () -> ::Array[Types::ResourceConfigurationSummary]
|
899
|
+
def next_token: () -> ::String
|
900
|
+
end
|
901
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_resource_configurations-instance_method
|
902
|
+
def list_resource_configurations: (
|
903
|
+
?max_results: ::Integer,
|
904
|
+
?next_token: ::String,
|
905
|
+
?resource_configuration_group_identifier: ::String,
|
906
|
+
?resource_gateway_identifier: ::String
|
907
|
+
) -> _ListResourceConfigurationsResponseSuccess
|
908
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceConfigurationsResponseSuccess
|
909
|
+
|
910
|
+
interface _ListResourceEndpointAssociationsResponseSuccess
|
911
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceEndpointAssociationsResponse]
|
912
|
+
def items: () -> ::Array[Types::ResourceEndpointAssociationSummary]
|
913
|
+
def next_token: () -> ::String
|
914
|
+
end
|
915
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_resource_endpoint_associations-instance_method
|
916
|
+
def list_resource_endpoint_associations: (
|
917
|
+
?max_results: ::Integer,
|
918
|
+
?next_token: ::String,
|
919
|
+
resource_configuration_identifier: ::String,
|
920
|
+
?resource_endpoint_association_identifier: ::String,
|
921
|
+
?vpc_endpoint_id: ::String,
|
922
|
+
?vpc_endpoint_owner: ::String
|
923
|
+
) -> _ListResourceEndpointAssociationsResponseSuccess
|
924
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceEndpointAssociationsResponseSuccess
|
925
|
+
|
926
|
+
interface _ListResourceGatewaysResponseSuccess
|
927
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourceGatewaysResponse]
|
928
|
+
def items: () -> ::Array[Types::ResourceGatewaySummary]
|
929
|
+
def next_token: () -> ::String
|
930
|
+
end
|
931
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_resource_gateways-instance_method
|
932
|
+
def list_resource_gateways: (
|
933
|
+
?max_results: ::Integer,
|
934
|
+
?next_token: ::String
|
935
|
+
) -> _ListResourceGatewaysResponseSuccess
|
936
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourceGatewaysResponseSuccess
|
937
|
+
|
686
938
|
interface _ListRulesResponseSuccess
|
687
939
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRulesResponse]
|
688
940
|
def items: () -> ::Array[Types::RuleSummary]
|
@@ -697,6 +949,20 @@ module Aws
|
|
697
949
|
) -> _ListRulesResponseSuccess
|
698
950
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRulesResponseSuccess
|
699
951
|
|
952
|
+
interface _ListServiceNetworkResourceAssociationsResponseSuccess
|
953
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworkResourceAssociationsResponse]
|
954
|
+
def items: () -> ::Array[Types::ServiceNetworkResourceAssociationSummary]
|
955
|
+
def next_token: () -> ::String
|
956
|
+
end
|
957
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_service_network_resource_associations-instance_method
|
958
|
+
def list_service_network_resource_associations: (
|
959
|
+
?max_results: ::Integer,
|
960
|
+
?next_token: ::String,
|
961
|
+
?resource_configuration_identifier: ::String,
|
962
|
+
?service_network_identifier: ::String
|
963
|
+
) -> _ListServiceNetworkResourceAssociationsResponseSuccess
|
964
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworkResourceAssociationsResponseSuccess
|
965
|
+
|
700
966
|
interface _ListServiceNetworkServiceAssociationsResponseSuccess
|
701
967
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworkServiceAssociationsResponse]
|
702
968
|
def items: () -> ::Array[Types::ServiceNetworkServiceAssociationSummary]
|
@@ -725,6 +991,19 @@ module Aws
|
|
725
991
|
) -> _ListServiceNetworkVpcAssociationsResponseSuccess
|
726
992
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworkVpcAssociationsResponseSuccess
|
727
993
|
|
994
|
+
interface _ListServiceNetworkVpcEndpointAssociationsResponseSuccess
|
995
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworkVpcEndpointAssociationsResponse]
|
996
|
+
def items: () -> ::Array[Types::ServiceNetworkEndpointAssociation]
|
997
|
+
def next_token: () -> ::String
|
998
|
+
end
|
999
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#list_service_network_vpc_endpoint_associations-instance_method
|
1000
|
+
def list_service_network_vpc_endpoint_associations: (
|
1001
|
+
?max_results: ::Integer,
|
1002
|
+
?next_token: ::String,
|
1003
|
+
service_network_identifier: ::String
|
1004
|
+
) -> _ListServiceNetworkVpcEndpointAssociationsResponseSuccess
|
1005
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServiceNetworkVpcEndpointAssociationsResponseSuccess
|
1006
|
+
|
728
1007
|
interface _ListServiceNetworksResponseSuccess
|
729
1008
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListServiceNetworksResponse]
|
730
1009
|
def items: () -> ::Array[Types::ServiceNetworkSummary]
|
@@ -897,6 +1176,58 @@ module Aws
|
|
897
1176
|
) -> _UpdateListenerResponseSuccess
|
898
1177
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateListenerResponseSuccess
|
899
1178
|
|
1179
|
+
interface _UpdateResourceConfigurationResponseSuccess
|
1180
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateResourceConfigurationResponse]
|
1181
|
+
def allow_association_to_shareable_service_network: () -> bool
|
1182
|
+
def arn: () -> ::String
|
1183
|
+
def id: () -> ::String
|
1184
|
+
def name: () -> ::String
|
1185
|
+
def port_ranges: () -> ::Array[::String]
|
1186
|
+
def protocol: () -> ("TCP")
|
1187
|
+
def resource_configuration_definition: () -> Types::ResourceConfigurationDefinition
|
1188
|
+
def resource_configuration_group_id: () -> ::String
|
1189
|
+
def resource_gateway_id: () -> ::String
|
1190
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1191
|
+
def type: () -> ("GROUP" | "CHILD" | "SINGLE" | "ARN")
|
1192
|
+
end
|
1193
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_resource_configuration-instance_method
|
1194
|
+
def update_resource_configuration: (
|
1195
|
+
?allow_association_to_shareable_service_network: bool,
|
1196
|
+
?port_ranges: Array[::String],
|
1197
|
+
?resource_configuration_definition: {
|
1198
|
+
arn_resource: {
|
1199
|
+
arn: ::String?
|
1200
|
+
}?,
|
1201
|
+
dns_resource: {
|
1202
|
+
domain_name: ::String?,
|
1203
|
+
ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")?
|
1204
|
+
}?,
|
1205
|
+
ip_resource: {
|
1206
|
+
ip_address: ::String?
|
1207
|
+
}?
|
1208
|
+
},
|
1209
|
+
resource_configuration_identifier: ::String
|
1210
|
+
) -> _UpdateResourceConfigurationResponseSuccess
|
1211
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResourceConfigurationResponseSuccess
|
1212
|
+
|
1213
|
+
interface _UpdateResourceGatewayResponseSuccess
|
1214
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateResourceGatewayResponse]
|
1215
|
+
def arn: () -> ::String
|
1216
|
+
def id: () -> ::String
|
1217
|
+
def ip_address_type: () -> ("IPV4" | "IPV6")
|
1218
|
+
def name: () -> ::String
|
1219
|
+
def security_group_ids: () -> ::Array[::String]
|
1220
|
+
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
1221
|
+
def subnet_ids: () -> ::Array[::String]
|
1222
|
+
def vpc_id: () -> ::String
|
1223
|
+
end
|
1224
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_resource_gateway-instance_method
|
1225
|
+
def update_resource_gateway: (
|
1226
|
+
resource_gateway_identifier: ::String,
|
1227
|
+
?security_group_ids: Array[::String]
|
1228
|
+
) -> _UpdateResourceGatewayResponseSuccess
|
1229
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResourceGatewayResponseSuccess
|
1230
|
+
|
900
1231
|
interface _UpdateRuleResponseSuccess
|
901
1232
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRuleResponse]
|
902
1233
|
def action: () -> Types::RuleAction
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -39,7 +40,9 @@ module Aws
|
|
39
40
|
?logger: untyped,
|
40
41
|
?max_attempts: Integer,
|
41
42
|
?profile: String,
|
43
|
+
?request_checksum_calculation: String,
|
42
44
|
?request_min_compression_size_bytes: Integer,
|
45
|
+
?response_checksum_validation: String,
|
43
46
|
?retry_backoff: Proc,
|
44
47
|
?retry_base_delay: Float,
|
45
48
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|