autosde_openapi_client 1.1.32 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -7
  3. data/docs/CeleryConfig.md +20 -0
  4. data/docs/CeleryConfigApi.md +140 -0
  5. data/docs/Event.md +4 -0
  6. data/docs/EventApi.md +16 -16
  7. data/docs/EventResponse.md +36 -0
  8. data/docs/Job.md +2 -0
  9. data/docs/JobApi.md +136 -0
  10. data/docs/JobCreate.md +2 -2
  11. data/docs/RefreshSystem.md +18 -0
  12. data/docs/RefreshSystemApi.md +75 -0
  13. data/docs/{StorageHostVolumeMapping.md → StorageHostsMapping.md} +2 -2
  14. data/docs/{StorageHostVolumeMappingApi.md → StorageHostsMappingApi.md} +37 -37
  15. data/docs/{StorageHostVolumeMappingCreate.md → StorageHostsMappingCreate.md} +2 -2
  16. data/docs/{StorageHostVolumeMappingResponse.md → StorageHostsMappingResponse.md} +2 -2
  17. data/docs/StorageSystem.md +2 -2
  18. data/docs/StorageSystemCreate.md +4 -4
  19. data/lib/autosde_openapi_client/api/celery_config_api.rb +136 -0
  20. data/lib/autosde_openapi_client/api/event_api.rb +12 -12
  21. data/lib/autosde_openapi_client/api/job_api.rb +118 -0
  22. data/lib/autosde_openapi_client/api/refresh_system_api.rb +83 -0
  23. data/lib/autosde_openapi_client/api/{storage_host_volume_mapping_api.rb → storage_hosts_mapping_api.rb} +36 -36
  24. data/lib/autosde_openapi_client/models/celery_config.rb +230 -0
  25. data/lib/autosde_openapi_client/models/event.rb +22 -2
  26. data/lib/autosde_openapi_client/models/event_response.rb +310 -0
  27. data/lib/autosde_openapi_client/models/job.rb +11 -1
  28. data/lib/autosde_openapi_client/models/job_create.rb +8 -8
  29. data/lib/autosde_openapi_client/models/refresh_system.rb +220 -0
  30. data/lib/autosde_openapi_client/models/{storage_host_volume_mapping.rb → storage_hosts_mapping.rb} +4 -4
  31. data/lib/autosde_openapi_client/models/{storage_host_volume_mapping_create.rb → storage_hosts_mapping_create.rb} +3 -3
  32. data/lib/autosde_openapi_client/models/{storage_host_volume_mapping_response.rb → storage_hosts_mapping_response.rb} +3 -3
  33. data/lib/autosde_openapi_client/models/storage_system.rb +9 -9
  34. data/lib/autosde_openapi_client/models/storage_system_create.rb +21 -21
  35. data/lib/autosde_openapi_client/version.rb +2 -2
  36. data/lib/autosde_openapi_client.rb +9 -4
  37. data/spec/api/celery_config_api_spec.rb +54 -0
  38. data/spec/api/event_api_spec.rb +4 -4
  39. data/spec/api/job_api_spec.rb +20 -0
  40. data/spec/api/refresh_system_api_spec.rb +45 -0
  41. data/spec/api/{storage_host_volume_mapping_api_spec.rb → storage_hosts_mapping_api_spec.rb} +11 -11
  42. data/spec/models/celery_config_spec.rb +40 -0
  43. data/spec/models/event_response_spec.rb +88 -0
  44. data/spec/models/event_spec.rb +12 -0
  45. data/spec/models/job_create_spec.rb +1 -1
  46. data/spec/models/job_spec.rb +6 -0
  47. data/spec/models/refresh_system_spec.rb +34 -0
  48. data/spec/models/{storage_host_volume_mapping_create_spec.rb → storage_hosts_mapping_create_spec.rb} +6 -6
  49. data/spec/models/{storage_host_volume_mapping_response_spec.rb → storage_hosts_mapping_response_spec.rb} +6 -6
  50. data/spec/models/{storage_host_volume_mapping_spec.rb → storage_hosts_mapping_spec.rb} +6 -6
  51. data/spec/models/storage_system_create_spec.rb +7 -7
  52. data/spec/models/storage_system_spec.rb +1 -1
  53. metadata +38 -18
@@ -0,0 +1,45 @@
1
+ =begin
2
+ #Site Manager API
3
+
4
+ #Site Manager API
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: autosde@il.ibm.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for AutosdeOpenapiClient::RefreshSystemApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'RefreshSystemApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = AutosdeOpenapiClient::RefreshSystemApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of RefreshSystemApi' do
30
+ it 'should create an instance of RefreshSystemApi' do
31
+ expect(@api_instance).to be_instance_of(AutosdeOpenapiClient::RefreshSystemApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for refresh_system_post
36
+ # @param refresh_system
37
+ # @param [Hash] opts the optional parameters
38
+ # @return [RefreshSystem]
39
+ describe 'refresh_system_post test' do
40
+ it 'should work' do
41
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
42
+ end
43
+ end
44
+
45
+ end
@@ -13,28 +13,28 @@ OpenAPI Generator version: 5.0.0
13
13
  require 'spec_helper'
14
14
  require 'json'
15
15
 
16
- # Unit tests for AutosdeOpenapiClient::StorageHostVolumeMappingApi
16
+ # Unit tests for AutosdeOpenapiClient::StorageHostsMappingApi
17
17
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
18
  # Please update as you see appropriate
19
- describe 'StorageHostVolumeMappingApi' do
19
+ describe 'StorageHostsMappingApi' do
20
20
  before do
21
21
  # run before each test
22
- @api_instance = AutosdeOpenapiClient::StorageHostVolumeMappingApi.new
22
+ @api_instance = AutosdeOpenapiClient::StorageHostsMappingApi.new
23
23
  end
24
24
 
25
25
  after do
26
26
  # run after each test
27
27
  end
28
28
 
29
- describe 'test an instance of StorageHostVolumeMappingApi' do
30
- it 'should create an instance of StorageHostVolumeMappingApi' do
31
- expect(@api_instance).to be_instance_of(AutosdeOpenapiClient::StorageHostVolumeMappingApi)
29
+ describe 'test an instance of StorageHostsMappingApi' do
30
+ it 'should create an instance of StorageHostsMappingApi' do
31
+ expect(@api_instance).to be_instance_of(AutosdeOpenapiClient::StorageHostsMappingApi)
32
32
  end
33
33
  end
34
34
 
35
35
  # unit tests for storage_hosts_mapping_get
36
36
  # @param [Hash] opts the optional parameters
37
- # @return [Array<StorageHostVolumeMappingResponse>]
37
+ # @return [Array<StorageHostsMappingResponse>]
38
38
  describe 'storage_hosts_mapping_get test' do
39
39
  it 'should work' do
40
40
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,7 +44,7 @@ describe 'StorageHostVolumeMappingApi' do
44
44
  # unit tests for storage_hosts_mapping_pk_delete
45
45
  # @param pk
46
46
  # @param [Hash] opts the optional parameters
47
- # @return [Array<StorageHostVolumeMappingResponse>]
47
+ # @return [Array<StorageHostsMappingResponse>]
48
48
  describe 'storage_hosts_mapping_pk_delete test' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -54,7 +54,7 @@ describe 'StorageHostVolumeMappingApi' do
54
54
  # unit tests for storage_hosts_mapping_pk_get
55
55
  # @param pk
56
56
  # @param [Hash] opts the optional parameters
57
- # @return [Array<StorageHostVolumeMappingResponse>]
57
+ # @return [Array<StorageHostsMappingResponse>]
58
58
  describe 'storage_hosts_mapping_pk_get test' do
59
59
  it 'should work' do
60
60
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -62,9 +62,9 @@ describe 'StorageHostVolumeMappingApi' do
62
62
  end
63
63
 
64
64
  # unit tests for storage_hosts_mapping_post
65
- # @param storage_host_volume_mapping_create
65
+ # @param storage_hosts_mapping_create
66
66
  # @param [Hash] opts the optional parameters
67
- # @return [StorageHostVolumeMapping]
67
+ # @return [StorageHostsMapping]
68
68
  describe 'storage_hosts_mapping_post test' do
69
69
  it 'should work' do
70
70
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #Site Manager API
3
+
4
+ #Site Manager API
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: autosde@il.ibm.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AutosdeOpenapiClient::CeleryConfig
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AutosdeOpenapiClient::CeleryConfig do
21
+ let(:instance) { AutosdeOpenapiClient::CeleryConfig.new }
22
+
23
+ describe 'test an instance of CeleryConfig' do
24
+ it 'should create an instance of CeleryConfig' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::CeleryConfig)
26
+ end
27
+ end
28
+ describe 'test attribute "celery_beat_enabled"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "interval_sec"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ end
@@ -0,0 +1,88 @@
1
+ =begin
2
+ #Site Manager API
3
+
4
+ #Site Manager API
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: autosde@il.ibm.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AutosdeOpenapiClient::EventResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AutosdeOpenapiClient::EventResponse do
21
+ let(:instance) { AutosdeOpenapiClient::EventResponse.new }
22
+
23
+ describe 'test an instance of EventResponse' do
24
+ it 'should create an instance of EventResponse' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::EventResponse)
26
+ end
27
+ end
28
+ describe 'test attribute "created_at"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ describe 'test attribute "description"' do
35
+ it 'should work' do
36
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
+ end
38
+ end
39
+
40
+ describe 'test attribute "error_code"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
46
+ describe 'test attribute "event_id"' do
47
+ it 'should work' do
48
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
49
+ end
50
+ end
51
+
52
+ describe 'test attribute "event_type"' do
53
+ it 'should work' do
54
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
55
+ end
56
+ end
57
+
58
+ describe 'test attribute "fixed"' do
59
+ it 'should work' do
60
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
61
+ end
62
+ end
63
+
64
+ describe 'test attribute "last_timestamp"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "refresh_interval"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "storage_system"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "uuid"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
85
+ end
86
+ end
87
+
88
+ end
@@ -25,6 +25,12 @@ describe AutosdeOpenapiClient::Event do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::Event)
26
26
  end
27
27
  end
28
+ describe 'test attribute "created_at"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
28
34
  describe 'test attribute "description"' do
29
35
  it 'should work' do
30
36
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -61,6 +67,12 @@ describe AutosdeOpenapiClient::Event do
61
67
  end
62
68
  end
63
69
 
70
+ describe 'test attribute "refresh_interval"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
64
76
  describe 'test attribute "storage_system"' do
65
77
  it 'should work' do
66
78
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,7 +25,7 @@ describe AutosdeOpenapiClient::JobCreate do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::JobCreate)
26
26
  end
27
27
  end
28
- describe 'test attribute "task_args"' do
28
+ describe 'test attribute "task_kwargs"' do
29
29
  it 'should work' do
30
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
31
  end
@@ -37,6 +37,12 @@ describe AutosdeOpenapiClient::Job do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "extra"' do
41
+ it 'should work' do
42
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
43
+ end
44
+ end
45
+
40
46
  describe 'test attribute "status"' do
41
47
  it 'should work' do
42
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #Site Manager API
3
+
4
+ #Site Manager API
5
+
6
+ The version of the OpenAPI document: 1.0.0
7
+ Contact: autosde@il.ibm.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.0.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AutosdeOpenapiClient::RefreshSystem
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AutosdeOpenapiClient::RefreshSystem do
21
+ let(:instance) { AutosdeOpenapiClient::RefreshSystem.new }
22
+
23
+ describe 'test an instance of RefreshSystem' do
24
+ it 'should create an instance of RefreshSystem' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::RefreshSystem)
26
+ end
27
+ end
28
+ describe 'test attribute "uuid"' do
29
+ it 'should work' do
30
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
+ end
32
+ end
33
+
34
+ end
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for AutosdeOpenapiClient::StorageHostVolumeMappingCreate
17
+ # Unit tests for AutosdeOpenapiClient::StorageHostsMappingCreate
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe AutosdeOpenapiClient::StorageHostVolumeMappingCreate do
21
- let(:instance) { AutosdeOpenapiClient::StorageHostVolumeMappingCreate.new }
20
+ describe AutosdeOpenapiClient::StorageHostsMappingCreate do
21
+ let(:instance) { AutosdeOpenapiClient::StorageHostsMappingCreate.new }
22
22
 
23
- describe 'test an instance of StorageHostVolumeMappingCreate' do
24
- it 'should create an instance of StorageHostVolumeMappingCreate' do
25
- expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostVolumeMappingCreate)
23
+ describe 'test an instance of StorageHostsMappingCreate' do
24
+ it 'should create an instance of StorageHostsMappingCreate' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostsMappingCreate)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "component_state"' do
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for AutosdeOpenapiClient::StorageHostVolumeMappingResponse
17
+ # Unit tests for AutosdeOpenapiClient::StorageHostsMappingResponse
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe AutosdeOpenapiClient::StorageHostVolumeMappingResponse do
21
- let(:instance) { AutosdeOpenapiClient::StorageHostVolumeMappingResponse.new }
20
+ describe AutosdeOpenapiClient::StorageHostsMappingResponse do
21
+ let(:instance) { AutosdeOpenapiClient::StorageHostsMappingResponse.new }
22
22
 
23
- describe 'test an instance of StorageHostVolumeMappingResponse' do
24
- it 'should create an instance of StorageHostVolumeMappingResponse' do
25
- expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostVolumeMappingResponse)
23
+ describe 'test an instance of StorageHostsMappingResponse' do
24
+ it 'should create an instance of StorageHostsMappingResponse' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostsMappingResponse)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "component_state"' do
@@ -14,15 +14,15 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for AutosdeOpenapiClient::StorageHostVolumeMapping
17
+ # Unit tests for AutosdeOpenapiClient::StorageHostsMapping
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe AutosdeOpenapiClient::StorageHostVolumeMapping do
21
- let(:instance) { AutosdeOpenapiClient::StorageHostVolumeMapping.new }
20
+ describe AutosdeOpenapiClient::StorageHostsMapping do
21
+ let(:instance) { AutosdeOpenapiClient::StorageHostsMapping.new }
22
22
 
23
- describe 'test an instance of StorageHostVolumeMapping' do
24
- it 'should create an instance of StorageHostVolumeMapping' do
25
- expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostVolumeMapping)
23
+ describe 'test an instance of StorageHostsMapping' do
24
+ it 'should create an instance of StorageHostsMapping' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageHostsMapping)
26
26
  end
27
27
  end
28
28
  describe 'test attribute "component_state"' do
@@ -25,13 +25,7 @@ describe AutosdeOpenapiClient::StorageSystemCreate do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystemCreate)
26
26
  end
27
27
  end
28
- describe 'test attribute "auto_add_pools"' do
29
- it 'should work' do
30
- # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
- end
32
- end
33
-
34
- describe 'test attribute "auto_setup"' do
28
+ describe 'test attribute "auto_refresh"' do
35
29
  it 'should work' do
36
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
37
31
  end
@@ -59,6 +53,12 @@ describe AutosdeOpenapiClient::StorageSystemCreate do
59
53
  end
60
54
  end
61
55
 
56
+ describe 'test attribute "initial_refresh"' do
57
+ it 'should work' do
58
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
59
+ end
60
+ end
61
+
62
62
  describe 'test attribute "iqn"' do
63
63
  it 'should work' do
64
64
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -25,7 +25,7 @@ describe AutosdeOpenapiClient::StorageSystem do
25
25
  expect(instance).to be_instance_of(AutosdeOpenapiClient::StorageSystem)
26
26
  end
27
27
  end
28
- describe 'test attribute "auto_add_pools"' do
28
+ describe 'test attribute "auto_refresh"' do
29
29
  it 'should work' do
30
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
31
31
  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.32
4
+ version: '1.2'
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-08-04 00:00:00.000000000 Z
11
+ date: 2022-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -81,8 +81,11 @@ files:
81
81
  - docs/CapabilityTranslation.md
82
82
  - docs/CapabilityTranslationApi.md
83
83
  - docs/CapabilityTranslationCreate.md
84
+ - docs/CeleryConfig.md
85
+ - docs/CeleryConfigApi.md
84
86
  - docs/Event.md
85
87
  - docs/EventApi.md
88
+ - docs/EventResponse.md
86
89
  - docs/Host.md
87
90
  - docs/HostApi.md
88
91
  - docs/HostCluster.md
@@ -108,6 +111,8 @@ files:
108
111
  - docs/ProfileApi.md
109
112
  - docs/ProvisioningStrategy.md
110
113
  - docs/ProvisioningStrategyApi.md
114
+ - docs/RefreshSystem.md
115
+ - docs/RefreshSystemApi.md
111
116
  - docs/Service.md
112
117
  - docs/ServiceAbstractCapabilityValue.md
113
118
  - docs/ServiceApi.md
@@ -122,12 +127,12 @@ files:
122
127
  - docs/StorageHostCreate.md
123
128
  - docs/StorageHostResponse.md
124
129
  - docs/StorageHostUpdate.md
125
- - docs/StorageHostVolumeMapping.md
126
- - docs/StorageHostVolumeMappingApi.md
127
- - docs/StorageHostVolumeMappingCreate.md
128
- - docs/StorageHostVolumeMappingResponse.md
129
130
  - docs/StorageHostWWPNCandidates.md
130
131
  - docs/StorageHostWWPNCandidatesApi.md
132
+ - docs/StorageHostsMapping.md
133
+ - docs/StorageHostsMappingApi.md
134
+ - docs/StorageHostsMappingCreate.md
135
+ - docs/StorageHostsMappingResponse.md
131
136
  - docs/StorageResource.md
132
137
  - docs/StorageResourceApi.md
133
138
  - docs/StorageResourceCreate.md
@@ -162,6 +167,7 @@ files:
162
167
  - lib/autosde_openapi_client/api/auto_sde_project_api.rb
163
168
  - lib/autosde_openapi_client/api/auto_sde_role_api.rb
164
169
  - lib/autosde_openapi_client/api/capability_translation_api.rb
170
+ - lib/autosde_openapi_client/api/celery_config_api.rb
165
171
  - lib/autosde_openapi_client/api/event_api.rb
166
172
  - lib/autosde_openapi_client/api/host_api.rb
167
173
  - lib/autosde_openapi_client/api/host_cluster_api.rb
@@ -172,12 +178,13 @@ files:
172
178
  - lib/autosde_openapi_client/api/native_capability_api.rb
173
179
  - lib/autosde_openapi_client/api/profile_api.rb
174
180
  - lib/autosde_openapi_client/api/provisioning_strategy_api.rb
181
+ - lib/autosde_openapi_client/api/refresh_system_api.rb
175
182
  - lib/autosde_openapi_client/api/service_api.rb
176
183
  - lib/autosde_openapi_client/api/service_resource_attachment_api.rb
177
184
  - lib/autosde_openapi_client/api/snapshot_api.rb
178
185
  - lib/autosde_openapi_client/api/storage_host_api.rb
179
- - lib/autosde_openapi_client/api/storage_host_volume_mapping_api.rb
180
186
  - lib/autosde_openapi_client/api/storage_host_wwpn_candidates_api.rb
187
+ - lib/autosde_openapi_client/api/storage_hosts_mapping_api.rb
181
188
  - lib/autosde_openapi_client/api/storage_resource_api.rb
182
189
  - lib/autosde_openapi_client/api/storage_system_api.rb
183
190
  - lib/autosde_openapi_client/api/system_type_api.rb
@@ -200,7 +207,9 @@ files:
200
207
  - lib/autosde_openapi_client/models/auto_sde_role.rb
201
208
  - lib/autosde_openapi_client/models/capability_translation.rb
202
209
  - lib/autosde_openapi_client/models/capability_translation_create.rb
210
+ - lib/autosde_openapi_client/models/celery_config.rb
203
211
  - lib/autosde_openapi_client/models/event.rb
212
+ - lib/autosde_openapi_client/models/event_response.rb
204
213
  - lib/autosde_openapi_client/models/host.rb
205
214
  - lib/autosde_openapi_client/models/host_cluster.rb
206
215
  - lib/autosde_openapi_client/models/host_cluster_create.rb
@@ -217,6 +226,7 @@ files:
217
226
  - lib/autosde_openapi_client/models/native_capability.rb
218
227
  - lib/autosde_openapi_client/models/profile.rb
219
228
  - lib/autosde_openapi_client/models/provisioning_strategy.rb
229
+ - lib/autosde_openapi_client/models/refresh_system.rb
220
230
  - lib/autosde_openapi_client/models/service.rb
221
231
  - lib/autosde_openapi_client/models/service_abstract_capability_value.rb
222
232
  - lib/autosde_openapi_client/models/service_create.rb
@@ -227,10 +237,10 @@ files:
227
237
  - lib/autosde_openapi_client/models/storage_host_create.rb
228
238
  - lib/autosde_openapi_client/models/storage_host_response.rb
229
239
  - lib/autosde_openapi_client/models/storage_host_update.rb
230
- - lib/autosde_openapi_client/models/storage_host_volume_mapping.rb
231
- - lib/autosde_openapi_client/models/storage_host_volume_mapping_create.rb
232
- - lib/autosde_openapi_client/models/storage_host_volume_mapping_response.rb
233
240
  - lib/autosde_openapi_client/models/storage_host_wwpn_candidates.rb
241
+ - lib/autosde_openapi_client/models/storage_hosts_mapping.rb
242
+ - lib/autosde_openapi_client/models/storage_hosts_mapping_create.rb
243
+ - lib/autosde_openapi_client/models/storage_hosts_mapping_response.rb
234
244
  - lib/autosde_openapi_client/models/storage_resource.rb
235
245
  - lib/autosde_openapi_client/models/storage_resource_create.rb
236
246
  - lib/autosde_openapi_client/models/storage_resource_response.rb
@@ -257,6 +267,7 @@ files:
257
267
  - spec/api/auto_sde_project_api_spec.rb
258
268
  - spec/api/auto_sde_role_api_spec.rb
259
269
  - spec/api/capability_translation_api_spec.rb
270
+ - spec/api/celery_config_api_spec.rb
260
271
  - spec/api/event_api_spec.rb
261
272
  - spec/api/host_api_spec.rb
262
273
  - spec/api/host_cluster_api_spec.rb
@@ -267,12 +278,13 @@ files:
267
278
  - spec/api/native_capability_api_spec.rb
268
279
  - spec/api/profile_api_spec.rb
269
280
  - spec/api/provisioning_strategy_api_spec.rb
281
+ - spec/api/refresh_system_api_spec.rb
270
282
  - spec/api/service_api_spec.rb
271
283
  - spec/api/service_resource_attachment_api_spec.rb
272
284
  - spec/api/snapshot_api_spec.rb
273
285
  - spec/api/storage_host_api_spec.rb
274
- - spec/api/storage_host_volume_mapping_api_spec.rb
275
286
  - spec/api/storage_host_wwpn_candidates_api_spec.rb
287
+ - spec/api/storage_hosts_mapping_api_spec.rb
276
288
  - spec/api/storage_resource_api_spec.rb
277
289
  - spec/api/storage_system_api_spec.rb
278
290
  - spec/api/system_type_api_spec.rb
@@ -294,6 +306,8 @@ files:
294
306
  - spec/models/auto_sde_role_spec.rb
295
307
  - spec/models/capability_translation_create_spec.rb
296
308
  - spec/models/capability_translation_spec.rb
309
+ - spec/models/celery_config_spec.rb
310
+ - spec/models/event_response_spec.rb
297
311
  - spec/models/event_spec.rb
298
312
  - spec/models/host_cluster_create_spec.rb
299
313
  - spec/models/host_cluster_membership_spec.rb
@@ -311,6 +325,7 @@ files:
311
325
  - spec/models/native_capability_spec.rb
312
326
  - spec/models/profile_spec.rb
313
327
  - spec/models/provisioning_strategy_spec.rb
328
+ - spec/models/refresh_system_spec.rb
314
329
  - spec/models/service_abstract_capability_value_spec.rb
315
330
  - spec/models/service_create_spec.rb
316
331
  - spec/models/service_resource_attachment_spec.rb
@@ -321,10 +336,10 @@ files:
321
336
  - spec/models/storage_host_response_spec.rb
322
337
  - spec/models/storage_host_spec.rb
323
338
  - spec/models/storage_host_update_spec.rb
324
- - spec/models/storage_host_volume_mapping_create_spec.rb
325
- - spec/models/storage_host_volume_mapping_response_spec.rb
326
- - spec/models/storage_host_volume_mapping_spec.rb
327
339
  - spec/models/storage_host_wwpn_candidates_spec.rb
340
+ - spec/models/storage_hosts_mapping_create_spec.rb
341
+ - spec/models/storage_hosts_mapping_response_spec.rb
342
+ - spec/models/storage_hosts_mapping_spec.rb
328
343
  - spec/models/storage_resource_create_spec.rb
329
344
  - spec/models/storage_resource_response_spec.rb
330
345
  - spec/models/storage_resource_spec.rb
@@ -381,10 +396,11 @@ test_files:
381
396
  - spec/api/storage_system_api_spec.rb
382
397
  - spec/api/host_cluster_api_spec.rb
383
398
  - spec/api/host_cluster_volume_mapping_api_spec.rb
384
- - spec/api/storage_host_volume_mapping_api_spec.rb
385
399
  - spec/api/native_capability_api_spec.rb
386
400
  - spec/api/host_cluster_membership_api_spec.rb
401
+ - spec/api/celery_config_api_spec.rb
387
402
  - spec/api/auto_sde_project_api_spec.rb
403
+ - spec/api/refresh_system_api_spec.rb
388
404
  - spec/api/host_volume_connection_api_spec.rb
389
405
  - spec/api/storage_host_api_spec.rb
390
406
  - spec/api/event_api_spec.rb
@@ -393,6 +409,7 @@ test_files:
393
409
  - spec/api/snapshot_api_spec.rb
394
410
  - spec/api/auto_sde_role_api_spec.rb
395
411
  - spec/api/profile_api_spec.rb
412
+ - spec/api/storage_hosts_mapping_api_spec.rb
396
413
  - spec/api/abstract_capability_api_spec.rb
397
414
  - spec/api/validate_system_api_spec.rb
398
415
  - spec/api/job_api_spec.rb
@@ -414,12 +431,14 @@ test_files:
414
431
  - spec/models/snapshot_create_spec.rb
415
432
  - spec/models/volume_create_spec.rb
416
433
  - spec/models/system_type_create_spec.rb
434
+ - spec/models/celery_config_spec.rb
417
435
  - spec/models/event_spec.rb
418
436
  - spec/models/address_spec.rb
419
437
  - spec/models/storage_host_wwpn_candidates_spec.rb
420
438
  - spec/models/host_volume_connection_spec.rb
421
439
  - spec/models/host_create_spec.rb
422
440
  - spec/models/system_type_spec.rb
441
+ - spec/models/storage_hosts_mapping_spec.rb
423
442
  - spec/models/storage_system_create_spec.rb
424
443
  - spec/models/service_resource_attachment_spec.rb
425
444
  - spec/models/auto_sde_project_spec.rb
@@ -431,20 +450,19 @@ test_files:
431
450
  - spec/models/provisioning_strategy_spec.rb
432
451
  - spec/models/host_cluster_create_spec.rb
433
452
  - spec/models/auth_response_spec.rb
434
- - spec/models/storage_host_volume_mapping_response_spec.rb
435
453
  - spec/models/storage_host_create_spec.rb
436
454
  - spec/models/storage_host_response_spec.rb
437
455
  - spec/models/address_create_spec.rb
438
456
  - spec/models/account_post_request_spec.rb
439
457
  - spec/models/host_cluster_volume_mapping_spec.rb
458
+ - spec/models/storage_hosts_mapping_response_spec.rb
440
459
  - spec/models/storage_system_spec.rb
441
460
  - spec/models/native_capability_spec.rb
461
+ - spec/models/event_response_spec.rb
442
462
  - spec/models/service_create_spec.rb
443
463
  - spec/models/host_spec.rb
444
- - spec/models/storage_host_volume_mapping_spec.rb
445
464
  - spec/models/authentication_spec.rb
446
465
  - spec/models/storage_resource_response_spec.rb
447
- - spec/models/storage_host_volume_mapping_create_spec.rb
448
466
  - spec/models/user_create_spec.rb
449
467
  - spec/models/auto_sde_role_spec.rb
450
468
  - spec/models/service_abstract_capability_value_spec.rb
@@ -454,6 +472,8 @@ test_files:
454
472
  - spec/models/volume_update_spec.rb
455
473
  - spec/models/host_cluster_volume_mapping_response_spec.rb
456
474
  - spec/models/snapshot_spec.rb
475
+ - spec/models/refresh_system_spec.rb
476
+ - spec/models/storage_hosts_mapping_create_spec.rb
457
477
  - spec/models/job_create_spec.rb
458
478
  - spec/models/host_cluster_membership_spec.rb
459
479
  - spec/models/host_volume_connection_create_spec.rb