Class: KillBillClient::Model::RoleDefinition

Inherits:
RoleDefinitionAttributes show all
Defined in:
lib/killbill_client/models/role_definition.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.find_by_name(role_name, options = {}) ⇒ Object



6
7
8
9
10
# File 'lib/killbill_client/models/role_definition.rb', line 6

def find_by_name(role_name, options = {})
  role = get "#{Security::KILLBILL_API_SECURITY_PREFIX}/roles/#{role_name}",
                                {},
                                options
end

Instance Method Details

#create(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
# File 'lib/killbill_client/models/role_definition.rb', line 13

def create(user = nil, reason = nil, comment = nil, options = {})
  created_role = self.class.post "#{Security::KILLBILL_API_SECURITY_PREFIX}/roles",
                                 to_json,
                                 {},
                                 {
                                     :user => user,
                                     :reason => reason,
                                     :comment => comment,
                                 }.merge(options)
  created_role.refresh(options)
end

#update(user = nil, reason = nil, comment = nil, options = {}) ⇒ Object



25
26
27
28
29
30
31
32
33
34
# File 'lib/killbill_client/models/role_definition.rb', line 25

def update(user = nil, reason = nil, comment = nil, options = {})
  self.class.put "#{Security::KILLBILL_API_SECURITY_PREFIX}/roles",
                                 to_json,
                                 {},
                                 {
                                     :user => user,
                                     :reason => reason,
                                     :comment => comment,
                                 }.merge(options)
end