autosde_openapi_client 1.0.23 → 1.0.27
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/autosde_openapi_client.gemspec +1 -1
- data/docs/StorageHost.md +4 -0
- data/docs/StorageHostCreate.md +4 -0
- data/docs/StorageHostResponse.md +4 -0
- data/docs/StorageSystem.md +2 -0
- data/lib/autosde_openapi_client/models/storage_host.rb +22 -2
- data/lib/autosde_openapi_client/models/storage_host_create.rb +21 -1
- data/lib/autosde_openapi_client/models/storage_host_response.rb +21 -1
- data/lib/autosde_openapi_client/models/storage_system.rb +13 -1
- data/lib/autosde_openapi_client/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e459dfc81f7edea300be92e01fea45e5c83a8a2b4a72f5e2ac9cb1f799e314b5
|
4
|
+
data.tar.gz: 1cf337a841af3ae8be3401b09a8d5adeef7464b2ab2c86abf824c6850601a207
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c28a2416111652bedb59b3fdc4a67bfaaac1a323438cd674d2fafe4714be1f884a7a5c851b349f1df414a506b8b30b78edd930d6a472272f137eb68aba8a66d
|
7
|
+
data.tar.gz: c7053b6a0997b4c6469ee8a9a07b6914da4d09189687145a2fdc785a5c3a9d95e436e754bcaf14279814a30f53ce2a9fe70e4d737782f5b90616a92413b603cb
|
@@ -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://github.com/Autosde/autosde-oas/
|
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/StorageHost.md
CHANGED
@@ -6,8 +6,10 @@
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **component_state** | **String** | component_state | [optional] |
|
8
8
|
| **description** | **String** | description | [optional] |
|
9
|
+
| **host_cluster_name** | **String** | host_cluster_name | [optional] |
|
9
10
|
| **io_groups** | **String** | io_groups | [optional] |
|
10
11
|
| **name** | **String** | The Storage Host Name | [optional] |
|
12
|
+
| **status** | **String** | status | [optional] |
|
11
13
|
| **storage_system** | [**StorageSystem**](StorageSystem.md) | | [optional] |
|
12
14
|
| **uuid** | **String** | uuid | [optional] |
|
13
15
|
| **volumes** | [**Volume**](Volume.md) | | [optional] |
|
@@ -20,8 +22,10 @@ require 'autosde_openapi_client'
|
|
20
22
|
instance = AutosdeOpenapiClient::StorageHost.new(
|
21
23
|
component_state: null,
|
22
24
|
description: null,
|
25
|
+
host_cluster_name: null,
|
23
26
|
io_groups: null,
|
24
27
|
name: null,
|
28
|
+
status: null,
|
25
29
|
storage_system: null,
|
26
30
|
uuid: null,
|
27
31
|
volumes: null
|
data/docs/StorageHostCreate.md
CHANGED
@@ -8,10 +8,12 @@
|
|
8
8
|
| **chap_secret** | **String** | chap_secret | [optional] |
|
9
9
|
| **component_state** | **String** | component_state | [optional] |
|
10
10
|
| **description** | **String** | description | [optional] |
|
11
|
+
| **host_cluster_name** | **String** | host_cluster_name | [optional] |
|
11
12
|
| **io_groups** | **String** | io_groups | [optional] |
|
12
13
|
| **iqn** | **String** | | [optional] |
|
13
14
|
| **name** | **String** | The Storage Host Name | [optional] |
|
14
15
|
| **port_type** | **String** | port_type | [optional] |
|
16
|
+
| **status** | **String** | status | [optional] |
|
15
17
|
| **storage_system** | [**StorageSystem**](StorageSystem.md) | | [optional] |
|
16
18
|
| **volumes** | [**Volume**](Volume.md) | | [optional] |
|
17
19
|
| **wwpn** | **String** | wwpn | [optional] |
|
@@ -26,10 +28,12 @@ instance = AutosdeOpenapiClient::StorageHostCreate.new(
|
|
26
28
|
chap_secret: null,
|
27
29
|
component_state: null,
|
28
30
|
description: null,
|
31
|
+
host_cluster_name: null,
|
29
32
|
io_groups: null,
|
30
33
|
iqn: null,
|
31
34
|
name: null,
|
32
35
|
port_type: null,
|
36
|
+
status: null,
|
33
37
|
storage_system: null,
|
34
38
|
volumes: null,
|
35
39
|
wwpn: null
|
data/docs/StorageHostResponse.md
CHANGED
@@ -7,8 +7,10 @@
|
|
7
7
|
| **addresses** | [**Array<Address>**](Address.md) | addresses | [optional] |
|
8
8
|
| **component_state** | **String** | component_state | [optional] |
|
9
9
|
| **description** | **String** | description | [optional] |
|
10
|
+
| **host_cluster_name** | **String** | host_cluster_name | [optional] |
|
10
11
|
| **io_groups** | **String** | io_groups | [optional] |
|
11
12
|
| **name** | **String** | The Storage Host Name | [optional] |
|
13
|
+
| **status** | **String** | status | [optional] |
|
12
14
|
| **storage_system** | **String** | !!uuid of storage_system | [optional] |
|
13
15
|
| **uuid** | **String** | uuid | [optional] |
|
14
16
|
| **volumes** | [**Array<Volume>**](Volume.md) | volumes | [optional] |
|
@@ -22,8 +24,10 @@ instance = AutosdeOpenapiClient::StorageHostResponse.new(
|
|
22
24
|
addresses: null,
|
23
25
|
component_state: null,
|
24
26
|
description: null,
|
27
|
+
host_cluster_name: null,
|
25
28
|
io_groups: null,
|
26
29
|
name: null,
|
30
|
+
status: null,
|
27
31
|
storage_system: null,
|
28
32
|
uuid: null,
|
29
33
|
volumes: null
|
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,
|
@@ -14,7 +14,7 @@ require 'date'
|
|
14
14
|
require 'time'
|
15
15
|
|
16
16
|
module AutosdeOpenapiClient
|
17
|
-
#
|
17
|
+
# StorageHost
|
18
18
|
class StorageHost
|
19
19
|
# component_state
|
20
20
|
attr_accessor :component_state
|
@@ -22,12 +22,18 @@ module AutosdeOpenapiClient
|
|
22
22
|
# description
|
23
23
|
attr_accessor :description
|
24
24
|
|
25
|
+
# host_cluster_name
|
26
|
+
attr_accessor :host_cluster_name
|
27
|
+
|
25
28
|
# io_groups
|
26
29
|
attr_accessor :io_groups
|
27
30
|
|
28
31
|
# The Storage Host Name
|
29
32
|
attr_accessor :name
|
30
33
|
|
34
|
+
# status
|
35
|
+
attr_accessor :status
|
36
|
+
|
31
37
|
attr_accessor :storage_system
|
32
38
|
|
33
39
|
# uuid
|
@@ -62,8 +68,10 @@ module AutosdeOpenapiClient
|
|
62
68
|
{
|
63
69
|
:'component_state' => :'component_state',
|
64
70
|
:'description' => :'description',
|
71
|
+
:'host_cluster_name' => :'host_cluster_name',
|
65
72
|
:'io_groups' => :'io_groups',
|
66
73
|
:'name' => :'name',
|
74
|
+
:'status' => :'status',
|
67
75
|
:'storage_system' => :'storage_system',
|
68
76
|
:'uuid' => :'uuid',
|
69
77
|
:'volumes' => :'volumes'
|
@@ -80,8 +88,10 @@ module AutosdeOpenapiClient
|
|
80
88
|
{
|
81
89
|
:'component_state' => :'String',
|
82
90
|
:'description' => :'String',
|
91
|
+
:'host_cluster_name' => :'String',
|
83
92
|
:'io_groups' => :'String',
|
84
93
|
:'name' => :'String',
|
94
|
+
:'status' => :'String',
|
85
95
|
:'storage_system' => :'StorageSystem',
|
86
96
|
:'uuid' => :'String',
|
87
97
|
:'volumes' => :'Volume'
|
@@ -117,6 +127,10 @@ module AutosdeOpenapiClient
|
|
117
127
|
self.description = attributes[:'description']
|
118
128
|
end
|
119
129
|
|
130
|
+
if attributes.key?(:'host_cluster_name')
|
131
|
+
self.host_cluster_name = attributes[:'host_cluster_name']
|
132
|
+
end
|
133
|
+
|
120
134
|
if attributes.key?(:'io_groups')
|
121
135
|
self.io_groups = attributes[:'io_groups']
|
122
136
|
end
|
@@ -125,6 +139,10 @@ module AutosdeOpenapiClient
|
|
125
139
|
self.name = attributes[:'name']
|
126
140
|
end
|
127
141
|
|
142
|
+
if attributes.key?(:'status')
|
143
|
+
self.status = attributes[:'status']
|
144
|
+
end
|
145
|
+
|
128
146
|
if attributes.key?(:'storage_system')
|
129
147
|
self.storage_system = attributes[:'storage_system']
|
130
148
|
end
|
@@ -175,8 +193,10 @@ module AutosdeOpenapiClient
|
|
175
193
|
self.class == o.class &&
|
176
194
|
component_state == o.component_state &&
|
177
195
|
description == o.description &&
|
196
|
+
host_cluster_name == o.host_cluster_name &&
|
178
197
|
io_groups == o.io_groups &&
|
179
198
|
name == o.name &&
|
199
|
+
status == o.status &&
|
180
200
|
storage_system == o.storage_system &&
|
181
201
|
uuid == o.uuid &&
|
182
202
|
volumes == o.volumes
|
@@ -191,7 +211,7 @@ module AutosdeOpenapiClient
|
|
191
211
|
# Calculates hash code according to all attributes.
|
192
212
|
# @return [Integer] Hash code
|
193
213
|
def hash
|
194
|
-
[component_state, description, io_groups, name, storage_system, uuid, volumes].hash
|
214
|
+
[component_state, description, host_cluster_name, io_groups, name, status, storage_system, uuid, volumes].hash
|
195
215
|
end
|
196
216
|
|
197
217
|
# Builds the object from hash
|
@@ -28,6 +28,9 @@ module AutosdeOpenapiClient
|
|
28
28
|
# description
|
29
29
|
attr_accessor :description
|
30
30
|
|
31
|
+
# host_cluster_name
|
32
|
+
attr_accessor :host_cluster_name
|
33
|
+
|
31
34
|
# io_groups
|
32
35
|
attr_accessor :io_groups
|
33
36
|
|
@@ -39,6 +42,9 @@ module AutosdeOpenapiClient
|
|
39
42
|
# port_type
|
40
43
|
attr_accessor :port_type
|
41
44
|
|
45
|
+
# status
|
46
|
+
attr_accessor :status
|
47
|
+
|
42
48
|
attr_accessor :storage_system
|
43
49
|
|
44
50
|
attr_accessor :volumes
|
@@ -75,10 +81,12 @@ module AutosdeOpenapiClient
|
|
75
81
|
:'chap_secret' => :'chap_secret',
|
76
82
|
:'component_state' => :'component_state',
|
77
83
|
:'description' => :'description',
|
84
|
+
:'host_cluster_name' => :'host_cluster_name',
|
78
85
|
:'io_groups' => :'io_groups',
|
79
86
|
:'iqn' => :'iqn',
|
80
87
|
:'name' => :'name',
|
81
88
|
:'port_type' => :'port_type',
|
89
|
+
:'status' => :'status',
|
82
90
|
:'storage_system' => :'storage_system',
|
83
91
|
:'volumes' => :'volumes',
|
84
92
|
:'wwpn' => :'wwpn'
|
@@ -97,10 +105,12 @@ module AutosdeOpenapiClient
|
|
97
105
|
:'chap_secret' => :'String',
|
98
106
|
:'component_state' => :'String',
|
99
107
|
:'description' => :'String',
|
108
|
+
:'host_cluster_name' => :'String',
|
100
109
|
:'io_groups' => :'String',
|
101
110
|
:'iqn' => :'String',
|
102
111
|
:'name' => :'String',
|
103
112
|
:'port_type' => :'String',
|
113
|
+
:'status' => :'String',
|
104
114
|
:'storage_system' => :'StorageSystem',
|
105
115
|
:'volumes' => :'Volume',
|
106
116
|
:'wwpn' => :'String'
|
@@ -144,6 +154,10 @@ module AutosdeOpenapiClient
|
|
144
154
|
self.description = attributes[:'description']
|
145
155
|
end
|
146
156
|
|
157
|
+
if attributes.key?(:'host_cluster_name')
|
158
|
+
self.host_cluster_name = attributes[:'host_cluster_name']
|
159
|
+
end
|
160
|
+
|
147
161
|
if attributes.key?(:'io_groups')
|
148
162
|
self.io_groups = attributes[:'io_groups']
|
149
163
|
end
|
@@ -160,6 +174,10 @@ module AutosdeOpenapiClient
|
|
160
174
|
self.port_type = attributes[:'port_type']
|
161
175
|
end
|
162
176
|
|
177
|
+
if attributes.key?(:'status')
|
178
|
+
self.status = attributes[:'status']
|
179
|
+
end
|
180
|
+
|
163
181
|
if attributes.key?(:'storage_system')
|
164
182
|
self.storage_system = attributes[:'storage_system']
|
165
183
|
end
|
@@ -224,10 +242,12 @@ module AutosdeOpenapiClient
|
|
224
242
|
chap_secret == o.chap_secret &&
|
225
243
|
component_state == o.component_state &&
|
226
244
|
description == o.description &&
|
245
|
+
host_cluster_name == o.host_cluster_name &&
|
227
246
|
io_groups == o.io_groups &&
|
228
247
|
iqn == o.iqn &&
|
229
248
|
name == o.name &&
|
230
249
|
port_type == o.port_type &&
|
250
|
+
status == o.status &&
|
231
251
|
storage_system == o.storage_system &&
|
232
252
|
volumes == o.volumes &&
|
233
253
|
wwpn == o.wwpn
|
@@ -242,7 +262,7 @@ module AutosdeOpenapiClient
|
|
242
262
|
# Calculates hash code according to all attributes.
|
243
263
|
# @return [Integer] Hash code
|
244
264
|
def hash
|
245
|
-
[chap_name, chap_secret, component_state, description, io_groups, iqn, name, port_type, storage_system, volumes, wwpn].hash
|
265
|
+
[chap_name, chap_secret, component_state, description, host_cluster_name, io_groups, iqn, name, port_type, status, storage_system, volumes, wwpn].hash
|
246
266
|
end
|
247
267
|
|
248
268
|
# Builds the object from hash
|
@@ -25,12 +25,18 @@ module AutosdeOpenapiClient
|
|
25
25
|
# description
|
26
26
|
attr_accessor :description
|
27
27
|
|
28
|
+
# host_cluster_name
|
29
|
+
attr_accessor :host_cluster_name
|
30
|
+
|
28
31
|
# io_groups
|
29
32
|
attr_accessor :io_groups
|
30
33
|
|
31
34
|
# The Storage Host Name
|
32
35
|
attr_accessor :name
|
33
36
|
|
37
|
+
# status
|
38
|
+
attr_accessor :status
|
39
|
+
|
34
40
|
# !!uuid of storage_system
|
35
41
|
attr_accessor :storage_system
|
36
42
|
|
@@ -68,8 +74,10 @@ module AutosdeOpenapiClient
|
|
68
74
|
:'addresses' => :'addresses',
|
69
75
|
:'component_state' => :'component_state',
|
70
76
|
:'description' => :'description',
|
77
|
+
:'host_cluster_name' => :'host_cluster_name',
|
71
78
|
:'io_groups' => :'io_groups',
|
72
79
|
:'name' => :'name',
|
80
|
+
:'status' => :'status',
|
73
81
|
:'storage_system' => :'storage_system',
|
74
82
|
:'uuid' => :'uuid',
|
75
83
|
:'volumes' => :'volumes'
|
@@ -87,8 +95,10 @@ module AutosdeOpenapiClient
|
|
87
95
|
:'addresses' => :'Array<Address>',
|
88
96
|
:'component_state' => :'String',
|
89
97
|
:'description' => :'String',
|
98
|
+
:'host_cluster_name' => :'String',
|
90
99
|
:'io_groups' => :'String',
|
91
100
|
:'name' => :'String',
|
101
|
+
:'status' => :'String',
|
92
102
|
:'storage_system' => :'String',
|
93
103
|
:'uuid' => :'String',
|
94
104
|
:'volumes' => :'Array<Volume>'
|
@@ -130,6 +140,10 @@ module AutosdeOpenapiClient
|
|
130
140
|
self.description = attributes[:'description']
|
131
141
|
end
|
132
142
|
|
143
|
+
if attributes.key?(:'host_cluster_name')
|
144
|
+
self.host_cluster_name = attributes[:'host_cluster_name']
|
145
|
+
end
|
146
|
+
|
133
147
|
if attributes.key?(:'io_groups')
|
134
148
|
self.io_groups = attributes[:'io_groups']
|
135
149
|
end
|
@@ -138,6 +152,10 @@ module AutosdeOpenapiClient
|
|
138
152
|
self.name = attributes[:'name']
|
139
153
|
end
|
140
154
|
|
155
|
+
if attributes.key?(:'status')
|
156
|
+
self.status = attributes[:'status']
|
157
|
+
end
|
158
|
+
|
141
159
|
if attributes.key?(:'storage_system')
|
142
160
|
self.storage_system = attributes[:'storage_system']
|
143
161
|
end
|
@@ -191,8 +209,10 @@ module AutosdeOpenapiClient
|
|
191
209
|
addresses == o.addresses &&
|
192
210
|
component_state == o.component_state &&
|
193
211
|
description == o.description &&
|
212
|
+
host_cluster_name == o.host_cluster_name &&
|
194
213
|
io_groups == o.io_groups &&
|
195
214
|
name == o.name &&
|
215
|
+
status == o.status &&
|
196
216
|
storage_system == o.storage_system &&
|
197
217
|
uuid == o.uuid &&
|
198
218
|
volumes == o.volumes
|
@@ -207,7 +227,7 @@ module AutosdeOpenapiClient
|
|
207
227
|
# Calculates hash code according to all attributes.
|
208
228
|
# @return [Integer] Hash code
|
209
229
|
def hash
|
210
|
-
[addresses, component_state, description, io_groups, name, storage_system, uuid, volumes].hash
|
230
|
+
[addresses, component_state, description, host_cluster_name, io_groups, name, status, storage_system, uuid, volumes].hash
|
211
231
|
end
|
212
232
|
|
213
233
|
# Builds the object from hash
|
@@ -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.27
|
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.27'
|
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.27
|
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-28 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://github.com/Autosde/autosde-oas/
|
283
|
+
homepage: https://github.com/Autosde/autosde-oas/
|
284
284
|
licenses:
|
285
285
|
- Apache-2.0
|
286
286
|
metadata: {}
|