autosde_openapi_client 1.1.21 → 1.1.22

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: 71e4248fe17ad219a70e978ab617bee2c016ece02240dd60ced316e3f9042366
4
- data.tar.gz: 276fc3f01739bd4db44c0394f7e8fbc0e0707672d7beb7f904a176fbe59d8ae8
3
+ metadata.gz: 7f82dc3daaf673e019101ba964602d3b195ccff60155ffad5f7727531fe7dc73
4
+ data.tar.gz: f2df4b35da104af8d37493aab37f800a94f02a5dfe3f272a7f36305adb494319
5
5
  SHA512:
6
- metadata.gz: 482d69165f8d1e7216b2e930f9466dbe8595b27e63b8d9b63cb953233552e35d95b360f1ebf33ac8b1856eb4e6c08df1967990f1a3c6e5ea6ff8670274114c32
7
- data.tar.gz: 454d953b769c1231575dfce8f0cc5d79c9c04378e48972bb96de37af3524dbfd9cd064ffb1bb16e91b01eddd35f7e085474bf68d253225b3c7c68634634f5d8b
6
+ metadata.gz: f013c8831f93787e50f9b9601d8f7214a535029b78bf9a3ddf3336d4646306e2430334fdab87e9615ebf661de8c6df7bce700f47311d13d255ab35486e08a453
7
+ data.tar.gz: 8ecaaf883ed61b7ea72e51dbb605377675afb84139dfb5c49af34592bc6b9b2a34e4b5c4559a29c8703d4d91925890b8c539ec38d3ca8609df151adb8dae4f18
@@ -9,7 +9,7 @@
9
9
  | **chap_name** | **String** | chap_name | [optional] |
10
10
  | **chap_secret** | **String** | chap_secret | [optional] |
11
11
  | **component_state** | **String** | component_state | [optional] |
12
- | **first_refresh_task** | **Boolean** | first_refresh_task | [optional][default to true] |
12
+ | **initial_refresh** | **Boolean** | initial_refresh | [optional][default to true] |
13
13
  | **iqn** | **String** | | [optional] |
14
14
  | **management_ip** | **String** | management_ip | [optional] |
15
15
  | **name** | **String** | name | [optional] |
@@ -35,7 +35,7 @@ instance = AutosdeOpenapiClient::StorageSystemCreate.new(
35
35
  chap_name: null,
36
36
  chap_secret: null,
37
37
  component_state: null,
38
- first_refresh_task: null,
38
+ initial_refresh: null,
39
39
  iqn: null,
40
40
  management_ip: null,
41
41
  name: null,
@@ -31,8 +31,8 @@ module AutosdeOpenapiClient
31
31
  # component_state
32
32
  attr_accessor :component_state
33
33
 
34
- # first_refresh_task
35
- attr_accessor :first_refresh_task
34
+ # initial_refresh
35
+ attr_accessor :initial_refresh
36
36
 
37
37
  attr_accessor :iqn
38
38
 
@@ -101,7 +101,7 @@ module AutosdeOpenapiClient
101
101
  :'chap_name' => :'chap_name',
102
102
  :'chap_secret' => :'chap_secret',
103
103
  :'component_state' => :'component_state',
104
- :'first_refresh_task' => :'first_refresh_task',
104
+ :'initial_refresh' => :'initial_refresh',
105
105
  :'iqn' => :'iqn',
106
106
  :'management_ip' => :'management_ip',
107
107
  :'name' => :'name',
@@ -131,7 +131,7 @@ module AutosdeOpenapiClient
131
131
  :'chap_name' => :'String',
132
132
  :'chap_secret' => :'String',
133
133
  :'component_state' => :'String',
134
- :'first_refresh_task' => :'Boolean',
134
+ :'initial_refresh' => :'Boolean',
135
135
  :'iqn' => :'String',
136
136
  :'management_ip' => :'String',
137
137
  :'name' => :'String',
@@ -193,10 +193,10 @@ module AutosdeOpenapiClient
193
193
  self.component_state = attributes[:'component_state']
194
194
  end
195
195
 
196
- if attributes.key?(:'first_refresh_task')
197
- self.first_refresh_task = attributes[:'first_refresh_task']
196
+ if attributes.key?(:'initial_refresh')
197
+ self.initial_refresh = attributes[:'initial_refresh']
198
198
  else
199
- self.first_refresh_task = true
199
+ self.initial_refresh = true
200
200
  end
201
201
 
202
202
  if attributes.key?(:'iqn')
@@ -316,7 +316,7 @@ module AutosdeOpenapiClient
316
316
  chap_name == o.chap_name &&
317
317
  chap_secret == o.chap_secret &&
318
318
  component_state == o.component_state &&
319
- first_refresh_task == o.first_refresh_task &&
319
+ initial_refresh == o.initial_refresh &&
320
320
  iqn == o.iqn &&
321
321
  management_ip == o.management_ip &&
322
322
  name == o.name &&
@@ -341,7 +341,7 @@ module AutosdeOpenapiClient
341
341
  # Calculates hash code according to all attributes.
342
342
  # @return [Integer] Hash code
343
343
  def hash
344
- [auto_add_pools, auto_setup, chap_name, chap_secret, component_state, first_refresh_task, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
344
+ [auto_add_pools, auto_setup, chap_name, chap_secret, component_state, initial_refresh, iqn, management_ip, name, password, port_type, secondary_ip, status, storage_array, storage_driver, storage_family, system_type, user, wwpn].hash
345
345
  end
346
346
 
347
347
  # 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.1.21
6
+ The version of the OpenAPI document: 1.1.22
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.1.21'
14
+ VERSION = '1.1.22'
15
15
  end
@@ -59,7 +59,7 @@ describe AutosdeOpenapiClient::StorageSystemCreate do
59
59
  end
60
60
  end
61
61
 
62
- describe 'test attribute "first_refresh_task"' do
62
+ describe 'test attribute "initial_refresh"' do
63
63
  it 'should work' do
64
64
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
65
65
  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.1.21
4
+ version: 1.1.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-07 00:00:00.000000000 Z
11
+ date: 2022-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus