Class: Vra::CatalogItem

Inherits:
Object
  • Object
show all
Defined in:
lib/vra/catalog_item.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, opts) ⇒ CatalogItem

Returns a new instance of CatalogItem.



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/vra/catalog_item.rb', line 25

def initialize(client, opts)
  @client            = client
  @id                = opts[:id]
  @catalog_item_data = opts[:data]

  if @id.nil? && @catalog_item_data.nil?
    raise ArgumentError, "must supply an id or a catalog item data hash"
  end

  if !@id.nil? && !@catalog_item_data.nil?
    raise ArgumentError, "must supply an id OR a catalog item data hash, not both"
  end

  if @catalog_item_data.nil?
    fetch_catalog_item
  else
    @id = @catalog_item_data["id"]
  end
end

Instance Attribute Details

#clientObject (readonly)

Returns the value of attribute client.



24
25
26
# File 'lib/vra/catalog_item.rb', line 24

def client
  @client
end

#idObject (readonly)

Returns the value of attribute id.



24
25
26
# File 'lib/vra/catalog_item.rb', line 24

def id
  @id
end

Instance Method Details

#blueprint_idObject



85
86
87
# File 'lib/vra/catalog_item.rb', line 85

def blueprint_id
  @catalog_item_data["providerBinding"]["bindingId"]
end

#descriptionObject



55
56
57
# File 'lib/vra/catalog_item.rb', line 55

def description
  @catalog_item_data["description"]
end

#fetch_catalog_itemObject



45
46
47
48
49
# File 'lib/vra/catalog_item.rb', line 45

def fetch_catalog_item
  @catalog_item_data = client.get_parsed("/catalog-service/api/consumer/catalogItems/#{id}")
rescue Vra::Exception::HTTPNotFound
  raise Vra::Exception::NotFound, "catalog ID #{id} does not exist"
end

#nameObject



51
52
53
# File 'lib/vra/catalog_item.rb', line 51

def name
  @catalog_item_data["name"]
end

#organizationObject



63
64
65
66
67
# File 'lib/vra/catalog_item.rb', line 63

def organization
  return {} if @catalog_item_data["organization"].nil?

  @catalog_item_data["organization"]
end

#statusObject



59
60
61
# File 'lib/vra/catalog_item.rb', line 59

def status
  @catalog_item_data["status"]
end

#subtenant_idObject



77
78
79
# File 'lib/vra/catalog_item.rb', line 77

def subtenant_id
  organization["subtenantRef"]
end

#subtenant_nameObject



81
82
83
# File 'lib/vra/catalog_item.rb', line 81

def subtenant_name
  organization["subtenantLabel"]
end

#tenant_idObject



69
70
71
# File 'lib/vra/catalog_item.rb', line 69

def tenant_id
  organization["tenantRef"]
end

#tenant_nameObject



73
74
75
# File 'lib/vra/catalog_item.rb', line 73

def tenant_name
  organization["tenantLabel"]
end