autosde_openapi_client 1.1.30 → 1.1.31
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/docs/EventApi.md +20 -20
- data/lib/autosde_openapi_client/api/event_api.rb +21 -21
- data/lib/autosde_openapi_client/version.rb +2 -2
- data/spec/api/event_api_spec.rb +5 -5
- metadata +78 -78
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 918be861e5ff5f408851f8f151b3df19820c78c7661de1813f6d0a2dc15a6e44
|
4
|
+
data.tar.gz: faa07bf5c7bc96dfff6f5af6f336b917e8c0033c4383f74fe0fc3f7a25bc8943
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad72b8bbb83485fffd3b3f93cc86096323cda715851579fc3e5238e92eb3c2b01ecdccec6addbd0692cedcf753db2612fd08fc5f849e1f8408529ba898fc2a70
|
7
|
+
data.tar.gz: ee7743c15f39b0401a60acc15e95477103007934e99087254222dad1358fd83a2728b86675e8fdcc8e8c0017e1848b7bc80c444b0707f52e3a20083d43bd6c5d
|
data/docs/EventApi.md
CHANGED
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost:9000/site-manager/api/v1/engine*
|
|
12
12
|
|
13
13
|
## events_get
|
14
14
|
|
15
|
-
> <Array<
|
15
|
+
> <Array<EventResponse>> events_get
|
16
16
|
|
17
17
|
|
18
18
|
|
@@ -42,7 +42,7 @@ end
|
|
42
42
|
|
43
43
|
This returns an Array which contains the response data, status code and headers.
|
44
44
|
|
45
|
-
> <Array(<Array<
|
45
|
+
> <Array(<Array<EventResponse>>, Integer, Hash)> events_get_with_http_info
|
46
46
|
|
47
47
|
```ruby
|
48
48
|
begin
|
@@ -50,7 +50,7 @@ begin
|
|
50
50
|
data, status_code, headers = api_instance.events_get_with_http_info
|
51
51
|
p status_code # => 2xx
|
52
52
|
p headers # => { ... }
|
53
|
-
p data # => <Array<
|
53
|
+
p data # => <Array<EventResponse>>
|
54
54
|
rescue AutosdeOpenapiClient::ApiError => e
|
55
55
|
puts "Error when calling EventApi->events_get_with_http_info: #{e}"
|
56
56
|
end
|
@@ -62,7 +62,7 @@ This endpoint does not need any parameter.
|
|
62
62
|
|
63
63
|
### Return type
|
64
64
|
|
65
|
-
[**Array<
|
65
|
+
[**Array<EventResponse>**](EventResponse.md)
|
66
66
|
|
67
67
|
### Authorization
|
68
68
|
|
@@ -76,7 +76,7 @@ This endpoint does not need any parameter.
|
|
76
76
|
|
77
77
|
## events_pk_delete
|
78
78
|
|
79
|
-
> <Array<
|
79
|
+
> <Array<EventResponse>> events_pk_delete(pk)
|
80
80
|
|
81
81
|
|
82
82
|
|
@@ -107,7 +107,7 @@ end
|
|
107
107
|
|
108
108
|
This returns an Array which contains the response data, status code and headers.
|
109
109
|
|
110
|
-
> <Array(<Array<
|
110
|
+
> <Array(<Array<EventResponse>>, Integer, Hash)> events_pk_delete_with_http_info(pk)
|
111
111
|
|
112
112
|
```ruby
|
113
113
|
begin
|
@@ -115,7 +115,7 @@ begin
|
|
115
115
|
data, status_code, headers = api_instance.events_pk_delete_with_http_info(pk)
|
116
116
|
p status_code # => 2xx
|
117
117
|
p headers # => { ... }
|
118
|
-
p data # => <Array<
|
118
|
+
p data # => <Array<EventResponse>>
|
119
119
|
rescue AutosdeOpenapiClient::ApiError => e
|
120
120
|
puts "Error when calling EventApi->events_pk_delete_with_http_info: #{e}"
|
121
121
|
end
|
@@ -129,7 +129,7 @@ end
|
|
129
129
|
|
130
130
|
### Return type
|
131
131
|
|
132
|
-
[**Array<
|
132
|
+
[**Array<EventResponse>**](EventResponse.md)
|
133
133
|
|
134
134
|
### Authorization
|
135
135
|
|
@@ -143,7 +143,7 @@ end
|
|
143
143
|
|
144
144
|
## events_pk_get
|
145
145
|
|
146
|
-
> <Array<
|
146
|
+
> <Array<EventResponse>> events_pk_get(pk)
|
147
147
|
|
148
148
|
|
149
149
|
|
@@ -174,7 +174,7 @@ end
|
|
174
174
|
|
175
175
|
This returns an Array which contains the response data, status code and headers.
|
176
176
|
|
177
|
-
> <Array(<Array<
|
177
|
+
> <Array(<Array<EventResponse>>, Integer, Hash)> events_pk_get_with_http_info(pk)
|
178
178
|
|
179
179
|
```ruby
|
180
180
|
begin
|
@@ -182,7 +182,7 @@ begin
|
|
182
182
|
data, status_code, headers = api_instance.events_pk_get_with_http_info(pk)
|
183
183
|
p status_code # => 2xx
|
184
184
|
p headers # => { ... }
|
185
|
-
p data # => <Array<
|
185
|
+
p data # => <Array<EventResponse>>
|
186
186
|
rescue AutosdeOpenapiClient::ApiError => e
|
187
187
|
puts "Error when calling EventApi->events_pk_get_with_http_info: #{e}"
|
188
188
|
end
|
@@ -196,7 +196,7 @@ end
|
|
196
196
|
|
197
197
|
### Return type
|
198
198
|
|
199
|
-
[**Array<
|
199
|
+
[**Array<EventResponse>**](EventResponse.md)
|
200
200
|
|
201
201
|
### Authorization
|
202
202
|
|
@@ -210,7 +210,7 @@ end
|
|
210
210
|
|
211
211
|
## events_post
|
212
212
|
|
213
|
-
> <
|
213
|
+
> <EventResponse> events_post(event)
|
214
214
|
|
215
215
|
|
216
216
|
|
@@ -226,11 +226,11 @@ AutosdeOpenapiClient.configure do |config|
|
|
226
226
|
end
|
227
227
|
|
228
228
|
api_instance = AutosdeOpenapiClient::EventApi.new
|
229
|
-
|
229
|
+
event = AutosdeOpenapiClient::Event.new # Event |
|
230
230
|
|
231
231
|
begin
|
232
232
|
|
233
|
-
result = api_instance.events_post(
|
233
|
+
result = api_instance.events_post(event)
|
234
234
|
p result
|
235
235
|
rescue AutosdeOpenapiClient::ApiError => e
|
236
236
|
puts "Error when calling EventApi->events_post: #{e}"
|
@@ -241,15 +241,15 @@ end
|
|
241
241
|
|
242
242
|
This returns an Array which contains the response data, status code and headers.
|
243
243
|
|
244
|
-
> <Array(<
|
244
|
+
> <Array(<EventResponse>, Integer, Hash)> events_post_with_http_info(event)
|
245
245
|
|
246
246
|
```ruby
|
247
247
|
begin
|
248
248
|
|
249
|
-
data, status_code, headers = api_instance.events_post_with_http_info(
|
249
|
+
data, status_code, headers = api_instance.events_post_with_http_info(event)
|
250
250
|
p status_code # => 2xx
|
251
251
|
p headers # => { ... }
|
252
|
-
p data # => <
|
252
|
+
p data # => <EventResponse>
|
253
253
|
rescue AutosdeOpenapiClient::ApiError => e
|
254
254
|
puts "Error when calling EventApi->events_post_with_http_info: #{e}"
|
255
255
|
end
|
@@ -259,11 +259,11 @@ end
|
|
259
259
|
|
260
260
|
| Name | Type | Description | Notes |
|
261
261
|
| ---- | ---- | ----------- | ----- |
|
262
|
-
| **
|
262
|
+
| **event** | [**Event**](Event.md) | | |
|
263
263
|
|
264
264
|
### Return type
|
265
265
|
|
266
|
-
[**
|
266
|
+
[**EventResponse**](EventResponse.md)
|
267
267
|
|
268
268
|
### Authorization
|
269
269
|
|
@@ -20,14 +20,14 @@ module AutosdeOpenapiClient
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# @param [Hash] opts the optional parameters
|
23
|
-
# @return [Array<
|
23
|
+
# @return [Array<EventResponse>]
|
24
24
|
def events_get(opts = {})
|
25
25
|
data, _status_code, _headers = events_get_with_http_info(opts)
|
26
26
|
data
|
27
27
|
end
|
28
28
|
|
29
29
|
# @param [Hash] opts the optional parameters
|
30
|
-
# @return [Array<(Array<
|
30
|
+
# @return [Array<(Array<EventResponse>, Integer, Hash)>] Array<EventResponse> data, response status code and response headers
|
31
31
|
def events_get_with_http_info(opts = {})
|
32
32
|
if @api_client.config.debugging
|
33
33
|
@api_client.config.logger.debug 'Calling API: EventApi.events_get ...'
|
@@ -50,7 +50,7 @@ module AutosdeOpenapiClient
|
|
50
50
|
post_body = opts[:debug_body]
|
51
51
|
|
52
52
|
# return_type
|
53
|
-
return_type = opts[:debug_return_type] || 'Array<
|
53
|
+
return_type = opts[:debug_return_type] || 'Array<EventResponse>'
|
54
54
|
|
55
55
|
# auth_names
|
56
56
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
@@ -74,7 +74,7 @@ module AutosdeOpenapiClient
|
|
74
74
|
|
75
75
|
# @param pk [Integer]
|
76
76
|
# @param [Hash] opts the optional parameters
|
77
|
-
# @return [Array<
|
77
|
+
# @return [Array<EventResponse>]
|
78
78
|
def events_pk_delete(pk, opts = {})
|
79
79
|
data, _status_code, _headers = events_pk_delete_with_http_info(pk, opts)
|
80
80
|
data
|
@@ -82,7 +82,7 @@ module AutosdeOpenapiClient
|
|
82
82
|
|
83
83
|
# @param pk [Integer]
|
84
84
|
# @param [Hash] opts the optional parameters
|
85
|
-
# @return [Array<(Array<
|
85
|
+
# @return [Array<(Array<EventResponse>, Integer, Hash)>] Array<EventResponse> data, response status code and response headers
|
86
86
|
def events_pk_delete_with_http_info(pk, opts = {})
|
87
87
|
if @api_client.config.debugging
|
88
88
|
@api_client.config.logger.debug 'Calling API: EventApi.events_pk_delete ...'
|
@@ -109,7 +109,7 @@ module AutosdeOpenapiClient
|
|
109
109
|
post_body = opts[:debug_body]
|
110
110
|
|
111
111
|
# return_type
|
112
|
-
return_type = opts[:debug_return_type] || 'Array<
|
112
|
+
return_type = opts[:debug_return_type] || 'Array<EventResponse>'
|
113
113
|
|
114
114
|
# auth_names
|
115
115
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
@@ -133,7 +133,7 @@ module AutosdeOpenapiClient
|
|
133
133
|
|
134
134
|
# @param pk [Integer]
|
135
135
|
# @param [Hash] opts the optional parameters
|
136
|
-
# @return [Array<
|
136
|
+
# @return [Array<EventResponse>]
|
137
137
|
def events_pk_get(pk, opts = {})
|
138
138
|
data, _status_code, _headers = events_pk_get_with_http_info(pk, opts)
|
139
139
|
data
|
@@ -141,7 +141,7 @@ module AutosdeOpenapiClient
|
|
141
141
|
|
142
142
|
# @param pk [Integer]
|
143
143
|
# @param [Hash] opts the optional parameters
|
144
|
-
# @return [Array<(Array<
|
144
|
+
# @return [Array<(Array<EventResponse>, Integer, Hash)>] Array<EventResponse> data, response status code and response headers
|
145
145
|
def events_pk_get_with_http_info(pk, opts = {})
|
146
146
|
if @api_client.config.debugging
|
147
147
|
@api_client.config.logger.debug 'Calling API: EventApi.events_pk_get ...'
|
@@ -168,7 +168,7 @@ module AutosdeOpenapiClient
|
|
168
168
|
post_body = opts[:debug_body]
|
169
169
|
|
170
170
|
# return_type
|
171
|
-
return_type = opts[:debug_return_type] || 'Array<
|
171
|
+
return_type = opts[:debug_return_type] || 'Array<EventResponse>'
|
172
172
|
|
173
173
|
# auth_names
|
174
174
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
@@ -190,24 +190,24 @@ module AutosdeOpenapiClient
|
|
190
190
|
return data, status_code, headers
|
191
191
|
end
|
192
192
|
|
193
|
-
# @param
|
193
|
+
# @param event [Event]
|
194
194
|
# @param [Hash] opts the optional parameters
|
195
|
-
# @return [
|
196
|
-
def events_post(
|
197
|
-
data, _status_code, _headers = events_post_with_http_info(
|
195
|
+
# @return [EventResponse]
|
196
|
+
def events_post(event, opts = {})
|
197
|
+
data, _status_code, _headers = events_post_with_http_info(event, opts)
|
198
198
|
data
|
199
199
|
end
|
200
200
|
|
201
|
-
# @param
|
201
|
+
# @param event [Event]
|
202
202
|
# @param [Hash] opts the optional parameters
|
203
|
-
# @return [Array<(
|
204
|
-
def events_post_with_http_info(
|
203
|
+
# @return [Array<(EventResponse, Integer, Hash)>] EventResponse data, response status code and response headers
|
204
|
+
def events_post_with_http_info(event, opts = {})
|
205
205
|
if @api_client.config.debugging
|
206
206
|
@api_client.config.logger.debug 'Calling API: EventApi.events_post ...'
|
207
207
|
end
|
208
|
-
# verify the required parameter '
|
209
|
-
if @api_client.config.client_side_validation &&
|
210
|
-
fail ArgumentError, "Missing the required parameter '
|
208
|
+
# verify the required parameter 'event' is set
|
209
|
+
if @api_client.config.client_side_validation && event.nil?
|
210
|
+
fail ArgumentError, "Missing the required parameter 'event' when calling EventApi.events_post"
|
211
211
|
end
|
212
212
|
# resource path
|
213
213
|
local_var_path = '/events'
|
@@ -226,10 +226,10 @@ module AutosdeOpenapiClient
|
|
226
226
|
form_params = opts[:form_params] || {}
|
227
227
|
|
228
228
|
# http body (model)
|
229
|
-
post_body = opts[:debug_body] || @api_client.object_to_http_body(
|
229
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(event)
|
230
230
|
|
231
231
|
# return_type
|
232
|
-
return_type = opts[:debug_return_type] || '
|
232
|
+
return_type = opts[:debug_return_type] || 'EventResponse'
|
233
233
|
|
234
234
|
# auth_names
|
235
235
|
auth_names = opts[:debug_auth_names] || ['bearerAuth']
|
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
#Site Manager API
|
5
5
|
|
6
|
-
The version of the OpenAPI document: 1.1.
|
6
|
+
The version of the OpenAPI document: 1.1.31
|
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.
|
14
|
+
VERSION = '1.1.31'
|
15
15
|
end
|
data/spec/api/event_api_spec.rb
CHANGED
@@ -34,7 +34,7 @@ describe 'EventApi' do
|
|
34
34
|
|
35
35
|
# unit tests for events_get
|
36
36
|
# @param [Hash] opts the optional parameters
|
37
|
-
# @return [Array<
|
37
|
+
# @return [Array<EventResponse>]
|
38
38
|
describe 'events_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 'EventApi' do
|
|
44
44
|
# unit tests for events_pk_delete
|
45
45
|
# @param pk
|
46
46
|
# @param [Hash] opts the optional parameters
|
47
|
-
# @return [Array<
|
47
|
+
# @return [Array<EventResponse>]
|
48
48
|
describe 'events_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 'EventApi' do
|
|
54
54
|
# unit tests for events_pk_get
|
55
55
|
# @param pk
|
56
56
|
# @param [Hash] opts the optional parameters
|
57
|
-
# @return [Array<
|
57
|
+
# @return [Array<EventResponse>]
|
58
58
|
describe 'events_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 'EventApi' do
|
|
62
62
|
end
|
63
63
|
|
64
64
|
# unit tests for events_post
|
65
|
-
# @param
|
65
|
+
# @param event
|
66
66
|
# @param [Hash] opts the optional parameters
|
67
|
-
# @return [
|
67
|
+
# @return [EventResponse]
|
68
68
|
describe 'events_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
|
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.
|
4
|
+
version: 1.1.31
|
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-
|
11
|
+
date: 2022-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -383,102 +383,102 @@ signing_key:
|
|
383
383
|
specification_version: 4
|
384
384
|
summary: Site Manager API Ruby Gem
|
385
385
|
test_files:
|
386
|
-
- spec/api/
|
387
|
-
- spec/api/
|
388
|
-
- spec/api/
|
389
|
-
- spec/api/
|
390
|
-
- spec/api/
|
386
|
+
- spec/api/capability_translation_api_spec.rb
|
387
|
+
- spec/api/auto_sde_project_api_spec.rb
|
388
|
+
- spec/api/job_api_spec.rb
|
389
|
+
- spec/api/validate_system_api_spec.rb
|
390
|
+
- spec/api/storage_host_wwpn_candidates_api_spec.rb
|
391
|
+
- spec/api/service_api_spec.rb
|
392
|
+
- spec/api/host_cluster_membership_api_spec.rb
|
393
|
+
- spec/api/celery_config_api_spec.rb
|
391
394
|
- spec/api/abstract_capability_api_spec.rb
|
392
|
-
- spec/api/user_api_spec.rb
|
393
|
-
- spec/api/volume_safe_delete_api_spec.rb
|
394
395
|
- spec/api/provisioning_strategy_api_spec.rb
|
395
|
-
- spec/api/
|
396
|
+
- spec/api/user_api_spec.rb
|
397
|
+
- spec/api/auto_sde_role_api_spec.rb
|
396
398
|
- spec/api/account_api_spec.rb
|
397
|
-
- spec/api/
|
398
|
-
- spec/api/
|
399
|
-
- spec/api/
|
400
|
-
- spec/api/job_api_spec.rb
|
401
|
-
- spec/api/capability_translation_api_spec.rb
|
402
|
-
- spec/api/authentication_api_spec.rb
|
403
|
-
- spec/api/storage_resource_api_spec.rb
|
399
|
+
- spec/api/refresh_system_api_spec.rb
|
400
|
+
- spec/api/host_api_spec.rb
|
401
|
+
- spec/api/service_resource_attachment_api_spec.rb
|
404
402
|
- spec/api/storage_host_volume_mapping_api_spec.rb
|
403
|
+
- spec/api/volume_api_spec.rb
|
404
|
+
- spec/api/authentication_api_spec.rb
|
405
|
+
- spec/api/native_capability_api_spec.rb
|
406
|
+
- spec/api/host_cluster_volume_mapping_api_spec.rb
|
405
407
|
- spec/api/profile_api_spec.rb
|
406
|
-
- spec/api/
|
407
|
-
- spec/api/
|
408
|
-
- spec/api/
|
408
|
+
- spec/api/volume_safe_delete_api_spec.rb
|
409
|
+
- spec/api/storage_resource_api_spec.rb
|
410
|
+
- spec/api/address_api_spec.rb
|
409
411
|
- spec/api/host_cluster_api_spec.rb
|
410
|
-
- spec/api/
|
411
|
-
- spec/api/auto_sde_project_api_spec.rb
|
412
|
+
- spec/api/host_volume_connection_api_spec.rb
|
412
413
|
- spec/api/event_api_spec.rb
|
413
|
-
- spec/api/
|
414
|
-
- spec/api/
|
415
|
-
- spec/api/
|
416
|
-
- spec/api/
|
417
|
-
- spec/api/refresh_system_api_spec.rb
|
414
|
+
- spec/api/storage_system_api_spec.rb
|
415
|
+
- spec/api/snapshot_api_spec.rb
|
416
|
+
- spec/api/system_type_api_spec.rb
|
417
|
+
- spec/api/storage_host_api_spec.rb
|
418
418
|
- spec/api_client_spec.rb
|
419
419
|
- spec/configuration_spec.rb
|
420
|
-
- spec/models/
|
421
|
-
- spec/models/
|
422
|
-
- spec/models/
|
423
|
-
- spec/models/
|
424
|
-
- spec/models/storage_host_spec.rb
|
425
|
-
- spec/models/storage_host_volume_mapping_create_spec.rb
|
426
|
-
- spec/models/refresh_system_spec.rb
|
420
|
+
- spec/models/volume_create_spec.rb
|
421
|
+
- spec/models/system_type_spec.rb
|
422
|
+
- spec/models/volume_spec.rb
|
423
|
+
- spec/models/volume_safe_delete_spec.rb
|
427
424
|
- spec/models/capability_translation_create_spec.rb
|
428
|
-
- spec/models/
|
429
|
-
- spec/models/
|
425
|
+
- spec/models/storage_host_response_spec.rb
|
426
|
+
- spec/models/snapshot_create_spec.rb
|
427
|
+
- spec/models/storage_resource_create_spec.rb
|
428
|
+
- spec/models/service_resource_attachment_spec.rb
|
429
|
+
- spec/models/auto_sde_project_spec.rb
|
430
430
|
- spec/models/host_cluster_spec.rb
|
431
|
-
- spec/models/
|
431
|
+
- spec/models/storage_host_wwpn_candidates_spec.rb
|
432
432
|
- spec/models/storage_resource_spec.rb
|
433
|
-
- spec/models/
|
434
|
-
- spec/models/auth_response_spec.rb
|
435
|
-
- spec/models/job_spec.rb
|
436
|
-
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
437
|
-
- spec/models/volume_create_spec.rb
|
438
|
-
- spec/models/native_capability_spec.rb
|
433
|
+
- spec/models/refresh_system_spec.rb
|
439
434
|
- spec/models/storage_system_update_spec.rb
|
435
|
+
- spec/models/storage_resource_response_spec.rb
|
436
|
+
- spec/models/job_create_spec.rb
|
437
|
+
- spec/models/native_capability_spec.rb
|
440
438
|
- spec/models/host_cluster_membership_spec.rb
|
441
|
-
- spec/models/
|
442
|
-
- spec/models/
|
443
|
-
- spec/models/
|
439
|
+
- spec/models/host_spec.rb
|
440
|
+
- spec/models/storage_host_update_spec.rb
|
441
|
+
- spec/models/storage_host_spec.rb
|
442
|
+
- spec/models/storage_host_volume_mapping_spec.rb
|
443
|
+
- spec/models/job_spec.rb
|
444
|
+
- spec/models/account_spec.rb
|
445
|
+
- spec/models/event_response_spec.rb
|
446
|
+
- spec/models/capability_translation_spec.rb
|
447
|
+
- spec/models/service_abstract_capability_value_spec.rb
|
448
|
+
- spec/models/auto_sde_role_spec.rb
|
449
|
+
- spec/models/host_cluster_volume_mapping_spec.rb
|
450
|
+
- spec/models/profile_spec.rb
|
451
|
+
- spec/models/snapshot_spec.rb
|
444
452
|
- spec/models/event_spec.rb
|
445
|
-
- spec/models/
|
453
|
+
- spec/models/address_create_spec.rb
|
454
|
+
- spec/models/service_create_spec.rb
|
455
|
+
- spec/models/abstract_capability_spec.rb
|
456
|
+
- spec/models/authentication_spec.rb
|
457
|
+
- spec/models/system_type_create_spec.rb
|
458
|
+
- spec/models/host_create_spec.rb
|
459
|
+
- spec/models/user_spec.rb
|
446
460
|
- spec/models/storage_system_create_spec.rb
|
447
|
-
- spec/models/
|
448
|
-
- spec/models/
|
461
|
+
- spec/models/host_cluster_response_spec.rb
|
462
|
+
- spec/models/storage_host_create_spec.rb
|
463
|
+
- spec/models/storage_host_volume_mapping_response_spec.rb
|
464
|
+
- spec/models/auth_response_spec.rb
|
465
|
+
- spec/models/account_post_request_spec.rb
|
466
|
+
- spec/models/account_post_response_spec.rb
|
467
|
+
- spec/models/provisioning_strategy_spec.rb
|
449
468
|
- spec/models/volume_safe_delete_create_spec.rb
|
469
|
+
- spec/models/host_volume_connection_spec.rb
|
470
|
+
- spec/models/host_cluster_create_spec.rb
|
450
471
|
- spec/models/service_spec.rb
|
451
|
-
- spec/models/
|
452
|
-
- spec/models/
|
453
|
-
- spec/models/
|
454
|
-
- spec/models/account_post_response_spec.rb
|
455
|
-
- spec/models/snapshot_spec.rb
|
456
|
-
- spec/models/user_create_spec.rb
|
472
|
+
- spec/models/celery_config_spec.rb
|
473
|
+
- spec/models/host_volume_connection_create_spec.rb
|
474
|
+
- spec/models/volume_response_spec.rb
|
457
475
|
- spec/models/storage_system_spec.rb
|
458
|
-
- spec/models/account_post_request_spec.rb
|
459
|
-
- spec/models/job_create_spec.rb
|
460
|
-
- spec/models/auto_sde_project_spec.rb
|
461
|
-
- spec/models/storage_host_volume_mapping_response_spec.rb
|
462
|
-
- spec/models/storage_resource_response_spec.rb
|
463
|
-
- spec/models/account_spec.rb
|
464
476
|
- spec/models/validate_system_spec.rb
|
477
|
+
- spec/models/storage_host_volume_mapping_create_spec.rb
|
478
|
+
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
465
479
|
- spec/models/volume_update_spec.rb
|
466
|
-
- spec/models/profile_spec.rb
|
467
|
-
- spec/models/host_cluster_volume_mapping_spec.rb
|
468
|
-
- spec/models/capability_translation_spec.rb
|
469
|
-
- spec/models/storage_resource_create_spec.rb
|
470
|
-
- spec/models/address_create_spec.rb
|
471
|
-
- spec/models/storage_host_create_spec.rb
|
472
|
-
- spec/models/volume_safe_delete_spec.rb
|
473
|
-
- spec/models/volume_response_spec.rb
|
474
|
-
- spec/models/host_create_spec.rb
|
475
|
-
- spec/models/storage_host_update_spec.rb
|
476
|
-
- spec/models/user_update_spec.rb
|
477
480
|
- spec/models/address_spec.rb
|
478
|
-
- spec/models/
|
479
|
-
- spec/models/
|
480
|
-
- spec/models/
|
481
|
-
- spec/models/host_volume_connection_create_spec.rb
|
482
|
-
- spec/models/storage_host_wwpn_candidates_spec.rb
|
483
|
-
- spec/models/host_cluster_volume_mapping_response_spec.rb
|
481
|
+
- spec/models/user_create_spec.rb
|
482
|
+
- spec/models/host_cluster_volume_mapping_create_spec.rb
|
483
|
+
- spec/models/user_update_spec.rb
|
484
484
|
- spec/spec_helper.rb
|