aws-sdk-vpclattice 1.45.0 → 1.46.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-vpclattice/client.rb +28 -1
- data/lib/aws-sdk-vpclattice/client_api.rb +7 -0
- data/lib/aws-sdk-vpclattice/types.rb +49 -2
- data/lib/aws-sdk-vpclattice.rb +1 -1
- data/sig/client.rbs +5 -0
- data/sig/types.rbs +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3e93b3a4a66cf88728eca7a8ffc6f11fbbc54f6f91b82a59b4504c14a270eb4
|
|
4
|
+
data.tar.gz: a877a7387a1922842594f40e940732c4cc0e91ee8b46a98ce0c6945d3145a51b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4949f494b2fb9694df22f0595093220b09324a76eb27a87cc703e86cc27ed362d368bc1cd9052c4df40e09ee0f0d9023559603b424b35fe9ddc2ece2c6b49613
|
|
7
|
+
data.tar.gz: 47a70ff03b5b2453d5a5452a64aca2e1aacfc2cb6bea9e0d9780c83a7e99f9728525fcd6500ab0bd824efc534c7c03b5b5c792d33424f38ee5fa87631cab4396
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.46.0
|
|
@@ -993,6 +993,23 @@ module Aws::VPCLattice
|
|
|
993
993
|
# @option params [Integer] :ipv4_addresses_per_eni
|
|
994
994
|
# The number of IPv4 addresses in each ENI for the resource gateway.
|
|
995
995
|
#
|
|
996
|
+
# @option params [String] :resource_config_dns_resolution
|
|
997
|
+
# Indicates how DNS is resolved for resource configurations associated
|
|
998
|
+
# to this resource gateway. ResourceConfigDnsResolution is set at
|
|
999
|
+
# creation time and cannot be changed.
|
|
1000
|
+
#
|
|
1001
|
+
# * `IN_VPC` - DNS resolution occurs privately within the resource
|
|
1002
|
+
# gateway's VPC. DNS queries for resources behind this resource
|
|
1003
|
+
# gateway resolve using the DNS resolvers defined in the VPC's DHCP
|
|
1004
|
+
# option sets. Use this when your resource domain names are hosted in
|
|
1005
|
+
# private Route 53 hosted zones or on-premises DNS servers reachable
|
|
1006
|
+
# from the VPC.
|
|
1007
|
+
#
|
|
1008
|
+
# * `PUBLIC` - DNS resolution occurs against public DNS resolvers. DNS
|
|
1009
|
+
# queries for resources behind this resource gateway resolve using
|
|
1010
|
+
# standard public DNS. Use this when your resource domain names are
|
|
1011
|
+
# publicly resolvable.
|
|
1012
|
+
#
|
|
996
1013
|
# @option params [Hash<String,String>] :tags
|
|
997
1014
|
# The tags for the resource gateway.
|
|
998
1015
|
#
|
|
@@ -1007,6 +1024,7 @@ module Aws::VPCLattice
|
|
|
1007
1024
|
# * {Types::CreateResourceGatewayResponse#security_group_ids #security_group_ids} => Array<String>
|
|
1008
1025
|
# * {Types::CreateResourceGatewayResponse#ip_address_type #ip_address_type} => String
|
|
1009
1026
|
# * {Types::CreateResourceGatewayResponse#ipv4_addresses_per_eni #ipv4_addresses_per_eni} => Integer
|
|
1027
|
+
# * {Types::CreateResourceGatewayResponse#resource_config_dns_resolution #resource_config_dns_resolution} => String
|
|
1010
1028
|
#
|
|
1011
1029
|
# @example Request syntax with placeholder values
|
|
1012
1030
|
#
|
|
@@ -1018,6 +1036,7 @@ module Aws::VPCLattice
|
|
|
1018
1036
|
# security_group_ids: ["SecurityGroupId"],
|
|
1019
1037
|
# ip_address_type: "IPV4", # accepts IPV4, IPV6, DUALSTACK
|
|
1020
1038
|
# ipv4_addresses_per_eni: 1,
|
|
1039
|
+
# resource_config_dns_resolution: "IN_VPC", # accepts IN_VPC, PUBLIC
|
|
1021
1040
|
# tags: {
|
|
1022
1041
|
# "TagKey" => "TagValue",
|
|
1023
1042
|
# },
|
|
@@ -1036,6 +1055,7 @@ module Aws::VPCLattice
|
|
|
1036
1055
|
# resp.security_group_ids[0] #=> String
|
|
1037
1056
|
# resp.ip_address_type #=> String, one of "IPV4", "IPV6", "DUALSTACK"
|
|
1038
1057
|
# resp.ipv4_addresses_per_eni #=> Integer
|
|
1058
|
+
# resp.resource_config_dns_resolution #=> String, one of "IN_VPC", "PUBLIC"
|
|
1039
1059
|
#
|
|
1040
1060
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceGateway AWS API Documentation
|
|
1041
1061
|
#
|
|
@@ -2479,9 +2499,12 @@ module Aws::VPCLattice
|
|
|
2479
2499
|
# * {Types::GetResourceGatewayResponse#status #status} => String
|
|
2480
2500
|
# * {Types::GetResourceGatewayResponse#vpc_id #vpc_id} => String
|
|
2481
2501
|
# * {Types::GetResourceGatewayResponse#subnet_ids #subnet_ids} => Array<String>
|
|
2502
|
+
# * {Types::GetResourceGatewayResponse#service_managed #service_managed} => Boolean
|
|
2503
|
+
# * {Types::GetResourceGatewayResponse#managed_by #managed_by} => String
|
|
2482
2504
|
# * {Types::GetResourceGatewayResponse#security_group_ids #security_group_ids} => Array<String>
|
|
2483
2505
|
# * {Types::GetResourceGatewayResponse#ip_address_type #ip_address_type} => String
|
|
2484
2506
|
# * {Types::GetResourceGatewayResponse#ipv4_addresses_per_eni #ipv4_addresses_per_eni} => Integer
|
|
2507
|
+
# * {Types::GetResourceGatewayResponse#resource_config_dns_resolution #resource_config_dns_resolution} => String
|
|
2485
2508
|
# * {Types::GetResourceGatewayResponse#created_at #created_at} => Time
|
|
2486
2509
|
# * {Types::GetResourceGatewayResponse#last_updated_at #last_updated_at} => Time
|
|
2487
2510
|
#
|
|
@@ -2500,10 +2523,13 @@ module Aws::VPCLattice
|
|
|
2500
2523
|
# resp.vpc_id #=> String
|
|
2501
2524
|
# resp.subnet_ids #=> Array
|
|
2502
2525
|
# resp.subnet_ids[0] #=> String
|
|
2526
|
+
# resp.service_managed #=> Boolean
|
|
2527
|
+
# resp.managed_by #=> String
|
|
2503
2528
|
# resp.security_group_ids #=> Array
|
|
2504
2529
|
# resp.security_group_ids[0] #=> String
|
|
2505
2530
|
# resp.ip_address_type #=> String, one of "IPV4", "IPV6", "DUALSTACK"
|
|
2506
2531
|
# resp.ipv4_addresses_per_eni #=> Integer
|
|
2532
|
+
# resp.resource_config_dns_resolution #=> String, one of "IN_VPC", "PUBLIC"
|
|
2507
2533
|
# resp.created_at #=> Time
|
|
2508
2534
|
# resp.last_updated_at #=> Time
|
|
2509
2535
|
#
|
|
@@ -3264,6 +3290,7 @@ module Aws::VPCLattice
|
|
|
3264
3290
|
# resp.items[0].security_group_ids[0] #=> String
|
|
3265
3291
|
# resp.items[0].ip_address_type #=> String, one of "IPV4", "IPV6", "DUALSTACK"
|
|
3266
3292
|
# resp.items[0].ipv4_addresses_per_eni #=> Integer
|
|
3293
|
+
# resp.items[0].resource_config_dns_resolution #=> String, one of "IN_VPC", "PUBLIC"
|
|
3267
3294
|
# resp.items[0].created_at #=> Time
|
|
3268
3295
|
# resp.items[0].last_updated_at #=> Time
|
|
3269
3296
|
# resp.next_token #=> String
|
|
@@ -4616,7 +4643,7 @@ module Aws::VPCLattice
|
|
|
4616
4643
|
tracer: tracer
|
|
4617
4644
|
)
|
|
4618
4645
|
context[:gem_name] = 'aws-sdk-vpclattice'
|
|
4619
|
-
context[:gem_version] = '1.
|
|
4646
|
+
context[:gem_version] = '1.46.0'
|
|
4620
4647
|
Seahorse::Client::Request.new(handlers, context)
|
|
4621
4648
|
end
|
|
4622
4649
|
|
|
@@ -220,6 +220,7 @@ module Aws::VPCLattice
|
|
|
220
220
|
RegisterTargetsRequestTargetsList = Shapes::ListShape.new(name: 'RegisterTargetsRequestTargetsList')
|
|
221
221
|
RegisterTargetsResponse = Shapes::StructureShape.new(name: 'RegisterTargetsResponse')
|
|
222
222
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
|
223
|
+
ResourceConfigDnsResolution = Shapes::StringShape.new(name: 'ResourceConfigDnsResolution')
|
|
223
224
|
ResourceConfigurationArn = Shapes::StringShape.new(name: 'ResourceConfigurationArn')
|
|
224
225
|
ResourceConfigurationDefinition = Shapes::UnionShape.new(name: 'ResourceConfigurationDefinition')
|
|
225
226
|
ResourceConfigurationId = Shapes::StringShape.new(name: 'ResourceConfigurationId')
|
|
@@ -479,6 +480,7 @@ module Aws::VPCLattice
|
|
|
479
480
|
CreateResourceGatewayRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: CreateResourceGatewayRequestSecurityGroupIdsList, location_name: "securityGroupIds"))
|
|
480
481
|
CreateResourceGatewayRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ResourceGatewayIpAddressType, location_name: "ipAddressType"))
|
|
481
482
|
CreateResourceGatewayRequest.add_member(:ipv4_addresses_per_eni, Shapes::ShapeRef.new(shape: Ipv4AddressesPerEni, location_name: "ipv4AddressesPerEni"))
|
|
483
|
+
CreateResourceGatewayRequest.add_member(:resource_config_dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "resourceConfigDnsResolution"))
|
|
482
484
|
CreateResourceGatewayRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
483
485
|
CreateResourceGatewayRequest.struct_class = Types::CreateResourceGatewayRequest
|
|
484
486
|
|
|
@@ -493,6 +495,7 @@ module Aws::VPCLattice
|
|
|
493
495
|
CreateResourceGatewayResponse.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupList, location_name: "securityGroupIds"))
|
|
494
496
|
CreateResourceGatewayResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ResourceGatewayIpAddressType, location_name: "ipAddressType"))
|
|
495
497
|
CreateResourceGatewayResponse.add_member(:ipv4_addresses_per_eni, Shapes::ShapeRef.new(shape: Ipv4AddressesPerEni, location_name: "ipv4AddressesPerEni"))
|
|
498
|
+
CreateResourceGatewayResponse.add_member(:resource_config_dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "resourceConfigDnsResolution"))
|
|
496
499
|
CreateResourceGatewayResponse.struct_class = Types::CreateResourceGatewayResponse
|
|
497
500
|
|
|
498
501
|
CreateRuleRequest.add_member(:service_identifier, Shapes::ShapeRef.new(shape: ServiceIdentifier, required: true, location: "uri", location_name: "serviceIdentifier"))
|
|
@@ -836,9 +839,12 @@ module Aws::VPCLattice
|
|
|
836
839
|
GetResourceGatewayResponse.add_member(:status, Shapes::ShapeRef.new(shape: ResourceGatewayStatus, location_name: "status"))
|
|
837
840
|
GetResourceGatewayResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
|
|
838
841
|
GetResourceGatewayResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetList, location_name: "subnetIds"))
|
|
842
|
+
GetResourceGatewayResponse.add_member(:service_managed, Shapes::ShapeRef.new(shape: Boolean, location_name: "serviceManaged"))
|
|
843
|
+
GetResourceGatewayResponse.add_member(:managed_by, Shapes::ShapeRef.new(shape: String, location_name: "managedBy"))
|
|
839
844
|
GetResourceGatewayResponse.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupList, location_name: "securityGroupIds"))
|
|
840
845
|
GetResourceGatewayResponse.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ResourceGatewayIpAddressType, location_name: "ipAddressType"))
|
|
841
846
|
GetResourceGatewayResponse.add_member(:ipv4_addresses_per_eni, Shapes::ShapeRef.new(shape: Ipv4AddressesPerEni, location_name: "ipv4AddressesPerEni"))
|
|
847
|
+
GetResourceGatewayResponse.add_member(:resource_config_dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "resourceConfigDnsResolution"))
|
|
842
848
|
GetResourceGatewayResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
843
849
|
GetResourceGatewayResponse.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedAt"))
|
|
844
850
|
GetResourceGatewayResponse.struct_class = Types::GetResourceGatewayResponse
|
|
@@ -1276,6 +1282,7 @@ module Aws::VPCLattice
|
|
|
1276
1282
|
ResourceGatewaySummary.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupList, location_name: "securityGroupIds"))
|
|
1277
1283
|
ResourceGatewaySummary.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ResourceGatewayIpAddressType, location_name: "ipAddressType"))
|
|
1278
1284
|
ResourceGatewaySummary.add_member(:ipv4_addresses_per_eni, Shapes::ShapeRef.new(shape: Ipv4AddressesPerEni, location_name: "ipv4AddressesPerEni"))
|
|
1285
|
+
ResourceGatewaySummary.add_member(:resource_config_dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "resourceConfigDnsResolution"))
|
|
1279
1286
|
ResourceGatewaySummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
1280
1287
|
ResourceGatewaySummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedAt"))
|
|
1281
1288
|
ResourceGatewaySummary.struct_class = Types::ResourceGatewaySummary
|
|
@@ -624,6 +624,24 @@ module Aws::VPCLattice
|
|
|
624
624
|
# The number of IPv4 addresses in each ENI for the resource gateway.
|
|
625
625
|
# @return [Integer]
|
|
626
626
|
#
|
|
627
|
+
# @!attribute [rw] resource_config_dns_resolution
|
|
628
|
+
# Indicates how DNS is resolved for resource configurations associated
|
|
629
|
+
# to this resource gateway. ResourceConfigDnsResolution is set at
|
|
630
|
+
# creation time and cannot be changed.
|
|
631
|
+
#
|
|
632
|
+
# * `IN_VPC` - DNS resolution occurs privately within the resource
|
|
633
|
+
# gateway's VPC. DNS queries for resources behind this resource
|
|
634
|
+
# gateway resolve using the DNS resolvers defined in the VPC's DHCP
|
|
635
|
+
# option sets. Use this when your resource domain names are hosted
|
|
636
|
+
# in private Route 53 hosted zones or on-premises DNS servers
|
|
637
|
+
# reachable from the VPC.
|
|
638
|
+
#
|
|
639
|
+
# * `PUBLIC` - DNS resolution occurs against public DNS resolvers. DNS
|
|
640
|
+
# queries for resources behind this resource gateway resolve using
|
|
641
|
+
# standard public DNS. Use this when your resource domain names are
|
|
642
|
+
# publicly resolvable.
|
|
643
|
+
# @return [String]
|
|
644
|
+
#
|
|
627
645
|
# @!attribute [rw] tags
|
|
628
646
|
# The tags for the resource gateway.
|
|
629
647
|
# @return [Hash<String,String>]
|
|
@@ -638,6 +656,7 @@ module Aws::VPCLattice
|
|
|
638
656
|
:security_group_ids,
|
|
639
657
|
:ip_address_type,
|
|
640
658
|
:ipv4_addresses_per_eni,
|
|
659
|
+
:resource_config_dns_resolution,
|
|
641
660
|
:tags)
|
|
642
661
|
SENSITIVE = []
|
|
643
662
|
include Aws::Structure
|
|
@@ -679,6 +698,11 @@ module Aws::VPCLattice
|
|
|
679
698
|
# The number of IPv4 addresses in each ENI for the resource gateway.
|
|
680
699
|
# @return [Integer]
|
|
681
700
|
#
|
|
701
|
+
# @!attribute [rw] resource_config_dns_resolution
|
|
702
|
+
# The DNS resolution type for resource configurations that are
|
|
703
|
+
# associated with this resource gateway.
|
|
704
|
+
# @return [String]
|
|
705
|
+
#
|
|
682
706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateResourceGatewayResponse AWS API Documentation
|
|
683
707
|
#
|
|
684
708
|
class CreateResourceGatewayResponse < Struct.new(
|
|
@@ -690,7 +714,8 @@ module Aws::VPCLattice
|
|
|
690
714
|
:subnet_ids,
|
|
691
715
|
:security_group_ids,
|
|
692
716
|
:ip_address_type,
|
|
693
|
-
:ipv4_addresses_per_eni
|
|
717
|
+
:ipv4_addresses_per_eni,
|
|
718
|
+
:resource_config_dns_resolution)
|
|
694
719
|
SENSITIVE = []
|
|
695
720
|
include Aws::Structure
|
|
696
721
|
end
|
|
@@ -2345,6 +2370,14 @@ module Aws::VPCLattice
|
|
|
2345
2370
|
# The IDs of the VPC subnets for resource gateway.
|
|
2346
2371
|
# @return [Array<String>]
|
|
2347
2372
|
#
|
|
2373
|
+
# @!attribute [rw] service_managed
|
|
2374
|
+
# Indicates whether the resource gateway is managed by an AWS service.
|
|
2375
|
+
# @return [Boolean]
|
|
2376
|
+
#
|
|
2377
|
+
# @!attribute [rw] managed_by
|
|
2378
|
+
# The AWS service that manages the resource gateway.
|
|
2379
|
+
# @return [String]
|
|
2380
|
+
#
|
|
2348
2381
|
# @!attribute [rw] security_group_ids
|
|
2349
2382
|
# The security group IDs associated with the resource gateway.
|
|
2350
2383
|
# @return [Array<String>]
|
|
@@ -2357,6 +2390,11 @@ module Aws::VPCLattice
|
|
|
2357
2390
|
# The number of IPv4 addresses in each ENI for the resource gateway.
|
|
2358
2391
|
# @return [Integer]
|
|
2359
2392
|
#
|
|
2393
|
+
# @!attribute [rw] resource_config_dns_resolution
|
|
2394
|
+
# The DNS resolution type for resource configurations that are
|
|
2395
|
+
# associated with this resource gateway.
|
|
2396
|
+
# @return [String]
|
|
2397
|
+
#
|
|
2360
2398
|
# @!attribute [rw] created_at
|
|
2361
2399
|
# The date and time that the resource gateway was created, in ISO-8601
|
|
2362
2400
|
# format.
|
|
@@ -2376,9 +2414,12 @@ module Aws::VPCLattice
|
|
|
2376
2414
|
:status,
|
|
2377
2415
|
:vpc_id,
|
|
2378
2416
|
:subnet_ids,
|
|
2417
|
+
:service_managed,
|
|
2418
|
+
:managed_by,
|
|
2379
2419
|
:security_group_ids,
|
|
2380
2420
|
:ip_address_type,
|
|
2381
2421
|
:ipv4_addresses_per_eni,
|
|
2422
|
+
:resource_config_dns_resolution,
|
|
2382
2423
|
:created_at,
|
|
2383
2424
|
:last_updated_at)
|
|
2384
2425
|
SENSITIVE = []
|
|
@@ -4325,6 +4366,11 @@ module Aws::VPCLattice
|
|
|
4325
4366
|
# The number of IPv4 addresses in each ENI for the resource gateway.
|
|
4326
4367
|
# @return [Integer]
|
|
4327
4368
|
#
|
|
4369
|
+
# @!attribute [rw] resource_config_dns_resolution
|
|
4370
|
+
# The DNS resolution type for resource configurations that are
|
|
4371
|
+
# associated with this resource gateway.
|
|
4372
|
+
# @return [String]
|
|
4373
|
+
#
|
|
4328
4374
|
# @!attribute [rw] created_at
|
|
4329
4375
|
# The date and time that the VPC endpoint association was created, in
|
|
4330
4376
|
# ISO-8601 format.
|
|
@@ -4347,6 +4393,7 @@ module Aws::VPCLattice
|
|
|
4347
4393
|
:security_group_ids,
|
|
4348
4394
|
:ip_address_type,
|
|
4349
4395
|
:ipv4_addresses_per_eni,
|
|
4396
|
+
:resource_config_dns_resolution,
|
|
4350
4397
|
:created_at,
|
|
4351
4398
|
:last_updated_at)
|
|
4352
4399
|
SENSITIVE = []
|
|
@@ -5323,7 +5370,7 @@ module Aws::VPCLattice
|
|
|
5323
5370
|
#
|
|
5324
5371
|
# * `DRAINING`: The target is being deregistered. No new connections
|
|
5325
5372
|
# are sent to this target while current connections are being
|
|
5326
|
-
# drained. The default draining time is
|
|
5373
|
+
# drained. The default draining time is 1 minute.
|
|
5327
5374
|
#
|
|
5328
5375
|
# * `UNAVAILABLE`: Health checks are unavailable for the target group.
|
|
5329
5376
|
#
|
data/lib/aws-sdk-vpclattice.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -246,6 +246,7 @@ module Aws
|
|
|
246
246
|
def security_group_ids: () -> ::Array[::String]
|
|
247
247
|
def ip_address_type: () -> ("IPV4" | "IPV6" | "DUALSTACK")
|
|
248
248
|
def ipv4_addresses_per_eni: () -> ::Integer
|
|
249
|
+
def resource_config_dns_resolution: () -> ("IN_VPC" | "PUBLIC")
|
|
249
250
|
end
|
|
250
251
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_resource_gateway-instance_method
|
|
251
252
|
def create_resource_gateway: (
|
|
@@ -256,6 +257,7 @@ module Aws
|
|
|
256
257
|
?security_group_ids: Array[::String],
|
|
257
258
|
?ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK"),
|
|
258
259
|
?ipv4_addresses_per_eni: ::Integer,
|
|
260
|
+
?resource_config_dns_resolution: ("IN_VPC" | "PUBLIC"),
|
|
259
261
|
?tags: Hash[::String, ::String]
|
|
260
262
|
) -> _CreateResourceGatewayResponseSuccess
|
|
261
263
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateResourceGatewayResponseSuccess
|
|
@@ -743,9 +745,12 @@ module Aws
|
|
|
743
745
|
def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
744
746
|
def vpc_id: () -> ::String
|
|
745
747
|
def subnet_ids: () -> ::Array[::String]
|
|
748
|
+
def service_managed: () -> bool
|
|
749
|
+
def managed_by: () -> ::String
|
|
746
750
|
def security_group_ids: () -> ::Array[::String]
|
|
747
751
|
def ip_address_type: () -> ("IPV4" | "IPV6" | "DUALSTACK")
|
|
748
752
|
def ipv4_addresses_per_eni: () -> ::Integer
|
|
753
|
+
def resource_config_dns_resolution: () -> ("IN_VPC" | "PUBLIC")
|
|
749
754
|
def created_at: () -> ::Time
|
|
750
755
|
def last_updated_at: () -> ::Time
|
|
751
756
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -138,6 +138,7 @@ module Aws::VPCLattice
|
|
|
138
138
|
attr_accessor security_group_ids: ::Array[::String]
|
|
139
139
|
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
|
140
140
|
attr_accessor ipv4_addresses_per_eni: ::Integer
|
|
141
|
+
attr_accessor resource_config_dns_resolution: ("IN_VPC" | "PUBLIC")
|
|
141
142
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
142
143
|
SENSITIVE: []
|
|
143
144
|
end
|
|
@@ -152,6 +153,7 @@ module Aws::VPCLattice
|
|
|
152
153
|
attr_accessor security_group_ids: ::Array[::String]
|
|
153
154
|
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
|
154
155
|
attr_accessor ipv4_addresses_per_eni: ::Integer
|
|
156
|
+
attr_accessor resource_config_dns_resolution: ("IN_VPC" | "PUBLIC")
|
|
155
157
|
SENSITIVE: []
|
|
156
158
|
end
|
|
157
159
|
|
|
@@ -609,9 +611,12 @@ module Aws::VPCLattice
|
|
|
609
611
|
attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "UPDATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED")
|
|
610
612
|
attr_accessor vpc_id: ::String
|
|
611
613
|
attr_accessor subnet_ids: ::Array[::String]
|
|
614
|
+
attr_accessor service_managed: bool
|
|
615
|
+
attr_accessor managed_by: ::String
|
|
612
616
|
attr_accessor security_group_ids: ::Array[::String]
|
|
613
617
|
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
|
614
618
|
attr_accessor ipv4_addresses_per_eni: ::Integer
|
|
619
|
+
attr_accessor resource_config_dns_resolution: ("IN_VPC" | "PUBLIC")
|
|
615
620
|
attr_accessor created_at: ::Time
|
|
616
621
|
attr_accessor last_updated_at: ::Time
|
|
617
622
|
SENSITIVE: []
|
|
@@ -1183,6 +1188,7 @@ module Aws::VPCLattice
|
|
|
1183
1188
|
attr_accessor security_group_ids: ::Array[::String]
|
|
1184
1189
|
attr_accessor ip_address_type: ("IPV4" | "IPV6" | "DUALSTACK")
|
|
1185
1190
|
attr_accessor ipv4_addresses_per_eni: ::Integer
|
|
1191
|
+
attr_accessor resource_config_dns_resolution: ("IN_VPC" | "PUBLIC")
|
|
1186
1192
|
attr_accessor created_at: ::Time
|
|
1187
1193
|
attr_accessor last_updated_at: ::Time
|
|
1188
1194
|
SENSITIVE: []
|