class Apcera::Dependency

Attributes

name[RW]
type[RW]

Public Class Methods

attribute_map() click to toggle source

attribute mapping from ruby-style variable name to JSON key

# File lib/apcera/models/dependency.rb, line 6
def self.attribute_map
  {
    
    # A string that describes the resource that can be depended on (e.g., 'java', 'apache-2.2').
    :'name' => :'name',
    
    # The type of dependency. Valid values are `file`, `package`, `runtime`, and `os`.
    :'type' => :'type'
    
  }
end
new(attributes = {}) click to toggle source
# File lib/apcera/models/dependency.rb, line 27
def initialize(attributes = {})
  return if !attributes.is_a?(Hash) || attributes.empty?

  # convert string to symbol for hash key
  attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}

  
  if attributes[:'name']
    self.name = attributes[:'name']
  end
  
  if attributes[:'type']
    self.type = attributes[:'type']
  end
  
end
swagger_types() click to toggle source

attribute type

# File lib/apcera/models/dependency.rb, line 19
def self.swagger_types
  {
    :'name' => :'String',
    :'type' => :'String'
    
  }
end

Public Instance Methods

type=(type) click to toggle source
# File lib/apcera/models/dependency.rb, line 44
def type=(type)
  allowed_values = ["file", "package", "runtime", "os"]
  if type && !allowed_values.include?(type)
    fail "invalid value for 'type', must be one of #{allowed_values}"
  end
  @type = type
end