aws-sdk-ec2 1.186.0 → 1.187.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c087cc21cc05aa1550218ee95a65d3733371313cfd317396853d4ad1f5a1c649
4
- data.tar.gz: c9aa30129a056bb87d295a15242151f6f22fa0ae07f6b9db13263889b3507247
3
+ metadata.gz: d66b5f317cea96a08e25abeef53d9edd4a9f4b433dd2c2935f8181e6dc74fb5b
4
+ data.tar.gz: '09dd9f507b07e49ffffda9e85133c267a02cbb9f0093c0ee011fa93c1e3cf751'
5
5
  SHA512:
6
- metadata.gz: 7625dfb04e5dafdbf468285b443f9743bfb2fdfcba71960addb6c325580caeb9fb0c100bb898e7fd588b64dc1ce49151f4085319cc3a0f21ba09328a35bea9d2
7
- data.tar.gz: 88e85407babdaa3fe27ef3bbea0f23cfedcf7d2f89a31dea6687c0660ef0d3d9712dd438dbd99b2e97a558a977c70af9781353313ad3302efc65e41e2d874050
6
+ metadata.gz: 8803f7207f4cbddf1731c513534fbacc32697b3752ae350cbdf4dd0b98679904664c2bcec447aac48d2c8a536a552db8df009a73e9d71fa526b685235fa8b380
7
+ data.tar.gz: 61d5e8191ab11e246c76eac3b1ea10be397fe13c73942640713b2f5fd3c20a8f97fca4459a675a8f41e7133163051ce0645ddc7ecf4c65f1aafff997d0d16ff4
@@ -71,6 +71,6 @@ require_relative 'aws-sdk-ec2/customizations'
71
71
  # @service
72
72
  module Aws::EC2
73
73
 
74
- GEM_VERSION = '1.186.0'
74
+ GEM_VERSION = '1.187.0'
75
75
 
76
76
  end
@@ -6738,6 +6738,7 @@ module Aws::EC2
6738
6738
  # resp.network_interface.association.ip_owner_id #=> String
6739
6739
  # resp.network_interface.association.public_dns_name #=> String
6740
6740
  # resp.network_interface.association.public_ip #=> String
6741
+ # resp.network_interface.association.customer_owned_ip #=> String
6741
6742
  # resp.network_interface.association.carrier_ip #=> String
6742
6743
  # resp.network_interface.attachment.attach_time #=> Time
6743
6744
  # resp.network_interface.attachment.attachment_id #=> String
@@ -6766,6 +6767,7 @@ module Aws::EC2
6766
6767
  # resp.network_interface.private_ip_addresses[0].association.ip_owner_id #=> String
6767
6768
  # resp.network_interface.private_ip_addresses[0].association.public_dns_name #=> String
6768
6769
  # resp.network_interface.private_ip_addresses[0].association.public_ip #=> String
6770
+ # resp.network_interface.private_ip_addresses[0].association.customer_owned_ip #=> String
6769
6771
  # resp.network_interface.private_ip_addresses[0].association.carrier_ip #=> String
6770
6772
  # resp.network_interface.private_ip_addresses[0].primary #=> Boolean
6771
6773
  # resp.network_interface.private_ip_addresses[0].private_dns_name #=> String
@@ -19681,6 +19683,7 @@ module Aws::EC2
19681
19683
  # resp.network_interfaces[0].association.ip_owner_id #=> String
19682
19684
  # resp.network_interfaces[0].association.public_dns_name #=> String
19683
19685
  # resp.network_interfaces[0].association.public_ip #=> String
19686
+ # resp.network_interfaces[0].association.customer_owned_ip #=> String
19684
19687
  # resp.network_interfaces[0].association.carrier_ip #=> String
19685
19688
  # resp.network_interfaces[0].attachment.attach_time #=> Time
19686
19689
  # resp.network_interfaces[0].attachment.attachment_id #=> String
@@ -19709,6 +19712,7 @@ module Aws::EC2
19709
19712
  # resp.network_interfaces[0].private_ip_addresses[0].association.ip_owner_id #=> String
19710
19713
  # resp.network_interfaces[0].private_ip_addresses[0].association.public_dns_name #=> String
19711
19714
  # resp.network_interfaces[0].private_ip_addresses[0].association.public_ip #=> String
19715
+ # resp.network_interfaces[0].private_ip_addresses[0].association.customer_owned_ip #=> String
19712
19716
  # resp.network_interfaces[0].private_ip_addresses[0].association.carrier_ip #=> String
19713
19717
  # resp.network_interfaces[0].private_ip_addresses[0].primary #=> Boolean
19714
19718
  # resp.network_interfaces[0].private_ip_addresses[0].private_dns_name #=> String
@@ -31536,6 +31540,20 @@ module Aws::EC2
31536
31540
  # @option params [required, String] :subnet_id
31537
31541
  # The ID of the subnet.
31538
31542
  #
31543
+ # @option params [Types::AttributeBooleanValue] :map_customer_owned_ip_on_launch
31544
+ # Specify `true` to indicate that network interfaces attached to
31545
+ # instances created in the specified subnet should be assigned a
31546
+ # customer-owned IPv4 address.
31547
+ #
31548
+ # When this value is `true`, you must specify the customer-owned IP pool
31549
+ # using `CustomerOwnedIpv4Pool`.
31550
+ #
31551
+ # @option params [String] :customer_owned_ipv_4_pool
31552
+ # The customer-owned IPv4 address pool associated with the subnet.
31553
+ #
31554
+ # You must set this value when you specify `true` for
31555
+ # `MapCustomerOwnedIpOnLaunch`.
31556
+ #
31539
31557
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
31540
31558
  #
31541
31559
  #
@@ -31561,6 +31579,10 @@ module Aws::EC2
31561
31579
  # value: false,
31562
31580
  # },
31563
31581
  # subnet_id: "SubnetId", # required
31582
+ # map_customer_owned_ip_on_launch: {
31583
+ # value: false,
31584
+ # },
31585
+ # customer_owned_ipv_4_pool: "CoipPoolId",
31564
31586
  # })
31565
31587
  #
31566
31588
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttribute AWS API Documentation
@@ -38184,7 +38206,7 @@ module Aws::EC2
38184
38206
  params: params,
38185
38207
  config: config)
38186
38208
  context[:gem_name] = 'aws-sdk-ec2'
38187
- context[:gem_version] = '1.186.0'
38209
+ context[:gem_version] = '1.187.0'
38188
38210
  Seahorse::Client::Request.new(handlers, context)
38189
38211
  end
38190
38212
 
@@ -7418,6 +7418,8 @@ module Aws::EC2
7418
7418
  ModifySubnetAttributeRequest.add_member(:assign_ipv_6_address_on_creation, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "AssignIpv6AddressOnCreation"))
7419
7419
  ModifySubnetAttributeRequest.add_member(:map_public_ip_on_launch, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "MapPublicIpOnLaunch"))
7420
7420
  ModifySubnetAttributeRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, required: true, location_name: "subnetId"))
7421
+ ModifySubnetAttributeRequest.add_member(:map_customer_owned_ip_on_launch, Shapes::ShapeRef.new(shape: AttributeBooleanValue, location_name: "MapCustomerOwnedIpOnLaunch"))
7422
+ ModifySubnetAttributeRequest.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "CustomerOwnedIpv4Pool"))
7421
7423
  ModifySubnetAttributeRequest.struct_class = Types::ModifySubnetAttributeRequest
7422
7424
 
7423
7425
  ModifyTrafficMirrorFilterNetworkServicesRequest.add_member(:traffic_mirror_filter_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterId, required: true, location_name: "TrafficMirrorFilterId"))
@@ -7721,6 +7723,7 @@ module Aws::EC2
7721
7723
  NetworkInterfaceAssociation.add_member(:ip_owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ipOwnerId"))
7722
7724
  NetworkInterfaceAssociation.add_member(:public_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "publicDnsName"))
7723
7725
  NetworkInterfaceAssociation.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
7726
+ NetworkInterfaceAssociation.add_member(:customer_owned_ip, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIp"))
7724
7727
  NetworkInterfaceAssociation.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
7725
7728
  NetworkInterfaceAssociation.struct_class = Types::NetworkInterfaceAssociation
7726
7729
 
@@ -35816,6 +35816,10 @@ module Aws::EC2
35816
35816
  # value: false,
35817
35817
  # },
35818
35818
  # subnet_id: "SubnetId", # required
35819
+ # map_customer_owned_ip_on_launch: {
35820
+ # value: false,
35821
+ # },
35822
+ # customer_owned_ipv_4_pool: "CoipPoolId",
35819
35823
  # }
35820
35824
  #
35821
35825
  # @!attribute [rw] assign_ipv_6_address_on_creation
@@ -35839,12 +35843,30 @@ module Aws::EC2
35839
35843
  # The ID of the subnet.
35840
35844
  # @return [String]
35841
35845
  #
35846
+ # @!attribute [rw] map_customer_owned_ip_on_launch
35847
+ # Specify `true` to indicate that network interfaces attached to
35848
+ # instances created in the specified subnet should be assigned a
35849
+ # customer-owned IPv4 address.
35850
+ #
35851
+ # When this value is `true`, you must specify the customer-owned IP
35852
+ # pool using `CustomerOwnedIpv4Pool`.
35853
+ # @return [Types::AttributeBooleanValue]
35854
+ #
35855
+ # @!attribute [rw] customer_owned_ipv_4_pool
35856
+ # The customer-owned IPv4 address pool associated with the subnet.
35857
+ #
35858
+ # You must set this value when you specify `true` for
35859
+ # `MapCustomerOwnedIpOnLaunch`.
35860
+ # @return [String]
35861
+ #
35842
35862
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySubnetAttributeRequest AWS API Documentation
35843
35863
  #
35844
35864
  class ModifySubnetAttributeRequest < Struct.new(
35845
35865
  :assign_ipv_6_address_on_creation,
35846
35866
  :map_public_ip_on_launch,
35847
- :subnet_id)
35867
+ :subnet_id,
35868
+ :map_customer_owned_ip_on_launch,
35869
+ :customer_owned_ipv_4_pool)
35848
35870
  SENSITIVE = []
35849
35871
  include Aws::Structure
35850
35872
  end
@@ -37765,6 +37787,10 @@ module Aws::EC2
37765
37787
  # the network interface.
37766
37788
  # @return [String]
37767
37789
  #
37790
+ # @!attribute [rw] customer_owned_ip
37791
+ # The customer-owned IP address associated with the network interface.
37792
+ # @return [String]
37793
+ #
37768
37794
  # @!attribute [rw] carrier_ip
37769
37795
  # The carrier IP address associated with the network interface.
37770
37796
  #
@@ -37780,6 +37806,7 @@ module Aws::EC2
37780
37806
  :ip_owner_id,
37781
37807
  :public_dns_name,
37782
37808
  :public_ip,
37809
+ :customer_owned_ip,
37783
37810
  :carrier_ip)
37784
37811
  SENSITIVE = []
37785
37812
  include Aws::Structure
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.186.0
4
+ version: 1.187.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: 2020-08-12 00:00:00.000000000 Z
11
+ date: 2020-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4