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