Class: CFoundry::V1::Service

Inherits:
Object
  • Object
show all
Defined in:
lib/cfoundry/v1/service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(label, version = nil, description = nil, type = nil) ⇒ Service

Returns a new instance of Service.



5
6
7
8
9
10
# File 'lib/cfoundry/v1/service.rb', line 5

def initialize(label, version = nil, description = nil, type = nil)
  @label = label
  @description = description
  @version = version
  @type = nil
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



3
4
5
# File 'lib/cfoundry/v1/service.rb', line 3

def description
  @description
end

#labelObject

Returns the value of attribute label.



3
4
5
# File 'lib/cfoundry/v1/service.rb', line 3

def label
  @label
end

#typeObject

Returns the value of attribute type.



3
4
5
# File 'lib/cfoundry/v1/service.rb', line 3

def type
  @type
end

#versionObject

Returns the value of attribute version.



3
4
5
# File 'lib/cfoundry/v1/service.rb', line 3

def version
  @version
end

Instance Method Details

#activeObject



16
17
18
# File 'lib/cfoundry/v1/service.rb', line 16

def active
  true
end

#providerObject



12
13
14
# File 'lib/cfoundry/v1/service.rb', line 12

def provider
  "core"
end