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