pnap_bmc_api 2.2.2 → 2.4.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.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/VERSION +1 -1
- data/docs/IpBlocksConfiguration.md +1 -1
- data/docs/OsConfiguration.md +3 -1
- data/docs/OsConfigurationCloudInit.md +1 -1
- data/docs/OsConfigurationIPXE.md +20 -0
- data/docs/OsConfigurationIPXENativeVlanConfiguration.md +22 -0
- data/docs/OsConfigurationWindows.md +3 -1
- data/docs/PrivateNetworkConfiguration.md +1 -1
- data/docs/PublicNetworkConfiguration.md +1 -1
- data/docs/RebootRequest.md +20 -0
- data/docs/ReservationTransferDetails.md +18 -0
- data/docs/Server.md +4 -4
- data/docs/ServerCreate.md +3 -3
- data/docs/ServerNetworkUpdate.md +1 -1
- data/docs/ServerPrivateNetwork.md +3 -1
- data/docs/ServerProvision.md +1 -1
- data/docs/ServerPublicNetwork.md +5 -3
- data/docs/ServersApi.md +157 -7
- data/lib/pnap_bmc_api/api/quotas_api.rb +4 -4
- data/lib/pnap_bmc_api/api/servers_api.rb +182 -24
- data/lib/pnap_bmc_api/api/ssh_keys_api.rb +6 -6
- data/lib/pnap_bmc_api/api_client.rb +17 -14
- data/lib/pnap_bmc_api/api_error.rb +1 -1
- data/lib/pnap_bmc_api/api_model_base.rb +88 -0
- data/lib/pnap_bmc_api/configuration.rb +11 -1
- data/lib/pnap_bmc_api/models/action_result.rb +21 -78
- data/lib/pnap_bmc_api/models/delete_result.rb +31 -78
- data/lib/pnap_bmc_api/models/delete_ssh_key_result.rb +31 -78
- data/lib/pnap_bmc_api/models/error.rb +21 -78
- data/lib/pnap_bmc_api/models/esxi_datastore_configuration.rb +13 -80
- data/lib/pnap_bmc_api/models/esxi_os_configuration.rb +11 -78
- data/lib/pnap_bmc_api/models/gpu_configuration.rb +11 -78
- data/lib/pnap_bmc_api/models/ip_blocks_configuration.rb +12 -79
- data/lib/pnap_bmc_api/models/network_configuration.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration.rb +24 -82
- data/lib/pnap_bmc_api/models/os_configuration_cloud_init.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_ipxe.rb +186 -0
- data/lib/pnap_bmc_api/models/os_configuration_ipxe_native_vlan_configuration.rb +224 -0
- data/lib/pnap_bmc_api/models/os_configuration_map.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_map_esxi.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_netris_controller.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_netris_softgate.rb +11 -78
- data/lib/pnap_bmc_api/models/os_configuration_windows.rb +27 -82
- data/lib/pnap_bmc_api/models/private_network_configuration.rb +12 -79
- data/lib/pnap_bmc_api/models/public_network_configuration.rb +12 -79
- data/lib/pnap_bmc_api/models/quota.rb +61 -78
- data/lib/pnap_bmc_api/models/quota_edit_limit_request.rb +14 -81
- data/lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb +25 -86
- data/lib/pnap_bmc_api/models/reboot_request.rb +212 -0
- data/lib/pnap_bmc_api/models/relinquish_ip_block.rb +11 -78
- data/lib/pnap_bmc_api/models/reservation_transfer_details.rb +166 -0
- data/lib/pnap_bmc_api/models/reset_result.rb +21 -78
- data/lib/pnap_bmc_api/models/server.rb +117 -84
- data/lib/pnap_bmc_api/models/server_create.rb +46 -83
- data/lib/pnap_bmc_api/models/server_ip_block.rb +21 -78
- data/lib/pnap_bmc_api/models/server_network_update.rb +12 -79
- data/lib/pnap_bmc_api/models/server_patch.rb +13 -80
- data/lib/pnap_bmc_api/models/server_private_network.rb +35 -82
- data/lib/pnap_bmc_api/models/server_provision.rb +24 -81
- data/lib/pnap_bmc_api/models/server_public_network.rb +53 -83
- data/lib/pnap_bmc_api/models/server_reserve.rb +21 -78
- data/lib/pnap_bmc_api/models/server_reset.rb +11 -78
- data/lib/pnap_bmc_api/models/ssh_key.rb +81 -78
- data/lib/pnap_bmc_api/models/ssh_key_create.rb +23 -80
- data/lib/pnap_bmc_api/models/ssh_key_update.rb +23 -80
- data/lib/pnap_bmc_api/models/storage_configuration.rb +11 -78
- data/lib/pnap_bmc_api/models/storage_configuration_root_partition.rb +11 -78
- data/lib/pnap_bmc_api/models/tag_assignment.rb +41 -78
- data/lib/pnap_bmc_api/models/tag_assignment_request.rb +21 -78
- data/lib/pnap_bmc_api/version.rb +1 -2
- data/lib/pnap_bmc_api.rb +6 -1
- data/pnap_bmc_api.gemspec +6 -6
- data/spec/api/quotas_api_spec.rb +1 -1
- data/spec/api/servers_api_spec.rb +29 -1
- data/spec/api/ssh_keys_api_spec.rb +1 -1
- data/spec/models/action_result_spec.rb +2 -2
- data/spec/models/delete_result_spec.rb +2 -2
- data/spec/models/delete_ssh_key_result_spec.rb +2 -2
- data/spec/models/error_spec.rb +2 -2
- data/spec/models/esxi_datastore_configuration_spec.rb +2 -2
- data/spec/models/esxi_os_configuration_spec.rb +2 -2
- data/spec/models/gpu_configuration_spec.rb +2 -2
- data/spec/models/ip_blocks_configuration_spec.rb +2 -2
- data/spec/models/network_configuration_spec.rb +2 -2
- data/spec/models/os_configuration_cloud_init_spec.rb +2 -2
- data/spec/models/os_configuration_ipxe_native_vlan_configuration_spec.rb +52 -0
- data/spec/models/os_configuration_ipxe_spec.rb +42 -0
- data/spec/models/os_configuration_map_esxi_spec.rb +2 -2
- data/spec/models/os_configuration_map_proxmox_spec.rb +2 -2
- data/spec/models/os_configuration_map_spec.rb +2 -2
- data/spec/models/os_configuration_netris_controller_spec.rb +2 -2
- data/spec/models/os_configuration_netris_softgate_spec.rb +2 -2
- data/spec/models/os_configuration_spec.rb +8 -2
- data/spec/models/os_configuration_windows_spec.rb +8 -2
- data/spec/models/private_network_configuration_spec.rb +2 -2
- data/spec/models/public_network_configuration_spec.rb +2 -2
- data/spec/models/quota_edit_limit_request_details_spec.rb +2 -2
- data/spec/models/quota_edit_limit_request_spec.rb +2 -2
- data/spec/models/quota_spec.rb +2 -2
- data/spec/models/reboot_request_spec.rb +46 -0
- data/spec/models/relinquish_ip_block_spec.rb +2 -2
- data/spec/models/reservation_transfer_details_spec.rb +36 -0
- data/spec/models/reset_result_spec.rb +2 -2
- data/spec/models/server_create_spec.rb +2 -2
- data/spec/models/server_ip_block_spec.rb +2 -2
- data/spec/models/server_network_update_spec.rb +2 -2
- data/spec/models/server_patch_spec.rb +2 -2
- data/spec/models/server_private_network_spec.rb +8 -2
- data/spec/models/server_provision_spec.rb +2 -2
- data/spec/models/server_public_network_spec.rb +8 -2
- data/spec/models/server_reserve_spec.rb +2 -2
- data/spec/models/server_reset_spec.rb +2 -2
- data/spec/models/server_spec.rb +2 -2
- data/spec/models/ssh_key_create_spec.rb +2 -2
- data/spec/models/ssh_key_spec.rb +2 -2
- data/spec/models/ssh_key_update_spec.rb +2 -2
- data/spec/models/storage_configuration_root_partition_spec.rb +2 -2
- data/spec/models/storage_configuration_spec.rb +2 -2
- data/spec/models/tag_assignment_request_spec.rb +2 -2
- data/spec/models/tag_assignment_spec.rb +2 -2
- data/spec/spec_helper.rb +1 -1
- metadata +60 -39
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::ServerPrivateNetwork do
|
|
21
|
-
let(:instance) { BmcApi::ServerPrivateNetwork.new }
|
|
21
|
+
#let(:instance) { BmcApi::ServerPrivateNetwork.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of ServerPrivateNetwork' do
|
|
24
24
|
it 'should create an instance of ServerPrivateNetwork' do
|
|
@@ -51,4 +51,10 @@ describe BmcApi::ServerPrivateNetwork do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "vlan_id"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::ServerProvision do
|
|
21
|
-
let(:instance) { BmcApi::ServerProvision.new }
|
|
21
|
+
#let(:instance) { BmcApi::ServerProvision.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of ServerProvision' do
|
|
24
24
|
it 'should create an instance of ServerProvision' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::ServerPublicNetwork do
|
|
21
|
-
let(:instance) { BmcApi::ServerPublicNetwork.new }
|
|
21
|
+
#let(:instance) { BmcApi::ServerPublicNetwork.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of ServerPublicNetwork' do
|
|
24
24
|
it 'should create an instance of ServerPublicNetwork' do
|
|
@@ -51,4 +51,10 @@ describe BmcApi::ServerPublicNetwork do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "vlan_id"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::ServerReserve do
|
|
21
|
-
let(:instance) { BmcApi::ServerReserve.new }
|
|
21
|
+
#let(:instance) { BmcApi::ServerReserve.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of ServerReserve' do
|
|
24
24
|
it 'should create an instance of ServerReserve' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::ServerReset do
|
|
21
|
-
let(:instance) { BmcApi::ServerReset.new }
|
|
21
|
+
#let(:instance) { BmcApi::ServerReset.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of ServerReset' do
|
|
24
24
|
it 'should create an instance of ServerReset' do
|
data/spec/models/server_spec.rb
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::Server do
|
|
21
|
-
let(:instance) { BmcApi::Server.new }
|
|
21
|
+
#let(:instance) { BmcApi::Server.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of Server' do
|
|
24
24
|
it 'should create an instance of Server' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::SshKeyCreate do
|
|
21
|
-
let(:instance) { BmcApi::SshKeyCreate.new }
|
|
21
|
+
#let(:instance) { BmcApi::SshKeyCreate.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of SshKeyCreate' do
|
|
24
24
|
it 'should create an instance of SshKeyCreate' do
|
data/spec/models/ssh_key_spec.rb
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::SshKey do
|
|
21
|
-
let(:instance) { BmcApi::SshKey.new }
|
|
21
|
+
#let(:instance) { BmcApi::SshKey.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of SshKey' do
|
|
24
24
|
it 'should create an instance of SshKey' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::SshKeyUpdate do
|
|
21
|
-
let(:instance) { BmcApi::SshKeyUpdate.new }
|
|
21
|
+
#let(:instance) { BmcApi::SshKeyUpdate.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of SshKeyUpdate' do
|
|
24
24
|
it 'should create an instance of SshKeyUpdate' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::StorageConfigurationRootPartition do
|
|
21
|
-
let(:instance) { BmcApi::StorageConfigurationRootPartition.new }
|
|
21
|
+
#let(:instance) { BmcApi::StorageConfigurationRootPartition.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of StorageConfigurationRootPartition' do
|
|
24
24
|
it 'should create an instance of StorageConfigurationRootPartition' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::StorageConfiguration do
|
|
21
|
-
let(:instance) { BmcApi::StorageConfiguration.new }
|
|
21
|
+
#let(:instance) { BmcApi::StorageConfiguration.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of StorageConfiguration' do
|
|
24
24
|
it 'should create an instance of StorageConfiguration' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::TagAssignmentRequest do
|
|
21
|
-
let(:instance) { BmcApi::TagAssignmentRequest.new }
|
|
21
|
+
#let(:instance) { BmcApi::TagAssignmentRequest.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of TagAssignmentRequest' do
|
|
24
24
|
it 'should create an instance of TagAssignmentRequest' do
|
|
@@ -6,7 +6,7 @@
|
|
|
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
|
-
|
|
9
|
+
Generator version: 7.20.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -18,7 +18,7 @@ require 'date'
|
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
20
|
describe BmcApi::TagAssignment do
|
|
21
|
-
let(:instance) { BmcApi::TagAssignment.new }
|
|
21
|
+
#let(:instance) { BmcApi::TagAssignment.new }
|
|
22
22
|
|
|
23
23
|
describe 'test an instance of TagAssignment' do
|
|
24
24
|
it 'should create an instance of TagAssignment' do
|
data/spec/spec_helper.rb
CHANGED
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: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-06-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -50,7 +50,12 @@ dependencies:
|
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: 3.6.0
|
|
53
|
-
description:
|
|
53
|
+
description: 'Create, power off, power on, reset, reboot, or shut down your server
|
|
54
|
+
with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details,
|
|
55
|
+
assign public IPs, assign servers to networks and a lot more. Manage your infrastructure
|
|
56
|
+
more efficiently using just a few simple API calls.<br> <br> <span class=''pnap-api-knowledge-base-link''>
|
|
57
|
+
Knowledge base articles to help you can be found <a href=''https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server''
|
|
58
|
+
target=''_blank''>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b> '
|
|
54
59
|
email:
|
|
55
60
|
- support@phoenixnap.com
|
|
56
61
|
executables: []
|
|
@@ -72,6 +77,8 @@ files:
|
|
|
72
77
|
- docs/NetworkConfiguration.md
|
|
73
78
|
- docs/OsConfiguration.md
|
|
74
79
|
- docs/OsConfigurationCloudInit.md
|
|
80
|
+
- docs/OsConfigurationIPXE.md
|
|
81
|
+
- docs/OsConfigurationIPXENativeVlanConfiguration.md
|
|
75
82
|
- docs/OsConfigurationMap.md
|
|
76
83
|
- docs/OsConfigurationMapEsxi.md
|
|
77
84
|
- docs/OsConfigurationMapProxmox.md
|
|
@@ -84,7 +91,9 @@ files:
|
|
|
84
91
|
- docs/QuotaEditLimitRequest.md
|
|
85
92
|
- docs/QuotaEditLimitRequestDetails.md
|
|
86
93
|
- docs/QuotasApi.md
|
|
94
|
+
- docs/RebootRequest.md
|
|
87
95
|
- docs/RelinquishIpBlock.md
|
|
96
|
+
- docs/ReservationTransferDetails.md
|
|
88
97
|
- docs/ResetResult.md
|
|
89
98
|
- docs/SSHKeysApi.md
|
|
90
99
|
- docs/Server.md
|
|
@@ -111,6 +120,7 @@ files:
|
|
|
111
120
|
- lib/pnap_bmc_api/api/ssh_keys_api.rb
|
|
112
121
|
- lib/pnap_bmc_api/api_client.rb
|
|
113
122
|
- lib/pnap_bmc_api/api_error.rb
|
|
123
|
+
- lib/pnap_bmc_api/api_model_base.rb
|
|
114
124
|
- lib/pnap_bmc_api/configuration.rb
|
|
115
125
|
- lib/pnap_bmc_api/models/action_result.rb
|
|
116
126
|
- lib/pnap_bmc_api/models/delete_result.rb
|
|
@@ -123,6 +133,8 @@ files:
|
|
|
123
133
|
- lib/pnap_bmc_api/models/network_configuration.rb
|
|
124
134
|
- lib/pnap_bmc_api/models/os_configuration.rb
|
|
125
135
|
- lib/pnap_bmc_api/models/os_configuration_cloud_init.rb
|
|
136
|
+
- lib/pnap_bmc_api/models/os_configuration_ipxe.rb
|
|
137
|
+
- lib/pnap_bmc_api/models/os_configuration_ipxe_native_vlan_configuration.rb
|
|
126
138
|
- lib/pnap_bmc_api/models/os_configuration_map.rb
|
|
127
139
|
- lib/pnap_bmc_api/models/os_configuration_map_esxi.rb
|
|
128
140
|
- lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb
|
|
@@ -134,7 +146,9 @@ files:
|
|
|
134
146
|
- lib/pnap_bmc_api/models/quota.rb
|
|
135
147
|
- lib/pnap_bmc_api/models/quota_edit_limit_request.rb
|
|
136
148
|
- lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb
|
|
149
|
+
- lib/pnap_bmc_api/models/reboot_request.rb
|
|
137
150
|
- lib/pnap_bmc_api/models/relinquish_ip_block.rb
|
|
151
|
+
- lib/pnap_bmc_api/models/reservation_transfer_details.rb
|
|
138
152
|
- lib/pnap_bmc_api/models/reset_result.rb
|
|
139
153
|
- lib/pnap_bmc_api/models/server.rb
|
|
140
154
|
- lib/pnap_bmc_api/models/server_create.rb
|
|
@@ -168,6 +182,8 @@ files:
|
|
|
168
182
|
- spec/models/ip_blocks_configuration_spec.rb
|
|
169
183
|
- spec/models/network_configuration_spec.rb
|
|
170
184
|
- spec/models/os_configuration_cloud_init_spec.rb
|
|
185
|
+
- spec/models/os_configuration_ipxe_native_vlan_configuration_spec.rb
|
|
186
|
+
- spec/models/os_configuration_ipxe_spec.rb
|
|
171
187
|
- spec/models/os_configuration_map_esxi_spec.rb
|
|
172
188
|
- spec/models/os_configuration_map_proxmox_spec.rb
|
|
173
189
|
- spec/models/os_configuration_map_spec.rb
|
|
@@ -180,7 +196,9 @@ files:
|
|
|
180
196
|
- spec/models/quota_edit_limit_request_details_spec.rb
|
|
181
197
|
- spec/models/quota_edit_limit_request_spec.rb
|
|
182
198
|
- spec/models/quota_spec.rb
|
|
199
|
+
- spec/models/reboot_request_spec.rb
|
|
183
200
|
- spec/models/relinquish_ip_block_spec.rb
|
|
201
|
+
- spec/models/reservation_transfer_details_spec.rb
|
|
184
202
|
- spec/models/reset_result_spec.rb
|
|
185
203
|
- spec/models/server_create_spec.rb
|
|
186
204
|
- spec/models/server_ip_block_spec.rb
|
|
@@ -200,11 +218,10 @@ files:
|
|
|
200
218
|
- spec/models/tag_assignment_request_spec.rb
|
|
201
219
|
- spec/models/tag_assignment_spec.rb
|
|
202
220
|
- spec/spec_helper.rb
|
|
203
|
-
homepage: https://
|
|
221
|
+
homepage: https://openapi-generator.tech
|
|
204
222
|
licenses:
|
|
205
223
|
- MPL-2.0
|
|
206
|
-
metadata:
|
|
207
|
-
source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
|
|
224
|
+
metadata: {}
|
|
208
225
|
post_install_message:
|
|
209
226
|
rdoc_options: []
|
|
210
227
|
require_paths:
|
|
@@ -228,45 +245,49 @@ test_files:
|
|
|
228
245
|
- spec/api/servers_api_spec.rb
|
|
229
246
|
- spec/api/quotas_api_spec.rb
|
|
230
247
|
- spec/api/ssh_keys_api_spec.rb
|
|
231
|
-
- spec/models/
|
|
248
|
+
- spec/models/ip_blocks_configuration_spec.rb
|
|
249
|
+
- spec/models/server_reset_spec.rb
|
|
250
|
+
- spec/models/os_configuration_netris_softgate_spec.rb
|
|
251
|
+
- spec/models/os_configuration_map_proxmox_spec.rb
|
|
252
|
+
- spec/models/esxi_datastore_configuration_spec.rb
|
|
253
|
+
- spec/models/storage_configuration_root_partition_spec.rb
|
|
254
|
+
- spec/models/os_configuration_spec.rb
|
|
255
|
+
- spec/models/os_configuration_map_esxi_spec.rb
|
|
256
|
+
- spec/models/gpu_configuration_spec.rb
|
|
257
|
+
- spec/models/quota_spec.rb
|
|
258
|
+
- spec/models/quota_edit_limit_request_spec.rb
|
|
232
259
|
- spec/models/delete_result_spec.rb
|
|
233
|
-
- spec/models/
|
|
234
|
-
- spec/models/error_spec.rb
|
|
260
|
+
- spec/models/server_reserve_spec.rb
|
|
235
261
|
- spec/models/server_patch_spec.rb
|
|
236
|
-
- spec/models/
|
|
237
|
-
- spec/models/
|
|
238
|
-
- spec/models/tag_assignment_spec.rb
|
|
262
|
+
- spec/models/reset_result_spec.rb
|
|
263
|
+
- spec/models/action_result_spec.rb
|
|
239
264
|
- spec/models/network_configuration_spec.rb
|
|
240
|
-
- spec/models/quota_edit_limit_request_details_spec.rb
|
|
241
|
-
- spec/models/quota_spec.rb
|
|
242
|
-
- spec/models/os_configuration_windows_spec.rb
|
|
243
265
|
- spec/models/os_configuration_cloud_init_spec.rb
|
|
244
|
-
- spec/models/server_reset_spec.rb
|
|
245
|
-
- spec/models/tag_assignment_request_spec.rb
|
|
246
|
-
- spec/models/reset_result_spec.rb
|
|
247
|
-
- spec/models/server_public_network_spec.rb
|
|
248
|
-
- spec/models/storage_configuration_root_partition_spec.rb
|
|
249
|
-
- spec/models/ssh_key_create_spec.rb
|
|
250
|
-
- spec/models/esxi_datastore_configuration_spec.rb
|
|
251
266
|
- spec/models/esxi_os_configuration_spec.rb
|
|
252
|
-
- spec/models/
|
|
253
|
-
- spec/models/
|
|
254
|
-
- spec/models/server_network_update_spec.rb
|
|
267
|
+
- spec/models/tag_assignment_spec.rb
|
|
268
|
+
- spec/models/os_configuration_map_spec.rb
|
|
255
269
|
- spec/models/os_configuration_netris_controller_spec.rb
|
|
256
|
-
- spec/models/
|
|
257
|
-
- spec/models/
|
|
258
|
-
- spec/models/
|
|
259
|
-
- spec/models/
|
|
260
|
-
- spec/models/
|
|
261
|
-
- spec/models/
|
|
270
|
+
- spec/models/server_network_update_spec.rb
|
|
271
|
+
- spec/models/error_spec.rb
|
|
272
|
+
- spec/models/os_configuration_ipxe_native_vlan_configuration_spec.rb
|
|
273
|
+
- spec/models/server_public_network_spec.rb
|
|
274
|
+
- spec/models/reboot_request_spec.rb
|
|
275
|
+
- spec/models/relinquish_ip_block_spec.rb
|
|
276
|
+
- spec/models/server_private_network_spec.rb
|
|
277
|
+
- spec/models/server_ip_block_spec.rb
|
|
278
|
+
- spec/models/delete_ssh_key_result_spec.rb
|
|
262
279
|
- spec/models/ssh_key_spec.rb
|
|
263
|
-
- spec/models/
|
|
264
|
-
- spec/models/
|
|
280
|
+
- spec/models/tag_assignment_request_spec.rb
|
|
281
|
+
- spec/models/public_network_configuration_spec.rb
|
|
265
282
|
- spec/models/server_create_spec.rb
|
|
283
|
+
- spec/models/server_provision_spec.rb
|
|
284
|
+
- spec/models/reservation_transfer_details_spec.rb
|
|
285
|
+
- spec/models/ssh_key_update_spec.rb
|
|
286
|
+
- spec/models/os_configuration_ipxe_spec.rb
|
|
287
|
+
- spec/models/quota_edit_limit_request_details_spec.rb
|
|
288
|
+
- spec/models/private_network_configuration_spec.rb
|
|
266
289
|
- spec/models/server_spec.rb
|
|
267
|
-
- spec/models/
|
|
268
|
-
- spec/models/
|
|
269
|
-
- spec/models/
|
|
270
|
-
- spec/models/server_reserve_spec.rb
|
|
271
|
-
- spec/models/os_configuration_map_spec.rb
|
|
290
|
+
- spec/models/os_configuration_windows_spec.rb
|
|
291
|
+
- spec/models/storage_configuration_spec.rb
|
|
292
|
+
- spec/models/ssh_key_create_spec.rb
|
|
272
293
|
- spec/spec_helper.rb
|