Class: Aws::EC2::VpcAddress

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Associations collapse

Instance Method Summary collapse

Constructor Details

#initialize(allocation_id, options = {}) ⇒ VpcAddress #initialize(options = {}) ⇒ VpcAddress

Returns a new instance of VpcAddress.

Overloads:

  • #initialize(allocation_id, options = {}) ⇒ VpcAddress

    Parameters:

    • allocation_id (String)

    Options Hash (options):

  • #initialize(options = {}) ⇒ VpcAddress

    Options Hash (options):

    • :allocation_id (required, String)
    • :client (Client)
[View source]

22
23
24
25
26
27
28
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 22

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

Instance Method Details

#allocation_idString

Returns:

  • (String)
[View source]

33
34
35
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 33

def allocation_id
  @allocation_id
end

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

Examples:

Request syntax with placeholder values


vpc_address.associate({
  instance_id: "InstanceId",
  public_ip: "EipAllocationPublicIp",
  dry_run: false,
  network_interface_id: "NetworkInterfaceId",
  private_ip_address: "String",
  allow_reassociation: false,
})

Parameters:

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

    ({})

Options Hash (options):

  • :instance_id (String)

    The ID of the instance. The instance must have exactly one attached network interface. You can specify either the instance ID or the network interface ID, but not both.

  • :public_ip (String)

    Deprecated.

  • :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)

    The ID of the network interface. If the instance has more than one network interface, you must specify a network interface ID.

    You can specify either the instance ID or the network interface ID, but not both.

  • :private_ip_address (String)

    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.

  • :allow_reassociation (Boolean)

    Reassociation is automatic, but you can specify false to ensure the operation fails if the Elastic IP address is already associated with another resource.

Returns:

[View source]

305
306
307
308
309
310
311
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 305

def associate(options = {})
  options = options.merge(allocation_id: @allocation_id)
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    @client.associate_address(options)
  end
  resp.data
end

#associationNetworkInterfaceAssociation?

Returns:

[View source]

346
347
348
349
350
351
352
353
354
355
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 346

def association
  if data[:association_id]
    NetworkInterfaceAssociation.new(
      id: data[:association_id],
      client: @client
    )
  else
    nil
  end
end

#association_idString

The ID representing the association of the address with an instance.

Returns:

  • (String)
[View source]

39
40
41
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 39

def association_id
  data[:association_id]
end

#carrier_ipString

The carrier IP address associated. This option is only available for network interfaces which reside in a subnet in a Wavelength Zone (for example an EC2 instance).

Returns:

  • (String)
[View source]

104
105
106
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 104

def carrier_ip
  data[:carrier_ip]
end

#clientClient

Returns:

[View source]

133
134
135
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 133

def client
  @client
end

#customer_owned_ipString

The customer-owned IP address.

Returns:

  • (String)
[View source]

90
91
92
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 90

def customer_owned_ip
  data[:customer_owned_ip]
end

#customer_owned_ipv_4_poolString

The ID of the customer-owned address pool.

Returns:

  • (String)
[View source]

96
97
98
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 96

def customer_owned_ipv_4_pool
  data[:customer_owned_ipv_4_pool]
end

#dataTypes::Address

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

Returns:

[View source]

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

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.

[View source]

163
164
165
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 163

def data_loaded?
  !!@data
end

#domainString

The network (vpc).

Returns:

  • (String)
[View source]

45
46
47
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 45

def domain
  data[:domain]
end

#instance_idString

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

Returns:

  • (String)
[View source]

120
121
122
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 120

def instance_id
  data[:instance_id]
end

#loadself Also known as: reload

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

vpc_address.reload.data

Returns:

  • (self)
[View source]

143
144
145
146
147
148
149
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 143

def load
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    @client.describe_addresses(allocation_ids: [@allocation_id])
  end
  @data = resp.addresses[0]
  self
end

#network_border_groupString

The name of the unique set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

Returns:

  • (String)
[View source]

84
85
86
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 84

def network_border_group
  data[:network_border_group]
end

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)
[View source]

51
52
53
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 51

def network_interface_id
  data[:network_interface_id]
end

#network_interface_owner_idString

The ID of the Amazon Web Services account that owns the network interface.

Returns:

  • (String)
[View source]

58
59
60
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 58

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)
[View source]

64
65
66
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 64

def private_ip_address
  data[:private_ip_address]
end

#public_ipString

The Elastic IP address.

Returns:

  • (String)
[View source]

126
127
128
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 126

def public_ip
  data[:public_ip]
end

#public_ipv_4_poolString

The ID of an address pool.

Returns:

  • (String)
[View source]

76
77
78
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 76

def public_ipv_4_pool
  data[:public_ipv_4_pool]
end

#release(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


vpc_address.release({
  public_ip: "String",
  network_border_group: "String",
  dry_run: false,
})

Parameters:

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

    ({})

Options Hash (options):

  • :public_ip (String)

    Deprecated.

  • :network_border_group (String)

    The set of Availability Zones, Local Zones, or Wavelength Zones from which Amazon Web Services advertises IP addresses.

    If you provide an incorrect network border group, you receive an InvalidAddress.NotFound error.

  • :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)
[View source]

335
336
337
338
339
340
341
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 335

def release(options = {})
  options = options.merge(allocation_id: data[:allocation_id])
  resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    @client.release_address(options)
  end
  resp.data
end

#service_managedString

The service that manages the elastic IP address.

The only option supported today is alb.

Returns:

  • (String)
[View source]

114
115
116
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 114

def service_managed
  data[:service_managed]
end

#tagsArray<Types::Tag>

Any tags assigned to the Elastic IP address.

Returns:

[View source]

70
71
72
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 70

def tags
  data[:tags]
end

#wait_until(options = {}) {|resource| ... } ⇒ Resource

Deprecated.

Use [Aws::EC2::Client] #wait_until instead

Note:

The waiting operation is performed on a copy. The original resource remains unchanged.

Waiter polls an API operation until a resource enters a desired state.

Basic Usage

Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.

# polls in a loop until condition is true
resource.wait_until(options) {|resource| condition}

Example

instance.wait_until(max_attempts:10, delay:5) do |instance|
  instance.state.name == 'running'
end

Configuration

You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:

# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}

Callbacks

You can be notified before each polling attempt and before each delay. If you throw :success or :failure from these callbacks, it will terminate the waiter.

started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
  throw :failure if Time.now - started_at > 3600
end

  # disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}

Handling Errors

When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.

begin
  resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
  # resource did not enter the desired state in time
end

attempts attempt in seconds invoked before each attempt invoked before each wait

Parameters:

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

    a customizable set of options

Options Hash (options):

  • :max_attempts (Integer) — default: 10

    Maximum number of

  • :delay (Integer) — default: 10

    Delay between each

  • :before_attempt (Proc) — default: nil

    Callback

  • :before_wait (Proc) — default: nil

    Callback

Yield Parameters:

  • resource (Resource)

    to be used in the waiting condition.

Returns:

  • (Resource)

    if the waiter was successful

Raises:

  • (Aws::Waiters::Errors::FailureStateError)

    Raised when the waiter terminates because the waiter has entered a state that it will not transition out of, preventing success.

    yet successful.

  • (Aws::Waiters::Errors::UnexpectedError)

    Raised when an error is encountered while polling for a resource that is not expected.

  • (NotImplementedError)

    Raised when the resource does not

[View source]

247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/vpc_address.rb', line 247

def wait_until(options = {}, &block)
  self_copy = self.dup
  attempts = 0
  options[:max_attempts] = 10 unless options.key?(:max_attempts)
  options[:delay] ||= 10
  options[:poller] = Proc.new do
    attempts += 1
    if block.call(self_copy)
      [:success, self_copy]
    else
      self_copy.reload unless attempts == options[:max_attempts]
      :retry
    end
  end
  Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
    Aws::Waiters::Waiter.new(options).wait({})
  end
end