autosde_openapi_client 3.2.12 → 3.2.13

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: 6e8ff4e8d7a65d3990cca0f6e3840e18fb798567f7846b11902e944067712323
4
- data.tar.gz: e62724857a317154518520015a5d13156f0e75a8a01835a7b9c0e7d43fd221a4
3
+ metadata.gz: 3f3e3701125dc4939eeaa803d861874e5957f35764f375b7697d3a3b28eac95b
4
+ data.tar.gz: 8eae63b682acc7bfbbda1a5c47c29132beac72b8833327c363c90f4bb591fa9b
5
5
  SHA512:
6
- metadata.gz: 9dd54cbb043d451c07585c673a4a6aa20ba8f7cebc2d048bfe963febf9fb043343bd42d83b7eef5c2f8f44d6205e17dd83854825f7cfc012a8766f229c42a8e4
7
- data.tar.gz: a9b37139e71a05501193d87651a3866f015504ac7b4353928653c7556ccbd7119956837ed67712ac3a747b849283ed27aa19dfca179187795b7faf71879b5223
6
+ metadata.gz: 61f04cf435ee29dc9d1b9b10cf16401bfd378b5646781dc5d35c9c941d06cc9de059e0b846c05f3d4579fa15bf9235afbc3a471e336dd8b3c80d1cf871c588ca
7
+ data.tar.gz: edde6b3e10dd571f6a9f64aba48a2934b958a251f6e22415f79b4400688b4306b3281e50c12df1224121b39b287f4245e017701d6c0ac82a09e1eef2e14f3642
data/README.md CHANGED
@@ -249,6 +249,7 @@ Class | Method | HTTP request | Description
249
249
  - [AutosdeOpenapiClient::ServiceAbstractCapabilityValueResponse](docs/ServiceAbstractCapabilityValueResponse.md)
250
250
  - [AutosdeOpenapiClient::ServiceCreate](docs/ServiceCreate.md)
251
251
  - [AutosdeOpenapiClient::ServiceResourceAttachment](docs/ServiceResourceAttachment.md)
252
+ - [AutosdeOpenapiClient::ServiceResourceAttachmentCreate](docs/ServiceResourceAttachmentCreate.md)
252
253
  - [AutosdeOpenapiClient::ServiceResourceAttachmentResponse](docs/ServiceResourceAttachmentResponse.md)
253
254
  - [AutosdeOpenapiClient::ServiceResourcesCompliance](docs/ServiceResourcesCompliance.md)
254
255
  - [AutosdeOpenapiClient::ServiceResourcesComplianceResponse](docs/ServiceResourcesComplianceResponse.md)
@@ -210,7 +210,7 @@ end
210
210
 
211
211
  ## service_resource_attachment_post
212
212
 
213
- > <AsyncResponse> service_resource_attachment_post(service_resource_attachment)
213
+ > <AsyncResponse> service_resource_attachment_post(service_resource_attachment_create)
214
214
 
215
215
 
216
216
 
@@ -226,11 +226,11 @@ AutosdeOpenapiClient.configure do |config|
226
226
  end
227
227
 
228
228
  api_instance = AutosdeOpenapiClient::ServiceResourceAttachmentApi.new
229
- service_resource_attachment = AutosdeOpenapiClient::ServiceResourceAttachment.new # ServiceResourceAttachment |
229
+ service_resource_attachment_create = AutosdeOpenapiClient::ServiceResourceAttachmentCreate.new # ServiceResourceAttachmentCreate |
230
230
 
231
231
  begin
232
232
 
233
- result = api_instance.service_resource_attachment_post(service_resource_attachment)
233
+ result = api_instance.service_resource_attachment_post(service_resource_attachment_create)
234
234
  p result
235
235
  rescue AutosdeOpenapiClient::ApiError => e
236
236
  puts "Error when calling ServiceResourceAttachmentApi->service_resource_attachment_post: #{e}"
@@ -241,12 +241,12 @@ end
241
241
 
242
242
  This returns an Array which contains the response data, status code and headers.
243
243
 
244
- > <Array(<AsyncResponse>, Integer, Hash)> service_resource_attachment_post_with_http_info(service_resource_attachment)
244
+ > <Array(<AsyncResponse>, Integer, Hash)> service_resource_attachment_post_with_http_info(service_resource_attachment_create)
245
245
 
246
246
  ```ruby
247
247
  begin
248
248
 
249
- data, status_code, headers = api_instance.service_resource_attachment_post_with_http_info(service_resource_attachment)
249
+ data, status_code, headers = api_instance.service_resource_attachment_post_with_http_info(service_resource_attachment_create)
250
250
  p status_code # => 2xx
251
251
  p headers # => { ... }
252
252
  p data # => <AsyncResponse>
@@ -259,7 +259,7 @@ end
259
259
 
260
260
  | Name | Type | Description | Notes |
261
261
  | ---- | ---- | ----------- | ----- |
262
- | **service_resource_attachment** | [**ServiceResourceAttachment**](ServiceResourceAttachment.md) | | |
262
+ | **service_resource_attachment_create** | [**ServiceResourceAttachmentCreate**](ServiceResourceAttachmentCreate.md) | | |
263
263
 
264
264
  ### Return type
265
265
 
@@ -0,0 +1,22 @@
1
+ # AutosdeOpenapiClient::ServiceResourceAttachmentCreate
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **compliant** | **Boolean** | compliant | [optional][default to false] |
8
+ | **service** | **String** | !!uuid of service | [optional] |
9
+ | **storage_resource** | **String** | !!uuid of storage_resource | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'autosde_openapi_client'
15
+
16
+ instance = AutosdeOpenapiClient::ServiceResourceAttachmentCreate.new(
17
+ compliant: null,
18
+ service: null,
19
+ storage_resource: null
20
+ )
21
+ ```
22
+
@@ -190,24 +190,24 @@ module AutosdeOpenapiClient
190
190
  return data, status_code, headers
191
191
  end
192
192
 
193
- # @param service_resource_attachment [ServiceResourceAttachment]
193
+ # @param service_resource_attachment_create [ServiceResourceAttachmentCreate]
194
194
  # @param [Hash] opts the optional parameters
195
195
  # @return [AsyncResponse]
196
- def service_resource_attachment_post(service_resource_attachment, opts = {})
197
- data, _status_code, _headers = service_resource_attachment_post_with_http_info(service_resource_attachment, opts)
196
+ def service_resource_attachment_post(service_resource_attachment_create, opts = {})
197
+ data, _status_code, _headers = service_resource_attachment_post_with_http_info(service_resource_attachment_create, opts)
198
198
  data
199
199
  end
200
200
 
201
- # @param service_resource_attachment [ServiceResourceAttachment]
201
+ # @param service_resource_attachment_create [ServiceResourceAttachmentCreate]
202
202
  # @param [Hash] opts the optional parameters
203
203
  # @return [Array<(AsyncResponse, Integer, Hash)>] AsyncResponse data, response status code and response headers
204
- def service_resource_attachment_post_with_http_info(service_resource_attachment, opts = {})
204
+ def service_resource_attachment_post_with_http_info(service_resource_attachment_create, opts = {})
205
205
  if @api_client.config.debugging
206
206
  @api_client.config.logger.debug 'Calling API: ServiceResourceAttachmentApi.service_resource_attachment_post ...'
207
207
  end
208
- # verify the required parameter 'service_resource_attachment' is set
209
- if @api_client.config.client_side_validation && service_resource_attachment.nil?
210
- fail ArgumentError, "Missing the required parameter 'service_resource_attachment' when calling ServiceResourceAttachmentApi.service_resource_attachment_post"
208
+ # verify the required parameter 'service_resource_attachment_create' is set
209
+ if @api_client.config.client_side_validation && service_resource_attachment_create.nil?
210
+ fail ArgumentError, "Missing the required parameter 'service_resource_attachment_create' when calling ServiceResourceAttachmentApi.service_resource_attachment_post"
211
211
  end
212
212
  # resource path
213
213
  local_var_path = '/service-resource-attachment'
@@ -226,7 +226,7 @@ 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(service_resource_attachment)
229
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(service_resource_attachment_create)
230
230
 
231
231
  # return_type
232
232
  return_type = opts[:debug_return_type] || 'AsyncResponse'
@@ -0,0 +1,242 @@
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 'date'
14
+ require 'time'
15
+
16
+ module AutosdeOpenapiClient
17
+ # TODO add description
18
+ class ServiceResourceAttachmentCreate
19
+ # compliant
20
+ attr_accessor :compliant
21
+
22
+ # !!uuid of service
23
+ attr_accessor :service
24
+
25
+ # !!uuid of storage_resource
26
+ attr_accessor :storage_resource
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'compliant' => :'compliant',
32
+ :'service' => :'service',
33
+ :'storage_resource' => :'storage_resource'
34
+ }
35
+ end
36
+
37
+ # Returns all the JSON keys this model knows about
38
+ def self.acceptable_attributes
39
+ attribute_map.values
40
+ end
41
+
42
+ # Attribute type mapping.
43
+ def self.openapi_types
44
+ {
45
+ :'compliant' => :'Boolean',
46
+ :'service' => :'String',
47
+ :'storage_resource' => :'String'
48
+ }
49
+ end
50
+
51
+ # List of attributes with nullable: true
52
+ def self.openapi_nullable
53
+ Set.new([
54
+ ])
55
+ end
56
+
57
+ # Initializes the object
58
+ # @param [Hash] attributes Model attributes in the form of hash
59
+ def initialize(attributes = {})
60
+ if (!attributes.is_a?(Hash))
61
+ fail ArgumentError, "The input argument (attributes) must be a hash in `AutosdeOpenapiClient::ServiceResourceAttachmentCreate` initialize method"
62
+ end
63
+
64
+ # check to see if the attribute exists and convert string to symbol for hash key
65
+ attributes = attributes.each_with_object({}) { |(k, v), h|
66
+ if (!self.class.attribute_map.key?(k.to_sym))
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `AutosdeOpenapiClient::ServiceResourceAttachmentCreate`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
68
+ end
69
+ h[k.to_sym] = v
70
+ }
71
+
72
+ if attributes.key?(:'compliant')
73
+ self.compliant = attributes[:'compliant']
74
+ else
75
+ self.compliant = false
76
+ end
77
+
78
+ if attributes.key?(:'service')
79
+ self.service = attributes[:'service']
80
+ end
81
+
82
+ if attributes.key?(:'storage_resource')
83
+ self.storage_resource = attributes[:'storage_resource']
84
+ end
85
+ end
86
+
87
+ # Show invalid properties with the reasons. Usually used together with valid?
88
+ # @return Array for valid properties with the reasons
89
+ def list_invalid_properties
90
+ invalid_properties = Array.new
91
+ invalid_properties
92
+ end
93
+
94
+ # Check to see if the all the properties in the model are valid
95
+ # @return true if the model is valid
96
+ def valid?
97
+ true
98
+ end
99
+
100
+ # Checks equality by comparing each attribute.
101
+ # @param [Object] Object to be compared
102
+ def ==(o)
103
+ return true if self.equal?(o)
104
+ self.class == o.class &&
105
+ compliant == o.compliant &&
106
+ service == o.service &&
107
+ storage_resource == o.storage_resource
108
+ end
109
+
110
+ # @see the `==` method
111
+ # @param [Object] Object to be compared
112
+ def eql?(o)
113
+ self == o
114
+ end
115
+
116
+ # Calculates hash code according to all attributes.
117
+ # @return [Integer] Hash code
118
+ def hash
119
+ [compliant, service, storage_resource].hash
120
+ end
121
+
122
+ # Builds the object from hash
123
+ # @param [Hash] attributes Model attributes in the form of hash
124
+ # @return [Object] Returns the model itself
125
+ def self.build_from_hash(attributes)
126
+ new.build_from_hash(attributes)
127
+ end
128
+
129
+ # Builds the object from hash
130
+ # @param [Hash] attributes Model attributes in the form of hash
131
+ # @return [Object] Returns the model itself
132
+ def build_from_hash(attributes)
133
+ return nil unless attributes.is_a?(Hash)
134
+ self.class.openapi_types.each_pair do |key, type|
135
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
136
+ self.send("#{key}=", nil)
137
+ elsif type =~ /\AArray<(.*)>/i
138
+ # check to ensure the input is an array given that the attribute
139
+ # is documented as an array but the input is not
140
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
141
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
142
+ end
143
+ elsif !attributes[self.class.attribute_map[key]].nil?
144
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
145
+ end
146
+ end
147
+
148
+ self
149
+ end
150
+
151
+ # Deserializes the data based on type
152
+ # @param string type Data type
153
+ # @param string value Value to be deserialized
154
+ # @return [Object] Deserialized data
155
+ def _deserialize(type, value)
156
+ case type.to_sym
157
+ when :Time
158
+ Time.parse(value)
159
+ when :Date
160
+ Date.parse(value)
161
+ when :String
162
+ value.to_s
163
+ when :Integer
164
+ value.to_i
165
+ when :Float
166
+ value.to_f
167
+ when :Boolean
168
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
169
+ true
170
+ else
171
+ false
172
+ end
173
+ when :Object
174
+ # generic object (usually a Hash), return directly
175
+ value
176
+ when /\AArray<(?<inner_type>.+)>\z/
177
+ inner_type = Regexp.last_match[:inner_type]
178
+ value.map { |v| _deserialize(inner_type, v) }
179
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
180
+ k_type = Regexp.last_match[:k_type]
181
+ v_type = Regexp.last_match[:v_type]
182
+ {}.tap do |hash|
183
+ value.each do |k, v|
184
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
185
+ end
186
+ end
187
+ else # model
188
+ # models (e.g. Pet) or oneOf
189
+ klass = AutosdeOpenapiClient.const_get(type)
190
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
191
+ end
192
+ end
193
+
194
+ # Returns the string representation of the object
195
+ # @return [String] String presentation of the object
196
+ def to_s
197
+ to_hash.to_s
198
+ end
199
+
200
+ # to_body is an alias to to_hash (backward compatibility)
201
+ # @return [Hash] Returns the object in the form of hash
202
+ def to_body
203
+ to_hash
204
+ end
205
+
206
+ # Returns the object in the form of hash
207
+ # @return [Hash] Returns the object in the form of hash
208
+ def to_hash
209
+ hash = {}
210
+ self.class.attribute_map.each_pair do |attr, param|
211
+ value = self.send(attr)
212
+ if value.nil?
213
+ is_nullable = self.class.openapi_nullable.include?(attr)
214
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
215
+ end
216
+
217
+ hash[param] = _to_hash(value)
218
+ end
219
+ hash
220
+ end
221
+
222
+ # Outputs non-array value in the form of hash
223
+ # For object, use to_hash. Otherwise, just return the value
224
+ # @param [Object] value Any valid value
225
+ # @return [Hash] Returns the value in the form of hash
226
+ def _to_hash(value)
227
+ if value.is_a?(Array)
228
+ value.compact.map { |v| _to_hash(v) }
229
+ elsif value.is_a?(Hash)
230
+ {}.tap do |hash|
231
+ value.each { |k, v| hash[k] = _to_hash(v) }
232
+ end
233
+ elsif value.respond_to? :to_hash
234
+ value.to_hash
235
+ else
236
+ value
237
+ end
238
+ end
239
+
240
+ end
241
+
242
+ end
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Site Manager API
5
5
 
6
- The version of the OpenAPI document: 3.2.12
6
+ The version of the OpenAPI document: 3.2.13
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 = '3.2.12'
14
+ VERSION = '3.2.13'
15
15
  end
@@ -58,6 +58,7 @@ require 'autosde_openapi_client/models/service_abstract_capability_value'
58
58
  require 'autosde_openapi_client/models/service_abstract_capability_value_response'
59
59
  require 'autosde_openapi_client/models/service_create'
60
60
  require 'autosde_openapi_client/models/service_resource_attachment'
61
+ require 'autosde_openapi_client/models/service_resource_attachment_create'
61
62
  require 'autosde_openapi_client/models/service_resource_attachment_response'
62
63
  require 'autosde_openapi_client/models/service_resources_compliance'
63
64
  require 'autosde_openapi_client/models/service_resources_compliance_response'
@@ -62,7 +62,7 @@ describe 'ServiceResourceAttachmentApi' do
62
62
  end
63
63
 
64
64
  # unit tests for service_resource_attachment_post
65
- # @param service_resource_attachment
65
+ # @param service_resource_attachment_create
66
66
  # @param [Hash] opts the optional parameters
67
67
  # @return [AsyncResponse]
68
68
  describe 'service_resource_attachment_post test' do
@@ -0,0 +1,46 @@
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::ServiceResourceAttachmentCreate
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AutosdeOpenapiClient::ServiceResourceAttachmentCreate do
21
+ let(:instance) { AutosdeOpenapiClient::ServiceResourceAttachmentCreate.new }
22
+
23
+ describe 'test an instance of ServiceResourceAttachmentCreate' do
24
+ it 'should create an instance of ServiceResourceAttachmentCreate' do
25
+ expect(instance).to be_instance_of(AutosdeOpenapiClient::ServiceResourceAttachmentCreate)
26
+ end
27
+ end
28
+ describe 'test attribute "compliant"' 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 "service"' 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 "storage_resource"' 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
+ 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: 3.2.12
4
+ version: 3.2.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-04 00:00:00.000000000 Z
11
+ date: 2023-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -125,6 +125,7 @@ files:
125
125
  - docs/ServiceCreate.md
126
126
  - docs/ServiceResourceAttachment.md
127
127
  - docs/ServiceResourceAttachmentApi.md
128
+ - docs/ServiceResourceAttachmentCreate.md
128
129
  - docs/ServiceResourceAttachmentResponse.md
129
130
  - docs/ServiceResourcesCompliance.md
130
131
  - docs/ServiceResourcesComplianceApi.md
@@ -257,6 +258,7 @@ files:
257
258
  - lib/autosde_openapi_client/models/service_abstract_capability_value_response.rb
258
259
  - lib/autosde_openapi_client/models/service_create.rb
259
260
  - lib/autosde_openapi_client/models/service_resource_attachment.rb
261
+ - lib/autosde_openapi_client/models/service_resource_attachment_create.rb
260
262
  - lib/autosde_openapi_client/models/service_resource_attachment_response.rb
261
263
  - lib/autosde_openapi_client/models/service_resources_compliance.rb
262
264
  - lib/autosde_openapi_client/models/service_resources_compliance_response.rb
@@ -372,6 +374,7 @@ files:
372
374
  - spec/models/service_abstract_capability_value_response_spec.rb
373
375
  - spec/models/service_abstract_capability_value_spec.rb
374
376
  - spec/models/service_create_spec.rb
377
+ - spec/models/service_resource_attachment_create_spec.rb
375
378
  - spec/models/service_resource_attachment_response_spec.rb
376
379
  - spec/models/service_resource_attachment_spec.rb
377
380
  - spec/models/service_resources_compliance_response_spec.rb
@@ -437,120 +440,121 @@ signing_key:
437
440
  specification_version: 4
438
441
  summary: Site Manager API Ruby Gem
439
442
  test_files:
443
+ - spec/api/system_type_api_spec.rb
440
444
  - spec/api/storage_host_api_spec.rb
441
- - spec/api/host_cluster_membership_api_spec.rb
442
- - spec/api/service_resource_attachment_api_spec.rb
443
- - spec/api/auto_sde_role_api_spec.rb
445
+ - spec/api/abstract_capability_api_spec.rb
444
446
  - spec/api/snapshot_api_spec.rb
445
- - spec/api/storage_hosts_mapping_api_spec.rb
446
- - spec/api/storage_host_wwpn_candidates_api_spec.rb
447
- - spec/api/validate_system_api_spec.rb
448
- - spec/api/profile_api_spec.rb
449
- - spec/api/provisioning_strategy_api_spec.rb
450
- - spec/api/volume_migration_api_spec.rb
451
- - spec/api/service_abstract_capability_value_api_spec.rb
452
447
  - spec/api/storage_resource_api_spec.rb
453
- - spec/api/address_api_spec.rb
454
- - spec/api/service_api_spec.rb
455
- - spec/api/host_api_spec.rb
456
- - spec/api/volume_api_spec.rb
457
- - spec/api/user_api_spec.rb
458
- - spec/api/service_resources_compliance_api_spec.rb
459
- - spec/api/job_api_spec.rb
460
- - spec/api/host_volume_connection_api_spec.rb
461
- - spec/api/event_api_spec.rb
462
448
  - spec/api/auto_sde_project_api_spec.rb
463
- - spec/api/host_cluster_volume_mapping_api_spec.rb
464
- - spec/api/system_type_api_spec.rb
449
+ - spec/api/validate_system_api_spec.rb
465
450
  - spec/api/capability_translation_api_spec.rb
451
+ - spec/api/storage_host_wwpn_candidates_api_spec.rb
452
+ - spec/api/job_api_spec.rb
466
453
  - spec/api/volume_clone_api_spec.rb
467
- - spec/api/celery_config_api_spec.rb
468
- - spec/api/abstract_capability_api_spec.rb
469
- - spec/api/authentication_api_spec.rb
454
+ - spec/api/event_api_spec.rb
470
455
  - spec/api/native_capability_api_spec.rb
471
- - spec/api/storage_system_api_spec.rb
456
+ - spec/api/host_cluster_volume_mapping_api_spec.rb
457
+ - spec/api/service_resources_compliance_api_spec.rb
458
+ - spec/api/host_cluster_membership_api_spec.rb
459
+ - spec/api/celery_config_api_spec.rb
460
+ - spec/api/auto_sde_role_api_spec.rb
461
+ - spec/api/provisioning_strategy_api_spec.rb
462
+ - spec/api/refresh_system_api_spec.rb
463
+ - spec/api/storage_hosts_mapping_api_spec.rb
464
+ - spec/api/address_api_spec.rb
465
+ - spec/api/host_volume_connection_api_spec.rb
466
+ - spec/api/user_api_spec.rb
467
+ - spec/api/service_resource_attachment_api_spec.rb
468
+ - spec/api/volume_api_spec.rb
469
+ - spec/api/service_abstract_capability_value_api_spec.rb
470
+ - spec/api/service_api_spec.rb
472
471
  - spec/api/account_api_spec.rb
472
+ - spec/api/volume_migration_api_spec.rb
473
473
  - spec/api/host_cluster_api_spec.rb
474
- - spec/api/refresh_system_api_spec.rb
474
+ - spec/api/authentication_api_spec.rb
475
+ - spec/api/storage_system_api_spec.rb
476
+ - spec/api/host_api_spec.rb
477
+ - spec/api/profile_api_spec.rb
475
478
  - spec/api_client_spec.rb
476
479
  - spec/configuration_spec.rb
477
- - spec/models/host_cluster_response_spec.rb
478
- - spec/models/storage_host_spec.rb
479
- - spec/models/storage_system_create_spec.rb
480
+ - spec/models/host_cluster_volume_mapping_spec.rb
481
+ - spec/models/host_create_spec.rb
480
482
  - spec/models/service_resource_attachment_spec.rb
481
- - spec/models/host_volume_connection_create_spec.rb
482
- - spec/models/service_abstract_capability_value_response_spec.rb
483
- - spec/models/host_spec.rb
484
- - spec/models/address_create_spec.rb
485
- - spec/models/storage_host_update_spec.rb
486
- - spec/models/snapshot_response_spec.rb
487
- - spec/models/celery_config_spec.rb
488
- - spec/models/storage_host_create_spec.rb
489
- - spec/models/storage_resource_spec.rb
490
- - spec/models/provisioning_strategy_spec.rb
483
+ - spec/models/profile_spec.rb
484
+ - spec/models/volume_create_spec.rb
485
+ - spec/models/account_post_response_spec.rb
491
486
  - spec/models/host_volume_connection_spec.rb
487
+ - spec/models/service_create_spec.rb
488
+ - spec/models/job_create_spec.rb
492
489
  - spec/models/account_spec.rb
493
- - spec/models/host_cluster_membership_spec.rb
494
- - spec/models/account_post_request_spec.rb
495
- - spec/models/auto_sde_role_spec.rb
496
- - spec/models/auto_sde_project_spec.rb
497
- - spec/models/service_resources_compliance_spec.rb
498
- - spec/models/async_response_spec.rb
490
+ - spec/models/abstract_capability_response_spec.rb
491
+ - spec/models/host_cluster_volume_mapping_create_spec.rb
492
+ - spec/models/snapshot_response_spec.rb
499
493
  - spec/models/volume_update_spec.rb
500
- - spec/models/storage_resource_update_spec.rb
501
- - spec/models/snapshot_spec.rb
502
- - spec/models/storage_system_response_spec.rb
503
- - spec/models/snapshot_create_spec.rb
494
+ - spec/models/service_abstract_capability_value_spec.rb
495
+ - spec/models/storage_system_spec.rb
496
+ - spec/models/abstract_capability_spec.rb
497
+ - spec/models/user_spec.rb
504
498
  - spec/models/host_cluster_spec.rb
505
- - spec/models/host_cluster_volume_mapping_create_spec.rb
506
- - spec/models/event_spec.rb
499
+ - spec/models/job_spec.rb
500
+ - spec/models/volume_clone_spec.rb
501
+ - spec/models/validate_system_spec.rb
502
+ - spec/models/capability_translation_spec.rb
503
+ - spec/models/account_post_request_spec.rb
507
504
  - spec/models/storage_hosts_mapping_create_spec.rb
508
- - spec/models/host_create_spec.rb
509
- - spec/models/system_type_response_spec.rb
510
- - spec/models/volume_spec.rb
511
- - spec/models/job_response_spec.rb
512
- - spec/models/service_abstract_capability_value_spec.rb
513
- - spec/models/abstract_capability_response_spec.rb
514
- - spec/models/storage_host_response_spec.rb
515
- - spec/models/volume_create_spec.rb
516
- - spec/models/service_response_spec.rb
517
505
  - spec/models/validate_system_data_spec.rb
518
- - spec/models/storage_hosts_mapping_spec.rb
519
- - spec/models/storage_host_wwpn_candidates_spec.rb
520
- - spec/models/validate_system_spec.rb
521
- - spec/models/service_resources_compliance_response_spec.rb
506
+ - spec/models/storage_host_update_spec.rb
507
+ - spec/models/snapshot_spec.rb
522
508
  - spec/models/host_cluster_create_spec.rb
509
+ - spec/models/storage_resource_update_spec.rb
510
+ - spec/models/system_type_create_spec.rb
511
+ - spec/models/address_create_spec.rb
512
+ - spec/models/storage_system_create_spec.rb
513
+ - spec/models/host_spec.rb
514
+ - spec/models/volume_response_spec.rb
515
+ - spec/models/service_resources_compliance_response_spec.rb
516
+ - spec/models/storage_resource_spec.rb
517
+ - spec/models/storage_resource_response_spec.rb
518
+ - spec/models/storage_host_wwpn_candidates_spec.rb
519
+ - spec/models/auto_sde_project_spec.rb
520
+ - spec/models/job_response_spec.rb
521
+ - spec/models/service_resource_attachment_response_spec.rb
522
+ - spec/models/refresh_system_spec.rb
523
+ - spec/models/storage_host_spec.rb
523
524
  - spec/models/capability_translation_create_spec.rb
524
- - spec/models/service_create_spec.rb
525
- - spec/models/address_spec.rb
526
- - spec/models/capability_translation_spec.rb
527
525
  - spec/models/host_cluster_volume_mapping_response_spec.rb
528
- - spec/models/user_update_spec.rb
526
+ - spec/models/volume_migration_spec.rb
527
+ - spec/models/storage_hosts_mapping_spec.rb
528
+ - spec/models/service_abstract_capability_value_response_spec.rb
529
529
  - spec/models/authentication_spec.rb
530
- - spec/models/host_cluster_volume_mapping_spec.rb
531
- - spec/models/abstract_capability_spec.rb
532
- - spec/models/volume_clone_spec.rb
533
- - spec/models/volume_response_spec.rb
534
- - spec/models/storage_system_spec.rb
530
+ - spec/models/host_volume_connection_create_spec.rb
531
+ - spec/models/host_cluster_response_spec.rb
532
+ - spec/models/system_type_response_spec.rb
533
+ - spec/models/service_response_spec.rb
534
+ - spec/models/host_cluster_membership_spec.rb
535
+ - spec/models/event_spec.rb
535
536
  - spec/models/service_update_spec.rb
537
+ - spec/models/celery_config_spec.rb
538
+ - spec/models/storage_host_create_spec.rb
536
539
  - spec/models/native_capability_spec.rb
537
- - spec/models/refresh_system_spec.rb
538
- - spec/models/service_resource_attachment_response_spec.rb
539
- - spec/models/event_response_spec.rb
540
- - spec/models/auth_response_spec.rb
541
- - spec/models/service_spec.rb
542
- - spec/models/storage_system_update_spec.rb
543
- - spec/models/storage_hosts_mapping_response_spec.rb
540
+ - spec/models/service_resource_attachment_create_spec.rb
541
+ - spec/models/user_update_spec.rb
544
542
  - spec/models/system_type_spec.rb
545
- - spec/models/job_spec.rb
546
- - spec/models/user_spec.rb
547
- - spec/models/storage_resource_response_spec.rb
548
543
  - spec/models/host_cluster_update_spec.rb
549
- - spec/models/system_type_create_spec.rb
550
- - spec/models/profile_spec.rb
551
- - spec/models/account_post_response_spec.rb
544
+ - spec/models/auto_sde_role_spec.rb
545
+ - spec/models/provisioning_strategy_spec.rb
546
+ - spec/models/storage_hosts_mapping_response_spec.rb
547
+ - spec/models/service_spec.rb
548
+ - spec/models/volume_spec.rb
552
549
  - spec/models/user_create_spec.rb
553
- - spec/models/job_create_spec.rb
554
- - spec/models/volume_migration_spec.rb
550
+ - spec/models/event_response_spec.rb
551
+ - spec/models/snapshot_create_spec.rb
552
+ - spec/models/storage_system_update_spec.rb
553
+ - spec/models/auth_response_spec.rb
554
+ - spec/models/service_resources_compliance_spec.rb
555
+ - spec/models/storage_system_response_spec.rb
555
556
  - spec/models/storage_resource_create_spec.rb
557
+ - spec/models/async_response_spec.rb
558
+ - spec/models/address_spec.rb
559
+ - spec/models/storage_host_response_spec.rb
556
560
  - spec/spec_helper.rb