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