Class: OpenStack::Identity::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/openstack/identity/connection.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(connection) ⇒ Connection

Returns a new instance of Connection.



6
7
8
9
# File 'lib/openstack/identity/connection.rb', line 6

def initialize(connection)
  @connection = connection
  OpenStack::Authentication.init(@connection)
end

Instance Attribute Details

#connectionObject

Returns the value of attribute connection.



4
5
6
# File 'lib/openstack/identity/connection.rb', line 4

def connection
  @connection
end

Instance Method Details

#add_user_to_tenant(options) ⇒ Object



56
57
58
59
60
# File 'lib/openstack/identity/connection.rb', line 56

def add_user_to_tenant(options)
  req_body = JSON.generate('role' => { 'tenantId' => options[:tenant_id], 'roleId' => options[:role_id] })
  @connection.req('POST', "/users/#{options[:user_id]}/roleRefs", data: req_body)
  true
end

#create_tenant(options) ⇒ Object

create_tenant(name: ‘tenant1’, description: ‘description’, enabled: true)



20
21
22
23
24
# File 'lib/openstack/identity/connection.rb', line 20

def create_tenant(options)
  req_body = JSON.generate('tenant' => options)
  response = @connection.req('POST', '/tenants', data: req_body)
  OpenStack::Identity::Tenant.new(JSON.parse(response.body)['tenant'])
end

#create_user(options) ⇒ Object

create_user(name: ‘user1’, password: ‘password1’, email: ‘[email protected]’)



45
46
47
48
49
# File 'lib/openstack/identity/connection.rb', line 45

def create_user(options)
  req_body = JSON.generate('user' => options)
  response = @connection.req('POST', '/users', data: req_body)
  OpenStack::Identity::User.new(JSON.parse(response.body)['user'])
end

#delete_tenant(id) ⇒ Object



31
32
33
34
# File 'lib/openstack/identity/connection.rb', line 31

def delete_tenant(id)
  @connection.req('DELETE', "/tenants/#{id}")
  true
end

#delete_user(id) ⇒ Object



51
52
53
54
# File 'lib/openstack/identity/connection.rb', line 51

def delete_user(id)
  @connection.req('DELETE', "/users/#{id}")
  true
end

#find_tenant_by_name(name) ⇒ Object



26
27
28
29
# File 'lib/openstack/identity/connection.rb', line 26

def find_tenant_by_name(name)
  response = @connection.req('GET', "/tenants?name=#{name}")
  OpenStack::Identity::Tenant.new(JSON.parse(response.body)['tenant'])
end

#list_rolesObject Also known as: roles



62
63
64
65
# File 'lib/openstack/identity/connection.rb', line 62

def list_roles
  response = @connection.req('GET', '/OS-KSADM/roles')
  OpenStack.symbolize_keys(JSON.parse(response.body)['roles'])
end

#list_tenantsObject Also known as: tenants



11
12
13
14
15
# File 'lib/openstack/identity/connection.rb', line 11

def list_tenants
  response = @connection.req('GET', '/tenants')
  tenants_hash = JSON.parse(response.body)['tenants']
  tenants_hash.map { |res| OpenStack::Identity::Tenant.new(res) }
end

#list_usersObject Also known as: users



36
37
38
39
40
# File 'lib/openstack/identity/connection.rb', line 36

def list_users
  response = @connection.req('GET', '/users')
  users_hash = JSON.parse(response.body)['users']
  users_hash.map { |res| OpenStack::Identity::User.new(res) }
end