autosde_openapi_client 1.1.31 → 1.1.32

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -8
  3. data/docs/Event.md +0 -4
  4. data/docs/EventApi.md +16 -16
  5. data/docs/Job.md +0 -2
  6. data/docs/JobApi.md +0 -136
  7. data/docs/JobCreate.md +2 -2
  8. data/docs/StorageSystemCreate.md +0 -2
  9. data/lib/autosde_openapi_client/api/event_api.rb +12 -12
  10. data/lib/autosde_openapi_client/api/job_api.rb +0 -118
  11. data/lib/autosde_openapi_client/models/event.rb +2 -22
  12. data/lib/autosde_openapi_client/models/job.rb +1 -11
  13. data/lib/autosde_openapi_client/models/job_create.rb +8 -8
  14. data/lib/autosde_openapi_client/models/storage_system_create.rb +1 -13
  15. data/lib/autosde_openapi_client/version.rb +2 -2
  16. data/lib/autosde_openapi_client.rb +0 -5
  17. data/spec/api/event_api_spec.rb +4 -4
  18. data/spec/api/job_api_spec.rb +0 -20
  19. data/spec/models/event_spec.rb +0 -12
  20. data/spec/models/job_create_spec.rb +1 -1
  21. data/spec/models/job_spec.rb +0 -6
  22. data/spec/models/storage_system_create_spec.rb +0 -6
  23. metadata +73 -93
  24. data/docs/CeleryConfig.md +0 -20
  25. data/docs/CeleryConfigApi.md +0 -140
  26. data/docs/EventResponse.md +0 -36
  27. data/docs/RefreshSystem.md +0 -18
  28. data/docs/RefreshSystemApi.md +0 -75
  29. data/lib/autosde_openapi_client/api/celery_config_api.rb +0 -136
  30. data/lib/autosde_openapi_client/api/refresh_system_api.rb +0 -83
  31. data/lib/autosde_openapi_client/models/celery_config.rb +0 -230
  32. data/lib/autosde_openapi_client/models/event_response.rb +0 -310
  33. data/lib/autosde_openapi_client/models/refresh_system.rb +0 -220
  34. data/spec/api/celery_config_api_spec.rb +0 -54
  35. data/spec/api/refresh_system_api_spec.rb +0 -45
  36. data/spec/models/celery_config_spec.rb +0 -40
  37. data/spec/models/event_response_spec.rb +0 -88
  38. data/spec/models/refresh_system_spec.rb +0 -34
@@ -1,136 +0,0 @@
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 CeleryConfigApi
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<CeleryConfig>]
24
- def celery_config_get(opts = {})
25
- data, _status_code, _headers = celery_config_get_with_http_info(opts)
26
- data
27
- end
28
-
29
- # @param [Hash] opts the optional parameters
30
- # @return [Array<(Array<CeleryConfig>, Integer, Hash)>] Array<CeleryConfig> data, response status code and response headers
31
- def celery_config_get_with_http_info(opts = {})
32
- if @api_client.config.debugging
33
- @api_client.config.logger.debug 'Calling API: CeleryConfigApi.celery_config_get ...'
34
- end
35
- # resource path
36
- local_var_path = '/celery-config'
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<CeleryConfig>'
54
-
55
- # auth_names
56
- auth_names = opts[:debug_auth_names] || ['bearerAuth']
57
-
58
- new_options = opts.merge(
59
- :operation => :"CeleryConfigApi.celery_config_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: CeleryConfigApi#celery_config_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
71
- end
72
- return data, status_code, headers
73
- end
74
-
75
- # @param celery_config [CeleryConfig]
76
- # @param [Hash] opts the optional parameters
77
- # @return [CeleryConfig]
78
- def celery_config_post(celery_config, opts = {})
79
- data, _status_code, _headers = celery_config_post_with_http_info(celery_config, opts)
80
- data
81
- end
82
-
83
- # @param celery_config [CeleryConfig]
84
- # @param [Hash] opts the optional parameters
85
- # @return [Array<(CeleryConfig, Integer, Hash)>] CeleryConfig data, response status code and response headers
86
- def celery_config_post_with_http_info(celery_config, opts = {})
87
- if @api_client.config.debugging
88
- @api_client.config.logger.debug 'Calling API: CeleryConfigApi.celery_config_post ...'
89
- end
90
- # verify the required parameter 'celery_config' is set
91
- if @api_client.config.client_side_validation && celery_config.nil?
92
- fail ArgumentError, "Missing the required parameter 'celery_config' when calling CeleryConfigApi.celery_config_post"
93
- end
94
- # resource path
95
- local_var_path = '/celery-config'
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
- # HTTP header 'Content-Type'
105
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
106
-
107
- # form parameters
108
- form_params = opts[:form_params] || {}
109
-
110
- # http body (model)
111
- post_body = opts[:debug_body] || @api_client.object_to_http_body(celery_config)
112
-
113
- # return_type
114
- return_type = opts[:debug_return_type] || 'CeleryConfig'
115
-
116
- # auth_names
117
- auth_names = opts[:debug_auth_names] || ['bearerAuth']
118
-
119
- new_options = opts.merge(
120
- :operation => :"CeleryConfigApi.celery_config_post",
121
- :header_params => header_params,
122
- :query_params => query_params,
123
- :form_params => form_params,
124
- :body => post_body,
125
- :auth_names => auth_names,
126
- :return_type => return_type
127
- )
128
-
129
- data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
130
- if @api_client.config.debugging
131
- @api_client.config.logger.debug "API called: CeleryConfigApi#celery_config_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
132
- end
133
- return data, status_code, headers
134
- end
135
- end
136
- end
@@ -1,83 +0,0 @@
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 RefreshSystemApi
17
- attr_accessor :api_client
18
-
19
- def initialize(api_client = ApiClient.default)
20
- @api_client = api_client
21
- end
22
- # @param refresh_system [RefreshSystem]
23
- # @param [Hash] opts the optional parameters
24
- # @return [RefreshSystem]
25
- def refresh_system_post(refresh_system, opts = {})
26
- data, _status_code, _headers = refresh_system_post_with_http_info(refresh_system, opts)
27
- data
28
- end
29
-
30
- # @param refresh_system [RefreshSystem]
31
- # @param [Hash] opts the optional parameters
32
- # @return [Array<(RefreshSystem, Integer, Hash)>] RefreshSystem data, response status code and response headers
33
- def refresh_system_post_with_http_info(refresh_system, opts = {})
34
- if @api_client.config.debugging
35
- @api_client.config.logger.debug 'Calling API: RefreshSystemApi.refresh_system_post ...'
36
- end
37
- # verify the required parameter 'refresh_system' is set
38
- if @api_client.config.client_side_validation && refresh_system.nil?
39
- fail ArgumentError, "Missing the required parameter 'refresh_system' when calling RefreshSystemApi.refresh_system_post"
40
- end
41
- # resource path
42
- local_var_path = '/refresh-system'
43
-
44
- # query parameters
45
- query_params = opts[:query_params] || {}
46
-
47
- # header parameters
48
- header_params = opts[:header_params] || {}
49
- # HTTP header 'Accept' (if needed)
50
- header_params['Accept'] = @api_client.select_header_accept(['*/*'])
51
- # HTTP header 'Content-Type'
52
- header_params['Content-Type'] = @api_client.select_header_content_type(['application/json'])
53
-
54
- # form parameters
55
- form_params = opts[:form_params] || {}
56
-
57
- # http body (model)
58
- post_body = opts[:debug_body] || @api_client.object_to_http_body(refresh_system)
59
-
60
- # return_type
61
- return_type = opts[:debug_return_type] || 'RefreshSystem'
62
-
63
- # auth_names
64
- auth_names = opts[:debug_auth_names] || ['bearerAuth']
65
-
66
- new_options = opts.merge(
67
- :operation => :"RefreshSystemApi.refresh_system_post",
68
- :header_params => header_params,
69
- :query_params => query_params,
70
- :form_params => form_params,
71
- :body => post_body,
72
- :auth_names => auth_names,
73
- :return_type => return_type
74
- )
75
-
76
- data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
77
- if @api_client.config.debugging
78
- @api_client.config.logger.debug "API called: RefreshSystemApi#refresh_system_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
79
- end
80
- return data, status_code, headers
81
- end
82
- end
83
- end
@@ -1,230 +0,0 @@
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
- # CeleryBeatConfig object represents celery-beat (refresh params
18
- class CeleryConfig
19
- # celery_beat_enabled
20
- attr_accessor :celery_beat_enabled
21
-
22
- # interval_sec
23
- attr_accessor :interval_sec
24
-
25
- # Attribute mapping from ruby-style variable name to JSON key.
26
- def self.attribute_map
27
- {
28
- :'celery_beat_enabled' => :'celery_beat_enabled',
29
- :'interval_sec' => :'interval_sec'
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
- :'celery_beat_enabled' => :'Boolean',
42
- :'interval_sec' => :'Integer'
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::CeleryConfig` 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::CeleryConfig`. 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?(:'celery_beat_enabled')
68
- self.celery_beat_enabled = attributes[:'celery_beat_enabled']
69
- end
70
-
71
- if attributes.key?(:'interval_sec')
72
- self.interval_sec = attributes[:'interval_sec']
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
- celery_beat_enabled == o.celery_beat_enabled &&
95
- interval_sec == o.interval_sec
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
- [celery_beat_enabled, interval_sec].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