pnap_bmc_api 1.0.0 → 1.1.1

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 (60) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -4
  3. data/VERSION +1 -1
  4. data/docs/NetworkConfiguration.md +5 -1
  5. data/docs/OsConfiguration.md +3 -1
  6. data/docs/PrivateNetworkConfiguration.md +1 -1
  7. data/docs/PublicNetworkConfiguration.md +18 -0
  8. data/docs/Quota.md +2 -2
  9. data/docs/Server.md +3 -3
  10. data/docs/ServerCreate.md +3 -3
  11. data/docs/ServerPrivateNetwork.md +1 -1
  12. data/docs/ServerPublicNetwork.md +22 -0
  13. data/docs/ServersApi.md +156 -10
  14. data/lib/pnap_bmc_api/api/quotas_api.rb +2 -2
  15. data/lib/pnap_bmc_api/api/servers_api.rb +155 -16
  16. data/lib/pnap_bmc_api/api/ssh_keys_api.rb +2 -2
  17. data/lib/pnap_bmc_api/api_client.rb +5 -3
  18. data/lib/pnap_bmc_api/api_error.rb +2 -2
  19. data/lib/pnap_bmc_api/configuration.rb +4 -3
  20. data/lib/pnap_bmc_api/models/action_result.rb +3 -2
  21. data/lib/pnap_bmc_api/models/delete_result.rb +3 -2
  22. data/lib/pnap_bmc_api/models/delete_ssh_key_result.rb +3 -2
  23. data/lib/pnap_bmc_api/models/error.rb +3 -2
  24. data/lib/pnap_bmc_api/models/ip_blocks_configuration.rb +3 -2
  25. data/lib/pnap_bmc_api/models/network_configuration.rb +26 -6
  26. data/lib/pnap_bmc_api/models/os_configuration.rb +19 -6
  27. data/lib/pnap_bmc_api/models/os_configuration_map.rb +3 -2
  28. data/lib/pnap_bmc_api/models/os_configuration_map_esxi.rb +3 -2
  29. data/lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb +3 -2
  30. data/lib/pnap_bmc_api/models/os_configuration_windows.rb +3 -2
  31. data/lib/pnap_bmc_api/models/private_network_configuration.rb +4 -3
  32. data/lib/pnap_bmc_api/models/public_network_configuration.rb +223 -0
  33. data/lib/pnap_bmc_api/models/quota.rb +4 -15
  34. data/lib/pnap_bmc_api/models/quota_edit_limit_request.rb +3 -2
  35. data/lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb +3 -2
  36. data/lib/pnap_bmc_api/models/quota_edit_limit_request_details_all_of.rb +3 -2
  37. data/lib/pnap_bmc_api/models/relinquish_ip_block.rb +3 -2
  38. data/lib/pnap_bmc_api/models/reset_result.rb +3 -2
  39. data/lib/pnap_bmc_api/models/server.rb +10 -18
  40. data/lib/pnap_bmc_api/models/server_create.rb +6 -5
  41. data/lib/pnap_bmc_api/models/server_ip_block.rb +4 -3
  42. data/lib/pnap_bmc_api/models/server_patch.rb +3 -2
  43. data/lib/pnap_bmc_api/models/server_private_network.rb +4 -3
  44. data/lib/pnap_bmc_api/models/server_public_network.rb +272 -0
  45. data/lib/pnap_bmc_api/models/server_reserve.rb +3 -2
  46. data/lib/pnap_bmc_api/models/server_reset.rb +3 -2
  47. data/lib/pnap_bmc_api/models/ssh_key.rb +3 -2
  48. data/lib/pnap_bmc_api/models/ssh_key_create.rb +3 -2
  49. data/lib/pnap_bmc_api/models/ssh_key_update.rb +3 -2
  50. data/lib/pnap_bmc_api/models/tag_assignment.rb +3 -2
  51. data/lib/pnap_bmc_api/models/tag_assignment_request.rb +3 -2
  52. data/lib/pnap_bmc_api/version.rb +2 -2
  53. data/lib/pnap_bmc_api.rb +4 -2
  54. data/pnap_bmc_api.gemspec +3 -3
  55. data/spec/api_client_spec.rb +2 -2
  56. data/spec/configuration_spec.rb +2 -2
  57. data/spec/models/public_network_configuration_spec.rb +34 -0
  58. data/spec/models/server_public_network_spec.rb +46 -0
  59. data/spec/spec_helper.rb +2 -2
  60. metadata +32 -24
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -124,6 +124,7 @@ module BmcApi
124
124
  # @return [Object] Returns the model itself
125
125
  def build_from_hash(attributes)
126
126
  return nil unless attributes.is_a?(Hash)
127
+ attributes = attributes.transform_keys(&:to_sym)
127
128
  self.class.openapi_types.each_pair do |key, type|
128
129
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
129
130
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
data/lib/pnap_bmc_api.rb CHANGED
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -29,6 +29,7 @@ require 'pnap_bmc_api/models/os_configuration_map_esxi'
29
29
  require 'pnap_bmc_api/models/os_configuration_map_proxmox'
30
30
  require 'pnap_bmc_api/models/os_configuration_windows'
31
31
  require 'pnap_bmc_api/models/private_network_configuration'
32
+ require 'pnap_bmc_api/models/public_network_configuration'
32
33
  require 'pnap_bmc_api/models/quota'
33
34
  require 'pnap_bmc_api/models/quota_edit_limit_request'
34
35
  require 'pnap_bmc_api/models/quota_edit_limit_request_details'
@@ -40,6 +41,7 @@ require 'pnap_bmc_api/models/server_create'
40
41
  require 'pnap_bmc_api/models/server_ip_block'
41
42
  require 'pnap_bmc_api/models/server_patch'
42
43
  require 'pnap_bmc_api/models/server_private_network'
44
+ require 'pnap_bmc_api/models/server_public_network'
43
45
  require 'pnap_bmc_api/models/server_reserve'
44
46
  require 'pnap_bmc_api/models/server_reset'
45
47
  require 'pnap_bmc_api/models/ssh_key'
data/pnap_bmc_api.gemspec CHANGED
@@ -3,12 +3,12 @@
3
3
  =begin
4
4
  #Bare Metal Cloud API
5
5
 
6
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
6
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
7
7
 
8
8
  The version of the OpenAPI document: 0.1
9
9
  Contact: support@phoenixnap.com
10
10
  Generated by: https://openapi-generator.tech
11
- OpenAPI Generator version: 5.4.0
11
+ OpenAPI Generator version: 6.1.0
12
12
 
13
13
  =end
14
14
 
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
26
26
  s.description = "Bare Metal Cloud API Ruby Gem"
27
27
  s.license = "MPL-2.0"
28
28
  s.required_ruby_version = ">= 2.4"
29
- s.metadata = { "source_code_uri" => "https://github.com/phoenixnap/ruby-sdk-bmc-poc" }
29
+ s.metadata = { "source_code_uri" => "https://github.com/phoenixnap/ruby-sdk-bmc" }
30
30
 
31
31
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
32
32
 
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Bare Metal Cloud API
3
+
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
+
6
+ The version of the OpenAPI document: 0.1
7
+ Contact: support@phoenixnap.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BmcApi::PublicNetworkConfiguration
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe BmcApi::PublicNetworkConfiguration do
21
+ let(:instance) { BmcApi::PublicNetworkConfiguration.new }
22
+
23
+ describe 'test an instance of PublicNetworkConfiguration' do
24
+ it 'should create an instance of PublicNetworkConfiguration' do
25
+ expect(instance).to be_instance_of(BmcApi::PublicNetworkConfiguration)
26
+ end
27
+ end
28
+ describe 'test attribute "public_networks"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #Bare Metal Cloud API
3
+
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
+
6
+ The version of the OpenAPI document: 0.1
7
+ Contact: support@phoenixnap.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BmcApi::ServerPublicNetwork
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe BmcApi::ServerPublicNetwork do
21
+ let(:instance) { BmcApi::ServerPublicNetwork.new }
22
+
23
+ describe 'test an instance of ServerPublicNetwork' do
24
+ it 'should create an instance of ServerPublicNetwork' do
25
+ expect(instance).to be_instance_of(BmcApi::ServerPublicNetwork)
26
+ end
27
+ end
28
+ describe 'test attribute "id"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "ips"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "status_description"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pnap_bmc_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - PhoenixNAP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -73,6 +73,7 @@ files:
73
73
  - docs/OsConfigurationMapProxmox.md
74
74
  - docs/OsConfigurationWindows.md
75
75
  - docs/PrivateNetworkConfiguration.md
76
+ - docs/PublicNetworkConfiguration.md
76
77
  - docs/Quota.md
77
78
  - docs/QuotaEditLimitRequest.md
78
79
  - docs/QuotaEditLimitRequestDetails.md
@@ -86,6 +87,7 @@ files:
86
87
  - docs/ServerIpBlock.md
87
88
  - docs/ServerPatch.md
88
89
  - docs/ServerPrivateNetwork.md
90
+ - docs/ServerPublicNetwork.md
89
91
  - docs/ServerReserve.md
90
92
  - docs/ServerReset.md
91
93
  - docs/ServersApi.md
@@ -113,6 +115,7 @@ files:
113
115
  - lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb
114
116
  - lib/pnap_bmc_api/models/os_configuration_windows.rb
115
117
  - lib/pnap_bmc_api/models/private_network_configuration.rb
118
+ - lib/pnap_bmc_api/models/public_network_configuration.rb
116
119
  - lib/pnap_bmc_api/models/quota.rb
117
120
  - lib/pnap_bmc_api/models/quota_edit_limit_request.rb
118
121
  - lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb
@@ -124,6 +127,7 @@ files:
124
127
  - lib/pnap_bmc_api/models/server_ip_block.rb
125
128
  - lib/pnap_bmc_api/models/server_patch.rb
126
129
  - lib/pnap_bmc_api/models/server_private_network.rb
130
+ - lib/pnap_bmc_api/models/server_public_network.rb
127
131
  - lib/pnap_bmc_api/models/server_reserve.rb
128
132
  - lib/pnap_bmc_api/models/server_reset.rb
129
133
  - lib/pnap_bmc_api/models/ssh_key.rb
@@ -150,6 +154,7 @@ files:
150
154
  - spec/models/os_configuration_spec.rb
151
155
  - spec/models/os_configuration_windows_spec.rb
152
156
  - spec/models/private_network_configuration_spec.rb
157
+ - spec/models/public_network_configuration_spec.rb
153
158
  - spec/models/quota_edit_limit_request_details_all_of_spec.rb
154
159
  - spec/models/quota_edit_limit_request_details_spec.rb
155
160
  - spec/models/quota_edit_limit_request_spec.rb
@@ -160,6 +165,7 @@ files:
160
165
  - spec/models/server_ip_block_spec.rb
161
166
  - spec/models/server_patch_spec.rb
162
167
  - spec/models/server_private_network_spec.rb
168
+ - spec/models/server_public_network_spec.rb
163
169
  - spec/models/server_reserve_spec.rb
164
170
  - spec/models/server_reset_spec.rb
165
171
  - spec/models/server_spec.rb
@@ -173,7 +179,7 @@ homepage: https://phoenixnap.com/bare-metal-cloud
173
179
  licenses:
174
180
  - MPL-2.0
175
181
  metadata:
176
- source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc-poc
182
+ source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
177
183
  post_install_message:
178
184
  rdoc_options: []
179
185
  require_paths:
@@ -194,39 +200,41 @@ signing_key:
194
200
  specification_version: 4
195
201
  summary: Bare Metal Cloud API Ruby Gem
196
202
  test_files:
203
+ - spec/api/quotas_api_spec.rb
197
204
  - spec/api/servers_api_spec.rb
198
205
  - spec/api/ssh_keys_api_spec.rb
199
- - spec/api/quotas_api_spec.rb
200
206
  - spec/api_client_spec.rb
201
207
  - spec/configuration_spec.rb
202
- - spec/models/quota_edit_limit_request_details_all_of_spec.rb
203
- - spec/models/os_configuration_windows_spec.rb
204
- - spec/models/os_configuration_map_proxmox_spec.rb
208
+ - spec/models/ssh_key_create_spec.rb
209
+ - spec/models/network_configuration_spec.rb
205
210
  - spec/models/server_spec.rb
206
- - spec/models/reset_result_spec.rb
207
- - spec/models/server_private_network_spec.rb
208
- - spec/models/os_configuration_spec.rb
209
- - spec/models/delete_ssh_key_result_spec.rb
210
211
  - spec/models/quota_edit_limit_request_spec.rb
211
- - spec/models/ip_blocks_configuration_spec.rb
212
- - spec/models/tag_assignment_spec.rb
213
- - spec/models/action_result_spec.rb
214
- - spec/models/quota_spec.rb
215
- - spec/models/server_ip_block_spec.rb
216
212
  - spec/models/os_configuration_map_esxi_spec.rb
217
213
  - spec/models/ssh_key_update_spec.rb
218
- - spec/models/network_configuration_spec.rb
219
- - spec/models/relinquish_ip_block_spec.rb
220
- - spec/models/error_spec.rb
214
+ - spec/models/public_network_configuration_spec.rb
215
+ - spec/models/action_result_spec.rb
221
216
  - spec/models/quota_edit_limit_request_details_spec.rb
217
+ - spec/models/server_reset_spec.rb
218
+ - spec/models/os_configuration_map_proxmox_spec.rb
219
+ - spec/models/server_ip_block_spec.rb
220
+ - spec/models/ip_blocks_configuration_spec.rb
221
+ - spec/models/error_spec.rb
222
222
  - spec/models/delete_result_spec.rb
223
- - spec/models/os_configuration_map_spec.rb
224
223
  - spec/models/tag_assignment_request_spec.rb
224
+ - spec/models/ssh_key_spec.rb
225
+ - spec/models/tag_assignment_spec.rb
226
+ - spec/models/quota_edit_limit_request_details_all_of_spec.rb
227
+ - spec/models/server_reserve_spec.rb
228
+ - spec/models/reset_result_spec.rb
229
+ - spec/models/server_private_network_spec.rb
225
230
  - spec/models/server_create_spec.rb
231
+ - spec/models/os_configuration_map_spec.rb
232
+ - spec/models/os_configuration_spec.rb
233
+ - spec/models/quota_spec.rb
226
234
  - spec/models/private_network_configuration_spec.rb
227
- - spec/models/server_reserve_spec.rb
228
- - spec/models/ssh_key_create_spec.rb
235
+ - spec/models/delete_ssh_key_result_spec.rb
236
+ - spec/models/server_public_network_spec.rb
237
+ - spec/models/relinquish_ip_block_spec.rb
229
238
  - spec/models/server_patch_spec.rb
230
- - spec/models/ssh_key_spec.rb
231
- - spec/models/server_reset_spec.rb
239
+ - spec/models/os_configuration_windows_spec.rb
232
240
  - spec/spec_helper.rb