Class: CFoundry::V1::Service

Inherits:
Object
  • Object
show all
Defined in:
lib/appfog-vmc-plugin/cfoundry/v1/service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(label, infra, version = nil, description = nil, type = nil, provider = "core", state = nil, plans = [], default_plan = nil) ⇒ Service

Returns a new instance of Service.



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 5

def initialize(label, infra, version = nil, description = nil,
               type = nil, provider = "core", state = nil,
               plans = [], default_plan = nil)
  @label = label
  @infra = infra
  @description = description
  @version = version
  @type = type
  @provider = provider
  @state = state
  @plans = plans
  @default_plan = default_plan
end

Instance Attribute Details

#default_planObject

Returns the value of attribute default_plan.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def default_plan
  @default_plan
end

#descriptionObject

Returns the value of attribute description.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def description
  @description
end

#infraObject

Returns the value of attribute infra.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def infra
  @infra
end

#labelObject

Returns the value of attribute label.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def label
  @label
end

#plansObject

Returns the value of attribute plans.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def plans
  @plans
end

#providerObject

Returns the value of attribute provider.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def provider
  @provider
end

#stateObject

Returns the value of attribute state.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def state
  @state
end

#typeObject

Returns the value of attribute type.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def type
  @type
end

#versionObject

Returns the value of attribute version.



3
4
5
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 3

def version
  @version
end

Instance Method Details

#activeObject



24
25
26
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 24

def active
  true
end

#current?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 32

def current?
  @state == :current
end

#deprecated?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 28

def deprecated?
  @state == :deprecated
end

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


19
20
21
# File 'lib/appfog-vmc-plugin/cfoundry/v1/service.rb', line 19

def eql?(other)
  other.is_a?(self.class) && other.label == @label
end