Sha256: 2c845ebd9a857578ef2486fa0300cd0f571fe7e4e9ce21eb38af4a0e8f688915

Contents?: true

Size: 680 Bytes

Versions: 7

Compression:

Stored size: 680 Bytes

Contents

# frozen_string_literal: true

module Awspec::Type
  class NatGateway < ResourceBase
    tags_allowed

    def resource_via_client
      @resource_via_client ||= find_nat_gateway(@display_name)
    end

    def id
      @id ||= resource_via_client.nat_gateway_id if resource_via_client
    end

    STATES = %w[
      pending failed available deleting deleted
    ]

    STATES.each do |state|
      define_method "#{state.tr('-', '_')}?" do
        resource_via_client.state == state
      end
    end

    def has_eip?(ip_address = nil)
      resource_via_client.nat_gateway_addresses.find do |address|
        return address.public_ip == ip_address
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
awspec-1.28.2 lib/awspec/type/nat_gateway.rb
awspec-1.28.1 lib/awspec/type/nat_gateway.rb
awspec-1.28.0 lib/awspec/type/nat_gateway.rb
awspec-1.27.1 lib/awspec/type/nat_gateway.rb
awspec-1.27.0 lib/awspec/type/nat_gateway.rb
awspec-1.26.0 lib/awspec/type/nat_gateway.rb
awspec-1.25.2 lib/awspec/type/nat_gateway.rb