pnap_bmc_api 1.1.1 → 1.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.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/VERSION +1 -1
- data/docs/OsConfiguration.md +3 -1
- data/docs/OsConfigurationCloudInit.md +18 -0
- data/lib/pnap_bmc_api/models/os_configuration.rb +13 -4
- data/lib/pnap_bmc_api/models/os_configuration_cloud_init.rb +221 -0
- data/lib/pnap_bmc_api.rb +1 -0
- data/spec/models/os_configuration_cloud_init_spec.rb +34 -0
- metadata +33 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c963cbc0d6e9a73b1d20d9fc4ebdae4f26841905700f25cd1d4194b3f5389622
|
4
|
+
data.tar.gz: 2cdf867849e85e583276bc0403f3556eedc7bdc94d69fed2bbea52475d386a13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39130877d89b21a46619f58fc59549a9ff56f7d4d2f93f078c6bf13cb6a36619aab4f4cd544fc977c3ab1d7f294fa051aacaa30c56f903e4d95db2b6a4ca7808
|
7
|
+
data.tar.gz: ad7384db61dd6d4dd691b61b7f251c203dc106c92ffb75d95817c815e0113362a68486a6be92ccaa4ab7252c69ff9980559f5621e2ca215eea85fa8a5179f100
|
data/README.md
CHANGED
@@ -158,6 +158,7 @@ Class | Method | HTTP request | Description
|
|
158
158
|
- [BmcApi::IpBlocksConfiguration](docs/IpBlocksConfiguration.md)
|
159
159
|
- [BmcApi::NetworkConfiguration](docs/NetworkConfiguration.md)
|
160
160
|
- [BmcApi::OsConfiguration](docs/OsConfiguration.md)
|
161
|
+
- [BmcApi::OsConfigurationCloudInit](docs/OsConfigurationCloudInit.md)
|
161
162
|
- [BmcApi::OsConfigurationMap](docs/OsConfigurationMap.md)
|
162
163
|
- [BmcApi::OsConfigurationMapEsxi](docs/OsConfigurationMapEsxi.md)
|
163
164
|
- [BmcApi::OsConfigurationMapProxmox](docs/OsConfigurationMapProxmox.md)
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.0
|
data/docs/OsConfiguration.md
CHANGED
@@ -9,6 +9,7 @@
|
|
9
9
|
| **management_ui_url** | **String** | The URL of the management UI which will only be returned in response to provisioning a server. | [optional][readonly] |
|
10
10
|
| **management_access_allowed_ips** | **Array<String>** | List of IPs allowed to access the Management UI. Supported in single IP, CIDR and range format. When undefined, Management UI is disabled. This will only be returned in response to provisioning a server. | [optional] |
|
11
11
|
| **install_os_to_ram** | **Boolean** | If true, OS will be installed to and booted from the server's RAM. On restart RAM OS will be lost and the server will not be reachable unless a custom bootable OS has been deployed. Only supported for ubuntu/focal. | [optional][default to false] |
|
12
|
+
| **cloud_init** | [**OsConfigurationCloudInit**](OsConfigurationCloudInit.md) | | [optional] |
|
12
13
|
|
13
14
|
## Example
|
14
15
|
|
@@ -20,7 +21,8 @@ instance = BmcApi::OsConfiguration.new(
|
|
20
21
|
root_password: MyP@ssw0rd_01,
|
21
22
|
management_ui_url: https://172.217.22.14,
|
22
23
|
management_access_allowed_ips: ["172.217.22.14","10.111.14.40/29","10.111.14.66 - 10.111.14.71"],
|
23
|
-
install_os_to_ram: null
|
24
|
+
install_os_to_ram: null,
|
25
|
+
cloud_init: null
|
24
26
|
)
|
25
27
|
```
|
26
28
|
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# BmcApi::OsConfigurationCloudInit
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **user_data** | **String** | User data for the <a href='https://cloudinit.readthedocs.io/en/latest/' target='_blank'>cloud-init</a> configuration in base64 encoding. NoCloud format is supported. Follow the <a href='https://phoenixnap.com/kb/bmc-cloud-init' target='_blank'>instructions</a> on how to provision a server using cloud-init. Only ubuntu/bionic and ubuntu/focal are supported. User data will not be stored and cannot be retrieved once you deploy the server. Copy and save it for future reference. | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'pnap_bmc_api'
|
13
|
+
|
14
|
+
instance = BmcApi::OsConfigurationCloudInit.new(
|
15
|
+
user_data: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -30,6 +30,8 @@ module BmcApi
|
|
30
30
|
# If true, OS will be installed to and booted from the server's RAM. On restart RAM OS will be lost and the server will not be reachable unless a custom bootable OS has been deployed. Only supported for ubuntu/focal.
|
31
31
|
attr_accessor :install_os_to_ram
|
32
32
|
|
33
|
+
attr_accessor :cloud_init
|
34
|
+
|
33
35
|
# Attribute mapping from ruby-style variable name to JSON key.
|
34
36
|
def self.attribute_map
|
35
37
|
{
|
@@ -37,7 +39,8 @@ module BmcApi
|
|
37
39
|
:'root_password' => :'rootPassword',
|
38
40
|
:'management_ui_url' => :'managementUiUrl',
|
39
41
|
:'management_access_allowed_ips' => :'managementAccessAllowedIps',
|
40
|
-
:'install_os_to_ram' => :'installOsToRam'
|
42
|
+
:'install_os_to_ram' => :'installOsToRam',
|
43
|
+
:'cloud_init' => :'cloudInit'
|
41
44
|
}
|
42
45
|
end
|
43
46
|
|
@@ -53,7 +56,8 @@ module BmcApi
|
|
53
56
|
:'root_password' => :'String',
|
54
57
|
:'management_ui_url' => :'String',
|
55
58
|
:'management_access_allowed_ips' => :'Array<String>',
|
56
|
-
:'install_os_to_ram' => :'Boolean'
|
59
|
+
:'install_os_to_ram' => :'Boolean',
|
60
|
+
:'cloud_init' => :'OsConfigurationCloudInit'
|
57
61
|
}
|
58
62
|
end
|
59
63
|
|
@@ -101,6 +105,10 @@ module BmcApi
|
|
101
105
|
else
|
102
106
|
self.install_os_to_ram = false
|
103
107
|
end
|
108
|
+
|
109
|
+
if attributes.key?(:'cloud_init')
|
110
|
+
self.cloud_init = attributes[:'cloud_init']
|
111
|
+
end
|
104
112
|
end
|
105
113
|
|
106
114
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -140,7 +148,8 @@ module BmcApi
|
|
140
148
|
root_password == o.root_password &&
|
141
149
|
management_ui_url == o.management_ui_url &&
|
142
150
|
management_access_allowed_ips == o.management_access_allowed_ips &&
|
143
|
-
install_os_to_ram == o.install_os_to_ram
|
151
|
+
install_os_to_ram == o.install_os_to_ram &&
|
152
|
+
cloud_init == o.cloud_init
|
144
153
|
end
|
145
154
|
|
146
155
|
# @see the `==` method
|
@@ -152,7 +161,7 @@ module BmcApi
|
|
152
161
|
# Calculates hash code according to all attributes.
|
153
162
|
# @return [Integer] Hash code
|
154
163
|
def hash
|
155
|
-
[windows, root_password, management_ui_url, management_access_allowed_ips, install_os_to_ram].hash
|
164
|
+
[windows, root_password, management_ui_url, management_access_allowed_ips, install_os_to_ram, cloud_init].hash
|
156
165
|
end
|
157
166
|
|
158
167
|
# Builds the object from hash
|
@@ -0,0 +1,221 @@
|
|
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: 6.1.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module BmcApi
|
17
|
+
# Cloud-init configuration details.
|
18
|
+
class OsConfigurationCloudInit
|
19
|
+
# User data for the <a href='https://cloudinit.readthedocs.io/en/latest/' target='_blank'>cloud-init</a> configuration in base64 encoding. NoCloud format is supported. Follow the <a href='https://phoenixnap.com/kb/bmc-cloud-init' target='_blank'>instructions</a> on how to provision a server using cloud-init. Only ubuntu/bionic and ubuntu/focal are supported. User data will not be stored and cannot be retrieved once you deploy the server. Copy and save it for future reference.
|
20
|
+
attr_accessor :user_data
|
21
|
+
|
22
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
23
|
+
def self.attribute_map
|
24
|
+
{
|
25
|
+
:'user_data' => :'userData'
|
26
|
+
}
|
27
|
+
end
|
28
|
+
|
29
|
+
# Returns all the JSON keys this model knows about
|
30
|
+
def self.acceptable_attributes
|
31
|
+
attribute_map.values
|
32
|
+
end
|
33
|
+
|
34
|
+
# Attribute type mapping.
|
35
|
+
def self.openapi_types
|
36
|
+
{
|
37
|
+
:'user_data' => :'String'
|
38
|
+
}
|
39
|
+
end
|
40
|
+
|
41
|
+
# List of attributes with nullable: true
|
42
|
+
def self.openapi_nullable
|
43
|
+
Set.new([
|
44
|
+
])
|
45
|
+
end
|
46
|
+
|
47
|
+
# Initializes the object
|
48
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
49
|
+
def initialize(attributes = {})
|
50
|
+
if (!attributes.is_a?(Hash))
|
51
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `BmcApi::OsConfigurationCloudInit` initialize method"
|
52
|
+
end
|
53
|
+
|
54
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
55
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
56
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
57
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `BmcApi::OsConfigurationCloudInit`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
58
|
+
end
|
59
|
+
h[k.to_sym] = v
|
60
|
+
}
|
61
|
+
|
62
|
+
if attributes.key?(:'user_data')
|
63
|
+
self.user_data = attributes[:'user_data']
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
68
|
+
# @return Array for valid properties with the reasons
|
69
|
+
def list_invalid_properties
|
70
|
+
invalid_properties = Array.new
|
71
|
+
invalid_properties
|
72
|
+
end
|
73
|
+
|
74
|
+
# Check to see if the all the properties in the model are valid
|
75
|
+
# @return true if the model is valid
|
76
|
+
def valid?
|
77
|
+
true
|
78
|
+
end
|
79
|
+
|
80
|
+
# Checks equality by comparing each attribute.
|
81
|
+
# @param [Object] Object to be compared
|
82
|
+
def ==(o)
|
83
|
+
return true if self.equal?(o)
|
84
|
+
self.class == o.class &&
|
85
|
+
user_data == o.user_data
|
86
|
+
end
|
87
|
+
|
88
|
+
# @see the `==` method
|
89
|
+
# @param [Object] Object to be compared
|
90
|
+
def eql?(o)
|
91
|
+
self == o
|
92
|
+
end
|
93
|
+
|
94
|
+
# Calculates hash code according to all attributes.
|
95
|
+
# @return [Integer] Hash code
|
96
|
+
def hash
|
97
|
+
[user_data].hash
|
98
|
+
end
|
99
|
+
|
100
|
+
# Builds the object from hash
|
101
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
102
|
+
# @return [Object] Returns the model itself
|
103
|
+
def self.build_from_hash(attributes)
|
104
|
+
new.build_from_hash(attributes)
|
105
|
+
end
|
106
|
+
|
107
|
+
# Builds the object from hash
|
108
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
109
|
+
# @return [Object] Returns the model itself
|
110
|
+
def build_from_hash(attributes)
|
111
|
+
return nil unless attributes.is_a?(Hash)
|
112
|
+
attributes = attributes.transform_keys(&:to_sym)
|
113
|
+
self.class.openapi_types.each_pair do |key, type|
|
114
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
115
|
+
self.send("#{key}=", nil)
|
116
|
+
elsif type =~ /\AArray<(.*)>/i
|
117
|
+
# check to ensure the input is an array given that the attribute
|
118
|
+
# is documented as an array but the input is not
|
119
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
120
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
121
|
+
end
|
122
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
123
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
self
|
128
|
+
end
|
129
|
+
|
130
|
+
# Deserializes the data based on type
|
131
|
+
# @param string type Data type
|
132
|
+
# @param string value Value to be deserialized
|
133
|
+
# @return [Object] Deserialized data
|
134
|
+
def _deserialize(type, value)
|
135
|
+
case type.to_sym
|
136
|
+
when :Time
|
137
|
+
Time.parse(value)
|
138
|
+
when :Date
|
139
|
+
Date.parse(value)
|
140
|
+
when :String
|
141
|
+
value.to_s
|
142
|
+
when :Integer
|
143
|
+
value.to_i
|
144
|
+
when :Float
|
145
|
+
value.to_f
|
146
|
+
when :Boolean
|
147
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
148
|
+
true
|
149
|
+
else
|
150
|
+
false
|
151
|
+
end
|
152
|
+
when :Object
|
153
|
+
# generic object (usually a Hash), return directly
|
154
|
+
value
|
155
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
156
|
+
inner_type = Regexp.last_match[:inner_type]
|
157
|
+
value.map { |v| _deserialize(inner_type, v) }
|
158
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
159
|
+
k_type = Regexp.last_match[:k_type]
|
160
|
+
v_type = Regexp.last_match[:v_type]
|
161
|
+
{}.tap do |hash|
|
162
|
+
value.each do |k, v|
|
163
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
164
|
+
end
|
165
|
+
end
|
166
|
+
else # model
|
167
|
+
# models (e.g. Pet) or oneOf
|
168
|
+
klass = BmcApi.const_get(type)
|
169
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
# Returns the string representation of the object
|
174
|
+
# @return [String] String presentation of the object
|
175
|
+
def to_s
|
176
|
+
to_hash.to_s
|
177
|
+
end
|
178
|
+
|
179
|
+
# to_body is an alias to to_hash (backward compatibility)
|
180
|
+
# @return [Hash] Returns the object in the form of hash
|
181
|
+
def to_body
|
182
|
+
to_hash
|
183
|
+
end
|
184
|
+
|
185
|
+
# Returns the object in the form of hash
|
186
|
+
# @return [Hash] Returns the object in the form of hash
|
187
|
+
def to_hash
|
188
|
+
hash = {}
|
189
|
+
self.class.attribute_map.each_pair do |attr, param|
|
190
|
+
value = self.send(attr)
|
191
|
+
if value.nil?
|
192
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
193
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
194
|
+
end
|
195
|
+
|
196
|
+
hash[param] = _to_hash(value)
|
197
|
+
end
|
198
|
+
hash
|
199
|
+
end
|
200
|
+
|
201
|
+
# Outputs non-array value in the form of hash
|
202
|
+
# For object, use to_hash. Otherwise, just return the value
|
203
|
+
# @param [Object] value Any valid value
|
204
|
+
# @return [Hash] Returns the value in the form of hash
|
205
|
+
def _to_hash(value)
|
206
|
+
if value.is_a?(Array)
|
207
|
+
value.compact.map { |v| _to_hash(v) }
|
208
|
+
elsif value.is_a?(Hash)
|
209
|
+
{}.tap do |hash|
|
210
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
211
|
+
end
|
212
|
+
elsif value.respond_to? :to_hash
|
213
|
+
value.to_hash
|
214
|
+
else
|
215
|
+
value
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
end
|
220
|
+
|
221
|
+
end
|
data/lib/pnap_bmc_api.rb
CHANGED
@@ -24,6 +24,7 @@ require 'pnap_bmc_api/models/error'
|
|
24
24
|
require 'pnap_bmc_api/models/ip_blocks_configuration'
|
25
25
|
require 'pnap_bmc_api/models/network_configuration'
|
26
26
|
require 'pnap_bmc_api/models/os_configuration'
|
27
|
+
require 'pnap_bmc_api/models/os_configuration_cloud_init'
|
27
28
|
require 'pnap_bmc_api/models/os_configuration_map'
|
28
29
|
require 'pnap_bmc_api/models/os_configuration_map_esxi'
|
29
30
|
require 'pnap_bmc_api/models/os_configuration_map_proxmox'
|
@@ -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, 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: 6.1.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BmcApi::OsConfigurationCloudInit
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BmcApi::OsConfigurationCloudInit do
|
21
|
+
let(:instance) { BmcApi::OsConfigurationCloudInit.new }
|
22
|
+
|
23
|
+
describe 'test an instance of OsConfigurationCloudInit' do
|
24
|
+
it 'should create an instance of OsConfigurationCloudInit' do
|
25
|
+
expect(instance).to be_instance_of(BmcApi::OsConfigurationCloudInit)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "user_data"' 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
|
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.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PhoenixNAP
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -68,6 +68,7 @@ files:
|
|
68
68
|
- docs/IpBlocksConfiguration.md
|
69
69
|
- docs/NetworkConfiguration.md
|
70
70
|
- docs/OsConfiguration.md
|
71
|
+
- docs/OsConfigurationCloudInit.md
|
71
72
|
- docs/OsConfigurationMap.md
|
72
73
|
- docs/OsConfigurationMapEsxi.md
|
73
74
|
- docs/OsConfigurationMapProxmox.md
|
@@ -110,6 +111,7 @@ files:
|
|
110
111
|
- lib/pnap_bmc_api/models/ip_blocks_configuration.rb
|
111
112
|
- lib/pnap_bmc_api/models/network_configuration.rb
|
112
113
|
- lib/pnap_bmc_api/models/os_configuration.rb
|
114
|
+
- lib/pnap_bmc_api/models/os_configuration_cloud_init.rb
|
113
115
|
- lib/pnap_bmc_api/models/os_configuration_map.rb
|
114
116
|
- lib/pnap_bmc_api/models/os_configuration_map_esxi.rb
|
115
117
|
- lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb
|
@@ -148,6 +150,7 @@ files:
|
|
148
150
|
- spec/models/error_spec.rb
|
149
151
|
- spec/models/ip_blocks_configuration_spec.rb
|
150
152
|
- spec/models/network_configuration_spec.rb
|
153
|
+
- spec/models/os_configuration_cloud_init_spec.rb
|
151
154
|
- spec/models/os_configuration_map_esxi_spec.rb
|
152
155
|
- spec/models/os_configuration_map_proxmox_spec.rb
|
153
156
|
- spec/models/os_configuration_map_spec.rb
|
@@ -195,46 +198,47 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
198
|
- !ruby/object:Gem::Version
|
196
199
|
version: '0'
|
197
200
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
201
|
+
rubygems_version: 3.3.5
|
199
202
|
signing_key:
|
200
203
|
specification_version: 4
|
201
204
|
summary: Bare Metal Cloud API Ruby Gem
|
202
205
|
test_files:
|
203
|
-
- spec/api/quotas_api_spec.rb
|
204
|
-
- spec/api/servers_api_spec.rb
|
205
206
|
- spec/api/ssh_keys_api_spec.rb
|
207
|
+
- spec/api/servers_api_spec.rb
|
208
|
+
- spec/api/quotas_api_spec.rb
|
206
209
|
- spec/api_client_spec.rb
|
207
210
|
- spec/configuration_spec.rb
|
211
|
+
- spec/models/quota_edit_limit_request_details_all_of_spec.rb
|
212
|
+
- spec/models/delete_result_spec.rb
|
213
|
+
- spec/models/os_configuration_map_proxmox_spec.rb
|
214
|
+
- spec/models/server_reset_spec.rb
|
215
|
+
- spec/models/server_create_spec.rb
|
216
|
+
- spec/models/public_network_configuration_spec.rb
|
208
217
|
- spec/models/ssh_key_create_spec.rb
|
209
|
-
- spec/models/
|
210
|
-
- spec/models/
|
218
|
+
- spec/models/os_configuration_windows_spec.rb
|
219
|
+
- spec/models/tag_assignment_request_spec.rb
|
220
|
+
- spec/models/quota_edit_limit_request_details_spec.rb
|
221
|
+
- spec/models/quota_spec.rb
|
222
|
+
- spec/models/relinquish_ip_block_spec.rb
|
223
|
+
- spec/models/ssh_key_spec.rb
|
224
|
+
- spec/models/os_configuration_spec.rb
|
211
225
|
- spec/models/quota_edit_limit_request_spec.rb
|
226
|
+
- spec/models/server_private_network_spec.rb
|
227
|
+
- spec/models/os_configuration_map_spec.rb
|
228
|
+
- spec/models/error_spec.rb
|
212
229
|
- spec/models/os_configuration_map_esxi_spec.rb
|
213
230
|
- spec/models/ssh_key_update_spec.rb
|
214
|
-
- spec/models/
|
231
|
+
- spec/models/server_reserve_spec.rb
|
232
|
+
- spec/models/os_configuration_cloud_init_spec.rb
|
233
|
+
- spec/models/tag_assignment_spec.rb
|
234
|
+
- spec/models/server_spec.rb
|
215
235
|
- spec/models/action_result_spec.rb
|
216
|
-
- spec/models/
|
217
|
-
- spec/models/
|
218
|
-
- spec/models/os_configuration_map_proxmox_spec.rb
|
219
|
-
- spec/models/server_ip_block_spec.rb
|
236
|
+
- spec/models/server_patch_spec.rb
|
237
|
+
- spec/models/network_configuration_spec.rb
|
220
238
|
- spec/models/ip_blocks_configuration_spec.rb
|
221
|
-
- spec/models/
|
222
|
-
- spec/models/
|
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
|
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
|
239
|
+
- spec/models/server_public_network_spec.rb
|
240
|
+
- spec/models/server_ip_block_spec.rb
|
234
241
|
- spec/models/private_network_configuration_spec.rb
|
235
242
|
- spec/models/delete_ssh_key_result_spec.rb
|
236
|
-
- spec/models/
|
237
|
-
- spec/models/relinquish_ip_block_spec.rb
|
238
|
-
- spec/models/server_patch_spec.rb
|
239
|
-
- spec/models/os_configuration_windows_spec.rb
|
243
|
+
- spec/models/reset_result_spec.rb
|
240
244
|
- spec/spec_helper.rb
|