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-0.79.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.79.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.78.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.77.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.77.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.76.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.76.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.75.2 lib/awspec/type/ecs_container_instance.rb
awspec-0.75.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.75.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.74.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.74.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.73.2 lib/awspec/type/ecs_container_instance.rb
awspec-0.73.1 lib/awspec/type/ecs_container_instance.rb
awspec-0.73.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.72.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.71.0 lib/awspec/type/ecs_container_instance.rb
awspec-0.70.0 lib/awspec/type/ecs_container_instance.rb