pnap_bmc_api 2.0.0 → 2.2.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 (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/VERSION +1 -1
  4. data/docs/EsxiDatastoreConfiguration.md +18 -0
  5. data/docs/EsxiOsConfiguration.md +18 -0
  6. data/docs/GpuConfiguration.md +20 -0
  7. data/docs/OsConfiguration.md +2 -0
  8. data/docs/OsConfigurationCloudInit.md +2 -2
  9. data/docs/Quota.md +1 -1
  10. data/docs/RelinquishIpBlock.md +1 -1
  11. data/docs/Server.md +4 -2
  12. data/docs/ServerCreate.md +2 -2
  13. data/docs/ServerNetworkUpdate.md +2 -2
  14. data/docs/ServerProvision.md +1 -1
  15. data/docs/ServerPublicNetwork.md +5 -3
  16. data/docs/ServersApi.md +1 -1
  17. data/lib/pnap_bmc_api/api/servers_api.rb +2 -2
  18. data/lib/pnap_bmc_api/api_client.rb +2 -2
  19. data/lib/pnap_bmc_api/models/esxi_datastore_configuration.rb +262 -0
  20. data/lib/pnap_bmc_api/models/esxi_os_configuration.rb +215 -0
  21. data/lib/pnap_bmc_api/models/gpu_configuration.rb +226 -0
  22. data/lib/pnap_bmc_api/models/os_configuration.rb +10 -1
  23. data/lib/pnap_bmc_api/models/os_configuration_cloud_init.rb +1 -1
  24. data/lib/pnap_bmc_api/models/quota_edit_limit_request.rb +7 -3
  25. data/lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb +7 -3
  26. data/lib/pnap_bmc_api/models/relinquish_ip_block.rb +2 -2
  27. data/lib/pnap_bmc_api/models/server.rb +12 -3
  28. data/lib/pnap_bmc_api/models/server_create.rb +2 -2
  29. data/lib/pnap_bmc_api/models/server_network_update.rb +1 -1
  30. data/lib/pnap_bmc_api/models/server_provision.rb +1 -1
  31. data/lib/pnap_bmc_api/models/server_public_network.rb +15 -5
  32. data/lib/pnap_bmc_api.rb +3 -0
  33. data/spec/api/servers_api_spec.rb +1 -1
  34. data/spec/models/esxi_datastore_configuration_spec.rb +36 -0
  35. data/spec/models/esxi_os_configuration_spec.rb +36 -0
  36. data/spec/models/gpu_configuration_spec.rb +42 -0
  37. data/spec/models/os_configuration_spec.rb +6 -0
  38. data/spec/models/server_public_network_spec.rb +6 -0
  39. data/spec/models/server_spec.rb +6 -0
  40. metadata +51 -39
@@ -22,7 +22,7 @@ module BmcApi
22
22
  # Description of server.
23
23
  attr_accessor :description
24
24
 
25
- # The server’s OS ID used when the server was created. Currently this field should be set to either `ubuntu/bionic`, `ubuntu/focal`, `ubuntu/jammy`, `centos/centos7`, `centos/centos8`, `windows/srv2019std`, `windows/srv2019dc`, `windows/srv2022std`, `windows/srv2022dc`, `esxi/esxi70`, `esxi/esxi80`, `almalinux/almalinux8`, `rockylinux/rockylinux8`, `debian/bullseye`, `debian/bookworm`, `proxmox/bullseye`, `netris/controller`, `netris/softgate_1g`, `netris/softgate_10g` or `netris/softgate_25g`.
25
+ # The server’s OS ID used when the server was created. Currently this field should be set to either `ubuntu/bionic`, `ubuntu/focal`, `ubuntu/jammy`, `ubuntu/jammy+pytorch`, `ubuntu/noble`, `centos/centos7`, `centos/centos8`, `windows/srv2019std`, `windows/srv2019dc`, `windows/srv2022std`, `windows/srv2022dc`, `esxi/esxi70`, `esxi/esxi80`, `almalinux/almalinux8`, `rockylinux/rockylinux8`, `oraclelinux/oraclelinux9`, `debian/bullseye`, `debian/bookworm`, `proxmox/bullseye`, `proxmox/proxmox8`, `netris/controller`, `netris/softgate_1g`, `netris/softgate_10g` or `netris/softgate_25g`.
26
26
  attr_accessor :os
27
27
 
28
28
  # Whether or not to install SSH keys marked as default in addition to any SSH keys specified in this request.
@@ -19,18 +19,22 @@ module BmcApi
19
19
  # The network identifier.
20
20
  attr_accessor :id
21
21
 
22
- # Configurable/configured IPs on the server.<br> At least 1 IP address is required. Valid IP formats are single IPv4 addresses or IPv4 ranges. All IPs must be within the network's range.<br> Setting the `force` query parameter to `true` allows you to:<ul> <li> Assign no specific IP addresses by designating an empty array of IPs. Note that at least one IP is required for the gateway address to be selected from this network. <li> Assign one or more IP addresses which are already configured on other resource(s) in network.</ul>
22
+ # Configurable/configured IPs on the server.<br> At least 1 IP address is required. Valid IP format is single IP addresses. All IPs must be within the network's range.<br> Setting the `computeSlaacIp` field to `true` allows you to provide an empty array of IPs.<br> Additionally, setting the `force` query parameter to `true` allows you to:<ul> <li> Assign no specific IP addresses by designating an empty array of IPs. Note that at least one IP is required for the gateway address to be selected from this network. <li> Assign one or more IP addresses which are already configured on other resource(s) in network.</ul>
23
23
  attr_accessor :ips
24
24
 
25
25
  # (Read-only) The status of the assignment to the network.
26
26
  attr_accessor :status_description
27
27
 
28
+ # (Write-only) Requests Stateless Address Autoconfiguration (SLAAC). Applicable for Network which contains IPv6 block(s).
29
+ attr_accessor :compute_slaac_ip
30
+
28
31
  # Attribute mapping from ruby-style variable name to JSON key.
29
32
  def self.attribute_map
30
33
  {
31
34
  :'id' => :'id',
32
35
  :'ips' => :'ips',
33
- :'status_description' => :'statusDescription'
36
+ :'status_description' => :'statusDescription',
37
+ :'compute_slaac_ip' => :'computeSlaacIp'
34
38
  }
35
39
  end
36
40
 
@@ -44,7 +48,8 @@ module BmcApi
44
48
  {
45
49
  :'id' => :'String',
46
50
  :'ips' => :'Array<String>',
47
- :'status_description' => :'String'
51
+ :'status_description' => :'String',
52
+ :'compute_slaac_ip' => :'Boolean'
48
53
  }
49
54
  end
50
55
 
@@ -84,6 +89,10 @@ module BmcApi
84
89
  if attributes.key?(:'status_description')
85
90
  self.status_description = attributes[:'status_description']
86
91
  end
92
+
93
+ if attributes.key?(:'compute_slaac_ip')
94
+ self.compute_slaac_ip = attributes[:'compute_slaac_ip']
95
+ end
87
96
  end
88
97
 
89
98
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -113,7 +122,8 @@ module BmcApi
113
122
  self.class == o.class &&
114
123
  id == o.id &&
115
124
  ips == o.ips &&
116
- status_description == o.status_description
125
+ status_description == o.status_description &&
126
+ compute_slaac_ip == o.compute_slaac_ip
117
127
  end
118
128
 
119
129
  # @see the `==` method
@@ -125,7 +135,7 @@ module BmcApi
125
135
  # Calculates hash code according to all attributes.
126
136
  # @return [Integer] Hash code
127
137
  def hash
128
- [id, ips, status_description].hash
138
+ [id, ips, status_description, compute_slaac_ip].hash
129
139
  end
130
140
 
131
141
  # Builds the object from hash
data/lib/pnap_bmc_api.rb CHANGED
@@ -21,6 +21,9 @@ require 'pnap_bmc_api/models/action_result'
21
21
  require 'pnap_bmc_api/models/delete_result'
22
22
  require 'pnap_bmc_api/models/delete_ssh_key_result'
23
23
  require 'pnap_bmc_api/models/error'
24
+ require 'pnap_bmc_api/models/esxi_datastore_configuration'
25
+ require 'pnap_bmc_api/models/esxi_os_configuration'
26
+ require 'pnap_bmc_api/models/gpu_configuration'
24
27
  require 'pnap_bmc_api/models/ip_blocks_configuration'
25
28
  require 'pnap_bmc_api/models/network_configuration'
26
29
  require 'pnap_bmc_api/models/os_configuration'
@@ -211,7 +211,7 @@ describe 'ServersApi' do
211
211
 
212
212
  # unit tests for servers_server_id_ip_blocks_post
213
213
  # Assign IP Block to Server.
214
- # Adds an IP block to this server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. Knowledge base article to help you can be found &lt;a href&#x3D;&#39;https://phoenixnap.com/kb/configure-server-with-public-ip-block#ftoc-heading-2&#39; target&#x3D;&#39;_blank&#39;&gt;here&lt;/a&gt;.
214
+ # Adds an IP block to this server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. A server can have at most one IPv4 block and one IPv6 block assigned simultaneously. Assigning IPv6 to server is only supported post-provision. Knowledge base article to help you can be found &lt;a href&#x3D;&#39;https://phoenixnap.com/kb/configure-server-with-public-ip-block#ftoc-heading-2&#39; target&#x3D;&#39;_blank&#39;&gt;here&lt;/a&gt;.
215
215
  # @param server_id The server&#39;s ID.
216
216
  # @param server_ip_block
217
217
  # @param [Hash] opts the optional parameters
@@ -0,0 +1,36 @@
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, 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
+
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: 7.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BmcApi::EsxiDatastoreConfiguration
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe BmcApi::EsxiDatastoreConfiguration do
21
+ let(:instance) { BmcApi::EsxiDatastoreConfiguration.new }
22
+
23
+ describe 'test an instance of EsxiDatastoreConfiguration' do
24
+ it 'should create an instance of EsxiDatastoreConfiguration' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(BmcApi::EsxiDatastoreConfiguration)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "datastore_name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,36 @@
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, 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
+
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: 7.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BmcApi::EsxiOsConfiguration
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe BmcApi::EsxiOsConfiguration do
21
+ let(:instance) { BmcApi::EsxiOsConfiguration.new }
22
+
23
+ describe 'test an instance of EsxiOsConfiguration' do
24
+ it 'should create an instance of EsxiOsConfiguration' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(BmcApi::EsxiOsConfiguration)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "datastore_configuration"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,42 @@
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, 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
+
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: 7.2.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for BmcApi::GpuConfiguration
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe BmcApi::GpuConfiguration do
21
+ let(:instance) { BmcApi::GpuConfiguration.new }
22
+
23
+ describe 'test an instance of GpuConfiguration' do
24
+ it 'should create an instance of GpuConfiguration' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(BmcApi::GpuConfiguration)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "long_name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "count"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -69,6 +69,12 @@ describe BmcApi::OsConfiguration do
69
69
  end
70
70
  end
71
71
 
72
+ describe 'test attribute "esxi"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ end
76
+ end
77
+
72
78
  describe 'test attribute "cloud_init"' do
73
79
  it 'should work' do
74
80
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
@@ -45,4 +45,10 @@ describe BmcApi::ServerPublicNetwork do
45
45
  end
46
46
  end
47
47
 
48
+ describe 'test attribute "compute_slaac_ip"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
48
54
  end
@@ -177,6 +177,12 @@ describe BmcApi::Server do
177
177
  end
178
178
  end
179
179
 
180
+ describe 'test attribute "gpu_configuration"' do
181
+ it 'should work' do
182
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
183
+ end
184
+ end
185
+
180
186
  describe 'test attribute "superseded_by"' do
181
187
  it 'should work' do
182
188
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
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.0.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PhoenixNAP
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-05 00:00:00.000000000 Z
11
+ date: 2025-03-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -65,6 +65,9 @@ files:
65
65
  - docs/DeleteResult.md
66
66
  - docs/DeleteSshKeyResult.md
67
67
  - docs/Error.md
68
+ - docs/EsxiDatastoreConfiguration.md
69
+ - docs/EsxiOsConfiguration.md
70
+ - docs/GpuConfiguration.md
68
71
  - docs/IpBlocksConfiguration.md
69
72
  - docs/NetworkConfiguration.md
70
73
  - docs/OsConfiguration.md
@@ -113,6 +116,9 @@ files:
113
116
  - lib/pnap_bmc_api/models/delete_result.rb
114
117
  - lib/pnap_bmc_api/models/delete_ssh_key_result.rb
115
118
  - lib/pnap_bmc_api/models/error.rb
119
+ - lib/pnap_bmc_api/models/esxi_datastore_configuration.rb
120
+ - lib/pnap_bmc_api/models/esxi_os_configuration.rb
121
+ - lib/pnap_bmc_api/models/gpu_configuration.rb
116
122
  - lib/pnap_bmc_api/models/ip_blocks_configuration.rb
117
123
  - lib/pnap_bmc_api/models/network_configuration.rb
118
124
  - lib/pnap_bmc_api/models/os_configuration.rb
@@ -156,6 +162,9 @@ files:
156
162
  - spec/models/delete_result_spec.rb
157
163
  - spec/models/delete_ssh_key_result_spec.rb
158
164
  - spec/models/error_spec.rb
165
+ - spec/models/esxi_datastore_configuration_spec.rb
166
+ - spec/models/esxi_os_configuration_spec.rb
167
+ - spec/models/gpu_configuration_spec.rb
159
168
  - spec/models/ip_blocks_configuration_spec.rb
160
169
  - spec/models/network_configuration_spec.rb
161
170
  - spec/models/os_configuration_cloud_init_spec.rb
@@ -196,7 +205,7 @@ licenses:
196
205
  - MPL-2.0
197
206
  metadata:
198
207
  source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
199
- post_install_message:
208
+ post_install_message:
200
209
  rdoc_options: []
201
210
  require_paths:
202
211
  - lib
@@ -211,50 +220,53 @@ required_rubygems_version: !ruby/object:Gem::Requirement
211
220
  - !ruby/object:Gem::Version
212
221
  version: '0'
213
222
  requirements: []
214
- rubygems_version: 3.3.5
215
- signing_key:
223
+ rubygems_version: 3.4.20
224
+ signing_key:
216
225
  specification_version: 4
217
226
  summary: Bare Metal Cloud API Ruby Gem
218
227
  test_files:
219
- - spec/api/ssh_keys_api_spec.rb
220
- - spec/api/servers_api_spec.rb
221
228
  - spec/api/quotas_api_spec.rb
222
- - spec/models/public_network_configuration_spec.rb
223
- - spec/models/quota_spec.rb
224
- - spec/models/delete_ssh_key_result_spec.rb
229
+ - spec/api/servers_api_spec.rb
230
+ - spec/api/ssh_keys_api_spec.rb
231
+ - spec/models/private_network_configuration_spec.rb
232
+ - spec/models/os_configuration_spec.rb
225
233
  - spec/models/error_spec.rb
226
- - spec/models/ip_blocks_configuration_spec.rb
227
- - spec/models/server_network_update_spec.rb
228
- - spec/models/network_configuration_spec.rb
229
- - spec/models/server_spec.rb
230
- - spec/models/tag_assignment_request_spec.rb
231
- - spec/models/os_configuration_cloud_init_spec.rb
232
- - spec/models/os_configuration_windows_spec.rb
233
- - spec/models/delete_result_spec.rb
234
234
  - spec/models/ssh_key_create_spec.rb
235
- - spec/models/server_private_network_spec.rb
236
- - spec/models/server_patch_spec.rb
237
- - spec/models/storage_configuration_root_partition_spec.rb
238
- - spec/models/server_reset_spec.rb
239
- - spec/models/server_ip_block_spec.rb
240
- - spec/models/os_configuration_netris_softgate_spec.rb
241
- - spec/models/ssh_key_spec.rb
242
- - spec/models/server_provision_spec.rb
235
+ - spec/models/server_public_network_spec.rb
243
236
  - spec/models/quota_edit_limit_request_spec.rb
244
- - spec/models/os_configuration_map_esxi_spec.rb
237
+ - spec/models/tag_assignment_request_spec.rb
238
+ - spec/models/delete_ssh_key_result_spec.rb
239
+ - spec/models/ssh_key_spec.rb
240
+ - spec/models/server_reserve_spec.rb
241
+ - spec/models/server_ip_block_spec.rb
242
+ - spec/models/gpu_configuration_spec.rb
243
+ - spec/models/relinquish_ip_block_spec.rb
244
+ - spec/models/quota_spec.rb
245
+ - spec/models/server_reset_spec.rb
246
+ - spec/models/storage_configuration_root_partition_spec.rb
247
+ - spec/models/server_patch_spec.rb
248
+ - spec/models/storage_configuration_spec.rb
245
249
  - spec/models/os_configuration_map_spec.rb
246
- - spec/models/os_configuration_map_proxmox_spec.rb
247
- - spec/models/server_create_spec.rb
248
- - spec/models/tag_assignment_spec.rb
249
250
  - spec/models/ssh_key_update_spec.rb
251
+ - spec/models/public_network_configuration_spec.rb
252
+ - spec/models/os_configuration_windows_spec.rb
253
+ - spec/models/tag_assignment_spec.rb
254
+ - spec/models/os_configuration_map_esxi_spec.rb
250
255
  - spec/models/action_result_spec.rb
251
- - spec/models/quota_edit_limit_request_details_spec.rb
252
- - spec/models/os_configuration_netris_controller_spec.rb
253
256
  - spec/models/reset_result_spec.rb
254
- - spec/models/private_network_configuration_spec.rb
255
- - spec/models/server_reserve_spec.rb
256
- - spec/models/storage_configuration_spec.rb
257
- - spec/models/os_configuration_spec.rb
258
- - spec/models/relinquish_ip_block_spec.rb
259
- - spec/models/server_public_network_spec.rb
257
+ - spec/models/os_configuration_netris_controller_spec.rb
258
+ - spec/models/server_create_spec.rb
259
+ - spec/models/server_private_network_spec.rb
260
+ - spec/models/ip_blocks_configuration_spec.rb
261
+ - spec/models/esxi_os_configuration_spec.rb
262
+ - spec/models/delete_result_spec.rb
263
+ - spec/models/esxi_datastore_configuration_spec.rb
264
+ - spec/models/server_spec.rb
265
+ - spec/models/os_configuration_map_proxmox_spec.rb
266
+ - spec/models/server_provision_spec.rb
267
+ - spec/models/server_network_update_spec.rb
268
+ - spec/models/network_configuration_spec.rb
269
+ - spec/models/os_configuration_netris_softgate_spec.rb
270
+ - spec/models/quota_edit_limit_request_details_spec.rb
271
+ - spec/models/os_configuration_cloud_init_spec.rb
260
272
  - spec/spec_helper.rb