Sha256: 8bf09f5aca53c142b810274bd8197771d3aa04e0c5e0100c904d45bc2ccb4c46

Contents?: true

Size: 482 Bytes

Versions: 118

Compression:

Stored size: 482 Bytes

Contents

module Awspec::Type
  class Efs < ResourceBase
    def initialize(file_system_id)
      super
      @display_name = file_system_id
    end

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

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

    def has_tag?(tag_key, tag_value)
      tag = find_efs_tags(@display_name, tag_key)
      return nil if tag.value != tag_value
      tag
    end
  end
end

Version data entries

118 entries across 118 versions & 4 rubygems

Version Path
awspec-0.87.0 lib/awspec/type/efs.rb
awspec-0.86.0 lib/awspec/type/efs.rb
cmonson_2ndwatch_awspec-0.85.4 lib/awspec/type/efs.rb
awspec-0.85.3 lib/awspec/type/efs.rb
cmonson_2ndwatch_awspec-0.85.3 lib/awspec/type/efs.rb
awspec-0.85.2 lib/awspec/type/efs.rb
awspec-0.85.1 lib/awspec/type/efs.rb
awspec-0.85.0 lib/awspec/type/efs.rb
awspec-0.84.1 lib/awspec/type/efs.rb
awspec-0.84.0 lib/awspec/type/efs.rb
awspec-0.83.0 lib/awspec/type/efs.rb
awspec-0.82.3 lib/awspec/type/efs.rb
awspec-0.82.2 lib/awspec/type/efs.rb
awspec-0.82.1 lib/awspec/type/efs.rb
awspec-0.82.0 lib/awspec/type/efs.rb
awspec-0.81.1 lib/awspec/type/efs.rb
awspec-0.81.0 lib/awspec/type/efs.rb
awspec-0.80.1 lib/awspec/type/efs.rb
awspec-0.80.0 lib/awspec/type/efs.rb
awspec-0.79.2 lib/awspec/type/efs.rb