Class: Aws::EC2::ClassicAddress

Inherits:
Object
  • Object
show all
Extended by:
Deprecations
Defined in:
lib/aws-sdk-ec2/classic_address.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Instance Method Summary collapse

Constructor Details

#initialize(public_ip, options = {}) ⇒ ClassicAddress #initialize(options = {}) ⇒ ClassicAddress

Returns a new instance of ClassicAddress.

Overloads:

  • #initialize(public_ip, options = {}) ⇒ ClassicAddress

    Parameters:

    • public_ip (String)

    Options Hash (options):

  • #initialize(options = {}) ⇒ ClassicAddress

    Options Hash (options):

    • :public_ip (required, String)
    • :client (Client)


19
20
21
22
23
24
# File 'lib/aws-sdk-ec2/classic_address.rb', line 19

def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @public_ip = extract_public_ip(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
end

Instance Method Details

#allocation_idString

The ID representing the allocation of the address for use with EC2-VPC.

Returns:

  • (String)


42
43
44
# File 'lib/aws-sdk-ec2/classic_address.rb', line 42

def allocation_id
  data.allocation_id
end

#associate(options = {}) ⇒ Types::AssociateAddressResult

Examples:

Request syntax with placeholder values


classic_address.associate({
  allocation_id: "String",
  instance_id: "String",
  allow_reassociation: false,
  dry_run: false,
  network_interface_id: "String",
  private_ip_address: "String",
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :allocation_id (String)

    [EC2-VPC] The allocation ID. This is required for EC2-VPC.

  • :instance_id (String)

    The ID of the instance. This is required for EC2-Classic. For EC2-VPC, you can specify either the instance ID or the network interface ID, but not both. The operation fails if you specify an instance ID unless exactly one network interface is attached.

  • :allow_reassociation (Boolean)

    [EC2-VPC] For a VPC in an EC2-Classic account, specify true to allow an Elastic IP address that is already associated with an instance or network interface to be reassociated with the specified instance or network interface. Otherwise, the operation fails. In a VPC in an EC2-VPC-only account, reassociation is automatic, therefore you can specify false to ensure the operation fails if the Elastic IP address is already associated with another resource.

  • :dry_run (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

  • :network_interface_id (String)

    [EC2-VPC] The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.

  • :private_ip_address (String)

    [EC2-VPC] The primary or secondary private IP address to associate with the Elastic IP address. If no private IP address is specified, the Elastic IP address is associated with the primary private IP address.

Returns:



155
156
157
158
159
# File 'lib/aws-sdk-ec2/classic_address.rb', line 155

def associate(options = {})
  options = options.merge(public_ip: @public_ip)
  resp = @client.associate_address(options)
  resp.data
end

#association_idString

The ID representing the association of the address with an instance in a VPC.

Returns:

  • (String)


49
50
51
# File 'lib/aws-sdk-ec2/classic_address.rb', line 49

def association_id
  data.association_id
end

#clientClient

Returns:



81
82
83
# File 'lib/aws-sdk-ec2/classic_address.rb', line 81

def client
  @client
end

#dataTypes::Address

Returns the data for this Aws::EC2::ClassicAddress. Calls Aws::EC2::Client#describe_addresses if #data_loaded? is ‘false`.

Returns:



101
102
103
104
# File 'lib/aws-sdk-ec2/classic_address.rb', line 101

def data
  load unless @data
  @data
end

#data_loaded?Boolean

Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.

Returns:

  • (Boolean)

    Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.



109
110
111
# File 'lib/aws-sdk-ec2/classic_address.rb', line 109

def data_loaded?
  !!@data
end

#disassociate(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


classic_address.disassociate({
  association_id: "String",
  dry_run: false,
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :association_id (String)

    [EC2-VPC] The association ID. Required for EC2-VPC.

  • :dry_run (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (EmptyStructure)


176
177
178
179
180
# File 'lib/aws-sdk-ec2/classic_address.rb', line 176

def disassociate(options = {})
  options = options.merge(public_ip: data.public_ip)
  resp = @client.disassociate_address(options)
  resp.data
end

#domainString

Indicates whether this Elastic IP address is for use with instances in EC2-Classic (‘standard`) or instances in a VPC (`vpc`).

Returns:

  • (String)


56
57
58
# File 'lib/aws-sdk-ec2/classic_address.rb', line 56

def domain
  data.domain
end

#identifiersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


205
206
207
# File 'lib/aws-sdk-ec2/classic_address.rb', line 205

def identifiers
  { public_ip: @public_ip }
end

#instance_idString

The ID of the instance that the address is associated with (if any).

Returns:

  • (String)


35
36
37
# File 'lib/aws-sdk-ec2/classic_address.rb', line 35

def instance_id
  data.instance_id
end

#loadself Also known as: reload

Loads, or reloads #data for the current Aws::EC2::ClassicAddress. Returns ‘self` making it possible to chain methods.

classic_address.reload.data

Returns:

  • (self)


91
92
93
94
95
# File 'lib/aws-sdk-ec2/classic_address.rb', line 91

def load
  resp = @client.describe_addresses(public_ips: [@public_ip])
  @data = resp.addresses[0]
  self
end

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)


62
63
64
# File 'lib/aws-sdk-ec2/classic_address.rb', line 62

def network_interface_id
  data.network_interface_id
end

#network_interface_owner_idString

The ID of the AWS account that owns the network interface.

Returns:

  • (String)


68
69
70
# File 'lib/aws-sdk-ec2/classic_address.rb', line 68

def network_interface_owner_id
  data.network_interface_owner_id
end

#private_ip_addressString

The private IP address associated with the Elastic IP address.

Returns:

  • (String)


74
75
76
# File 'lib/aws-sdk-ec2/classic_address.rb', line 74

def private_ip_address
  data.private_ip_address
end

#public_ipString

Returns:

  • (String)


29
30
31
# File 'lib/aws-sdk-ec2/classic_address.rb', line 29

def public_ip
  @public_ip
end

#release(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


classic_address.release({
  allocation_id: "String",
  dry_run: false,
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :allocation_id (String)

    [EC2-VPC] The allocation ID. Required for EC2-VPC.

  • :dry_run (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (EmptyStructure)


197
198
199
200
201
# File 'lib/aws-sdk-ec2/classic_address.rb', line 197

def release(options = {})
  options = options.merge(public_ip: data.public_ip)
  resp = @client.release_address(options)
  resp.data
end