fog-proxmox 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +13 -9
  3. data/docs/compute.md +17 -17
  4. data/docs/identity.md +6 -6
  5. data/examples/compute.rb +1 -1
  6. data/examples/identity.rb +1 -1
  7. data/fog-proxmox.gemspec +4 -4
  8. data/lib/fog/compute/proxmox.rb +2 -2
  9. data/lib/fog/compute/proxmox/models/disk.rb +2 -2
  10. data/lib/fog/compute/proxmox/models/disks.rb +3 -3
  11. data/lib/fog/compute/proxmox/models/interface.rb +2 -2
  12. data/lib/fog/compute/proxmox/models/interfaces.rb +4 -4
  13. data/lib/fog/compute/proxmox/models/node.rb +6 -6
  14. data/lib/fog/compute/proxmox/models/nodes.rb +3 -3
  15. data/lib/fog/compute/proxmox/models/server.rb +6 -6
  16. data/lib/fog/compute/proxmox/models/server_config.rb +8 -8
  17. data/lib/fog/compute/proxmox/models/servers.rb +3 -3
  18. data/lib/fog/compute/proxmox/models/snapshot.rb +3 -3
  19. data/lib/fog/compute/proxmox/models/snapshots.rb +3 -3
  20. data/lib/fog/compute/proxmox/models/storage.rb +3 -3
  21. data/lib/fog/compute/proxmox/models/storages.rb +3 -3
  22. data/lib/fog/compute/proxmox/models/task.rb +2 -2
  23. data/lib/fog/compute/proxmox/models/tasks.rb +3 -3
  24. data/lib/fog/compute/proxmox/models/volume.rb +2 -2
  25. data/lib/fog/compute/proxmox/models/volumes.rb +3 -3
  26. data/lib/fog/compute/proxmox/requests/action_server.rb +2 -2
  27. data/lib/fog/compute/proxmox/requests/clone_server.rb +2 -2
  28. data/lib/fog/compute/proxmox/requests/create_backup.rb +2 -2
  29. data/lib/fog/compute/proxmox/requests/create_server.rb +2 -2
  30. data/lib/fog/compute/proxmox/requests/create_snapshot.rb +2 -2
  31. data/lib/fog/compute/proxmox/requests/create_spice.rb +2 -2
  32. data/lib/fog/compute/proxmox/requests/create_term.rb +2 -2
  33. data/lib/fog/compute/proxmox/requests/create_vnc.rb +2 -2
  34. data/lib/fog/compute/proxmox/requests/delete_server.rb +2 -2
  35. data/lib/fog/compute/proxmox/requests/delete_snapshot.rb +2 -2
  36. data/lib/fog/compute/proxmox/requests/delete_volume.rb +2 -2
  37. data/lib/fog/compute/proxmox/requests/get_node_statistics.rb +2 -2
  38. data/lib/fog/compute/proxmox/requests/get_server_config.rb +2 -2
  39. data/lib/fog/compute/proxmox/requests/get_server_status.rb +2 -2
  40. data/lib/fog/compute/proxmox/requests/get_snapshot_config.rb +2 -2
  41. data/lib/fog/compute/proxmox/requests/get_task.rb +2 -2
  42. data/lib/fog/compute/proxmox/requests/get_vnc.rb +2 -2
  43. data/lib/fog/compute/proxmox/requests/get_volume.rb +2 -2
  44. data/lib/fog/compute/proxmox/requests/list_nodes.rb +2 -2
  45. data/lib/fog/compute/proxmox/requests/list_servers.rb +2 -2
  46. data/lib/fog/compute/proxmox/requests/list_snapshots.rb +2 -2
  47. data/lib/fog/compute/proxmox/requests/list_storages.rb +2 -2
  48. data/lib/fog/compute/proxmox/requests/list_tasks.rb +2 -2
  49. data/lib/fog/compute/proxmox/requests/list_volumes.rb +2 -2
  50. data/lib/fog/compute/proxmox/requests/log_task.rb +2 -2
  51. data/lib/fog/compute/proxmox/requests/migrate_server.rb +2 -2
  52. data/lib/fog/compute/proxmox/requests/move_disk.rb +2 -2
  53. data/lib/fog/compute/proxmox/requests/move_volume.rb +2 -2
  54. data/lib/fog/compute/proxmox/requests/next_vmid.rb +2 -2
  55. data/lib/fog/compute/proxmox/requests/resize_container.rb +2 -2
  56. data/lib/fog/compute/proxmox/requests/resize_server.rb +2 -2
  57. data/lib/fog/compute/proxmox/requests/rollback_snapshot.rb +2 -2
  58. data/lib/fog/compute/proxmox/requests/status_task.rb +2 -2
  59. data/lib/fog/compute/proxmox/requests/stop_task.rb +2 -2
  60. data/lib/fog/compute/proxmox/requests/template_server.rb +2 -2
  61. data/lib/fog/compute/proxmox/requests/update_server.rb +2 -2
  62. data/lib/fog/compute/proxmox/requests/update_snapshot.rb +2 -2
  63. data/lib/fog/identity/proxmox.rb +2 -2
  64. data/lib/fog/identity/proxmox/models/domain.rb +3 -3
  65. data/lib/fog/identity/proxmox/models/domain_type.rb +2 -2
  66. data/lib/fog/identity/proxmox/models/domains.rb +3 -3
  67. data/lib/fog/identity/proxmox/models/group.rb +2 -2
  68. data/lib/fog/identity/proxmox/models/groups.rb +3 -3
  69. data/lib/fog/identity/proxmox/models/permission.rb +2 -2
  70. data/lib/fog/identity/proxmox/models/permissions.rb +3 -3
  71. data/lib/fog/identity/proxmox/models/pool.rb +2 -2
  72. data/lib/fog/identity/proxmox/models/pools.rb +3 -3
  73. data/lib/fog/identity/proxmox/models/principal.rb +2 -2
  74. data/lib/fog/identity/proxmox/models/role.rb +2 -2
  75. data/lib/fog/identity/proxmox/models/roles.rb +3 -3
  76. data/lib/fog/identity/proxmox/models/user.rb +2 -2
  77. data/lib/fog/identity/proxmox/models/users.rb +3 -3
  78. data/lib/fog/identity/proxmox/requests/change_password.rb +2 -2
  79. data/lib/fog/identity/proxmox/requests/check_permissions.rb +2 -2
  80. data/lib/fog/identity/proxmox/requests/create_domain.rb +2 -2
  81. data/lib/fog/identity/proxmox/requests/create_group.rb +2 -2
  82. data/lib/fog/identity/proxmox/requests/create_pool.rb +2 -2
  83. data/lib/fog/identity/proxmox/requests/create_role.rb +2 -2
  84. data/lib/fog/identity/proxmox/requests/create_user.rb +2 -2
  85. data/lib/fog/identity/proxmox/requests/delete_domain.rb +2 -2
  86. data/lib/fog/identity/proxmox/requests/delete_group.rb +2 -2
  87. data/lib/fog/identity/proxmox/requests/delete_pool.rb +2 -2
  88. data/lib/fog/identity/proxmox/requests/delete_role.rb +2 -2
  89. data/lib/fog/identity/proxmox/requests/delete_user.rb +2 -2
  90. data/lib/fog/identity/proxmox/requests/get_domain.rb +2 -2
  91. data/lib/fog/identity/proxmox/requests/get_group.rb +2 -2
  92. data/lib/fog/identity/proxmox/requests/get_pool.rb +2 -2
  93. data/lib/fog/identity/proxmox/requests/get_role.rb +2 -2
  94. data/lib/fog/identity/proxmox/requests/get_user.rb +2 -2
  95. data/lib/fog/identity/proxmox/requests/list_domains.rb +2 -2
  96. data/lib/fog/identity/proxmox/requests/list_groups.rb +2 -2
  97. data/lib/fog/identity/proxmox/requests/list_permissions.rb +2 -2
  98. data/lib/fog/identity/proxmox/requests/list_pools.rb +2 -2
  99. data/lib/fog/identity/proxmox/requests/list_roles.rb +2 -2
  100. data/lib/fog/identity/proxmox/requests/list_users.rb +2 -2
  101. data/lib/fog/identity/proxmox/requests/read_version.rb +2 -2
  102. data/lib/fog/identity/proxmox/requests/update_domain.rb +2 -2
  103. data/lib/fog/identity/proxmox/requests/update_group.rb +2 -2
  104. data/lib/fog/identity/proxmox/requests/update_permissions.rb +2 -2
  105. data/lib/fog/identity/proxmox/requests/update_pool.rb +2 -2
  106. data/lib/fog/identity/proxmox/requests/update_role.rb +2 -2
  107. data/lib/fog/identity/proxmox/requests/update_user.rb +2 -2
  108. data/lib/fog/network/proxmox.rb +2 -2
  109. data/lib/fog/network/proxmox/models/network.rb +2 -2
  110. data/lib/fog/network/proxmox/models/networks.rb +3 -3
  111. data/lib/fog/network/proxmox/models/node.rb +3 -3
  112. data/lib/fog/network/proxmox/models/nodes.rb +3 -3
  113. data/lib/fog/network/proxmox/requests/create_network.rb +2 -2
  114. data/lib/fog/network/proxmox/requests/delete_network.rb +2 -2
  115. data/lib/fog/network/proxmox/requests/get_network.rb +2 -2
  116. data/lib/fog/network/proxmox/requests/get_node.rb +2 -2
  117. data/lib/fog/network/proxmox/requests/list_networks.rb +2 -2
  118. data/lib/fog/network/proxmox/requests/list_nodes.rb +2 -2
  119. data/lib/fog/network/proxmox/requests/power_node.rb +2 -2
  120. data/lib/fog/network/proxmox/requests/update_network.rb +2 -2
  121. data/lib/fog/proxmox.rb +4 -17
  122. data/lib/fog/proxmox/core.rb +1 -1
  123. data/lib/fog/proxmox/helpers/controller_helper.rb +5 -6
  124. data/lib/fog/proxmox/version.rb +1 -1
  125. data/lib/fog/storage/proxmox.rb +2 -2
  126. data/spec/compute_spec.rb +2 -2
  127. data/spec/helpers/controller_helper_spec.rb +17 -2
  128. data/spec/identity_spec.rb +3 -3
  129. data/spec/network_spec.rb +2 -2
  130. data/spec/spec_helper.rb +1 -0
  131. metadata +10 -10
@@ -21,8 +21,8 @@
21
21
  require 'fog/proxmox/json'
22
22
 
23
23
  module Fog
24
- module Compute
25
- class Proxmox
24
+ module Proxmox
25
+ class Compute
26
26
  # class Real list_storages request
27
27
  class Real
28
28
  def list_storages(node, options = {})
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real list_tasks request
25
25
  class Real
26
26
  def list_tasks(node, options)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real list_volumes request
25
25
  class Real
26
26
  def list_volumes(node, storage, options)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real log_task
25
25
  class Real
26
26
  def log_task(node, upid, options)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real migrate_server request
24
24
  class Real
25
25
  def migrate_server(path_params, body_params)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real move_disk request
24
24
  class Real
25
25
  def move_disk(path_params, body_params)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real move_volume request
24
24
  class Real
25
25
  def move_volume(path_params, body_params)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real next_vmid collection
25
25
  class Real
26
26
  def next_vmid(options = {})
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real resize_container request
24
24
  class Real
25
25
  def resize_container(path_params, body_params)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real resize_server request
24
24
  class Real
25
25
  def resize_server(path_params, body_params)
@@ -20,8 +20,8 @@
20
20
  # frozen_string_literal: true
21
21
 
22
22
  module Fog
23
- module Compute
24
- class Proxmox
23
+ module Proxmox
24
+ class Compute
25
25
  # class Real rollback_snapshot request
26
26
  class Real
27
27
  def rollback_snapshot(path_params)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real status_task
25
25
  class Real
26
26
  def status_task(node, upid)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Compute
23
- class Proxmox
22
+ module Proxmox
23
+ class Compute
24
24
  # class Real stop_task collection
25
25
  class Real
26
26
  def stop_task(node, upid)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real template_server request
24
24
  class Real
25
25
  def template_server(path_params, body_params)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real update_server request
24
24
  class Real
25
25
  def update_server(path_params, body_params)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Compute
22
- class Proxmox
21
+ module Proxmox
22
+ class Compute
23
23
  # class Real update_snapshot request
24
24
  class Real
25
25
  def update_snapshot(path_params, body_params)
@@ -21,9 +21,9 @@
21
21
  require 'fog/core'
22
22
 
23
23
  module Fog
24
- module Identity
24
+ module Proxmox
25
25
  # Identity and authentication proxmox class
26
- class Proxmox < Fog::Service
26
+ class Identity < Fog::Service
27
27
  requires :pve_url
28
28
  recognizes :pve_ticket, :pve_path, :pve_ticket_expires, :pve_csrftoken, :persistent, :current_user, :pve_username, :pve_password, :pve_deadline
29
29
 
@@ -16,8 +16,8 @@
16
16
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
18
  module Fog
19
- module Identity
20
- class Proxmox
19
+ module Proxmox
20
+ class Identity
21
21
  # class Domain model authentication
22
22
  class Domain < Fog::Model
23
23
  identity :realm
@@ -55,7 +55,7 @@ module Fog
55
55
  elsif new_attributes.has_key? 'realm'
56
56
  realm = new_attributes.delete('realm')
57
57
  end
58
- attributes[:type] = Fog::Identity::Proxmox::DomainType.new(new_attributes)
58
+ attributes[:type] = Fog::Proxmox::Identity::DomainType.new(new_attributes)
59
59
  new_attributes.delete_if { |new_attribute| attributes[:type].attributes.has_key? new_attribute.to_sym }
60
60
  new_attributes.store(:realm, realm)
61
61
  end
@@ -16,8 +16,8 @@
16
16
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
18
  module Fog
19
- module Identity
20
- class Proxmox
19
+ module Proxmox
20
+ class Identity
21
21
  # class Domain type model authentication
22
22
  class DomainType < Fog::Model
23
23
  identity :type
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/domain'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Domains collection authentication
26
26
  class Domains < Fog::Collection
27
- model Fog::Identity::Proxmox::Domain
27
+ model Fog::Proxmox::Identity::Domain
28
28
 
29
29
  def all
30
30
  load service.list_domains
@@ -18,8 +18,8 @@
18
18
  # frozen_string_literal: true
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class Group model authentication
24
24
  class Group < Fog::Model
25
25
  identity :groupid
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/group'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Groups authentication
26
26
  class Groups < Fog::Collection
27
- model Fog::Identity::Proxmox::Group
27
+ model Fog::Proxmox::Identity::Group
28
28
 
29
29
  def all
30
30
  load service.list_groups
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class Permission
24
24
  class Permission < Fog::Model
25
25
  identity :type
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/permission'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Permissions authentication
26
26
  class Permissions < Fog::Collection
27
- model Fog::Identity::Proxmox::Permission
27
+ model Fog::Proxmox::Identity::Permission
28
28
 
29
29
  def all
30
30
  load service.list_permissions
@@ -18,8 +18,8 @@
18
18
  # frozen_string_literal: true
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class Pool model of VMs
24
24
  class Pool < Fog::Model
25
25
  identity :poolid
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/pool'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Pools Collection of pools of VMs
26
26
  class Pools < Fog::Collection
27
- model Fog::Identity::Proxmox::Pool
27
+ model Fog::Proxmox::Identity::Pool
28
28
 
29
29
  def all
30
30
  load service.list_pools
@@ -26,8 +26,8 @@
26
26
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
27
27
 
28
28
  module Fog
29
- module Identity
30
- class Proxmox
29
+ module Proxmox
30
+ class Identity
31
31
  # class Principal current user authenticated
32
32
  class Principal < Fog::Model
33
33
  identity :username
@@ -18,8 +18,8 @@
18
18
  # frozen_string_literal: true
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class Role model authentication
24
24
  class Role < Fog::Model
25
25
  identity :roleid
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/role'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Roles model collection authentication
26
26
  class Roles < Fog::Collection
27
- model Fog::Identity::Proxmox::Role
27
+ model Fog::Proxmox::Identity::Role
28
28
 
29
29
  def all
30
30
  load service.list_roles
@@ -18,8 +18,8 @@
18
18
  # frozen_string_literal: true
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class User model
24
24
  class User < Fog::Model
25
25
  identity :userid
@@ -20,11 +20,11 @@
20
20
  require 'fog/identity/proxmox/models/user'
21
21
 
22
22
  module Fog
23
- module Identity
24
- class Proxmox
23
+ module Proxmox
24
+ class Identity
25
25
  # class Users model collection
26
26
  class Users < Fog::Collection
27
- model Fog::Identity::Proxmox::User
27
+ model Fog::Proxmox::Identity::User
28
28
 
29
29
  def all(filters = {})
30
30
  load service.list_users(filters)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Identity
23
- class Proxmox
22
+ module Proxmox
23
+ class Identity
24
24
  # class Real change_password request
25
25
  class Real
26
26
  def change_password(userid, password)
@@ -19,8 +19,8 @@
19
19
  # frozen_string_literal: true
20
20
 
21
21
  module Fog
22
- module Identity
23
- class Proxmox
22
+ module Proxmox
23
+ class Identity
24
24
  # class Real check_permissions request
25
25
  class Real
26
26
  def check_permissions(principal)
@@ -18,8 +18,8 @@
18
18
  # along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module Fog
21
- module Identity
22
- class Proxmox
21
+ module Proxmox
22
+ class Identity
23
23
  # class Real create_domain collection
24
24
  class Real
25
25
  def create_domain(domain)