autosde_openapi_client 1.2.11 → 1.2.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/docs/AbstractCapabilityApi.md +8 -8
  4. data/docs/AbstractCapabilityResponse.md +20 -0
  5. data/docs/CapabilityTranslation.md +2 -2
  6. data/docs/CapabilityTranslationCreate.md +2 -2
  7. data/docs/ServiceAbstractCapabilityValueApi.md +276 -0
  8. data/docs/ServiceAbstractCapabilityValueResponse.md +22 -0
  9. data/docs/StorageSystem.md +2 -0
  10. data/docs/StorageSystemCreate.md +2 -0
  11. data/docs/StorageSystemUpdate.md +2 -0
  12. data/lib/autosde_openapi_client/api/abstract_capability_api.rb +6 -6
  13. data/lib/autosde_openapi_client/api/service_abstract_capability_value_api.rb +254 -0
  14. data/lib/autosde_openapi_client/models/abstract_capability_response.rb +230 -0
  15. data/lib/autosde_openapi_client/models/capability_translation.rb +13 -13
  16. data/lib/autosde_openapi_client/models/capability_translation_create.rb +13 -13
  17. data/lib/autosde_openapi_client/models/service_abstract_capability_value_response.rb +240 -0
  18. data/lib/autosde_openapi_client/models/storage_system.rb +10 -1
  19. data/lib/autosde_openapi_client/models/storage_system_create.rb +10 -1
  20. data/lib/autosde_openapi_client/models/storage_system_update.rb +10 -1
  21. data/lib/autosde_openapi_client/version.rb +2 -2
  22. data/lib/autosde_openapi_client.rb +3 -0
  23. data/spec/api/abstract_capability_api_spec.rb +2 -2
  24. data/spec/api/service_abstract_capability_value_api_spec.rb +74 -0
  25. data/spec/models/abstract_capability_response_spec.rb +40 -0
  26. data/spec/models/capability_translation_create_spec.rb +2 -2
  27. data/spec/models/capability_translation_spec.rb +3 -3
  28. data/spec/models/service_abstract_capability_value_response_spec.rb +46 -0
  29. data/spec/models/storage_system_create_spec.rb +6 -0
  30. data/spec/models/storage_system_spec.rb +6 -0
  31. data/spec/models/storage_system_update_spec.rb +6 -0
  32. metadata +87 -75
@@ -0,0 +1,254 @@
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 'cgi'
14
+
15
+ module AutosdeOpenapiClient
16
+ class ServiceAbstractCapabilityValueApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # @param [Hash] opts the optional parameters
23
+ # @return [Array<ServiceAbstractCapabilityValueResponse>]
24
+ def service_abstract_capability_values_get(opts = {})
25
+ data, _status_code, _headers = service_abstract_capability_values_get_with_http_info(opts)
26
+ data
27
+ end
28
+
29
+ # @param [Hash] opts the optional parameters
30
+ # @return [Array<(Array<ServiceAbstractCapabilityValueResponse>, Integer, Hash)>] Array<ServiceAbstractCapabilityValueResponse> data, response status code and response headers
31
+ def service_abstract_capability_values_get_with_http_info(opts = {})
32
+ if @api_client.config.debugging
33
+ @api_client.config.logger.debug 'Calling API: ServiceAbstractCapabilityValueApi.service_abstract_capability_values_get ...'
34
+ end
35
+ # resource path
36
+ local_var_path = '/service-abstract-capability-values'
37
+
38
+ # query parameters
39
+ query_params = opts[:query_params] || {}
40
+
41
+ # header parameters
42
+ header_params = opts[:header_params] || {}
43
+ # HTTP header 'Accept' (if needed)
44
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
45
+
46
+ # form parameters
47
+ form_params = opts[:form_params] || {}
48
+
49
+ # http body (model)
50
+ post_body = opts[:debug_body]
51
+
52
+ # return_type
53
+ return_type = opts[:debug_return_type] || 'Array<ServiceAbstractCapabilityValueResponse>'
54
+
55
+ # auth_names
56
+ auth_names = opts[:debug_auth_names] || ['bearerAuth']
57
+
58
+ new_options = opts.merge(
59
+ :operation => :"ServiceAbstractCapabilityValueApi.service_abstract_capability_values_get",
60
+ :header_params => header_params,
61
+ :query_params => query_params,
62
+ :form_params => form_params,
63
+ :body => post_body,
64
+ :auth_names => auth_names,
65
+ :return_type => return_type
66
+ )
67
+
68
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
69
+ if @api_client.config.debugging
70
+ @api_client.config.logger.debug "API called: ServiceAbstractCapabilityValueApi#service_abstract_capability_values_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
71
+ end
72
+ return data, status_code, headers
73
+ end
74
+
75
+ # @param pk [Integer]
76
+ # @param [Hash] opts the optional parameters
77
+ # @return [ServiceAbstractCapabilityValue]
78
+ def service_abstract_capability_values_pk_delete(pk, opts = {})
79
+ data, _status_code, _headers = service_abstract_capability_values_pk_delete_with_http_info(pk, opts)
80
+ data
81
+ end
82
+
83
+ # @param pk [Integer]
84
+ # @param [Hash] opts the optional parameters
85
+ # @return [Array<(ServiceAbstractCapabilityValue, Integer, Hash)>] ServiceAbstractCapabilityValue data, response status code and response headers
86
+ def service_abstract_capability_values_pk_delete_with_http_info(pk, opts = {})
87
+ if @api_client.config.debugging
88
+ @api_client.config.logger.debug 'Calling API: ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_delete ...'
89
+ end
90
+ # verify the required parameter 'pk' is set
91
+ if @api_client.config.client_side_validation && pk.nil?
92
+ fail ArgumentError, "Missing the required parameter 'pk' when calling ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_delete"
93
+ end
94
+ # resource path
95
+ local_var_path = '/service-abstract-capability-values/{pk}'.sub('{' + 'pk' + '}', CGI.escape(pk.to_s))
96
+
97
+ # query parameters
98
+ query_params = opts[:query_params] || {}
99
+
100
+ # header parameters
101
+ header_params = opts[:header_params] || {}
102
+ # HTTP header 'Accept' (if needed)
103
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
104
+
105
+ # form parameters
106
+ form_params = opts[:form_params] || {}
107
+
108
+ # http body (model)
109
+ post_body = opts[:debug_body]
110
+
111
+ # return_type
112
+ return_type = opts[:debug_return_type] || 'ServiceAbstractCapabilityValue'
113
+
114
+ # auth_names
115
+ auth_names = opts[:debug_auth_names] || ['bearerAuth']
116
+
117
+ new_options = opts.merge(
118
+ :operation => :"ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_delete",
119
+ :header_params => header_params,
120
+ :query_params => query_params,
121
+ :form_params => form_params,
122
+ :body => post_body,
123
+ :auth_names => auth_names,
124
+ :return_type => return_type
125
+ )
126
+
127
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
128
+ if @api_client.config.debugging
129
+ @api_client.config.logger.debug "API called: ServiceAbstractCapabilityValueApi#service_abstract_capability_values_pk_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
130
+ end
131
+ return data, status_code, headers
132
+ end
133
+
134
+ # @param pk [Integer]
135
+ # @param [Hash] opts the optional parameters
136
+ # @return [ServiceAbstractCapabilityValueResponse]
137
+ def service_abstract_capability_values_pk_get(pk, opts = {})
138
+ data, _status_code, _headers = service_abstract_capability_values_pk_get_with_http_info(pk, opts)
139
+ data
140
+ end
141
+
142
+ # @param pk [Integer]
143
+ # @param [Hash] opts the optional parameters
144
+ # @return [Array<(ServiceAbstractCapabilityValueResponse, Integer, Hash)>] ServiceAbstractCapabilityValueResponse data, response status code and response headers
145
+ def service_abstract_capability_values_pk_get_with_http_info(pk, opts = {})
146
+ if @api_client.config.debugging
147
+ @api_client.config.logger.debug 'Calling API: ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_get ...'
148
+ end
149
+ # verify the required parameter 'pk' is set
150
+ if @api_client.config.client_side_validation && pk.nil?
151
+ fail ArgumentError, "Missing the required parameter 'pk' when calling ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_get"
152
+ end
153
+ # resource path
154
+ local_var_path = '/service-abstract-capability-values/{pk}'.sub('{' + 'pk' + '}', CGI.escape(pk.to_s))
155
+
156
+ # query parameters
157
+ query_params = opts[:query_params] || {}
158
+
159
+ # header parameters
160
+ header_params = opts[:header_params] || {}
161
+ # HTTP header 'Accept' (if needed)
162
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
163
+
164
+ # form parameters
165
+ form_params = opts[:form_params] || {}
166
+
167
+ # http body (model)
168
+ post_body = opts[:debug_body]
169
+
170
+ # return_type
171
+ return_type = opts[:debug_return_type] || 'ServiceAbstractCapabilityValueResponse'
172
+
173
+ # auth_names
174
+ auth_names = opts[:debug_auth_names] || ['bearerAuth']
175
+
176
+ new_options = opts.merge(
177
+ :operation => :"ServiceAbstractCapabilityValueApi.service_abstract_capability_values_pk_get",
178
+ :header_params => header_params,
179
+ :query_params => query_params,
180
+ :form_params => form_params,
181
+ :body => post_body,
182
+ :auth_names => auth_names,
183
+ :return_type => return_type
184
+ )
185
+
186
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
187
+ if @api_client.config.debugging
188
+ @api_client.config.logger.debug "API called: ServiceAbstractCapabilityValueApi#service_abstract_capability_values_pk_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
189
+ end
190
+ return data, status_code, headers
191
+ end
192
+
193
+ # @param service_abstract_capability_value [ServiceAbstractCapabilityValue]
194
+ # @param [Hash] opts the optional parameters
195
+ # @return [ServiceAbstractCapabilityValue]
196
+ def service_abstract_capability_values_post(service_abstract_capability_value, opts = {})
197
+ data, _status_code, _headers = service_abstract_capability_values_post_with_http_info(service_abstract_capability_value, opts)
198
+ data
199
+ end
200
+
201
+ # @param service_abstract_capability_value [ServiceAbstractCapabilityValue]
202
+ # @param [Hash] opts the optional parameters
203
+ # @return [Array<(ServiceAbstractCapabilityValue, Integer, Hash)>] ServiceAbstractCapabilityValue data, response status code and response headers
204
+ def service_abstract_capability_values_post_with_http_info(service_abstract_capability_value, opts = {})
205
+ if @api_client.config.debugging
206
+ @api_client.config.logger.debug 'Calling API: ServiceAbstractCapabilityValueApi.service_abstract_capability_values_post ...'
207
+ end
208
+ # verify the required parameter 'service_abstract_capability_value' is set
209
+ if @api_client.config.client_side_validation && service_abstract_capability_value.nil?
210
+ fail ArgumentError, "Missing the required parameter 'service_abstract_capability_value' when calling ServiceAbstractCapabilityValueApi.service_abstract_capability_values_post"
211
+ end
212
+ # resource path
213
+ local_var_path = '/service-abstract-capability-values'
214
+
215
+ # query parameters
216
+ query_params = opts[:query_params] || {}
217
+
218
+ # header parameters
219
+ header_params = opts[:header_params] || {}
220
+ # HTTP header 'Accept' (if needed)
221
+ header_params['Accept'] = @api_client.select_header_accept(['*/*'])
222
+ # HTTP header 'Content-Type'
223
+ header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
224
+
225
+ # form parameters
226
+ form_params = opts[:form_params] || {}
227
+
228
+ # http body (model)
229
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(service_abstract_capability_value)
230
+
231
+ # return_type
232
+ return_type = opts[:debug_return_type] || 'ServiceAbstractCapabilityValue'
233
+
234
+ # auth_names
235
+ auth_names = opts[:debug_auth_names] || ['bearerAuth']
236
+
237
+ new_options = opts.merge(
238
+ :operation => :"ServiceAbstractCapabilityValueApi.service_abstract_capability_values_post",
239
+ :header_params => header_params,
240
+ :query_params => query_params,
241
+ :form_params => form_params,
242
+ :body => post_body,
243
+ :auth_names => auth_names,
244
+ :return_type => return_type
245
+ )
246
+
247
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
248
+ if @api_client.config.debugging
249
+ @api_client.config.logger.debug "API called: ServiceAbstractCapabilityValueApi#service_abstract_capability_values_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
250
+ end
251
+ return data, status_code, headers
252
+ end
253
+ end
254
+ end
@@ -0,0 +1,230 @@
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 AbstractCapabilityResponse
19
+ # name
20
+ attr_accessor :name
21
+
22
+ # uuid
23
+ attr_accessor :uuid
24
+
25
+ # Attribute mapping from ruby-style variable name to JSON key.
26
+ def self.attribute_map
27
+ {
28
+ :'name' => :'name',
29
+ :'uuid' => :'uuid'
30
+ }
31
+ end
32
+
33
+ # Returns all the JSON keys this model knows about
34
+ def self.acceptable_attributes
35
+ attribute_map.values
36
+ end
37
+
38
+ # Attribute type mapping.
39
+ def self.openapi_types
40
+ {
41
+ :'name' => :'String',
42
+ :'uuid' => :'String'
43
+ }
44
+ end
45
+
46
+ # List of attributes with nullable: true
47
+ def self.openapi_nullable
48
+ Set.new([
49
+ ])
50
+ end
51
+
52
+ # Initializes the object
53
+ # @param [Hash] attributes Model attributes in the form of hash
54
+ def initialize(attributes = {})
55
+ if (!attributes.is_a?(Hash))
56
+ fail ArgumentError, "The input argument (attributes) must be a hash in `AutosdeOpenapiClient::AbstractCapabilityResponse` initialize method"
57
+ end
58
+
59
+ # check to see if the attribute exists and convert string to symbol for hash key
60
+ attributes = attributes.each_with_object({}) { |(k, v), h|
61
+ if (!self.class.attribute_map.key?(k.to_sym))
62
+ fail ArgumentError, "`#{k}` is not a valid attribute in `AutosdeOpenapiClient::AbstractCapabilityResponse`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
63
+ end
64
+ h[k.to_sym] = v
65
+ }
66
+
67
+ if attributes.key?(:'name')
68
+ self.name = attributes[:'name']
69
+ end
70
+
71
+ if attributes.key?(:'uuid')
72
+ self.uuid = attributes[:'uuid']
73
+ end
74
+ end
75
+
76
+ # Show invalid properties with the reasons. Usually used together with valid?
77
+ # @return Array for valid properties with the reasons
78
+ def list_invalid_properties
79
+ invalid_properties = Array.new
80
+ invalid_properties
81
+ end
82
+
83
+ # Check to see if the all the properties in the model are valid
84
+ # @return true if the model is valid
85
+ def valid?
86
+ true
87
+ end
88
+
89
+ # Checks equality by comparing each attribute.
90
+ # @param [Object] Object to be compared
91
+ def ==(o)
92
+ return true if self.equal?(o)
93
+ self.class == o.class &&
94
+ name == o.name &&
95
+ uuid == o.uuid
96
+ end
97
+
98
+ # @see the `==` method
99
+ # @param [Object] Object to be compared
100
+ def eql?(o)
101
+ self == o
102
+ end
103
+
104
+ # Calculates hash code according to all attributes.
105
+ # @return [Integer] Hash code
106
+ def hash
107
+ [name, uuid].hash
108
+ end
109
+
110
+ # Builds the object from hash
111
+ # @param [Hash] attributes Model attributes in the form of hash
112
+ # @return [Object] Returns the model itself
113
+ def self.build_from_hash(attributes)
114
+ new.build_from_hash(attributes)
115
+ end
116
+
117
+ # Builds the object from hash
118
+ # @param [Hash] attributes Model attributes in the form of hash
119
+ # @return [Object] Returns the model itself
120
+ def build_from_hash(attributes)
121
+ return nil unless attributes.is_a?(Hash)
122
+ self.class.openapi_types.each_pair do |key, type|
123
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
124
+ self.send("#{key}=", nil)
125
+ elsif type =~ /\AArray<(.*)>/i
126
+ # check to ensure the input is an array given that the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
129
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
130
+ end
131
+ elsif !attributes[self.class.attribute_map[key]].nil?
132
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
133
+ end
134
+ end
135
+
136
+ self
137
+ end
138
+
139
+ # Deserializes the data based on type
140
+ # @param string type Data type
141
+ # @param string value Value to be deserialized
142
+ # @return [Object] Deserialized data
143
+ def _deserialize(type, value)
144
+ case type.to_sym
145
+ when :Time
146
+ Time.parse(value)
147
+ when :Date
148
+ Date.parse(value)
149
+ when :String
150
+ value.to_s
151
+ when :Integer
152
+ value.to_i
153
+ when :Float
154
+ value.to_f
155
+ when :Boolean
156
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
157
+ true
158
+ else
159
+ false
160
+ end
161
+ when :Object
162
+ # generic object (usually a Hash), return directly
163
+ value
164
+ when /\AArray<(?<inner_type>.+)>\z/
165
+ inner_type = Regexp.last_match[:inner_type]
166
+ value.map { |v| _deserialize(inner_type, v) }
167
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
168
+ k_type = Regexp.last_match[:k_type]
169
+ v_type = Regexp.last_match[:v_type]
170
+ {}.tap do |hash|
171
+ value.each do |k, v|
172
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
173
+ end
174
+ end
175
+ else # model
176
+ # models (e.g. Pet) or oneOf
177
+ klass = AutosdeOpenapiClient.const_get(type)
178
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
179
+ end
180
+ end
181
+
182
+ # Returns the string representation of the object
183
+ # @return [String] String presentation of the object
184
+ def to_s
185
+ to_hash.to_s
186
+ end
187
+
188
+ # to_body is an alias to to_hash (backward compatibility)
189
+ # @return [Hash] Returns the object in the form of hash
190
+ def to_body
191
+ to_hash
192
+ end
193
+
194
+ # Returns the object in the form of hash
195
+ # @return [Hash] Returns the object in the form of hash
196
+ def to_hash
197
+ hash = {}
198
+ self.class.attribute_map.each_pair do |attr, param|
199
+ value = self.send(attr)
200
+ if value.nil?
201
+ is_nullable = self.class.openapi_nullable.include?(attr)
202
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
203
+ end
204
+
205
+ hash[param] = _to_hash(value)
206
+ end
207
+ hash
208
+ end
209
+
210
+ # Outputs non-array value in the form of hash
211
+ # For object, use to_hash. Otherwise, just return the value
212
+ # @param [Object] value Any valid value
213
+ # @return [Hash] Returns the value in the form of hash
214
+ def _to_hash(value)
215
+ if value.is_a?(Array)
216
+ value.compact.map { |v| _to_hash(v) }
217
+ elsif value.is_a?(Hash)
218
+ {}.tap do |hash|
219
+ value.each { |k, v| hash[k] = _to_hash(v) }
220
+ end
221
+ elsif value.respond_to? :to_hash
222
+ value.to_hash
223
+ else
224
+ value
225
+ end
226
+ end
227
+
228
+ end
229
+
230
+ end
@@ -21,14 +21,14 @@ module AutosdeOpenapiClient
21
21
  # abstract_capability_name
22
22
  attr_accessor :abstract_capability_name
23
23
 
24
- # default_value
25
- attr_accessor :default_value
26
-
27
24
  attr_accessor :native_capability
28
25
 
29
26
  # native_capability_name
30
27
  attr_accessor :native_capability_name
31
28
 
29
+ # native_default_value
30
+ attr_accessor :native_default_value
31
+
32
32
  # published
33
33
  attr_accessor :published
34
34
 
@@ -49,9 +49,9 @@ module AutosdeOpenapiClient
49
49
  {
50
50
  :'abstract_capability' => :'abstract_capability',
51
51
  :'abstract_capability_name' => :'abstract_capability_name',
52
- :'default_value' => :'default_value',
53
52
  :'native_capability' => :'native_capability',
54
53
  :'native_capability_name' => :'native_capability_name',
54
+ :'native_default_value' => :'native_default_value',
55
55
  :'published' => :'published',
56
56
  :'system_type_id' => :'system_type_id',
57
57
  :'to_abstract_value_mapper' => :'to_abstract_value_mapper',
@@ -70,9 +70,9 @@ module AutosdeOpenapiClient
70
70
  {
71
71
  :'abstract_capability' => :'AbstractCapability',
72
72
  :'abstract_capability_name' => :'String',
73
- :'default_value' => :'String',
74
73
  :'native_capability' => :'NativeCapability',
75
74
  :'native_capability_name' => :'String',
75
+ :'native_default_value' => :'String',
76
76
  :'published' => :'Boolean',
77
77
  :'system_type_id' => :'String',
78
78
  :'to_abstract_value_mapper' => :'String',
@@ -110,12 +110,6 @@ module AutosdeOpenapiClient
110
110
  self.abstract_capability_name = attributes[:'abstract_capability_name']
111
111
  end
112
112
 
113
- if attributes.key?(:'default_value')
114
- self.default_value = attributes[:'default_value']
115
- else
116
- self.default_value = ' '
117
- end
118
-
119
113
  if attributes.key?(:'native_capability')
120
114
  self.native_capability = attributes[:'native_capability']
121
115
  end
@@ -124,6 +118,12 @@ module AutosdeOpenapiClient
124
118
  self.native_capability_name = attributes[:'native_capability_name']
125
119
  end
126
120
 
121
+ if attributes.key?(:'native_default_value')
122
+ self.native_default_value = attributes[:'native_default_value']
123
+ else
124
+ self.native_default_value = ' '
125
+ end
126
+
127
127
  if attributes.key?(:'published')
128
128
  self.published = attributes[:'published']
129
129
  end
@@ -195,9 +195,9 @@ module AutosdeOpenapiClient
195
195
  self.class == o.class &&
196
196
  abstract_capability == o.abstract_capability &&
197
197
  abstract_capability_name == o.abstract_capability_name &&
198
- default_value == o.default_value &&
199
198
  native_capability == o.native_capability &&
200
199
  native_capability_name == o.native_capability_name &&
200
+ native_default_value == o.native_default_value &&
201
201
  published == o.published &&
202
202
  system_type_id == o.system_type_id &&
203
203
  to_abstract_value_mapper == o.to_abstract_value_mapper &&
@@ -214,7 +214,7 @@ module AutosdeOpenapiClient
214
214
  # Calculates hash code according to all attributes.
215
215
  # @return [Integer] Hash code
216
216
  def hash
217
- [abstract_capability, abstract_capability_name, default_value, native_capability, native_capability_name, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
217
+ [abstract_capability, abstract_capability_name, native_capability, native_capability_name, native_default_value, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
218
218
  end
219
219
 
220
220
  # Builds the object from hash
@@ -19,12 +19,12 @@ module AutosdeOpenapiClient
19
19
  # abstract_capability_name
20
20
  attr_accessor :abstract_capability_name
21
21
 
22
- # default_value
23
- attr_accessor :default_value
24
-
25
22
  # native_capability_name
26
23
  attr_accessor :native_capability_name
27
24
 
25
+ # native_default_value
26
+ attr_accessor :native_default_value
27
+
28
28
  # published
29
29
  attr_accessor :published
30
30
 
@@ -44,8 +44,8 @@ module AutosdeOpenapiClient
44
44
  def self.attribute_map
45
45
  {
46
46
  :'abstract_capability_name' => :'abstract_capability_name',
47
- :'default_value' => :'default_value',
48
47
  :'native_capability_name' => :'native_capability_name',
48
+ :'native_default_value' => :'native_default_value',
49
49
  :'published' => :'published',
50
50
  :'system_type_id' => :'system_type_id',
51
51
  :'to_abstract_value_mapper' => :'to_abstract_value_mapper',
@@ -63,8 +63,8 @@ module AutosdeOpenapiClient
63
63
  def self.openapi_types
64
64
  {
65
65
  :'abstract_capability_name' => :'String',
66
- :'default_value' => :'String',
67
66
  :'native_capability_name' => :'String',
67
+ :'native_default_value' => :'String',
68
68
  :'published' => :'Boolean',
69
69
  :'system_type_id' => :'String',
70
70
  :'to_abstract_value_mapper' => :'String',
@@ -98,16 +98,16 @@ module AutosdeOpenapiClient
98
98
  self.abstract_capability_name = attributes[:'abstract_capability_name']
99
99
  end
100
100
 
101
- if attributes.key?(:'default_value')
102
- self.default_value = attributes[:'default_value']
103
- else
104
- self.default_value = ' '
105
- end
106
-
107
101
  if attributes.key?(:'native_capability_name')
108
102
  self.native_capability_name = attributes[:'native_capability_name']
109
103
  end
110
104
 
105
+ if attributes.key?(:'native_default_value')
106
+ self.native_default_value = attributes[:'native_default_value']
107
+ else
108
+ self.native_default_value = ' '
109
+ end
110
+
111
111
  if attributes.key?(:'published')
112
112
  self.published = attributes[:'published']
113
113
  end
@@ -178,8 +178,8 @@ module AutosdeOpenapiClient
178
178
  return true if self.equal?(o)
179
179
  self.class == o.class &&
180
180
  abstract_capability_name == o.abstract_capability_name &&
181
- default_value == o.default_value &&
182
181
  native_capability_name == o.native_capability_name &&
182
+ native_default_value == o.native_default_value &&
183
183
  published == o.published &&
184
184
  system_type_id == o.system_type_id &&
185
185
  to_abstract_value_mapper == o.to_abstract_value_mapper &&
@@ -196,7 +196,7 @@ module AutosdeOpenapiClient
196
196
  # Calculates hash code according to all attributes.
197
197
  # @return [Integer] Hash code
198
198
  def hash
199
- [abstract_capability_name, default_value, native_capability_name, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
199
+ [abstract_capability_name, native_capability_name, native_default_value, published, system_type_id, to_abstract_value_mapper, to_native_value_mapper, uuid].hash
200
200
  end
201
201
 
202
202
  # Builds the object from hash