pnap_network_api 1.0.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 +7 -0
- data/Gemfile +9 -0
- data/README.md +154 -0
- data/Rakefile +10 -0
- data/VERSION +1 -0
- data/docs/Error.md +20 -0
- data/docs/PrivateNetwork.md +34 -0
- data/docs/PrivateNetworkCreate.md +26 -0
- data/docs/PrivateNetworkModify.md +22 -0
- data/docs/PrivateNetworkServer.md +20 -0
- data/docs/PrivateNetworksApi.md +364 -0
- data/lib/pnap_network_api/api/private_networks_api.rb +342 -0
- data/lib/pnap_network_api/api_client.rb +392 -0
- data/lib/pnap_network_api/api_error.rb +57 -0
- data/lib/pnap_network_api/configuration.rb +278 -0
- data/lib/pnap_network_api/models/error.rb +236 -0
- data/lib/pnap_network_api/models/private_network.rb +341 -0
- data/lib/pnap_network_api/models/private_network_create.rb +277 -0
- data/lib/pnap_network_api/models/private_network_modify.rb +250 -0
- data/lib/pnap_network_api/models/private_network_server.rb +242 -0
- data/lib/pnap_network_api/version.rb +19 -0
- data/lib/pnap_network_api.rb +45 -0
- data/pnap_network_api.gemspec +39 -0
- data/spec/api/private_networks_api_spec.rb +96 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/error_spec.rb +40 -0
- data/spec/models/private_network_create_spec.rb +58 -0
- data/spec/models/private_network_modify_spec.rb +46 -0
- data/spec/models/private_network_server_spec.rb +40 -0
- data/spec/models/private_network_spec.rb +82 -0
- data/spec/spec_helper.rb +111 -0
- metadata +124 -0
@@ -0,0 +1,341 @@
|
|
1
|
+
=begin
|
2
|
+
#Networks API
|
3
|
+
|
4
|
+
#Use the Networks API to create, list, edit, and delete private networks to best fit your business needs. Private networks allow your servers to communicate without connecting to the public internet, avoiding unnecessary egress data charges.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/bmc-server-management-via-api#multi-private-backend-network-api' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/networks/v1/)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
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 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module NetworkApi
|
17
|
+
# Private Network details.
|
18
|
+
class PrivateNetwork
|
19
|
+
# The private network identifier.
|
20
|
+
attr_accessor :id
|
21
|
+
|
22
|
+
# The friendly name of this private network.
|
23
|
+
attr_accessor :name
|
24
|
+
|
25
|
+
# The description of this private network.
|
26
|
+
attr_accessor :description
|
27
|
+
|
28
|
+
# The VLAN of this private network.
|
29
|
+
attr_accessor :vlan_id
|
30
|
+
|
31
|
+
# The type of the private network.
|
32
|
+
attr_accessor :type
|
33
|
+
|
34
|
+
# The location of this private network.
|
35
|
+
attr_accessor :location
|
36
|
+
|
37
|
+
# Identifies network as the default private network for the specified location.
|
38
|
+
attr_accessor :location_default
|
39
|
+
|
40
|
+
# IP range associated with this private network in CIDR notation.
|
41
|
+
attr_accessor :cidr
|
42
|
+
|
43
|
+
attr_accessor :servers
|
44
|
+
|
45
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
46
|
+
def self.attribute_map
|
47
|
+
{
|
48
|
+
:'id' => :'id',
|
49
|
+
:'name' => :'name',
|
50
|
+
:'description' => :'description',
|
51
|
+
:'vlan_id' => :'vlanId',
|
52
|
+
:'type' => :'type',
|
53
|
+
:'location' => :'location',
|
54
|
+
:'location_default' => :'locationDefault',
|
55
|
+
:'cidr' => :'cidr',
|
56
|
+
:'servers' => :'servers'
|
57
|
+
}
|
58
|
+
end
|
59
|
+
|
60
|
+
# Returns all the JSON keys this model knows about
|
61
|
+
def self.acceptable_attributes
|
62
|
+
attribute_map.values
|
63
|
+
end
|
64
|
+
|
65
|
+
# Attribute type mapping.
|
66
|
+
def self.openapi_types
|
67
|
+
{
|
68
|
+
:'id' => :'String',
|
69
|
+
:'name' => :'String',
|
70
|
+
:'description' => :'String',
|
71
|
+
:'vlan_id' => :'Integer',
|
72
|
+
:'type' => :'String',
|
73
|
+
:'location' => :'String',
|
74
|
+
:'location_default' => :'Boolean',
|
75
|
+
:'cidr' => :'String',
|
76
|
+
:'servers' => :'Array<PrivateNetworkServer>'
|
77
|
+
}
|
78
|
+
end
|
79
|
+
|
80
|
+
# List of attributes with nullable: true
|
81
|
+
def self.openapi_nullable
|
82
|
+
Set.new([
|
83
|
+
])
|
84
|
+
end
|
85
|
+
|
86
|
+
# Initializes the object
|
87
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
88
|
+
def initialize(attributes = {})
|
89
|
+
if (!attributes.is_a?(Hash))
|
90
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `NetworkApi::PrivateNetwork` initialize method"
|
91
|
+
end
|
92
|
+
|
93
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
94
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
95
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
96
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkApi::PrivateNetwork`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
97
|
+
end
|
98
|
+
h[k.to_sym] = v
|
99
|
+
}
|
100
|
+
|
101
|
+
if attributes.key?(:'id')
|
102
|
+
self.id = attributes[:'id']
|
103
|
+
end
|
104
|
+
|
105
|
+
if attributes.key?(:'name')
|
106
|
+
self.name = attributes[:'name']
|
107
|
+
end
|
108
|
+
|
109
|
+
if attributes.key?(:'description')
|
110
|
+
self.description = attributes[:'description']
|
111
|
+
end
|
112
|
+
|
113
|
+
if attributes.key?(:'vlan_id')
|
114
|
+
self.vlan_id = attributes[:'vlan_id']
|
115
|
+
end
|
116
|
+
|
117
|
+
if attributes.key?(:'type')
|
118
|
+
self.type = attributes[:'type']
|
119
|
+
end
|
120
|
+
|
121
|
+
if attributes.key?(:'location')
|
122
|
+
self.location = attributes[:'location']
|
123
|
+
end
|
124
|
+
|
125
|
+
if attributes.key?(:'location_default')
|
126
|
+
self.location_default = attributes[:'location_default']
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.key?(:'cidr')
|
130
|
+
self.cidr = attributes[:'cidr']
|
131
|
+
end
|
132
|
+
|
133
|
+
if attributes.key?(:'servers')
|
134
|
+
if (value = attributes[:'servers']).is_a?(Array)
|
135
|
+
self.servers = value
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
141
|
+
# @return Array for valid properties with the reasons
|
142
|
+
def list_invalid_properties
|
143
|
+
invalid_properties = Array.new
|
144
|
+
if @id.nil?
|
145
|
+
invalid_properties.push('invalid value for "id", id cannot be nil.')
|
146
|
+
end
|
147
|
+
|
148
|
+
if @name.nil?
|
149
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
150
|
+
end
|
151
|
+
|
152
|
+
if @vlan_id.nil?
|
153
|
+
invalid_properties.push('invalid value for "vlan_id", vlan_id cannot be nil.')
|
154
|
+
end
|
155
|
+
|
156
|
+
if @type.nil?
|
157
|
+
invalid_properties.push('invalid value for "type", type cannot be nil.')
|
158
|
+
end
|
159
|
+
|
160
|
+
if @location.nil?
|
161
|
+
invalid_properties.push('invalid value for "location", location cannot be nil.')
|
162
|
+
end
|
163
|
+
|
164
|
+
if @location_default.nil?
|
165
|
+
invalid_properties.push('invalid value for "location_default", location_default cannot be nil.')
|
166
|
+
end
|
167
|
+
|
168
|
+
if @cidr.nil?
|
169
|
+
invalid_properties.push('invalid value for "cidr", cidr cannot be nil.')
|
170
|
+
end
|
171
|
+
|
172
|
+
if @servers.nil?
|
173
|
+
invalid_properties.push('invalid value for "servers", servers cannot be nil.')
|
174
|
+
end
|
175
|
+
|
176
|
+
invalid_properties
|
177
|
+
end
|
178
|
+
|
179
|
+
# Check to see if the all the properties in the model are valid
|
180
|
+
# @return true if the model is valid
|
181
|
+
def valid?
|
182
|
+
return false if @id.nil?
|
183
|
+
return false if @name.nil?
|
184
|
+
return false if @vlan_id.nil?
|
185
|
+
return false if @type.nil?
|
186
|
+
return false if @location.nil?
|
187
|
+
return false if @location_default.nil?
|
188
|
+
return false if @cidr.nil?
|
189
|
+
return false if @servers.nil?
|
190
|
+
true
|
191
|
+
end
|
192
|
+
|
193
|
+
# Checks equality by comparing each attribute.
|
194
|
+
# @param [Object] Object to be compared
|
195
|
+
def ==(o)
|
196
|
+
return true if self.equal?(o)
|
197
|
+
self.class == o.class &&
|
198
|
+
id == o.id &&
|
199
|
+
name == o.name &&
|
200
|
+
description == o.description &&
|
201
|
+
vlan_id == o.vlan_id &&
|
202
|
+
type == o.type &&
|
203
|
+
location == o.location &&
|
204
|
+
location_default == o.location_default &&
|
205
|
+
cidr == o.cidr &&
|
206
|
+
servers == o.servers
|
207
|
+
end
|
208
|
+
|
209
|
+
# @see the `==` method
|
210
|
+
# @param [Object] Object to be compared
|
211
|
+
def eql?(o)
|
212
|
+
self == o
|
213
|
+
end
|
214
|
+
|
215
|
+
# Calculates hash code according to all attributes.
|
216
|
+
# @return [Integer] Hash code
|
217
|
+
def hash
|
218
|
+
[id, name, description, vlan_id, type, location, location_default, cidr, servers].hash
|
219
|
+
end
|
220
|
+
|
221
|
+
# Builds the object from hash
|
222
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
223
|
+
# @return [Object] Returns the model itself
|
224
|
+
def self.build_from_hash(attributes)
|
225
|
+
new.build_from_hash(attributes)
|
226
|
+
end
|
227
|
+
|
228
|
+
# Builds the object from hash
|
229
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
230
|
+
# @return [Object] Returns the model itself
|
231
|
+
def build_from_hash(attributes)
|
232
|
+
return nil unless attributes.is_a?(Hash)
|
233
|
+
self.class.openapi_types.each_pair do |key, type|
|
234
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
235
|
+
self.send("#{key}=", nil)
|
236
|
+
elsif type =~ /\AArray<(.*)>/i
|
237
|
+
# check to ensure the input is an array given that the attribute
|
238
|
+
# is documented as an array but the input is not
|
239
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
240
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
241
|
+
end
|
242
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
243
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
self
|
248
|
+
end
|
249
|
+
|
250
|
+
# Deserializes the data based on type
|
251
|
+
# @param string type Data type
|
252
|
+
# @param string value Value to be deserialized
|
253
|
+
# @return [Object] Deserialized data
|
254
|
+
def _deserialize(type, value)
|
255
|
+
case type.to_sym
|
256
|
+
when :Time
|
257
|
+
Time.parse(value)
|
258
|
+
when :Date
|
259
|
+
Date.parse(value)
|
260
|
+
when :String
|
261
|
+
value.to_s
|
262
|
+
when :Integer
|
263
|
+
value.to_i
|
264
|
+
when :Float
|
265
|
+
value.to_f
|
266
|
+
when :Boolean
|
267
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
268
|
+
true
|
269
|
+
else
|
270
|
+
false
|
271
|
+
end
|
272
|
+
when :Object
|
273
|
+
# generic object (usually a Hash), return directly
|
274
|
+
value
|
275
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
276
|
+
inner_type = Regexp.last_match[:inner_type]
|
277
|
+
value.map { |v| _deserialize(inner_type, v) }
|
278
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
279
|
+
k_type = Regexp.last_match[:k_type]
|
280
|
+
v_type = Regexp.last_match[:v_type]
|
281
|
+
{}.tap do |hash|
|
282
|
+
value.each do |k, v|
|
283
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
284
|
+
end
|
285
|
+
end
|
286
|
+
else # model
|
287
|
+
# models (e.g. Pet) or oneOf
|
288
|
+
klass = NetworkApi.const_get(type)
|
289
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
# Returns the string representation of the object
|
294
|
+
# @return [String] String presentation of the object
|
295
|
+
def to_s
|
296
|
+
to_hash.to_s
|
297
|
+
end
|
298
|
+
|
299
|
+
# to_body is an alias to to_hash (backward compatibility)
|
300
|
+
# @return [Hash] Returns the object in the form of hash
|
301
|
+
def to_body
|
302
|
+
to_hash
|
303
|
+
end
|
304
|
+
|
305
|
+
# Returns the object in the form of hash
|
306
|
+
# @return [Hash] Returns the object in the form of hash
|
307
|
+
def to_hash
|
308
|
+
hash = {}
|
309
|
+
self.class.attribute_map.each_pair do |attr, param|
|
310
|
+
value = self.send(attr)
|
311
|
+
if value.nil?
|
312
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
313
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
314
|
+
end
|
315
|
+
|
316
|
+
hash[param] = _to_hash(value)
|
317
|
+
end
|
318
|
+
hash
|
319
|
+
end
|
320
|
+
|
321
|
+
# Outputs non-array value in the form of hash
|
322
|
+
# For object, use to_hash. Otherwise, just return the value
|
323
|
+
# @param [Object] value Any valid value
|
324
|
+
# @return [Hash] Returns the value in the form of hash
|
325
|
+
def _to_hash(value)
|
326
|
+
if value.is_a?(Array)
|
327
|
+
value.compact.map { |v| _to_hash(v) }
|
328
|
+
elsif value.is_a?(Hash)
|
329
|
+
{}.tap do |hash|
|
330
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
331
|
+
end
|
332
|
+
elsif value.respond_to? :to_hash
|
333
|
+
value.to_hash
|
334
|
+
else
|
335
|
+
value
|
336
|
+
end
|
337
|
+
end
|
338
|
+
|
339
|
+
end
|
340
|
+
|
341
|
+
end
|
@@ -0,0 +1,277 @@
|
|
1
|
+
=begin
|
2
|
+
#Networks API
|
3
|
+
|
4
|
+
#Use the Networks API to create, list, edit, and delete private networks to best fit your business needs. Private networks allow your servers to communicate without connecting to the public internet, avoiding unnecessary egress data charges.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/bmc-server-management-via-api#multi-private-backend-network-api' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/networks/v1/)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
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 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module NetworkApi
|
17
|
+
# Details of Private Network to be created.
|
18
|
+
class PrivateNetworkCreate
|
19
|
+
# The friendly name of this private network. This name should be unique.
|
20
|
+
attr_accessor :name
|
21
|
+
|
22
|
+
# The description of this private network.
|
23
|
+
attr_accessor :description
|
24
|
+
|
25
|
+
# The location of this private network. Supported values are `PHX`, `ASH`, `SGP`, `NLD`, `CHI`, `SEA` and `AUS`.
|
26
|
+
attr_accessor :location
|
27
|
+
|
28
|
+
# Identifies network as the default private network for the specified location.
|
29
|
+
attr_accessor :location_default
|
30
|
+
|
31
|
+
# IP range associated with this private network in CIDR notation.
|
32
|
+
attr_accessor :cidr
|
33
|
+
|
34
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
35
|
+
def self.attribute_map
|
36
|
+
{
|
37
|
+
:'name' => :'name',
|
38
|
+
:'description' => :'description',
|
39
|
+
:'location' => :'location',
|
40
|
+
:'location_default' => :'locationDefault',
|
41
|
+
:'cidr' => :'cidr'
|
42
|
+
}
|
43
|
+
end
|
44
|
+
|
45
|
+
# Returns all the JSON keys this model knows about
|
46
|
+
def self.acceptable_attributes
|
47
|
+
attribute_map.values
|
48
|
+
end
|
49
|
+
|
50
|
+
# Attribute type mapping.
|
51
|
+
def self.openapi_types
|
52
|
+
{
|
53
|
+
:'name' => :'String',
|
54
|
+
:'description' => :'String',
|
55
|
+
:'location' => :'String',
|
56
|
+
:'location_default' => :'Boolean',
|
57
|
+
:'cidr' => :'String'
|
58
|
+
}
|
59
|
+
end
|
60
|
+
|
61
|
+
# List of attributes with nullable: true
|
62
|
+
def self.openapi_nullable
|
63
|
+
Set.new([
|
64
|
+
])
|
65
|
+
end
|
66
|
+
|
67
|
+
# Initializes the object
|
68
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
69
|
+
def initialize(attributes = {})
|
70
|
+
if (!attributes.is_a?(Hash))
|
71
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `NetworkApi::PrivateNetworkCreate` initialize method"
|
72
|
+
end
|
73
|
+
|
74
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
75
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
76
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
77
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkApi::PrivateNetworkCreate`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
78
|
+
end
|
79
|
+
h[k.to_sym] = v
|
80
|
+
}
|
81
|
+
|
82
|
+
if attributes.key?(:'name')
|
83
|
+
self.name = attributes[:'name']
|
84
|
+
end
|
85
|
+
|
86
|
+
if attributes.key?(:'description')
|
87
|
+
self.description = attributes[:'description']
|
88
|
+
end
|
89
|
+
|
90
|
+
if attributes.key?(:'location')
|
91
|
+
self.location = attributes[:'location']
|
92
|
+
end
|
93
|
+
|
94
|
+
if attributes.key?(:'location_default')
|
95
|
+
self.location_default = attributes[:'location_default']
|
96
|
+
else
|
97
|
+
self.location_default = false
|
98
|
+
end
|
99
|
+
|
100
|
+
if attributes.key?(:'cidr')
|
101
|
+
self.cidr = attributes[:'cidr']
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
106
|
+
# @return Array for valid properties with the reasons
|
107
|
+
def list_invalid_properties
|
108
|
+
invalid_properties = Array.new
|
109
|
+
if @name.nil?
|
110
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
111
|
+
end
|
112
|
+
|
113
|
+
if @location.nil?
|
114
|
+
invalid_properties.push('invalid value for "location", location cannot be nil.')
|
115
|
+
end
|
116
|
+
|
117
|
+
if @cidr.nil?
|
118
|
+
invalid_properties.push('invalid value for "cidr", cidr cannot be nil.')
|
119
|
+
end
|
120
|
+
|
121
|
+
invalid_properties
|
122
|
+
end
|
123
|
+
|
124
|
+
# Check to see if the all the properties in the model are valid
|
125
|
+
# @return true if the model is valid
|
126
|
+
def valid?
|
127
|
+
return false if @name.nil?
|
128
|
+
return false if @location.nil?
|
129
|
+
return false if @cidr.nil?
|
130
|
+
true
|
131
|
+
end
|
132
|
+
|
133
|
+
# Checks equality by comparing each attribute.
|
134
|
+
# @param [Object] Object to be compared
|
135
|
+
def ==(o)
|
136
|
+
return true if self.equal?(o)
|
137
|
+
self.class == o.class &&
|
138
|
+
name == o.name &&
|
139
|
+
description == o.description &&
|
140
|
+
location == o.location &&
|
141
|
+
location_default == o.location_default &&
|
142
|
+
cidr == o.cidr
|
143
|
+
end
|
144
|
+
|
145
|
+
# @see the `==` method
|
146
|
+
# @param [Object] Object to be compared
|
147
|
+
def eql?(o)
|
148
|
+
self == o
|
149
|
+
end
|
150
|
+
|
151
|
+
# Calculates hash code according to all attributes.
|
152
|
+
# @return [Integer] Hash code
|
153
|
+
def hash
|
154
|
+
[name, description, location, location_default, cidr].hash
|
155
|
+
end
|
156
|
+
|
157
|
+
# Builds the object from hash
|
158
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
159
|
+
# @return [Object] Returns the model itself
|
160
|
+
def self.build_from_hash(attributes)
|
161
|
+
new.build_from_hash(attributes)
|
162
|
+
end
|
163
|
+
|
164
|
+
# Builds the object from hash
|
165
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
166
|
+
# @return [Object] Returns the model itself
|
167
|
+
def build_from_hash(attributes)
|
168
|
+
return nil unless attributes.is_a?(Hash)
|
169
|
+
self.class.openapi_types.each_pair do |key, type|
|
170
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
171
|
+
self.send("#{key}=", nil)
|
172
|
+
elsif type =~ /\AArray<(.*)>/i
|
173
|
+
# check to ensure the input is an array given that the attribute
|
174
|
+
# is documented as an array but the input is not
|
175
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
176
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
177
|
+
end
|
178
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
179
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
self
|
184
|
+
end
|
185
|
+
|
186
|
+
# Deserializes the data based on type
|
187
|
+
# @param string type Data type
|
188
|
+
# @param string value Value to be deserialized
|
189
|
+
# @return [Object] Deserialized data
|
190
|
+
def _deserialize(type, value)
|
191
|
+
case type.to_sym
|
192
|
+
when :Time
|
193
|
+
Time.parse(value)
|
194
|
+
when :Date
|
195
|
+
Date.parse(value)
|
196
|
+
when :String
|
197
|
+
value.to_s
|
198
|
+
when :Integer
|
199
|
+
value.to_i
|
200
|
+
when :Float
|
201
|
+
value.to_f
|
202
|
+
when :Boolean
|
203
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
204
|
+
true
|
205
|
+
else
|
206
|
+
false
|
207
|
+
end
|
208
|
+
when :Object
|
209
|
+
# generic object (usually a Hash), return directly
|
210
|
+
value
|
211
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
212
|
+
inner_type = Regexp.last_match[:inner_type]
|
213
|
+
value.map { |v| _deserialize(inner_type, v) }
|
214
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
215
|
+
k_type = Regexp.last_match[:k_type]
|
216
|
+
v_type = Regexp.last_match[:v_type]
|
217
|
+
{}.tap do |hash|
|
218
|
+
value.each do |k, v|
|
219
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
220
|
+
end
|
221
|
+
end
|
222
|
+
else # model
|
223
|
+
# models (e.g. Pet) or oneOf
|
224
|
+
klass = NetworkApi.const_get(type)
|
225
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
# Returns the string representation of the object
|
230
|
+
# @return [String] String presentation of the object
|
231
|
+
def to_s
|
232
|
+
to_hash.to_s
|
233
|
+
end
|
234
|
+
|
235
|
+
# to_body is an alias to to_hash (backward compatibility)
|
236
|
+
# @return [Hash] Returns the object in the form of hash
|
237
|
+
def to_body
|
238
|
+
to_hash
|
239
|
+
end
|
240
|
+
|
241
|
+
# Returns the object in the form of hash
|
242
|
+
# @return [Hash] Returns the object in the form of hash
|
243
|
+
def to_hash
|
244
|
+
hash = {}
|
245
|
+
self.class.attribute_map.each_pair do |attr, param|
|
246
|
+
value = self.send(attr)
|
247
|
+
if value.nil?
|
248
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
249
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
250
|
+
end
|
251
|
+
|
252
|
+
hash[param] = _to_hash(value)
|
253
|
+
end
|
254
|
+
hash
|
255
|
+
end
|
256
|
+
|
257
|
+
# Outputs non-array value in the form of hash
|
258
|
+
# For object, use to_hash. Otherwise, just return the value
|
259
|
+
# @param [Object] value Any valid value
|
260
|
+
# @return [Hash] Returns the value in the form of hash
|
261
|
+
def _to_hash(value)
|
262
|
+
if value.is_a?(Array)
|
263
|
+
value.compact.map { |v| _to_hash(v) }
|
264
|
+
elsif value.is_a?(Hash)
|
265
|
+
{}.tap do |hash|
|
266
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
267
|
+
end
|
268
|
+
elsif value.respond_to? :to_hash
|
269
|
+
value.to_hash
|
270
|
+
else
|
271
|
+
value
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
end
|
276
|
+
|
277
|
+
end
|