Sha256: ce51d8829c0d2d90141a5dd688cca65040aa8011c57e762a16265ffe8406b461

Contents?: true

Size: 630 Bytes

Versions: 13

Compression:

Stored size: 630 Bytes

Contents

# frozen_string_literal: true

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

    def initialize(service)
      super
      @display_name = service
    end

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

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

    def cluster
      @cluster || 'default'
    end

    STATES = %w[ACTIVE DRAINING INACTIVE]

    STATES.each do |state|
      define_method "#{state.downcase}?" do
        resource_via_client.status == state
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
awspec-1.31.0 lib/awspec/type/ecs_service.rb
awspec-1.30.0 lib/awspec/type/ecs_service.rb
awspec-1.29.3 lib/awspec/type/ecs_service.rb
awspec-1.29.2 lib/awspec/type/ecs_service.rb
awspec-1.29.1 lib/awspec/type/ecs_service.rb
awspec-1.29.0 lib/awspec/type/ecs_service.rb
awspec-1.28.2 lib/awspec/type/ecs_service.rb
awspec-1.28.1 lib/awspec/type/ecs_service.rb
awspec-1.28.0 lib/awspec/type/ecs_service.rb
awspec-1.27.1 lib/awspec/type/ecs_service.rb
awspec-1.27.0 lib/awspec/type/ecs_service.rb
awspec-1.26.0 lib/awspec/type/ecs_service.rb
awspec-1.25.2 lib/awspec/type/ecs_service.rb