Sha256: 6e6f1262cfcfa67e651df726d3e28c64eacaae23db6a9513379b52e984a1fb63

Contents?: true

Size: 659 Bytes

Versions: 118

Compression:

Stored size: 659 Bytes

Contents

module Awspec::Type
  class EcsContainerInstance < ResourceBase
    attr_accessor :cluster

    def initialize(container_instance)
      super
      @display_name = container_instance.split('/').last
    end

    def resource_via_client
      @resource_via_client ||= find_ecs_container_instance(cluster, @display_name)
    end

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

    def cluster
      @cluster || 'default'
    end

    STATES = %w(ACTIVE INACTIVE)

    STATES.each do |state|
      define_method state.downcase + '?' do
        resource_via_client.status == state
      end
    end
  end
end

Version data entries

118 entries across 118 versions & 4 rubygems

Version Path
awspec-1.25.1 lib/awspec/type/ecs_container_instance.rb
awspec-1.25.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.24.4 lib/awspec/type/ecs_container_instance.rb
awspec-1.24.3 lib/awspec/type/ecs_container_instance.rb
awspec-1.24.2 lib/awspec/type/ecs_container_instance.rb
awspec-1.24.1 lib/awspec/type/ecs_container_instance.rb
awspec-1.24.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.23.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.22.1 lib/awspec/type/ecs_container_instance.rb
awspec-1.22.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.21.1 lib/awspec/type/ecs_container_instance.rb
awspec-1.21.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.20.0 lib/awspec/type/ecs_container_instance.rb
awspec-1.19.2 lib/awspec/type/ecs_container_instance.rb
awspec-1.19.1 lib/awspec/type/ecs_container_instance.rb
awspec-1.19.0 lib/awspec/type/ecs_container_instance.rb
cthiesfork-awspec-1.2.4 lib/awspec/type/ecs_container_instance.rb
awspec-api_gateway_extended-1.2.4 lib/awspec/type/ecs_container_instance.rb
awspec-api_gateway_extended-1.2.3 lib/awspec/type/ecs_container_instance.rb
awspec-1.18.6 lib/awspec/type/ecs_container_instance.rb