pnap_network_storage_api 2.0.4 → 2.0.5
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/VERSION +1 -1
- data/lib/pnap_network_storage_api/api/storage_networks_api.rb +12 -12
- data/lib/pnap_network_storage_api/api_client.rb +17 -14
- data/lib/pnap_network_storage_api/api_error.rb +1 -1
- data/lib/pnap_network_storage_api/api_model_base.rb +88 -0
- data/lib/pnap_network_storage_api/configuration.rb +11 -1
- data/lib/pnap_network_storage_api/models/error.rb +21 -78
- data/lib/pnap_network_storage_api/models/nfs_permissions.rb +11 -78
- data/lib/pnap_network_storage_api/models/nfs_permissions_create.rb +11 -78
- data/lib/pnap_network_storage_api/models/nfs_permissions_update.rb +11 -78
- data/lib/pnap_network_storage_api/models/permissions.rb +11 -78
- data/lib/pnap_network_storage_api/models/permissions_create.rb +11 -78
- data/lib/pnap_network_storage_api/models/permissions_update.rb +11 -78
- data/lib/pnap_network_storage_api/models/status.rb +1 -1
- data/lib/pnap_network_storage_api/models/storage_network.rb +11 -78
- data/lib/pnap_network_storage_api/models/storage_network_create.rb +23 -80
- data/lib/pnap_network_storage_api/models/storage_network_update.rb +13 -80
- data/lib/pnap_network_storage_api/models/storage_network_volume_create.rb +15 -82
- data/lib/pnap_network_storage_api/models/tag_assignment.rb +41 -78
- data/lib/pnap_network_storage_api/models/tag_assignment_request.rb +21 -78
- data/lib/pnap_network_storage_api/models/volume.rb +11 -78
- data/lib/pnap_network_storage_api/models/volume_create.rb +15 -82
- data/lib/pnap_network_storage_api/models/volume_update.rb +15 -82
- data/lib/pnap_network_storage_api/version.rb +1 -2
- data/lib/pnap_network_storage_api.rb +2 -1
- data/pnap_network_storage_api.gemspec +6 -6
- data/spec/api/storage_networks_api_spec.rb +1 -1
- data/spec/models/error_spec.rb +2 -2
- data/spec/models/nfs_permissions_create_spec.rb +2 -2
- data/spec/models/nfs_permissions_spec.rb +2 -2
- data/spec/models/nfs_permissions_update_spec.rb +2 -2
- data/spec/models/permissions_create_spec.rb +2 -2
- data/spec/models/permissions_spec.rb +2 -2
- data/spec/models/permissions_update_spec.rb +2 -2
- data/spec/models/status_spec.rb +2 -2
- data/spec/models/storage_network_create_spec.rb +2 -2
- data/spec/models/storage_network_spec.rb +2 -2
- data/spec/models/storage_network_update_spec.rb +2 -2
- data/spec/models/storage_network_volume_create_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/models/volume_create_spec.rb +2 -2
- data/spec/models/volume_spec.rb +2 -2
- data/spec/models/volume_update_spec.rb +2 -2
- data/spec/spec_helper.rb +1 -1
- metadata +18 -14
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0
|
|
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
|
|
|
@@ -15,7 +15,7 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module NetworkStorageApi
|
|
17
17
|
# NFS specific permissions on a volume.
|
|
18
|
-
class NfsPermissionsCreate
|
|
18
|
+
class NfsPermissionsCreate < ApiModelBase
|
|
19
19
|
# Read/Write access.
|
|
20
20
|
attr_accessor :read_write
|
|
21
21
|
|
|
@@ -42,9 +42,14 @@ module NetworkStorageApi
|
|
|
42
42
|
}
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
+
# Returns attribute mapping this model knows about
|
|
46
|
+
def self.acceptable_attribute_map
|
|
47
|
+
attribute_map
|
|
48
|
+
end
|
|
49
|
+
|
|
45
50
|
# Returns all the JSON keys this model knows about
|
|
46
51
|
def self.acceptable_attributes
|
|
47
|
-
|
|
52
|
+
acceptable_attribute_map.values
|
|
48
53
|
end
|
|
49
54
|
|
|
50
55
|
# Attribute type mapping.
|
|
@@ -72,9 +77,10 @@ module NetworkStorageApi
|
|
|
72
77
|
end
|
|
73
78
|
|
|
74
79
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
80
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
75
81
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
76
|
-
if (!
|
|
77
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::NfsPermissionsCreate`. Please check the name to make sure it's valid. List of attributes: " +
|
|
82
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
83
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::NfsPermissionsCreate`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
78
84
|
end
|
|
79
85
|
h[k.to_sym] = v
|
|
80
86
|
}
|
|
@@ -172,61 +178,6 @@ module NetworkStorageApi
|
|
|
172
178
|
new(transformed_hash)
|
|
173
179
|
end
|
|
174
180
|
|
|
175
|
-
# Deserializes the data based on type
|
|
176
|
-
# @param string type Data type
|
|
177
|
-
# @param string value Value to be deserialized
|
|
178
|
-
# @return [Object] Deserialized data
|
|
179
|
-
def self._deserialize(type, value)
|
|
180
|
-
case type.to_sym
|
|
181
|
-
when :Time
|
|
182
|
-
Time.parse(value)
|
|
183
|
-
when :Date
|
|
184
|
-
Date.parse(value)
|
|
185
|
-
when :String
|
|
186
|
-
value.to_s
|
|
187
|
-
when :Integer
|
|
188
|
-
value.to_i
|
|
189
|
-
when :Float
|
|
190
|
-
value.to_f
|
|
191
|
-
when :Boolean
|
|
192
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
193
|
-
true
|
|
194
|
-
else
|
|
195
|
-
false
|
|
196
|
-
end
|
|
197
|
-
when :Object
|
|
198
|
-
# generic object (usually a Hash), return directly
|
|
199
|
-
value
|
|
200
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
201
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
202
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
203
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
204
|
-
k_type = Regexp.last_match[:k_type]
|
|
205
|
-
v_type = Regexp.last_match[:v_type]
|
|
206
|
-
{}.tap do |hash|
|
|
207
|
-
value.each do |k, v|
|
|
208
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
209
|
-
end
|
|
210
|
-
end
|
|
211
|
-
else # model
|
|
212
|
-
# models (e.g. Pet) or oneOf
|
|
213
|
-
klass = NetworkStorageApi.const_get(type)
|
|
214
|
-
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
215
|
-
end
|
|
216
|
-
end
|
|
217
|
-
|
|
218
|
-
# Returns the string representation of the object
|
|
219
|
-
# @return [String] String presentation of the object
|
|
220
|
-
def to_s
|
|
221
|
-
to_hash.to_s
|
|
222
|
-
end
|
|
223
|
-
|
|
224
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
225
|
-
# @return [Hash] Returns the object in the form of hash
|
|
226
|
-
def to_body
|
|
227
|
-
to_hash
|
|
228
|
-
end
|
|
229
|
-
|
|
230
181
|
# Returns the object in the form of hash
|
|
231
182
|
# @return [Hash] Returns the object in the form of hash
|
|
232
183
|
def to_hash
|
|
@@ -243,24 +194,6 @@ module NetworkStorageApi
|
|
|
243
194
|
hash
|
|
244
195
|
end
|
|
245
196
|
|
|
246
|
-
# Outputs non-array value in the form of hash
|
|
247
|
-
# For object, use to_hash. Otherwise, just return the value
|
|
248
|
-
# @param [Object] value Any valid value
|
|
249
|
-
# @return [Hash] Returns the value in the form of hash
|
|
250
|
-
def _to_hash(value)
|
|
251
|
-
if value.is_a?(Array)
|
|
252
|
-
value.compact.map { |v| _to_hash(v) }
|
|
253
|
-
elsif value.is_a?(Hash)
|
|
254
|
-
{}.tap do |hash|
|
|
255
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
256
|
-
end
|
|
257
|
-
elsif value.respond_to? :to_hash
|
|
258
|
-
value.to_hash
|
|
259
|
-
else
|
|
260
|
-
value
|
|
261
|
-
end
|
|
262
|
-
end
|
|
263
|
-
|
|
264
197
|
end
|
|
265
198
|
|
|
266
199
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0
|
|
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
|
|
|
@@ -15,7 +15,7 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module NetworkStorageApi
|
|
17
17
|
# Update NFS specific permissions on a volume.
|
|
18
|
-
class NfsPermissionsUpdate
|
|
18
|
+
class NfsPermissionsUpdate < ApiModelBase
|
|
19
19
|
# Read/Write access.
|
|
20
20
|
attr_accessor :read_write
|
|
21
21
|
|
|
@@ -42,9 +42,14 @@ module NetworkStorageApi
|
|
|
42
42
|
}
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
+
# Returns attribute mapping this model knows about
|
|
46
|
+
def self.acceptable_attribute_map
|
|
47
|
+
attribute_map
|
|
48
|
+
end
|
|
49
|
+
|
|
45
50
|
# Returns all the JSON keys this model knows about
|
|
46
51
|
def self.acceptable_attributes
|
|
47
|
-
|
|
52
|
+
acceptable_attribute_map.values
|
|
48
53
|
end
|
|
49
54
|
|
|
50
55
|
# Attribute type mapping.
|
|
@@ -72,9 +77,10 @@ module NetworkStorageApi
|
|
|
72
77
|
end
|
|
73
78
|
|
|
74
79
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
80
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
75
81
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
76
|
-
if (!
|
|
77
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::NfsPermissionsUpdate`. Please check the name to make sure it's valid. List of attributes: " +
|
|
82
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
83
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::NfsPermissionsUpdate`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
78
84
|
end
|
|
79
85
|
h[k.to_sym] = v
|
|
80
86
|
}
|
|
@@ -172,61 +178,6 @@ module NetworkStorageApi
|
|
|
172
178
|
new(transformed_hash)
|
|
173
179
|
end
|
|
174
180
|
|
|
175
|
-
# Deserializes the data based on type
|
|
176
|
-
# @param string type Data type
|
|
177
|
-
# @param string value Value to be deserialized
|
|
178
|
-
# @return [Object] Deserialized data
|
|
179
|
-
def self._deserialize(type, value)
|
|
180
|
-
case type.to_sym
|
|
181
|
-
when :Time
|
|
182
|
-
Time.parse(value)
|
|
183
|
-
when :Date
|
|
184
|
-
Date.parse(value)
|
|
185
|
-
when :String
|
|
186
|
-
value.to_s
|
|
187
|
-
when :Integer
|
|
188
|
-
value.to_i
|
|
189
|
-
when :Float
|
|
190
|
-
value.to_f
|
|
191
|
-
when :Boolean
|
|
192
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
193
|
-
true
|
|
194
|
-
else
|
|
195
|
-
false
|
|
196
|
-
end
|
|
197
|
-
when :Object
|
|
198
|
-
# generic object (usually a Hash), return directly
|
|
199
|
-
value
|
|
200
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
201
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
202
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
203
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
204
|
-
k_type = Regexp.last_match[:k_type]
|
|
205
|
-
v_type = Regexp.last_match[:v_type]
|
|
206
|
-
{}.tap do |hash|
|
|
207
|
-
value.each do |k, v|
|
|
208
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
209
|
-
end
|
|
210
|
-
end
|
|
211
|
-
else # model
|
|
212
|
-
# models (e.g. Pet) or oneOf
|
|
213
|
-
klass = NetworkStorageApi.const_get(type)
|
|
214
|
-
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
215
|
-
end
|
|
216
|
-
end
|
|
217
|
-
|
|
218
|
-
# Returns the string representation of the object
|
|
219
|
-
# @return [String] String presentation of the object
|
|
220
|
-
def to_s
|
|
221
|
-
to_hash.to_s
|
|
222
|
-
end
|
|
223
|
-
|
|
224
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
225
|
-
# @return [Hash] Returns the object in the form of hash
|
|
226
|
-
def to_body
|
|
227
|
-
to_hash
|
|
228
|
-
end
|
|
229
|
-
|
|
230
181
|
# Returns the object in the form of hash
|
|
231
182
|
# @return [Hash] Returns the object in the form of hash
|
|
232
183
|
def to_hash
|
|
@@ -243,24 +194,6 @@ module NetworkStorageApi
|
|
|
243
194
|
hash
|
|
244
195
|
end
|
|
245
196
|
|
|
246
|
-
# Outputs non-array value in the form of hash
|
|
247
|
-
# For object, use to_hash. Otherwise, just return the value
|
|
248
|
-
# @param [Object] value Any valid value
|
|
249
|
-
# @return [Hash] Returns the value in the form of hash
|
|
250
|
-
def _to_hash(value)
|
|
251
|
-
if value.is_a?(Array)
|
|
252
|
-
value.compact.map { |v| _to_hash(v) }
|
|
253
|
-
elsif value.is_a?(Hash)
|
|
254
|
-
{}.tap do |hash|
|
|
255
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
256
|
-
end
|
|
257
|
-
elsif value.respond_to? :to_hash
|
|
258
|
-
value.to_hash
|
|
259
|
-
else
|
|
260
|
-
value
|
|
261
|
-
end
|
|
262
|
-
end
|
|
263
|
-
|
|
264
197
|
end
|
|
265
198
|
|
|
266
199
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0
|
|
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
|
|
|
@@ -15,7 +15,7 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module NetworkStorageApi
|
|
17
17
|
# Permissions for a volume.
|
|
18
|
-
class Permissions
|
|
18
|
+
class Permissions < ApiModelBase
|
|
19
19
|
attr_accessor :nfs
|
|
20
20
|
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -25,9 +25,14 @@ module NetworkStorageApi
|
|
|
25
25
|
}
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
# Returns attribute mapping this model knows about
|
|
29
|
+
def self.acceptable_attribute_map
|
|
30
|
+
attribute_map
|
|
31
|
+
end
|
|
32
|
+
|
|
28
33
|
# Returns all the JSON keys this model knows about
|
|
29
34
|
def self.acceptable_attributes
|
|
30
|
-
|
|
35
|
+
acceptable_attribute_map.values
|
|
31
36
|
end
|
|
32
37
|
|
|
33
38
|
# Attribute type mapping.
|
|
@@ -51,9 +56,10 @@ module NetworkStorageApi
|
|
|
51
56
|
end
|
|
52
57
|
|
|
53
58
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
59
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
54
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
55
|
-
if (!
|
|
56
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::Permissions`. Please check the name to make sure it's valid. List of attributes: " +
|
|
61
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::Permissions`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
57
63
|
end
|
|
58
64
|
h[k.to_sym] = v
|
|
59
65
|
}
|
|
@@ -121,61 +127,6 @@ module NetworkStorageApi
|
|
|
121
127
|
new(transformed_hash)
|
|
122
128
|
end
|
|
123
129
|
|
|
124
|
-
# Deserializes the data based on type
|
|
125
|
-
# @param string type Data type
|
|
126
|
-
# @param string value Value to be deserialized
|
|
127
|
-
# @return [Object] Deserialized data
|
|
128
|
-
def self._deserialize(type, value)
|
|
129
|
-
case type.to_sym
|
|
130
|
-
when :Time
|
|
131
|
-
Time.parse(value)
|
|
132
|
-
when :Date
|
|
133
|
-
Date.parse(value)
|
|
134
|
-
when :String
|
|
135
|
-
value.to_s
|
|
136
|
-
when :Integer
|
|
137
|
-
value.to_i
|
|
138
|
-
when :Float
|
|
139
|
-
value.to_f
|
|
140
|
-
when :Boolean
|
|
141
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
142
|
-
true
|
|
143
|
-
else
|
|
144
|
-
false
|
|
145
|
-
end
|
|
146
|
-
when :Object
|
|
147
|
-
# generic object (usually a Hash), return directly
|
|
148
|
-
value
|
|
149
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
150
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
151
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
152
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
153
|
-
k_type = Regexp.last_match[:k_type]
|
|
154
|
-
v_type = Regexp.last_match[:v_type]
|
|
155
|
-
{}.tap do |hash|
|
|
156
|
-
value.each do |k, v|
|
|
157
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
158
|
-
end
|
|
159
|
-
end
|
|
160
|
-
else # model
|
|
161
|
-
# models (e.g. Pet) or oneOf
|
|
162
|
-
klass = NetworkStorageApi.const_get(type)
|
|
163
|
-
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
164
|
-
end
|
|
165
|
-
end
|
|
166
|
-
|
|
167
|
-
# Returns the string representation of the object
|
|
168
|
-
# @return [String] String presentation of the object
|
|
169
|
-
def to_s
|
|
170
|
-
to_hash.to_s
|
|
171
|
-
end
|
|
172
|
-
|
|
173
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
174
|
-
# @return [Hash] Returns the object in the form of hash
|
|
175
|
-
def to_body
|
|
176
|
-
to_hash
|
|
177
|
-
end
|
|
178
|
-
|
|
179
130
|
# Returns the object in the form of hash
|
|
180
131
|
# @return [Hash] Returns the object in the form of hash
|
|
181
132
|
def to_hash
|
|
@@ -192,24 +143,6 @@ module NetworkStorageApi
|
|
|
192
143
|
hash
|
|
193
144
|
end
|
|
194
145
|
|
|
195
|
-
# Outputs non-array value in the form of hash
|
|
196
|
-
# For object, use to_hash. Otherwise, just return the value
|
|
197
|
-
# @param [Object] value Any valid value
|
|
198
|
-
# @return [Hash] Returns the value in the form of hash
|
|
199
|
-
def _to_hash(value)
|
|
200
|
-
if value.is_a?(Array)
|
|
201
|
-
value.compact.map { |v| _to_hash(v) }
|
|
202
|
-
elsif value.is_a?(Hash)
|
|
203
|
-
{}.tap do |hash|
|
|
204
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
205
|
-
end
|
|
206
|
-
elsif value.respond_to? :to_hash
|
|
207
|
-
value.to_hash
|
|
208
|
-
else
|
|
209
|
-
value
|
|
210
|
-
end
|
|
211
|
-
end
|
|
212
|
-
|
|
213
146
|
end
|
|
214
147
|
|
|
215
148
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0
|
|
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
|
|
|
@@ -15,7 +15,7 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module NetworkStorageApi
|
|
17
17
|
# Update permissions for a volume.
|
|
18
|
-
class PermissionsCreate
|
|
18
|
+
class PermissionsCreate < ApiModelBase
|
|
19
19
|
attr_accessor :nfs
|
|
20
20
|
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -25,9 +25,14 @@ module NetworkStorageApi
|
|
|
25
25
|
}
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
# Returns attribute mapping this model knows about
|
|
29
|
+
def self.acceptable_attribute_map
|
|
30
|
+
attribute_map
|
|
31
|
+
end
|
|
32
|
+
|
|
28
33
|
# Returns all the JSON keys this model knows about
|
|
29
34
|
def self.acceptable_attributes
|
|
30
|
-
|
|
35
|
+
acceptable_attribute_map.values
|
|
31
36
|
end
|
|
32
37
|
|
|
33
38
|
# Attribute type mapping.
|
|
@@ -51,9 +56,10 @@ module NetworkStorageApi
|
|
|
51
56
|
end
|
|
52
57
|
|
|
53
58
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
59
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
54
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
55
|
-
if (!
|
|
56
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::PermissionsCreate`. Please check the name to make sure it's valid. List of attributes: " +
|
|
61
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::PermissionsCreate`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
57
63
|
end
|
|
58
64
|
h[k.to_sym] = v
|
|
59
65
|
}
|
|
@@ -121,61 +127,6 @@ module NetworkStorageApi
|
|
|
121
127
|
new(transformed_hash)
|
|
122
128
|
end
|
|
123
129
|
|
|
124
|
-
# Deserializes the data based on type
|
|
125
|
-
# @param string type Data type
|
|
126
|
-
# @param string value Value to be deserialized
|
|
127
|
-
# @return [Object] Deserialized data
|
|
128
|
-
def self._deserialize(type, value)
|
|
129
|
-
case type.to_sym
|
|
130
|
-
when :Time
|
|
131
|
-
Time.parse(value)
|
|
132
|
-
when :Date
|
|
133
|
-
Date.parse(value)
|
|
134
|
-
when :String
|
|
135
|
-
value.to_s
|
|
136
|
-
when :Integer
|
|
137
|
-
value.to_i
|
|
138
|
-
when :Float
|
|
139
|
-
value.to_f
|
|
140
|
-
when :Boolean
|
|
141
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
142
|
-
true
|
|
143
|
-
else
|
|
144
|
-
false
|
|
145
|
-
end
|
|
146
|
-
when :Object
|
|
147
|
-
# generic object (usually a Hash), return directly
|
|
148
|
-
value
|
|
149
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
150
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
151
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
152
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
153
|
-
k_type = Regexp.last_match[:k_type]
|
|
154
|
-
v_type = Regexp.last_match[:v_type]
|
|
155
|
-
{}.tap do |hash|
|
|
156
|
-
value.each do |k, v|
|
|
157
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
158
|
-
end
|
|
159
|
-
end
|
|
160
|
-
else # model
|
|
161
|
-
# models (e.g. Pet) or oneOf
|
|
162
|
-
klass = NetworkStorageApi.const_get(type)
|
|
163
|
-
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
164
|
-
end
|
|
165
|
-
end
|
|
166
|
-
|
|
167
|
-
# Returns the string representation of the object
|
|
168
|
-
# @return [String] String presentation of the object
|
|
169
|
-
def to_s
|
|
170
|
-
to_hash.to_s
|
|
171
|
-
end
|
|
172
|
-
|
|
173
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
174
|
-
# @return [Hash] Returns the object in the form of hash
|
|
175
|
-
def to_body
|
|
176
|
-
to_hash
|
|
177
|
-
end
|
|
178
|
-
|
|
179
130
|
# Returns the object in the form of hash
|
|
180
131
|
# @return [Hash] Returns the object in the form of hash
|
|
181
132
|
def to_hash
|
|
@@ -192,24 +143,6 @@ module NetworkStorageApi
|
|
|
192
143
|
hash
|
|
193
144
|
end
|
|
194
145
|
|
|
195
|
-
# Outputs non-array value in the form of hash
|
|
196
|
-
# For object, use to_hash. Otherwise, just return the value
|
|
197
|
-
# @param [Object] value Any valid value
|
|
198
|
-
# @return [Hash] Returns the value in the form of hash
|
|
199
|
-
def _to_hash(value)
|
|
200
|
-
if value.is_a?(Array)
|
|
201
|
-
value.compact.map { |v| _to_hash(v) }
|
|
202
|
-
elsif value.is_a?(Hash)
|
|
203
|
-
{}.tap do |hash|
|
|
204
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
205
|
-
end
|
|
206
|
-
elsif value.respond_to? :to_hash
|
|
207
|
-
value.to_hash
|
|
208
|
-
else
|
|
209
|
-
value
|
|
210
|
-
end
|
|
211
|
-
end
|
|
212
|
-
|
|
213
146
|
end
|
|
214
147
|
|
|
215
148
|
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0
|
|
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
|
|
|
@@ -15,7 +15,7 @@ require 'time'
|
|
|
15
15
|
|
|
16
16
|
module NetworkStorageApi
|
|
17
17
|
# Update permissions for a volume.
|
|
18
|
-
class PermissionsUpdate
|
|
18
|
+
class PermissionsUpdate < ApiModelBase
|
|
19
19
|
attr_accessor :nfs
|
|
20
20
|
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
@@ -25,9 +25,14 @@ module NetworkStorageApi
|
|
|
25
25
|
}
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
+
# Returns attribute mapping this model knows about
|
|
29
|
+
def self.acceptable_attribute_map
|
|
30
|
+
attribute_map
|
|
31
|
+
end
|
|
32
|
+
|
|
28
33
|
# Returns all the JSON keys this model knows about
|
|
29
34
|
def self.acceptable_attributes
|
|
30
|
-
|
|
35
|
+
acceptable_attribute_map.values
|
|
31
36
|
end
|
|
32
37
|
|
|
33
38
|
# Attribute type mapping.
|
|
@@ -51,9 +56,10 @@ module NetworkStorageApi
|
|
|
51
56
|
end
|
|
52
57
|
|
|
53
58
|
# check to see if the attribute exists and convert string to symbol for hash key
|
|
59
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
|
54
60
|
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
55
|
-
if (!
|
|
56
|
-
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::PermissionsUpdate`. Please check the name to make sure it's valid. List of attributes: " +
|
|
61
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
|
62
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `NetworkStorageApi::PermissionsUpdate`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
|
57
63
|
end
|
|
58
64
|
h[k.to_sym] = v
|
|
59
65
|
}
|
|
@@ -121,61 +127,6 @@ module NetworkStorageApi
|
|
|
121
127
|
new(transformed_hash)
|
|
122
128
|
end
|
|
123
129
|
|
|
124
|
-
# Deserializes the data based on type
|
|
125
|
-
# @param string type Data type
|
|
126
|
-
# @param string value Value to be deserialized
|
|
127
|
-
# @return [Object] Deserialized data
|
|
128
|
-
def self._deserialize(type, value)
|
|
129
|
-
case type.to_sym
|
|
130
|
-
when :Time
|
|
131
|
-
Time.parse(value)
|
|
132
|
-
when :Date
|
|
133
|
-
Date.parse(value)
|
|
134
|
-
when :String
|
|
135
|
-
value.to_s
|
|
136
|
-
when :Integer
|
|
137
|
-
value.to_i
|
|
138
|
-
when :Float
|
|
139
|
-
value.to_f
|
|
140
|
-
when :Boolean
|
|
141
|
-
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
142
|
-
true
|
|
143
|
-
else
|
|
144
|
-
false
|
|
145
|
-
end
|
|
146
|
-
when :Object
|
|
147
|
-
# generic object (usually a Hash), return directly
|
|
148
|
-
value
|
|
149
|
-
when /\AArray<(?<inner_type>.+)>\z/
|
|
150
|
-
inner_type = Regexp.last_match[:inner_type]
|
|
151
|
-
value.map { |v| _deserialize(inner_type, v) }
|
|
152
|
-
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
153
|
-
k_type = Regexp.last_match[:k_type]
|
|
154
|
-
v_type = Regexp.last_match[:v_type]
|
|
155
|
-
{}.tap do |hash|
|
|
156
|
-
value.each do |k, v|
|
|
157
|
-
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
158
|
-
end
|
|
159
|
-
end
|
|
160
|
-
else # model
|
|
161
|
-
# models (e.g. Pet) or oneOf
|
|
162
|
-
klass = NetworkStorageApi.const_get(type)
|
|
163
|
-
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
164
|
-
end
|
|
165
|
-
end
|
|
166
|
-
|
|
167
|
-
# Returns the string representation of the object
|
|
168
|
-
# @return [String] String presentation of the object
|
|
169
|
-
def to_s
|
|
170
|
-
to_hash.to_s
|
|
171
|
-
end
|
|
172
|
-
|
|
173
|
-
# to_body is an alias to to_hash (backward compatibility)
|
|
174
|
-
# @return [Hash] Returns the object in the form of hash
|
|
175
|
-
def to_body
|
|
176
|
-
to_hash
|
|
177
|
-
end
|
|
178
|
-
|
|
179
130
|
# Returns the object in the form of hash
|
|
180
131
|
# @return [Hash] Returns the object in the form of hash
|
|
181
132
|
def to_hash
|
|
@@ -192,24 +143,6 @@ module NetworkStorageApi
|
|
|
192
143
|
hash
|
|
193
144
|
end
|
|
194
145
|
|
|
195
|
-
# Outputs non-array value in the form of hash
|
|
196
|
-
# For object, use to_hash. Otherwise, just return the value
|
|
197
|
-
# @param [Object] value Any valid value
|
|
198
|
-
# @return [Hash] Returns the value in the form of hash
|
|
199
|
-
def _to_hash(value)
|
|
200
|
-
if value.is_a?(Array)
|
|
201
|
-
value.compact.map { |v| _to_hash(v) }
|
|
202
|
-
elsif value.is_a?(Hash)
|
|
203
|
-
{}.tap do |hash|
|
|
204
|
-
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
205
|
-
end
|
|
206
|
-
elsif value.respond_to? :to_hash
|
|
207
|
-
value.to_hash
|
|
208
|
-
else
|
|
209
|
-
value
|
|
210
|
-
end
|
|
211
|
-
end
|
|
212
|
-
|
|
213
146
|
end
|
|
214
147
|
|
|
215
148
|
end
|