autosde_openapi_client 1.0.49 → 1.0.50

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1c5213044fbd0322283bd46dfd2bce1edb8251883a019e6619eb80fd2bd0912
4
- data.tar.gz: '0948801b26be6cd5ae31fc6c37a64c52f95b0fbe8916a2d914cbd77d7b4a601b'
3
+ metadata.gz: e142f39acfbe1d3e4cec68d4a6c827799b98cc5c8065e812fb74d4a5b805b74d
4
+ data.tar.gz: 7e6a12fb115d6d08c27ba6190f3ccf6cdcd8c9e6c1bb0166349442fadebd04f0
5
5
  SHA512:
6
- metadata.gz: a86f2e8ad20fd2b739a15623393e433d4b6f20115096bd6af05cddee737953060e19441f74814c295c40bbdefbb1eea6058df1717ad3aca1ae238befd1ac8294
7
- data.tar.gz: 4b1ee8e053dff5c8c6c7cdea02e1b18aa691bf0c9b7ca79b4065b9015e162807944e92db3abf07fd30df813a39d34c2f68af589d94a58b3798fdb5ed341a353e
6
+ metadata.gz: 5a7fdff16a07b53b85375323498fd10af829b12998deded113d03188fce0cd001c7e811db36fda275d4e93aece5686c2f9dbb651106408d35a8b49ceecf3000b
7
+ data.tar.gz: 964443ca9dcb42940d3adf5ee0d9339deebebd122af17eca63657daf67be5f6519fdb501a3bb59b0f7c2e7ebf9eb9bc43349127474f5db21f0051c5434e6a76a
data/docs/VolumeCreate.md CHANGED
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **compliant** | **Boolean** | compliant | [optional][default to false] |
8
8
  | **component_state** | **String** | component_state | [optional] |
9
+ | **count** | **Integer** | count | [optional][default to 1] |
9
10
  | **name** | **String** | name | [optional] |
10
11
  | **service** | **String** | !!uuid of service | [optional] |
11
12
  | **size** | **Integer** | size | [optional] |
@@ -21,6 +22,7 @@ require 'autosde_openapi_client'
21
22
  instance = AutosdeOpenapiClient::VolumeCreate.new(
22
23
  compliant: null,
23
24
  component_state: null,
25
+ count: null,
24
26
  name: null,
25
27
  service: null,
26
28
  size: null,
@@ -22,6 +22,9 @@ module AutosdeOpenapiClient
22
22
  # component_state
23
23
  attr_accessor :component_state
24
24
 
25
+ # count
26
+ attr_accessor :count
27
+
25
28
  # name
26
29
  attr_accessor :name
27
30
 
@@ -67,6 +70,7 @@ module AutosdeOpenapiClient
67
70
  {
68
71
  :'compliant' => :'compliant',
69
72
  :'component_state' => :'component_state',
73
+ :'count' => :'count',
70
74
  :'name' => :'name',
71
75
  :'service' => :'service',
72
76
  :'size' => :'size',
@@ -86,6 +90,7 @@ module AutosdeOpenapiClient
86
90
  {
87
91
  :'compliant' => :'Boolean',
88
92
  :'component_state' => :'String',
93
+ :'count' => :'Integer',
89
94
  :'name' => :'String',
90
95
  :'service' => :'String',
91
96
  :'size' => :'Integer',
@@ -126,6 +131,12 @@ module AutosdeOpenapiClient
126
131
  self.component_state = attributes[:'component_state']
127
132
  end
128
133
 
134
+ if attributes.key?(:'count')
135
+ self.count = attributes[:'count']
136
+ else
137
+ self.count = 1
138
+ end
139
+
129
140
  if attributes.key?(:'name')
130
141
  self.name = attributes[:'name']
131
142
  end
@@ -188,6 +199,7 @@ module AutosdeOpenapiClient
188
199
  self.class == o.class &&
189
200
  compliant == o.compliant &&
190
201
  component_state == o.component_state &&
202
+ count == o.count &&
191
203
  name == o.name &&
192
204
  service == o.service &&
193
205
  size == o.size &&
@@ -205,7 +217,7 @@ module AutosdeOpenapiClient
205
217
  # Calculates hash code according to all attributes.
206
218
  # @return [Integer] Hash code
207
219
  def hash
208
- [compliant, component_state, name, service, size, status, unmapped_since, uuid].hash
220
+ [compliant, component_state, count, name, service, size, status, unmapped_since, uuid].hash
209
221
  end
210
222
 
211
223
  # 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.49
6
+ The version of the OpenAPI document: 1.0.50
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.49'
14
+ VERSION = '1.0.50'
15
15
  end
@@ -41,6 +41,12 @@ describe AutosdeOpenapiClient::VolumeCreate do
41
41
  end
42
42
  end
43
43
 
44
+ describe 'test attribute "count"' do
45
+ it 'should work' do
46
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
47
+ end
48
+ end
49
+
44
50
  describe 'test attribute "name"' do
45
51
  it 'should work' do
46
52
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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.49
4
+ version: 1.0.50
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-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus