Class: Legato::Management::Segment

Inherits:
Object
  • Object
show all
Extended by:
Finder
Defined in:
lib/legato/management/segment.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Finder

all, base_uri, get

Constructor Details

#initialize(attributes, user) ⇒ Segment

Returns a new instance of Segment.



16
17
18
19
20
21
# File 'lib/legato/management/segment.rb', line 16

def initialize(attributes, user)
  self.user = user
  self.id = attributes['id']
  self.name = attributes['name']
  self.definition = attributes['definition']
end

Instance Attribute Details

#definitionObject

Returns the value of attribute definition.



14
15
16
# File 'lib/legato/management/segment.rb', line 14

def definition
  @definition
end

#idObject

Returns the value of attribute id.



14
15
16
# File 'lib/legato/management/segment.rb', line 14

def id
  @id
end

#nameObject

Returns the value of attribute name.



14
15
16
# File 'lib/legato/management/segment.rb', line 14

def name
  @name
end

#userObject

Returns the value of attribute user.



14
15
16
# File 'lib/legato/management/segment.rb', line 14

def user
  @user
end

Class Method Details

.default_pathObject



6
7
8
# File 'lib/legato/management/segment.rb', line 6

def self.default_path
  "/segments"
end

Instance Method Details

#pathObject



10
11
12
# File 'lib/legato/management/segment.rb', line 10

def path
  "/segments/#{id}"
end