aws-sdk-ec2 1.313.0 → 1.314.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-ec2/client.rb +63 -9
- data/lib/aws-sdk-ec2/client_api.rb +27 -1
- data/lib/aws-sdk-ec2/types.rb +139 -24
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab7b59a7371f2c1f2b5c3560b50e65cc6f4a817d120af50c3b4b64e891edec0c
|
4
|
+
data.tar.gz: d2f280d4f22f1bc44d6fa728625b5e1fefd04ba0a848bb8afd554d1bcdc37baf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f020a482a6d5dce57bcd24a7ff91a21c855721eecb4cae2ad46ed92d8a3ff7e7555c1bc38ff7cc82f81a9a4feedd144de7d460286dd1eaf9dc63823682fe234
|
7
|
+
data.tar.gz: a3d974724fb48a6721790b38c34a3a2585d0e5b3efbf27c28a5781fb599ec7be9d552a0c34a8d8c063675c26cfad6c0e5856528a3def0ddd613b9d3649d91585
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.314.0 (2022-05-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates AWS PrivateLink APIs to support IPv6 for PrivateLink Services and Endpoints of type 'Interface'.
|
8
|
+
|
4
9
|
1.313.0 (2022-05-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.314.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -10595,9 +10595,6 @@ module Aws::EC2
|
|
10595
10595
|
#
|
10596
10596
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/subnet-cidr-reservation.html
|
10597
10597
|
#
|
10598
|
-
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
10599
|
-
# The tags to assign to the subnet CIDR reservation.
|
10600
|
-
#
|
10601
10598
|
# @option params [required, String] :subnet_id
|
10602
10599
|
# The ID of the subnet.
|
10603
10600
|
#
|
@@ -10631,6 +10628,9 @@ module Aws::EC2
|
|
10631
10628
|
# If you have the required permissions, the error response is
|
10632
10629
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
10633
10630
|
#
|
10631
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
10632
|
+
# The tags to assign to the subnet CIDR reservation.
|
10633
|
+
#
|
10634
10634
|
# @return [Types::CreateSubnetCidrReservationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10635
10635
|
#
|
10636
10636
|
# * {Types::CreateSubnetCidrReservationResult#subnet_cidr_reservation #subnet_cidr_reservation} => Types::SubnetCidrReservation
|
@@ -10638,6 +10638,11 @@ module Aws::EC2
|
|
10638
10638
|
# @example Request syntax with placeholder values
|
10639
10639
|
#
|
10640
10640
|
# resp = client.create_subnet_cidr_reservation({
|
10641
|
+
# subnet_id: "SubnetId", # required
|
10642
|
+
# cidr: "String", # required
|
10643
|
+
# reservation_type: "prefix", # required, accepts prefix, explicit
|
10644
|
+
# description: "String",
|
10645
|
+
# dry_run: false,
|
10641
10646
|
# tag_specifications: [
|
10642
10647
|
# {
|
10643
10648
|
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-endpoint, vpc-endpoint-service, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
@@ -10649,11 +10654,6 @@ module Aws::EC2
|
|
10649
10654
|
# ],
|
10650
10655
|
# },
|
10651
10656
|
# ],
|
10652
|
-
# subnet_id: "SubnetId", # required
|
10653
|
-
# cidr: "String", # required
|
10654
|
-
# reservation_type: "prefix", # required, accepts prefix, explicit
|
10655
|
-
# description: "String",
|
10656
|
-
# dry_run: false,
|
10657
10657
|
# })
|
10658
10658
|
#
|
10659
10659
|
# @example Response structure
|
@@ -12460,6 +12460,12 @@ module Aws::EC2
|
|
12460
12460
|
# (Interface endpoint) The ID of one or more security groups to
|
12461
12461
|
# associate with the endpoint network interface.
|
12462
12462
|
#
|
12463
|
+
# @option params [String] :ip_address_type
|
12464
|
+
# The IP address type for the endpoint.
|
12465
|
+
#
|
12466
|
+
# @option params [Types::DnsOptionsSpecification] :dns_options
|
12467
|
+
# The DNS options for the endpoint.
|
12468
|
+
#
|
12463
12469
|
# @option params [String] :client_token
|
12464
12470
|
# Unique, case-sensitive identifier that you provide to ensure the
|
12465
12471
|
# idempotency of the request. For more information, see [How to ensure
|
@@ -12504,6 +12510,10 @@ module Aws::EC2
|
|
12504
12510
|
# route_table_ids: ["RouteTableId"],
|
12505
12511
|
# subnet_ids: ["SubnetId"],
|
12506
12512
|
# security_group_ids: ["SecurityGroupId"],
|
12513
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
12514
|
+
# dns_options: {
|
12515
|
+
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
12516
|
+
# },
|
12507
12517
|
# client_token: "String",
|
12508
12518
|
# private_dns_enabled: false,
|
12509
12519
|
# tag_specifications: [
|
@@ -12534,6 +12544,8 @@ module Aws::EC2
|
|
12534
12544
|
# resp.vpc_endpoint.groups #=> Array
|
12535
12545
|
# resp.vpc_endpoint.groups[0].group_id #=> String
|
12536
12546
|
# resp.vpc_endpoint.groups[0].group_name #=> String
|
12547
|
+
# resp.vpc_endpoint.ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
12548
|
+
# resp.vpc_endpoint.dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
|
12537
12549
|
# resp.vpc_endpoint.private_dns_enabled #=> Boolean
|
12538
12550
|
# resp.vpc_endpoint.requester_managed #=> Boolean
|
12539
12551
|
# resp.vpc_endpoint.network_interface_ids #=> Array
|
@@ -12682,6 +12694,10 @@ module Aws::EC2
|
|
12682
12694
|
# The Amazon Resource Names (ARNs) of one or more Gateway Load
|
12683
12695
|
# Balancers.
|
12684
12696
|
#
|
12697
|
+
# @option params [Array<String>] :supported_ip_address_types
|
12698
|
+
# The supported IP address types. The possible values are `ipv4` and
|
12699
|
+
# `ipv6`.
|
12700
|
+
#
|
12685
12701
|
# @option params [String] :client_token
|
12686
12702
|
# Unique, case-sensitive identifier that you provide to ensure the
|
12687
12703
|
# idempotency of the request. For more information, see [How to ensure
|
@@ -12707,6 +12723,7 @@ module Aws::EC2
|
|
12707
12723
|
# private_dns_name: "String",
|
12708
12724
|
# network_load_balancer_arns: ["String"],
|
12709
12725
|
# gateway_load_balancer_arns: ["String"],
|
12726
|
+
# supported_ip_address_types: ["String"],
|
12710
12727
|
# client_token: "String",
|
12711
12728
|
# tag_specifications: [
|
12712
12729
|
# {
|
@@ -12736,6 +12753,8 @@ module Aws::EC2
|
|
12736
12753
|
# resp.service_configuration.network_load_balancer_arns[0] #=> String
|
12737
12754
|
# resp.service_configuration.gateway_load_balancer_arns #=> Array
|
12738
12755
|
# resp.service_configuration.gateway_load_balancer_arns[0] #=> String
|
12756
|
+
# resp.service_configuration.supported_ip_address_types #=> Array
|
12757
|
+
# resp.service_configuration.supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
|
12739
12758
|
# resp.service_configuration.base_endpoint_dns_names #=> Array
|
12740
12759
|
# resp.service_configuration.base_endpoint_dns_names[0] #=> String
|
12741
12760
|
# resp.service_configuration.private_dns_name #=> String
|
@@ -31324,6 +31343,8 @@ module Aws::EC2
|
|
31324
31343
|
# @option params [Array<Types::Filter>] :filters
|
31325
31344
|
# One or more filters.
|
31326
31345
|
#
|
31346
|
+
# * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
|
31347
|
+
#
|
31327
31348
|
# * `service-id` - The ID of the service.
|
31328
31349
|
#
|
31329
31350
|
# * `vpc-endpoint-owner` - The ID of the Amazon Web Services account ID
|
@@ -31381,6 +31402,7 @@ module Aws::EC2
|
|
31381
31402
|
# resp.vpc_endpoint_connections[0].network_load_balancer_arns[0] #=> String
|
31382
31403
|
# resp.vpc_endpoint_connections[0].gateway_load_balancer_arns #=> Array
|
31383
31404
|
# resp.vpc_endpoint_connections[0].gateway_load_balancer_arns[0] #=> String
|
31405
|
+
# resp.vpc_endpoint_connections[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
31384
31406
|
# resp.next_token #=> String
|
31385
31407
|
#
|
31386
31408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
|
@@ -31414,6 +31436,9 @@ module Aws::EC2
|
|
31414
31436
|
# * `service-state` - The state of the service (`Pending` \| `Available`
|
31415
31437
|
# \| `Deleting` \| `Deleted` \| `Failed`).
|
31416
31438
|
#
|
31439
|
+
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
31440
|
+
# `ipv6`).
|
31441
|
+
#
|
31417
31442
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
31418
31443
|
# the resource. Use the tag key in the filter name and the tag value
|
31419
31444
|
# as the filter value. For example, to find all resources that have a
|
@@ -31472,6 +31497,8 @@ module Aws::EC2
|
|
31472
31497
|
# resp.service_configurations[0].network_load_balancer_arns[0] #=> String
|
31473
31498
|
# resp.service_configurations[0].gateway_load_balancer_arns #=> Array
|
31474
31499
|
# resp.service_configurations[0].gateway_load_balancer_arns[0] #=> String
|
31500
|
+
# resp.service_configurations[0].supported_ip_address_types #=> Array
|
31501
|
+
# resp.service_configurations[0].supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
|
31475
31502
|
# resp.service_configurations[0].base_endpoint_dns_names #=> Array
|
31476
31503
|
# resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
|
31477
31504
|
# resp.service_configurations[0].private_dns_name #=> String
|
@@ -31588,6 +31615,9 @@ module Aws::EC2
|
|
31588
31615
|
#
|
31589
31616
|
# * `service-type` - The type of service (`Interface` \| `Gateway`).
|
31590
31617
|
#
|
31618
|
+
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
31619
|
+
# `ipv6`).
|
31620
|
+
#
|
31591
31621
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
31592
31622
|
# the resource. Use the tag key in the filter name and the tag value
|
31593
31623
|
# as the filter value. For example, to find all resources that have a
|
@@ -31656,6 +31686,8 @@ module Aws::EC2
|
|
31656
31686
|
# resp.service_details[0].tags[0].key #=> String
|
31657
31687
|
# resp.service_details[0].tags[0].value #=> String
|
31658
31688
|
# resp.service_details[0].private_dns_name_verification_state #=> String, one of "pendingVerification", "verified", "failed"
|
31689
|
+
# resp.service_details[0].supported_ip_address_types #=> Array
|
31690
|
+
# resp.service_details[0].supported_ip_address_types[0] #=> String, one of "ipv4", "ipv6"
|
31659
31691
|
# resp.next_token #=> String
|
31660
31692
|
#
|
31661
31693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices AWS API Documentation
|
@@ -31681,6 +31713,8 @@ module Aws::EC2
|
|
31681
31713
|
# @option params [Array<Types::Filter>] :filters
|
31682
31714
|
# One or more filters.
|
31683
31715
|
#
|
31716
|
+
# * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
|
31717
|
+
#
|
31684
31718
|
# * `service-name` - The name of the service.
|
31685
31719
|
#
|
31686
31720
|
# * `vpc-id` - The ID of the VPC in which the endpoint resides.
|
@@ -31754,6 +31788,8 @@ module Aws::EC2
|
|
31754
31788
|
# resp.vpc_endpoints[0].groups #=> Array
|
31755
31789
|
# resp.vpc_endpoints[0].groups[0].group_id #=> String
|
31756
31790
|
# resp.vpc_endpoints[0].groups[0].group_name #=> String
|
31791
|
+
# resp.vpc_endpoints[0].ip_address_type #=> String, one of "ipv4", "dualstack", "ipv6"
|
31792
|
+
# resp.vpc_endpoints[0].dns_options.dns_record_ip_type #=> String, one of "ipv4", "dualstack", "ipv6", "service-defined"
|
31757
31793
|
# resp.vpc_endpoints[0].private_dns_enabled #=> Boolean
|
31758
31794
|
# resp.vpc_endpoints[0].requester_managed #=> Boolean
|
31759
31795
|
# resp.vpc_endpoints[0].network_interface_ids #=> Array
|
@@ -42058,6 +42094,12 @@ module Aws::EC2
|
|
42058
42094
|
# (Interface endpoint) One or more security group IDs to disassociate
|
42059
42095
|
# from the network interface.
|
42060
42096
|
#
|
42097
|
+
# @option params [String] :ip_address_type
|
42098
|
+
# The IP address type for the endpoint.
|
42099
|
+
#
|
42100
|
+
# @option params [Types::DnsOptionsSpecification] :dns_options
|
42101
|
+
# The DNS options for the endpoint.
|
42102
|
+
#
|
42061
42103
|
# @option params [Boolean] :private_dns_enabled
|
42062
42104
|
# (Interface endpoint) Indicates whether a private hosted zone is
|
42063
42105
|
# associated with the VPC.
|
@@ -42079,6 +42121,10 @@ module Aws::EC2
|
|
42079
42121
|
# remove_subnet_ids: ["SubnetId"],
|
42080
42122
|
# add_security_group_ids: ["SecurityGroupId"],
|
42081
42123
|
# remove_security_group_ids: ["SecurityGroupId"],
|
42124
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
42125
|
+
# dns_options: {
|
42126
|
+
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
42127
|
+
# },
|
42082
42128
|
# private_dns_enabled: false,
|
42083
42129
|
# })
|
42084
42130
|
#
|
@@ -42187,6 +42233,12 @@ module Aws::EC2
|
|
42187
42233
|
# The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
|
42188
42234
|
# from your service configuration.
|
42189
42235
|
#
|
42236
|
+
# @option params [Array<String>] :add_supported_ip_address_types
|
42237
|
+
# The IP address types to add to your service configuration.
|
42238
|
+
#
|
42239
|
+
# @option params [Array<String>] :remove_supported_ip_address_types
|
42240
|
+
# The IP address types to remove from your service configuration.
|
42241
|
+
#
|
42190
42242
|
# @return [Types::ModifyVpcEndpointServiceConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
42191
42243
|
#
|
42192
42244
|
# * {Types::ModifyVpcEndpointServiceConfigurationResult#return #return} => Boolean
|
@@ -42203,6 +42255,8 @@ module Aws::EC2
|
|
42203
42255
|
# remove_network_load_balancer_arns: ["String"],
|
42204
42256
|
# add_gateway_load_balancer_arns: ["String"],
|
42205
42257
|
# remove_gateway_load_balancer_arns: ["String"],
|
42258
|
+
# add_supported_ip_address_types: ["String"],
|
42259
|
+
# remove_supported_ip_address_types: ["String"],
|
42206
42260
|
# })
|
42207
42261
|
#
|
42208
42262
|
# @example Response structure
|
@@ -49601,7 +49655,7 @@ module Aws::EC2
|
|
49601
49655
|
params: params,
|
49602
49656
|
config: config)
|
49603
49657
|
context[:gem_name] = 'aws-sdk-ec2'
|
49604
|
-
context[:gem_version] = '1.
|
49658
|
+
context[:gem_version] = '1.314.0'
|
49605
49659
|
Seahorse::Client::Request.new(handlers, context)
|
49606
49660
|
end
|
49607
49661
|
|
@@ -1032,6 +1032,9 @@ module Aws::EC2
|
|
1032
1032
|
DnsEntry = Shapes::StructureShape.new(name: 'DnsEntry')
|
1033
1033
|
DnsEntrySet = Shapes::ListShape.new(name: 'DnsEntrySet')
|
1034
1034
|
DnsNameState = Shapes::StringShape.new(name: 'DnsNameState')
|
1035
|
+
DnsOptions = Shapes::StructureShape.new(name: 'DnsOptions')
|
1036
|
+
DnsOptionsSpecification = Shapes::StructureShape.new(name: 'DnsOptionsSpecification')
|
1037
|
+
DnsRecordIpType = Shapes::StringShape.new(name: 'DnsRecordIpType')
|
1035
1038
|
DnsServersOptionsModifyStructure = Shapes::StructureShape.new(name: 'DnsServersOptionsModifyStructure')
|
1036
1039
|
DnsSupportValue = Shapes::StringShape.new(name: 'DnsSupportValue')
|
1037
1040
|
DomainType = Shapes::StringShape.new(name: 'DomainType')
|
@@ -1506,6 +1509,7 @@ module Aws::EC2
|
|
1506
1509
|
InternetGatewayList = Shapes::ListShape.new(name: 'InternetGatewayList')
|
1507
1510
|
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
1508
1511
|
IpAddressList = Shapes::ListShape.new(name: 'IpAddressList')
|
1512
|
+
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
1509
1513
|
IpPermission = Shapes::StructureShape.new(name: 'IpPermission')
|
1510
1514
|
IpPermissionList = Shapes::ListShape.new(name: 'IpPermissionList')
|
1511
1515
|
IpPrefixList = Shapes::ListShape.new(name: 'IpPrefixList')
|
@@ -2289,6 +2293,7 @@ module Aws::EC2
|
|
2289
2293
|
SensitiveUserData = Shapes::StringShape.new(name: 'SensitiveUserData')
|
2290
2294
|
ServiceConfiguration = Shapes::StructureShape.new(name: 'ServiceConfiguration')
|
2291
2295
|
ServiceConfigurationSet = Shapes::ListShape.new(name: 'ServiceConfigurationSet')
|
2296
|
+
ServiceConnectivityType = Shapes::StringShape.new(name: 'ServiceConnectivityType')
|
2292
2297
|
ServiceDetail = Shapes::StructureShape.new(name: 'ServiceDetail')
|
2293
2298
|
ServiceDetailSet = Shapes::ListShape.new(name: 'ServiceDetailSet')
|
2294
2299
|
ServiceState = Shapes::StringShape.new(name: 'ServiceState')
|
@@ -2394,6 +2399,7 @@ module Aws::EC2
|
|
2394
2399
|
SuccessfulQueuedPurchaseDeletion = Shapes::StructureShape.new(name: 'SuccessfulQueuedPurchaseDeletion')
|
2395
2400
|
SuccessfulQueuedPurchaseDeletionSet = Shapes::ListShape.new(name: 'SuccessfulQueuedPurchaseDeletionSet')
|
2396
2401
|
SummaryStatus = Shapes::StringShape.new(name: 'SummaryStatus')
|
2402
|
+
SupportedIpAddressTypes = Shapes::ListShape.new(name: 'SupportedIpAddressTypes')
|
2397
2403
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
2398
2404
|
TagDescription = Shapes::StructureShape.new(name: 'TagDescription')
|
2399
2405
|
TagDescriptionList = Shapes::ListShape.new(name: 'TagDescriptionList')
|
@@ -4349,12 +4355,12 @@ module Aws::EC2
|
|
4349
4355
|
CreateStoreImageTaskResult.add_member(:object_key, Shapes::ShapeRef.new(shape: String, location_name: "objectKey"))
|
4350
4356
|
CreateStoreImageTaskResult.struct_class = Types::CreateStoreImageTaskResult
|
4351
4357
|
|
4352
|
-
CreateSubnetCidrReservationRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4353
4358
|
CreateSubnetCidrReservationRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "SubnetId"))
|
4354
4359
|
CreateSubnetCidrReservationRequest.add_member(:cidr, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Cidr"))
|
4355
4360
|
CreateSubnetCidrReservationRequest.add_member(:reservation_type, Shapes::ShapeRef.new(shape: SubnetCidrReservationType, required: true, location_name: "ReservationType"))
|
4356
4361
|
CreateSubnetCidrReservationRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
4357
4362
|
CreateSubnetCidrReservationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4363
|
+
CreateSubnetCidrReservationRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4358
4364
|
CreateSubnetCidrReservationRequest.struct_class = Types::CreateSubnetCidrReservationRequest
|
4359
4365
|
|
4360
4366
|
CreateSubnetCidrReservationResult.add_member(:subnet_cidr_reservation, Shapes::ShapeRef.new(shape: SubnetCidrReservation, location_name: "subnetCidrReservation"))
|
@@ -4582,6 +4588,8 @@ module Aws::EC2
|
|
4582
4588
|
CreateVpcEndpointRequest.add_member(:route_table_ids, Shapes::ShapeRef.new(shape: VpcEndpointRouteTableIdList, location_name: "RouteTableId"))
|
4583
4589
|
CreateVpcEndpointRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: VpcEndpointSubnetIdList, location_name: "SubnetId"))
|
4584
4590
|
CreateVpcEndpointRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: VpcEndpointSecurityGroupIdList, location_name: "SecurityGroupId"))
|
4591
|
+
CreateVpcEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
4592
|
+
CreateVpcEndpointRequest.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptionsSpecification, location_name: "DnsOptions"))
|
4585
4593
|
CreateVpcEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
4586
4594
|
CreateVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
|
4587
4595
|
CreateVpcEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
@@ -4596,6 +4604,7 @@ module Aws::EC2
|
|
4596
4604
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "PrivateDnsName"))
|
4597
4605
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "NetworkLoadBalancerArn"))
|
4598
4606
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "GatewayLoadBalancerArn"))
|
4607
|
+
CreateVpcEndpointServiceConfigurationRequest.add_member(:supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "SupportedIpAddressType"))
|
4599
4608
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
4600
4609
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4601
4610
|
CreateVpcEndpointServiceConfigurationRequest.struct_class = Types::CreateVpcEndpointServiceConfigurationRequest
|
@@ -6917,6 +6926,12 @@ module Aws::EC2
|
|
6917
6926
|
|
6918
6927
|
DnsEntrySet.member = Shapes::ShapeRef.new(shape: DnsEntry, location_name: "item")
|
6919
6928
|
|
6929
|
+
DnsOptions.add_member(:dns_record_ip_type, Shapes::ShapeRef.new(shape: DnsRecordIpType, location_name: "dnsRecordIpType"))
|
6930
|
+
DnsOptions.struct_class = Types::DnsOptions
|
6931
|
+
|
6932
|
+
DnsOptionsSpecification.add_member(:dns_record_ip_type, Shapes::ShapeRef.new(shape: DnsRecordIpType, location_name: "DnsRecordIpType"))
|
6933
|
+
DnsOptionsSpecification.struct_class = Types::DnsOptionsSpecification
|
6934
|
+
|
6920
6935
|
DnsServersOptionsModifyStructure.add_member(:custom_dns_servers, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "CustomDnsServers"))
|
6921
6936
|
DnsServersOptionsModifyStructure.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
6922
6937
|
DnsServersOptionsModifyStructure.struct_class = Types::DnsServersOptionsModifyStructure
|
@@ -9980,6 +9995,8 @@ module Aws::EC2
|
|
9980
9995
|
ModifyVpcEndpointRequest.add_member(:remove_subnet_ids, Shapes::ShapeRef.new(shape: VpcEndpointSubnetIdList, location_name: "RemoveSubnetId"))
|
9981
9996
|
ModifyVpcEndpointRequest.add_member(:add_security_group_ids, Shapes::ShapeRef.new(shape: VpcEndpointSecurityGroupIdList, location_name: "AddSecurityGroupId"))
|
9982
9997
|
ModifyVpcEndpointRequest.add_member(:remove_security_group_ids, Shapes::ShapeRef.new(shape: VpcEndpointSecurityGroupIdList, location_name: "RemoveSecurityGroupId"))
|
9998
|
+
ModifyVpcEndpointRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
|
9999
|
+
ModifyVpcEndpointRequest.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptionsSpecification, location_name: "DnsOptions"))
|
9983
10000
|
ModifyVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
|
9984
10001
|
ModifyVpcEndpointRequest.struct_class = Types::ModifyVpcEndpointRequest
|
9985
10002
|
|
@@ -9995,6 +10012,8 @@ module Aws::EC2
|
|
9995
10012
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveNetworkLoadBalancerArn"))
|
9996
10013
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddGatewayLoadBalancerArn"))
|
9997
10014
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveGatewayLoadBalancerArn"))
|
10015
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddSupportedIpAddressType"))
|
10016
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveSupportedIpAddressType"))
|
9998
10017
|
ModifyVpcEndpointServiceConfigurationRequest.struct_class = Types::ModifyVpcEndpointServiceConfigurationRequest
|
9999
10018
|
|
10000
10019
|
ModifyVpcEndpointServiceConfigurationResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
@@ -11804,6 +11823,7 @@ module Aws::EC2
|
|
11804
11823
|
ServiceConfiguration.add_member(:manages_vpc_endpoints, Shapes::ShapeRef.new(shape: Boolean, location_name: "managesVpcEndpoints"))
|
11805
11824
|
ServiceConfiguration.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
|
11806
11825
|
ServiceConfiguration.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "gatewayLoadBalancerArnSet"))
|
11826
|
+
ServiceConfiguration.add_member(:supported_ip_address_types, Shapes::ShapeRef.new(shape: SupportedIpAddressTypes, location_name: "supportedIpAddressTypeSet"))
|
11807
11827
|
ServiceConfiguration.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
|
11808
11828
|
ServiceConfiguration.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
|
11809
11829
|
ServiceConfiguration.add_member(:private_dns_name_configuration, Shapes::ShapeRef.new(shape: PrivateDnsNameConfiguration, location_name: "privateDnsNameConfiguration"))
|
@@ -11827,6 +11847,7 @@ module Aws::EC2
|
|
11827
11847
|
ServiceDetail.add_member(:payer_responsibility, Shapes::ShapeRef.new(shape: PayerResponsibility, location_name: "payerResponsibility"))
|
11828
11848
|
ServiceDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
11829
11849
|
ServiceDetail.add_member(:private_dns_name_verification_state, Shapes::ShapeRef.new(shape: DnsNameState, location_name: "privateDnsNameVerificationState"))
|
11850
|
+
ServiceDetail.add_member(:supported_ip_address_types, Shapes::ShapeRef.new(shape: SupportedIpAddressTypes, location_name: "supportedIpAddressTypeSet"))
|
11830
11851
|
ServiceDetail.struct_class = Types::ServiceDetail
|
11831
11852
|
|
11832
11853
|
ServiceDetailSet.member = Shapes::ShapeRef.new(shape: ServiceDetail, location_name: "item")
|
@@ -12256,6 +12277,8 @@ module Aws::EC2
|
|
12256
12277
|
|
12257
12278
|
SuccessfulQueuedPurchaseDeletionSet.member = Shapes::ShapeRef.new(shape: SuccessfulQueuedPurchaseDeletion, location_name: "item")
|
12258
12279
|
|
12280
|
+
SupportedIpAddressTypes.member = Shapes::ShapeRef.new(shape: ServiceConnectivityType, location_name: "item")
|
12281
|
+
|
12259
12282
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "key"))
|
12260
12283
|
Tag.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
|
12261
12284
|
Tag.struct_class = Types::Tag
|
@@ -13052,6 +13075,8 @@ module Aws::EC2
|
|
13052
13075
|
VpcEndpoint.add_member(:route_table_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "routeTableIdSet"))
|
13053
13076
|
VpcEndpoint.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "subnetIdSet"))
|
13054
13077
|
VpcEndpoint.add_member(:groups, Shapes::ShapeRef.new(shape: GroupIdentifierSet, location_name: "groupSet"))
|
13078
|
+
VpcEndpoint.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
13079
|
+
VpcEndpoint.add_member(:dns_options, Shapes::ShapeRef.new(shape: DnsOptions, location_name: "dnsOptions"))
|
13055
13080
|
VpcEndpoint.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "privateDnsEnabled"))
|
13056
13081
|
VpcEndpoint.add_member(:requester_managed, Shapes::ShapeRef.new(shape: Boolean, location_name: "requesterManaged"))
|
13057
13082
|
VpcEndpoint.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkInterfaceIdSet"))
|
@@ -13070,6 +13095,7 @@ module Aws::EC2
|
|
13070
13095
|
VpcEndpointConnection.add_member(:dns_entries, Shapes::ShapeRef.new(shape: DnsEntrySet, location_name: "dnsEntrySet"))
|
13071
13096
|
VpcEndpointConnection.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
|
13072
13097
|
VpcEndpointConnection.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "gatewayLoadBalancerArnSet"))
|
13098
|
+
VpcEndpointConnection.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
13073
13099
|
VpcEndpointConnection.struct_class = Types::VpcEndpointConnection
|
13074
13100
|
|
13075
13101
|
VpcEndpointConnectionSet.member = Shapes::ShapeRef.new(shape: VpcEndpointConnection, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -11574,6 +11574,11 @@ module Aws::EC2
|
|
11574
11574
|
# data as a hash:
|
11575
11575
|
#
|
11576
11576
|
# {
|
11577
|
+
# subnet_id: "SubnetId", # required
|
11578
|
+
# cidr: "String", # required
|
11579
|
+
# reservation_type: "prefix", # required, accepts prefix, explicit
|
11580
|
+
# description: "String",
|
11581
|
+
# dry_run: false,
|
11577
11582
|
# tag_specifications: [
|
11578
11583
|
# {
|
11579
11584
|
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-endpoint, vpc-endpoint-service, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
@@ -11585,17 +11590,8 @@ module Aws::EC2
|
|
11585
11590
|
# ],
|
11586
11591
|
# },
|
11587
11592
|
# ],
|
11588
|
-
# subnet_id: "SubnetId", # required
|
11589
|
-
# cidr: "String", # required
|
11590
|
-
# reservation_type: "prefix", # required, accepts prefix, explicit
|
11591
|
-
# description: "String",
|
11592
|
-
# dry_run: false,
|
11593
11593
|
# }
|
11594
11594
|
#
|
11595
|
-
# @!attribute [rw] tag_specifications
|
11596
|
-
# The tags to assign to the subnet CIDR reservation.
|
11597
|
-
# @return [Array<Types::TagSpecification>]
|
11598
|
-
#
|
11599
11595
|
# @!attribute [rw] subnet_id
|
11600
11596
|
# The ID of the subnet.
|
11601
11597
|
# @return [String]
|
@@ -11634,15 +11630,19 @@ module Aws::EC2
|
|
11634
11630
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
11635
11631
|
# @return [Boolean]
|
11636
11632
|
#
|
11633
|
+
# @!attribute [rw] tag_specifications
|
11634
|
+
# The tags to assign to the subnet CIDR reservation.
|
11635
|
+
# @return [Array<Types::TagSpecification>]
|
11636
|
+
#
|
11637
11637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservationRequest AWS API Documentation
|
11638
11638
|
#
|
11639
11639
|
class CreateSubnetCidrReservationRequest < Struct.new(
|
11640
|
-
:tag_specifications,
|
11641
11640
|
:subnet_id,
|
11642
11641
|
:cidr,
|
11643
11642
|
:reservation_type,
|
11644
11643
|
:description,
|
11645
|
-
:dry_run
|
11644
|
+
:dry_run,
|
11645
|
+
:tag_specifications)
|
11646
11646
|
SENSITIVE = []
|
11647
11647
|
include Aws::Structure
|
11648
11648
|
end
|
@@ -13363,6 +13363,10 @@ module Aws::EC2
|
|
13363
13363
|
# route_table_ids: ["RouteTableId"],
|
13364
13364
|
# subnet_ids: ["SubnetId"],
|
13365
13365
|
# security_group_ids: ["SecurityGroupId"],
|
13366
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
13367
|
+
# dns_options: {
|
13368
|
+
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
13369
|
+
# },
|
13366
13370
|
# client_token: "String",
|
13367
13371
|
# private_dns_enabled: false,
|
13368
13372
|
# tag_specifications: [
|
@@ -13423,6 +13427,14 @@ module Aws::EC2
|
|
13423
13427
|
# associate with the endpoint network interface.
|
13424
13428
|
# @return [Array<String>]
|
13425
13429
|
#
|
13430
|
+
# @!attribute [rw] ip_address_type
|
13431
|
+
# The IP address type for the endpoint.
|
13432
|
+
# @return [String]
|
13433
|
+
#
|
13434
|
+
# @!attribute [rw] dns_options
|
13435
|
+
# The DNS options for the endpoint.
|
13436
|
+
# @return [Types::DnsOptionsSpecification]
|
13437
|
+
#
|
13426
13438
|
# @!attribute [rw] client_token
|
13427
13439
|
# Unique, case-sensitive identifier that you provide to ensure the
|
13428
13440
|
# idempotency of the request. For more information, see [How to ensure
|
@@ -13465,6 +13477,8 @@ module Aws::EC2
|
|
13465
13477
|
:route_table_ids,
|
13466
13478
|
:subnet_ids,
|
13467
13479
|
:security_group_ids,
|
13480
|
+
:ip_address_type,
|
13481
|
+
:dns_options,
|
13468
13482
|
:client_token,
|
13469
13483
|
:private_dns_enabled,
|
13470
13484
|
:tag_specifications)
|
@@ -13501,6 +13515,7 @@ module Aws::EC2
|
|
13501
13515
|
# private_dns_name: "String",
|
13502
13516
|
# network_load_balancer_arns: ["String"],
|
13503
13517
|
# gateway_load_balancer_arns: ["String"],
|
13518
|
+
# supported_ip_address_types: ["String"],
|
13504
13519
|
# client_token: "String",
|
13505
13520
|
# tag_specifications: [
|
13506
13521
|
# {
|
@@ -13542,6 +13557,11 @@ module Aws::EC2
|
|
13542
13557
|
# Balancers.
|
13543
13558
|
# @return [Array<String>]
|
13544
13559
|
#
|
13560
|
+
# @!attribute [rw] supported_ip_address_types
|
13561
|
+
# The supported IP address types. The possible values are `ipv4` and
|
13562
|
+
# `ipv6`.
|
13563
|
+
# @return [Array<String>]
|
13564
|
+
#
|
13545
13565
|
# @!attribute [rw] client_token
|
13546
13566
|
# Unique, case-sensitive identifier that you provide to ensure the
|
13547
13567
|
# idempotency of the request. For more information, see [How to ensure
|
@@ -13564,6 +13584,7 @@ module Aws::EC2
|
|
13564
13584
|
:private_dns_name,
|
13565
13585
|
:network_load_balancer_arns,
|
13566
13586
|
:gateway_load_balancer_arns,
|
13587
|
+
:supported_ip_address_types,
|
13567
13588
|
:client_token,
|
13568
13589
|
:tag_specifications)
|
13569
13590
|
SENSITIVE = []
|
@@ -28570,6 +28591,8 @@ module Aws::EC2
|
|
28570
28591
|
# @!attribute [rw] filters
|
28571
28592
|
# One or more filters.
|
28572
28593
|
#
|
28594
|
+
# * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
|
28595
|
+
#
|
28573
28596
|
# * `service-id` - The ID of the service.
|
28574
28597
|
#
|
28575
28598
|
# * `vpc-endpoint-owner` - The ID of the Amazon Web Services account
|
@@ -28660,6 +28683,9 @@ module Aws::EC2
|
|
28660
28683
|
# * `service-state` - The state of the service (`Pending` \|
|
28661
28684
|
# `Available` \| `Deleting` \| `Deleted` \| `Failed`).
|
28662
28685
|
#
|
28686
|
+
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
28687
|
+
# `ipv6`).
|
28688
|
+
#
|
28663
28689
|
# * `tag`\:<key> - The key/value combination of a tag assigned
|
28664
28690
|
# to the resource. Use the tag key in the filter name and the tag
|
28665
28691
|
# value as the filter value. For example, to find all resources that
|
@@ -28827,6 +28853,9 @@ module Aws::EC2
|
|
28827
28853
|
#
|
28828
28854
|
# * `service-type` - The type of service (`Interface` \| `Gateway`).
|
28829
28855
|
#
|
28856
|
+
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
28857
|
+
# `ipv6`).
|
28858
|
+
#
|
28830
28859
|
# * `tag`\:<key> - The key/value combination of a tag assigned
|
28831
28860
|
# to the resource. Use the tag key in the filter name and the tag
|
28832
28861
|
# value as the filter value. For example, to find all resources that
|
@@ -28921,6 +28950,8 @@ module Aws::EC2
|
|
28921
28950
|
# @!attribute [rw] filters
|
28922
28951
|
# One or more filters.
|
28923
28952
|
#
|
28953
|
+
# * `ip-address-type` - The IP address type (`ipv4` \| `ipv6`).
|
28954
|
+
#
|
28924
28955
|
# * `service-name` - The name of the service.
|
28925
28956
|
#
|
28926
28957
|
# * `vpc-id` - The ID of the VPC in which the endpoint resides.
|
@@ -31055,6 +31086,41 @@ module Aws::EC2
|
|
31055
31086
|
include Aws::Structure
|
31056
31087
|
end
|
31057
31088
|
|
31089
|
+
# Describes the DNS options for an endpoint.
|
31090
|
+
#
|
31091
|
+
# @!attribute [rw] dns_record_ip_type
|
31092
|
+
# The DNS records created for the endpoint.
|
31093
|
+
# @return [String]
|
31094
|
+
#
|
31095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptions AWS API Documentation
|
31096
|
+
#
|
31097
|
+
class DnsOptions < Struct.new(
|
31098
|
+
:dns_record_ip_type)
|
31099
|
+
SENSITIVE = []
|
31100
|
+
include Aws::Structure
|
31101
|
+
end
|
31102
|
+
|
31103
|
+
# Describes the DNS options for an endpoint.
|
31104
|
+
#
|
31105
|
+
# @note When making an API call, you may pass DnsOptionsSpecification
|
31106
|
+
# data as a hash:
|
31107
|
+
#
|
31108
|
+
# {
|
31109
|
+
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
31110
|
+
# }
|
31111
|
+
#
|
31112
|
+
# @!attribute [rw] dns_record_ip_type
|
31113
|
+
# The DNS records created for the endpoint.
|
31114
|
+
# @return [String]
|
31115
|
+
#
|
31116
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptionsSpecification AWS API Documentation
|
31117
|
+
#
|
31118
|
+
class DnsOptionsSpecification < Struct.new(
|
31119
|
+
:dns_record_ip_type)
|
31120
|
+
SENSITIVE = []
|
31121
|
+
include Aws::Structure
|
31122
|
+
end
|
31123
|
+
|
31058
31124
|
# Information about the DNS server to be used.
|
31059
31125
|
#
|
31060
31126
|
# @note When making an API call, you may pass DnsServersOptionsModifyStructure
|
@@ -50209,6 +50275,10 @@ module Aws::EC2
|
|
50209
50275
|
# remove_subnet_ids: ["SubnetId"],
|
50210
50276
|
# add_security_group_ids: ["SecurityGroupId"],
|
50211
50277
|
# remove_security_group_ids: ["SecurityGroupId"],
|
50278
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack, ipv6
|
50279
|
+
# dns_options: {
|
50280
|
+
# dns_record_ip_type: "ipv4", # accepts ipv4, dualstack, ipv6, service-defined
|
50281
|
+
# },
|
50212
50282
|
# private_dns_enabled: false,
|
50213
50283
|
# }
|
50214
50284
|
#
|
@@ -50266,6 +50336,14 @@ module Aws::EC2
|
|
50266
50336
|
# from the network interface.
|
50267
50337
|
# @return [Array<String>]
|
50268
50338
|
#
|
50339
|
+
# @!attribute [rw] ip_address_type
|
50340
|
+
# The IP address type for the endpoint.
|
50341
|
+
# @return [String]
|
50342
|
+
#
|
50343
|
+
# @!attribute [rw] dns_options
|
50344
|
+
# The DNS options for the endpoint.
|
50345
|
+
# @return [Types::DnsOptionsSpecification]
|
50346
|
+
#
|
50269
50347
|
# @!attribute [rw] private_dns_enabled
|
50270
50348
|
# (Interface endpoint) Indicates whether a private hosted zone is
|
50271
50349
|
# associated with the VPC.
|
@@ -50284,6 +50362,8 @@ module Aws::EC2
|
|
50284
50362
|
:remove_subnet_ids,
|
50285
50363
|
:add_security_group_ids,
|
50286
50364
|
:remove_security_group_ids,
|
50365
|
+
:ip_address_type,
|
50366
|
+
:dns_options,
|
50287
50367
|
:private_dns_enabled)
|
50288
50368
|
SENSITIVE = []
|
50289
50369
|
include Aws::Structure
|
@@ -50315,6 +50395,8 @@ module Aws::EC2
|
|
50315
50395
|
# remove_network_load_balancer_arns: ["String"],
|
50316
50396
|
# add_gateway_load_balancer_arns: ["String"],
|
50317
50397
|
# remove_gateway_load_balancer_arns: ["String"],
|
50398
|
+
# add_supported_ip_address_types: ["String"],
|
50399
|
+
# remove_supported_ip_address_types: ["String"],
|
50318
50400
|
# }
|
50319
50401
|
#
|
50320
50402
|
# @!attribute [rw] dry_run
|
@@ -50363,6 +50445,14 @@ module Aws::EC2
|
|
50363
50445
|
# from your service configuration.
|
50364
50446
|
# @return [Array<String>]
|
50365
50447
|
#
|
50448
|
+
# @!attribute [rw] add_supported_ip_address_types
|
50449
|
+
# The IP address types to add to your service configuration.
|
50450
|
+
# @return [Array<String>]
|
50451
|
+
#
|
50452
|
+
# @!attribute [rw] remove_supported_ip_address_types
|
50453
|
+
# The IP address types to remove from your service configuration.
|
50454
|
+
# @return [Array<String>]
|
50455
|
+
#
|
50366
50456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointServiceConfigurationRequest AWS API Documentation
|
50367
50457
|
#
|
50368
50458
|
class ModifyVpcEndpointServiceConfigurationRequest < Struct.new(
|
@@ -50374,7 +50464,9 @@ module Aws::EC2
|
|
50374
50464
|
:add_network_load_balancer_arns,
|
50375
50465
|
:remove_network_load_balancer_arns,
|
50376
50466
|
:add_gateway_load_balancer_arns,
|
50377
|
-
:remove_gateway_load_balancer_arns
|
50467
|
+
:remove_gateway_load_balancer_arns,
|
50468
|
+
:add_supported_ip_address_types,
|
50469
|
+
:remove_supported_ip_address_types)
|
50378
50470
|
SENSITIVE = []
|
50379
50471
|
include Aws::Structure
|
50380
50472
|
end
|
@@ -61627,6 +61719,10 @@ module Aws::EC2
|
|
61627
61719
|
# the service.
|
61628
61720
|
# @return [Array<String>]
|
61629
61721
|
#
|
61722
|
+
# @!attribute [rw] supported_ip_address_types
|
61723
|
+
# The supported IP address types.
|
61724
|
+
# @return [Array<String>]
|
61725
|
+
#
|
61630
61726
|
# @!attribute [rw] base_endpoint_dns_names
|
61631
61727
|
# The DNS names for the service.
|
61632
61728
|
# @return [Array<String>]
|
@@ -61660,6 +61756,7 @@ module Aws::EC2
|
|
61660
61756
|
:manages_vpc_endpoints,
|
61661
61757
|
:network_load_balancer_arns,
|
61662
61758
|
:gateway_load_balancer_arns,
|
61759
|
+
:supported_ip_address_types,
|
61663
61760
|
:base_endpoint_dns_names,
|
61664
61761
|
:private_dns_name,
|
61665
61762
|
:private_dns_name_configuration,
|
@@ -61733,6 +61830,10 @@ module Aws::EC2
|
|
61733
61830
|
# the state is not `verified`.
|
61734
61831
|
# @return [String]
|
61735
61832
|
#
|
61833
|
+
# @!attribute [rw] supported_ip_address_types
|
61834
|
+
# The supported IP address types.
|
61835
|
+
# @return [Array<String>]
|
61836
|
+
#
|
61736
61837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ServiceDetail AWS API Documentation
|
61737
61838
|
#
|
61738
61839
|
class ServiceDetail < Struct.new(
|
@@ -61749,7 +61850,8 @@ module Aws::EC2
|
|
61749
61850
|
:manages_vpc_endpoints,
|
61750
61851
|
:payer_responsibility,
|
61751
61852
|
:tags,
|
61752
|
-
:private_dns_name_verification_state
|
61853
|
+
:private_dns_name_verification_state,
|
61854
|
+
:supported_ip_address_types)
|
61753
61855
|
SENSITIVE = []
|
61754
61856
|
include Aws::Structure
|
61755
61857
|
end
|
@@ -68415,7 +68517,7 @@ module Aws::EC2
|
|
68415
68517
|
# Describes a VPC endpoint.
|
68416
68518
|
#
|
68417
68519
|
# @!attribute [rw] vpc_endpoint_id
|
68418
|
-
# The ID of the
|
68520
|
+
# The ID of the endpoint.
|
68419
68521
|
# @return [String]
|
68420
68522
|
#
|
68421
68523
|
# @!attribute [rw] vpc_endpoint_type
|
@@ -68431,7 +68533,7 @@ module Aws::EC2
|
|
68431
68533
|
# @return [String]
|
68432
68534
|
#
|
68433
68535
|
# @!attribute [rw] state
|
68434
|
-
# The state of the
|
68536
|
+
# The state of the endpoint.
|
68435
68537
|
# @return [String]
|
68436
68538
|
#
|
68437
68539
|
# @!attribute [rw] policy_document
|
@@ -68444,8 +68546,7 @@ module Aws::EC2
|
|
68444
68546
|
# @return [Array<String>]
|
68445
68547
|
#
|
68446
68548
|
# @!attribute [rw] subnet_ids
|
68447
|
-
# (Interface endpoint)
|
68448
|
-
# located.
|
68549
|
+
# (Interface endpoint) The subnets for the endpoint.
|
68449
68550
|
# @return [Array<String>]
|
68450
68551
|
#
|
68451
68552
|
# @!attribute [rw] groups
|
@@ -68453,13 +68554,21 @@ module Aws::EC2
|
|
68453
68554
|
# associated with the network interface.
|
68454
68555
|
# @return [Array<Types::SecurityGroupIdentifier>]
|
68455
68556
|
#
|
68557
|
+
# @!attribute [rw] ip_address_type
|
68558
|
+
# The IP address type for the endpoint.
|
68559
|
+
# @return [String]
|
68560
|
+
#
|
68561
|
+
# @!attribute [rw] dns_options
|
68562
|
+
# The DNS options for the endpoint.
|
68563
|
+
# @return [Types::DnsOptions]
|
68564
|
+
#
|
68456
68565
|
# @!attribute [rw] private_dns_enabled
|
68457
68566
|
# (Interface endpoint) Indicates whether the VPC is associated with a
|
68458
68567
|
# private hosted zone.
|
68459
68568
|
# @return [Boolean]
|
68460
68569
|
#
|
68461
68570
|
# @!attribute [rw] requester_managed
|
68462
|
-
# Indicates whether the
|
68571
|
+
# Indicates whether the endpoint is being managed by its service.
|
68463
68572
|
# @return [Boolean]
|
68464
68573
|
#
|
68465
68574
|
# @!attribute [rw] network_interface_ids
|
@@ -68472,20 +68581,19 @@ module Aws::EC2
|
|
68472
68581
|
# @return [Array<Types::DnsEntry>]
|
68473
68582
|
#
|
68474
68583
|
# @!attribute [rw] creation_timestamp
|
68475
|
-
# The date and time that the
|
68584
|
+
# The date and time that the endpoint was created.
|
68476
68585
|
# @return [Time]
|
68477
68586
|
#
|
68478
68587
|
# @!attribute [rw] tags
|
68479
|
-
# Any tags assigned to the
|
68588
|
+
# Any tags assigned to the endpoint.
|
68480
68589
|
# @return [Array<Types::Tag>]
|
68481
68590
|
#
|
68482
68591
|
# @!attribute [rw] owner_id
|
68483
|
-
# The ID of the Amazon Web Services account that owns the
|
68484
|
-
# endpoint.
|
68592
|
+
# The ID of the Amazon Web Services account that owns the endpoint.
|
68485
68593
|
# @return [String]
|
68486
68594
|
#
|
68487
68595
|
# @!attribute [rw] last_error
|
68488
|
-
# The last error that occurred for
|
68596
|
+
# The last error that occurred for endpoint.
|
68489
68597
|
# @return [Types::LastError]
|
68490
68598
|
#
|
68491
68599
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
|
@@ -68500,6 +68608,8 @@ module Aws::EC2
|
|
68500
68608
|
:route_table_ids,
|
68501
68609
|
:subnet_ids,
|
68502
68610
|
:groups,
|
68611
|
+
:ip_address_type,
|
68612
|
+
:dns_options,
|
68503
68613
|
:private_dns_enabled,
|
68504
68614
|
:requester_managed,
|
68505
68615
|
:network_interface_ids,
|
@@ -68549,6 +68659,10 @@ module Aws::EC2
|
|
68549
68659
|
# the service.
|
68550
68660
|
# @return [Array<String>]
|
68551
68661
|
#
|
68662
|
+
# @!attribute [rw] ip_address_type
|
68663
|
+
# The IP address type for the endpoint.
|
68664
|
+
# @return [String]
|
68665
|
+
#
|
68552
68666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpointConnection AWS API Documentation
|
68553
68667
|
#
|
68554
68668
|
class VpcEndpointConnection < Struct.new(
|
@@ -68559,7 +68673,8 @@ module Aws::EC2
|
|
68559
68673
|
:creation_timestamp,
|
68560
68674
|
:dns_entries,
|
68561
68675
|
:network_load_balancer_arns,
|
68562
|
-
:gateway_load_balancer_arns
|
68676
|
+
:gateway_load_balancer_arns,
|
68677
|
+
:ip_address_type)
|
68563
68678
|
SENSITIVE = []
|
68564
68679
|
include Aws::Structure
|
68565
68680
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.314.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|