autosde_openapi_client 1.0.22 → 1.0.26
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ae11310a39d6087d6fc09de9023f39e563f90aca241d3acaf315108397beb18
|
4
|
+
data.tar.gz: b7fa62dde07fd694b2755956346759457826c16cef5d3f4282e7343b4a8f9872
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe127f918bd33838131aa7e179a2226d2a4151340f4166ac92ba8847f31825be7b4698cf5eaea532aeab4fe93aa7ec83f362338bcbba6da5fa9bf4ea184837f7
|
7
|
+
data.tar.gz: 8d0c5ccdff965c0d1b1e71b6cd4d1562f49fa0ffb9b36b178d4809e6b37dcb24919dad44ce3300e600283b093ab2e7acfd2bbee66581a34af6145a5a739e6539
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
22
22
|
s.authors = ["OpenAPI-Generator"]
|
23
23
|
s.email = ["autosde@il.ibm.com"]
|
24
|
-
s.homepage = "https://
|
24
|
+
s.homepage = "https://github.com/Autosde/autosde-oas/"
|
25
25
|
s.summary = "Site Manager API Ruby Gem"
|
26
26
|
s.description = "Site Manager API"
|
27
27
|
s.license = "Apache-2.0"
|
data/docs/StorageSystem.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **auto_add_pools** | **Boolean** | auto_add_pools | [optional][default to false] |
|
7
8
|
| **component_state** | **String** | component_state | [optional] |
|
8
9
|
| **management_ip** | **String** | management_ip | [optional] |
|
9
10
|
| **name** | **String** | name | [optional] |
|
@@ -18,6 +19,7 @@
|
|
18
19
|
require 'autosde_openapi_client'
|
19
20
|
|
20
21
|
instance = AutosdeOpenapiClient::StorageSystem.new(
|
22
|
+
auto_add_pools: null,
|
21
23
|
component_state: null,
|
22
24
|
management_ip: null,
|
23
25
|
name: null,
|
@@ -16,6 +16,9 @@ require 'time'
|
|
16
16
|
module AutosdeOpenapiClient
|
17
17
|
# Use to define storage system properties.
|
18
18
|
class StorageSystem
|
19
|
+
# auto_add_pools
|
20
|
+
attr_accessor :auto_add_pools
|
21
|
+
|
19
22
|
# component_state
|
20
23
|
attr_accessor :component_state
|
21
24
|
|
@@ -61,6 +64,7 @@ module AutosdeOpenapiClient
|
|
61
64
|
# Attribute mapping from ruby-style variable name to JSON key.
|
62
65
|
def self.attribute_map
|
63
66
|
{
|
67
|
+
:'auto_add_pools' => :'auto_add_pools',
|
64
68
|
:'component_state' => :'component_state',
|
65
69
|
:'management_ip' => :'management_ip',
|
66
70
|
:'name' => :'name',
|
@@ -79,6 +83,7 @@ module AutosdeOpenapiClient
|
|
79
83
|
# Attribute type mapping.
|
80
84
|
def self.openapi_types
|
81
85
|
{
|
86
|
+
:'auto_add_pools' => :'Boolean',
|
82
87
|
:'component_state' => :'String',
|
83
88
|
:'management_ip' => :'String',
|
84
89
|
:'name' => :'String',
|
@@ -110,6 +115,12 @@ module AutosdeOpenapiClient
|
|
110
115
|
h[k.to_sym] = v
|
111
116
|
}
|
112
117
|
|
118
|
+
if attributes.key?(:'auto_add_pools')
|
119
|
+
self.auto_add_pools = attributes[:'auto_add_pools']
|
120
|
+
else
|
121
|
+
self.auto_add_pools = false
|
122
|
+
end
|
123
|
+
|
113
124
|
if attributes.key?(:'component_state')
|
114
125
|
self.component_state = attributes[:'component_state']
|
115
126
|
end
|
@@ -201,6 +212,7 @@ module AutosdeOpenapiClient
|
|
201
212
|
def ==(o)
|
202
213
|
return true if self.equal?(o)
|
203
214
|
self.class == o.class &&
|
215
|
+
auto_add_pools == o.auto_add_pools &&
|
204
216
|
component_state == o.component_state &&
|
205
217
|
management_ip == o.management_ip &&
|
206
218
|
name == o.name &&
|
@@ -219,7 +231,7 @@ module AutosdeOpenapiClient
|
|
219
231
|
# Calculates hash code according to all attributes.
|
220
232
|
# @return [Integer] Hash code
|
221
233
|
def hash
|
222
|
-
[component_state, management_ip, name, storage_array, storage_family, system_type, uuid].hash
|
234
|
+
[auto_add_pools, component_state, management_ip, name, storage_array, storage_family, system_type, uuid].hash
|
223
235
|
end
|
224
236
|
|
225
237
|
# Builds the object from hash
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Site Manager API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.0.
|
6
|
+
The version of the OpenAPI document: 1.0.26
|
7
7
|
Contact: autosde@il.ibm.com
|
8
8
|
Generated by: https://openapi-generator.tech
|
9
9
|
OpenAPI Generator version: 5.0.0
|
@@ -11,5 +11,5 @@ OpenAPI Generator version: 5.0.0
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
module AutosdeOpenapiClient
|
14
|
-
VERSION = '1.0.
|
14
|
+
VERSION = '1.0.26'
|
15
15
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autosde_openapi_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -280,7 +280,7 @@ files:
|
|
280
280
|
- spec/models/volume_spec.rb
|
281
281
|
- spec/models/volume_update_spec.rb
|
282
282
|
- spec/spec_helper.rb
|
283
|
-
homepage: https://
|
283
|
+
homepage: https://github.com/Autosde/autosde-oas/
|
284
284
|
licenses:
|
285
285
|
- Apache-2.0
|
286
286
|
metadata: {}
|