class Copper::DataTypes::ImageClass

Attributes

fqin[RW]
name[RW]
registry[RW]
registry_url[RW]
tag[RW]

Public Class Methods

new(hash) click to toggle source
# File lib/copper/data_types/image.rb, line 96
def initialize(hash)
        @fqin = hash[:fqin]
        @registry = hash[:registry]
        @registry_url = hash[:registry_url]
        @name = hash[:name]
        @tag = hash[:tag]
end

Public Instance Methods

to_s() click to toggle source
# File lib/copper/data_types/image.rb, line 104
def to_s
        "fqin:#{fqin}, registry:#{registry}, registry_url:#{registry_url}, name:#{name}, tag:#{tag}"
end