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
cthiesfork-awspec-1.2.2 lib/awspec/type/efs.rb
cthiesfork-awspec-1.2.1 lib/awspec/type/efs.rb
awspec-1.18.5 lib/awspec/type/efs.rb
cthiesfork-awspec-1.2.0 lib/awspec/type/efs.rb
cthiesfork-awspec-1.1.0 lib/awspec/type/efs.rb
cthiesfork-awspec-1.0.0 lib/awspec/type/efs.rb
awspec-1.18.4 lib/awspec/type/efs.rb
awspec-1.18.3 lib/awspec/type/efs.rb
awspec-1.18.2 lib/awspec/type/efs.rb
awspec-1.18.1 lib/awspec/type/efs.rb
awspec-1.18.0 lib/awspec/type/efs.rb
awspec-1.17.4 lib/awspec/type/efs.rb
awspec-1.17.3 lib/awspec/type/efs.rb
awspec-1.17.2 lib/awspec/type/efs.rb
awspec-1.17.1 lib/awspec/type/efs.rb
awspec-1.17.0 lib/awspec/type/efs.rb
awspec-1.16.1 lib/awspec/type/efs.rb
awspec-1.16.0 lib/awspec/type/efs.rb
awspec-1.15.3 lib/awspec/type/efs.rb
awspec-1.15.2 lib/awspec/type/efs.rb