pulp_certguard_client 0.1.0rc4

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 (33) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +113 -0
  4. data/Rakefile +10 -0
  5. data/docs/CertguardRHSMCertGuard.md +25 -0
  6. data/docs/CertguardX509CertGuard.md +25 -0
  7. data/docs/ContentguardsRhsmApi.md +355 -0
  8. data/docs/ContentguardsX509Api.md +355 -0
  9. data/docs/InlineResponse200.md +23 -0
  10. data/docs/InlineResponse2001.md +23 -0
  11. data/git_push.sh +58 -0
  12. data/lib/pulp_certguard_client/api/contentguards_rhsm_api.rb +431 -0
  13. data/lib/pulp_certguard_client/api/contentguards_x509_api.rb +431 -0
  14. data/lib/pulp_certguard_client/api_client.rb +402 -0
  15. data/lib/pulp_certguard_client/api_error.rb +57 -0
  16. data/lib/pulp_certguard_client/configuration.rb +243 -0
  17. data/lib/pulp_certguard_client/models/certguard_rhsm_cert_guard.rb +310 -0
  18. data/lib/pulp_certguard_client/models/certguard_x509_cert_guard.rb +310 -0
  19. data/lib/pulp_certguard_client/models/inline_response200.rb +247 -0
  20. data/lib/pulp_certguard_client/models/inline_response2001.rb +247 -0
  21. data/lib/pulp_certguard_client/version.rb +15 -0
  22. data/lib/pulp_certguard_client.rb +45 -0
  23. data/pulp_certguard_client.gemspec +39 -0
  24. data/spec/api/contentguards_rhsm_api_spec.rb +117 -0
  25. data/spec/api/contentguards_x509_api_spec.rb +117 -0
  26. data/spec/api_client_spec.rb +188 -0
  27. data/spec/configuration_spec.rb +42 -0
  28. data/spec/models/certguard_rhsm_cert_guard_spec.rb +65 -0
  29. data/spec/models/certguard_x509_cert_guard_spec.rb +65 -0
  30. data/spec/models/inline_response2001_spec.rb +59 -0
  31. data/spec/models/inline_response200_spec.rb +59 -0
  32. data/spec/spec_helper.rb +111 -0
  33. metadata +137 -0
@@ -0,0 +1,310 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module PulpCertguardClient
16
+ class CertguardRHSMCertGuard
17
+ attr_accessor :pulp_href
18
+
19
+ # Timestamp of creation.
20
+ attr_accessor :pulp_created
21
+
22
+ # The unique name.
23
+ attr_accessor :name
24
+
25
+ # An optional description.
26
+ attr_accessor :description
27
+
28
+ # The Certificate Authority (CA) certificate.
29
+ attr_accessor :ca_certificate
30
+
31
+ # Attribute mapping from ruby-style variable name to JSON key.
32
+ def self.attribute_map
33
+ {
34
+ :'pulp_href' => :'pulp_href',
35
+ :'pulp_created' => :'pulp_created',
36
+ :'name' => :'name',
37
+ :'description' => :'description',
38
+ :'ca_certificate' => :'ca_certificate'
39
+ }
40
+ end
41
+
42
+ # Attribute type mapping.
43
+ def self.openapi_types
44
+ {
45
+ :'pulp_href' => :'String',
46
+ :'pulp_created' => :'DateTime',
47
+ :'name' => :'String',
48
+ :'description' => :'String',
49
+ :'ca_certificate' => :'String'
50
+ }
51
+ end
52
+
53
+ # List of attributes with nullable: true
54
+ def self.openapi_nullable
55
+ Set.new([
56
+ :'description',
57
+ ])
58
+ end
59
+
60
+ # Initializes the object
61
+ # @param [Hash] attributes Model attributes in the form of hash
62
+ def initialize(attributes = {})
63
+ if (!attributes.is_a?(Hash))
64
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpCertguardClient::CertguardRHSMCertGuard` initialize method"
65
+ end
66
+
67
+ # check to see if the attribute exists and convert string to symbol for hash key
68
+ attributes = attributes.each_with_object({}) { |(k, v), h|
69
+ if (!self.class.attribute_map.key?(k.to_sym))
70
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpCertguardClient::CertguardRHSMCertGuard`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ end
72
+ h[k.to_sym] = v
73
+ }
74
+
75
+ if attributes.key?(:'pulp_href')
76
+ self.pulp_href = attributes[:'pulp_href']
77
+ end
78
+
79
+ if attributes.key?(:'pulp_created')
80
+ self.pulp_created = attributes[:'pulp_created']
81
+ end
82
+
83
+ if attributes.key?(:'name')
84
+ self.name = attributes[:'name']
85
+ end
86
+
87
+ if attributes.key?(:'description')
88
+ self.description = attributes[:'description']
89
+ end
90
+
91
+ if attributes.key?(:'ca_certificate')
92
+ self.ca_certificate = attributes[:'ca_certificate']
93
+ end
94
+ end
95
+
96
+ # Show invalid properties with the reasons. Usually used together with valid?
97
+ # @return Array for valid properties with the reasons
98
+ def list_invalid_properties
99
+ invalid_properties = Array.new
100
+ if @name.nil?
101
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
102
+ end
103
+
104
+ if @name.to_s.length < 1
105
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
106
+ end
107
+
108
+ if !@description.nil? && @description.to_s.length < 1
109
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
110
+ end
111
+
112
+ if @ca_certificate.nil?
113
+ invalid_properties.push('invalid value for "ca_certificate", ca_certificate cannot be nil.')
114
+ end
115
+
116
+ if @ca_certificate.to_s.length < 1
117
+ invalid_properties.push('invalid value for "ca_certificate", the character length must be great than or equal to 1.')
118
+ end
119
+
120
+ invalid_properties
121
+ end
122
+
123
+ # Check to see if the all the properties in the model are valid
124
+ # @return true if the model is valid
125
+ def valid?
126
+ return false if @name.nil?
127
+ return false if @name.to_s.length < 1
128
+ return false if !@description.nil? && @description.to_s.length < 1
129
+ return false if @ca_certificate.nil?
130
+ return false if @ca_certificate.to_s.length < 1
131
+ true
132
+ end
133
+
134
+ # Custom attribute writer method with validation
135
+ # @param [Object] name Value to be assigned
136
+ def name=(name)
137
+ if name.nil?
138
+ fail ArgumentError, 'name cannot be nil'
139
+ end
140
+
141
+ if name.to_s.length < 1
142
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
143
+ end
144
+
145
+ @name = name
146
+ end
147
+
148
+ # Custom attribute writer method with validation
149
+ # @param [Object] description Value to be assigned
150
+ def description=(description)
151
+ if !description.nil? && description.to_s.length < 1
152
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
153
+ end
154
+
155
+ @description = description
156
+ end
157
+
158
+ # Custom attribute writer method with validation
159
+ # @param [Object] ca_certificate Value to be assigned
160
+ def ca_certificate=(ca_certificate)
161
+ if ca_certificate.nil?
162
+ fail ArgumentError, 'ca_certificate cannot be nil'
163
+ end
164
+
165
+ if ca_certificate.to_s.length < 1
166
+ fail ArgumentError, 'invalid value for "ca_certificate", the character length must be great than or equal to 1.'
167
+ end
168
+
169
+ @ca_certificate = ca_certificate
170
+ end
171
+
172
+ # Checks equality by comparing each attribute.
173
+ # @param [Object] Object to be compared
174
+ def ==(o)
175
+ return true if self.equal?(o)
176
+ self.class == o.class &&
177
+ pulp_href == o.pulp_href &&
178
+ pulp_created == o.pulp_created &&
179
+ name == o.name &&
180
+ description == o.description &&
181
+ ca_certificate == o.ca_certificate
182
+ end
183
+
184
+ # @see the `==` method
185
+ # @param [Object] Object to be compared
186
+ def eql?(o)
187
+ self == o
188
+ end
189
+
190
+ # Calculates hash code according to all attributes.
191
+ # @return [Integer] Hash code
192
+ def hash
193
+ [pulp_href, pulp_created, name, description, ca_certificate].hash
194
+ end
195
+
196
+ # Builds the object from hash
197
+ # @param [Hash] attributes Model attributes in the form of hash
198
+ # @return [Object] Returns the model itself
199
+ def self.build_from_hash(attributes)
200
+ new.build_from_hash(attributes)
201
+ end
202
+
203
+ # Builds the object from hash
204
+ # @param [Hash] attributes Model attributes in the form of hash
205
+ # @return [Object] Returns the model itself
206
+ def build_from_hash(attributes)
207
+ return nil unless attributes.is_a?(Hash)
208
+ self.class.openapi_types.each_pair do |key, type|
209
+ if type =~ /\AArray<(.*)>/i
210
+ # check to ensure the input is an array given that the attribute
211
+ # is documented as an array but the input is not
212
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
213
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
214
+ end
215
+ elsif !attributes[self.class.attribute_map[key]].nil?
216
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
217
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
218
+ end
219
+
220
+ self
221
+ end
222
+
223
+ # Deserializes the data based on type
224
+ # @param string type Data type
225
+ # @param string value Value to be deserialized
226
+ # @return [Object] Deserialized data
227
+ def _deserialize(type, value)
228
+ case type.to_sym
229
+ when :DateTime
230
+ DateTime.parse(value)
231
+ when :Date
232
+ Date.parse(value)
233
+ when :String
234
+ value.to_s
235
+ when :Integer
236
+ value.to_i
237
+ when :Float
238
+ value.to_f
239
+ when :Boolean
240
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
241
+ true
242
+ else
243
+ false
244
+ end
245
+ when :Object
246
+ # generic object (usually a Hash), return directly
247
+ value
248
+ when /\AArray<(?<inner_type>.+)>\z/
249
+ inner_type = Regexp.last_match[:inner_type]
250
+ value.map { |v| _deserialize(inner_type, v) }
251
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
252
+ k_type = Regexp.last_match[:k_type]
253
+ v_type = Regexp.last_match[:v_type]
254
+ {}.tap do |hash|
255
+ value.each do |k, v|
256
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
257
+ end
258
+ end
259
+ else # model
260
+ PulpCertguardClient.const_get(type).build_from_hash(value)
261
+ end
262
+ end
263
+
264
+ # Returns the string representation of the object
265
+ # @return [String] String presentation of the object
266
+ def to_s
267
+ to_hash.to_s
268
+ end
269
+
270
+ # to_body is an alias to to_hash (backward compatibility)
271
+ # @return [Hash] Returns the object in the form of hash
272
+ def to_body
273
+ to_hash
274
+ end
275
+
276
+ # Returns the object in the form of hash
277
+ # @return [Hash] Returns the object in the form of hash
278
+ def to_hash
279
+ hash = {}
280
+ self.class.attribute_map.each_pair do |attr, param|
281
+ value = self.send(attr)
282
+ if value.nil?
283
+ is_nullable = self.class.openapi_nullable.include?(attr)
284
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
285
+ end
286
+
287
+ hash[param] = _to_hash(value)
288
+ end
289
+ hash
290
+ end
291
+
292
+ # Outputs non-array value in the form of hash
293
+ # For object, use to_hash. Otherwise, just return the value
294
+ # @param [Object] value Any valid value
295
+ # @return [Hash] Returns the value in the form of hash
296
+ def _to_hash(value)
297
+ if value.is_a?(Array)
298
+ value.compact.map { |v| _to_hash(v) }
299
+ elsif value.is_a?(Hash)
300
+ {}.tap do |hash|
301
+ value.each { |k, v| hash[k] = _to_hash(v) }
302
+ end
303
+ elsif value.respond_to? :to_hash
304
+ value.to_hash
305
+ else
306
+ value
307
+ end
308
+ end
309
+ end
310
+ end
@@ -0,0 +1,310 @@
1
+ =begin
2
+ #Pulp 3 API
3
+
4
+ #No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5
+
6
+ The version of the OpenAPI document: v3
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module PulpCertguardClient
16
+ class CertguardX509CertGuard
17
+ attr_accessor :pulp_href
18
+
19
+ # Timestamp of creation.
20
+ attr_accessor :pulp_created
21
+
22
+ # The unique name.
23
+ attr_accessor :name
24
+
25
+ # An optional description.
26
+ attr_accessor :description
27
+
28
+ # The Certificate Authority (CA) certificate.
29
+ attr_accessor :ca_certificate
30
+
31
+ # Attribute mapping from ruby-style variable name to JSON key.
32
+ def self.attribute_map
33
+ {
34
+ :'pulp_href' => :'pulp_href',
35
+ :'pulp_created' => :'pulp_created',
36
+ :'name' => :'name',
37
+ :'description' => :'description',
38
+ :'ca_certificate' => :'ca_certificate'
39
+ }
40
+ end
41
+
42
+ # Attribute type mapping.
43
+ def self.openapi_types
44
+ {
45
+ :'pulp_href' => :'String',
46
+ :'pulp_created' => :'DateTime',
47
+ :'name' => :'String',
48
+ :'description' => :'String',
49
+ :'ca_certificate' => :'String'
50
+ }
51
+ end
52
+
53
+ # List of attributes with nullable: true
54
+ def self.openapi_nullable
55
+ Set.new([
56
+ :'description',
57
+ ])
58
+ end
59
+
60
+ # Initializes the object
61
+ # @param [Hash] attributes Model attributes in the form of hash
62
+ def initialize(attributes = {})
63
+ if (!attributes.is_a?(Hash))
64
+ fail ArgumentError, "The input argument (attributes) must be a hash in `PulpCertguardClient::CertguardX509CertGuard` initialize method"
65
+ end
66
+
67
+ # check to see if the attribute exists and convert string to symbol for hash key
68
+ attributes = attributes.each_with_object({}) { |(k, v), h|
69
+ if (!self.class.attribute_map.key?(k.to_sym))
70
+ fail ArgumentError, "`#{k}` is not a valid attribute in `PulpCertguardClient::CertguardX509CertGuard`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
71
+ end
72
+ h[k.to_sym] = v
73
+ }
74
+
75
+ if attributes.key?(:'pulp_href')
76
+ self.pulp_href = attributes[:'pulp_href']
77
+ end
78
+
79
+ if attributes.key?(:'pulp_created')
80
+ self.pulp_created = attributes[:'pulp_created']
81
+ end
82
+
83
+ if attributes.key?(:'name')
84
+ self.name = attributes[:'name']
85
+ end
86
+
87
+ if attributes.key?(:'description')
88
+ self.description = attributes[:'description']
89
+ end
90
+
91
+ if attributes.key?(:'ca_certificate')
92
+ self.ca_certificate = attributes[:'ca_certificate']
93
+ end
94
+ end
95
+
96
+ # Show invalid properties with the reasons. Usually used together with valid?
97
+ # @return Array for valid properties with the reasons
98
+ def list_invalid_properties
99
+ invalid_properties = Array.new
100
+ if @name.nil?
101
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
102
+ end
103
+
104
+ if @name.to_s.length < 1
105
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
106
+ end
107
+
108
+ if !@description.nil? && @description.to_s.length < 1
109
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
110
+ end
111
+
112
+ if @ca_certificate.nil?
113
+ invalid_properties.push('invalid value for "ca_certificate", ca_certificate cannot be nil.')
114
+ end
115
+
116
+ if @ca_certificate.to_s.length < 1
117
+ invalid_properties.push('invalid value for "ca_certificate", the character length must be great than or equal to 1.')
118
+ end
119
+
120
+ invalid_properties
121
+ end
122
+
123
+ # Check to see if the all the properties in the model are valid
124
+ # @return true if the model is valid
125
+ def valid?
126
+ return false if @name.nil?
127
+ return false if @name.to_s.length < 1
128
+ return false if !@description.nil? && @description.to_s.length < 1
129
+ return false if @ca_certificate.nil?
130
+ return false if @ca_certificate.to_s.length < 1
131
+ true
132
+ end
133
+
134
+ # Custom attribute writer method with validation
135
+ # @param [Object] name Value to be assigned
136
+ def name=(name)
137
+ if name.nil?
138
+ fail ArgumentError, 'name cannot be nil'
139
+ end
140
+
141
+ if name.to_s.length < 1
142
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
143
+ end
144
+
145
+ @name = name
146
+ end
147
+
148
+ # Custom attribute writer method with validation
149
+ # @param [Object] description Value to be assigned
150
+ def description=(description)
151
+ if !description.nil? && description.to_s.length < 1
152
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
153
+ end
154
+
155
+ @description = description
156
+ end
157
+
158
+ # Custom attribute writer method with validation
159
+ # @param [Object] ca_certificate Value to be assigned
160
+ def ca_certificate=(ca_certificate)
161
+ if ca_certificate.nil?
162
+ fail ArgumentError, 'ca_certificate cannot be nil'
163
+ end
164
+
165
+ if ca_certificate.to_s.length < 1
166
+ fail ArgumentError, 'invalid value for "ca_certificate", the character length must be great than or equal to 1.'
167
+ end
168
+
169
+ @ca_certificate = ca_certificate
170
+ end
171
+
172
+ # Checks equality by comparing each attribute.
173
+ # @param [Object] Object to be compared
174
+ def ==(o)
175
+ return true if self.equal?(o)
176
+ self.class == o.class &&
177
+ pulp_href == o.pulp_href &&
178
+ pulp_created == o.pulp_created &&
179
+ name == o.name &&
180
+ description == o.description &&
181
+ ca_certificate == o.ca_certificate
182
+ end
183
+
184
+ # @see the `==` method
185
+ # @param [Object] Object to be compared
186
+ def eql?(o)
187
+ self == o
188
+ end
189
+
190
+ # Calculates hash code according to all attributes.
191
+ # @return [Integer] Hash code
192
+ def hash
193
+ [pulp_href, pulp_created, name, description, ca_certificate].hash
194
+ end
195
+
196
+ # Builds the object from hash
197
+ # @param [Hash] attributes Model attributes in the form of hash
198
+ # @return [Object] Returns the model itself
199
+ def self.build_from_hash(attributes)
200
+ new.build_from_hash(attributes)
201
+ end
202
+
203
+ # Builds the object from hash
204
+ # @param [Hash] attributes Model attributes in the form of hash
205
+ # @return [Object] Returns the model itself
206
+ def build_from_hash(attributes)
207
+ return nil unless attributes.is_a?(Hash)
208
+ self.class.openapi_types.each_pair do |key, type|
209
+ if type =~ /\AArray<(.*)>/i
210
+ # check to ensure the input is an array given that the attribute
211
+ # is documented as an array but the input is not
212
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
213
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
214
+ end
215
+ elsif !attributes[self.class.attribute_map[key]].nil?
216
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
217
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
218
+ end
219
+
220
+ self
221
+ end
222
+
223
+ # Deserializes the data based on type
224
+ # @param string type Data type
225
+ # @param string value Value to be deserialized
226
+ # @return [Object] Deserialized data
227
+ def _deserialize(type, value)
228
+ case type.to_sym
229
+ when :DateTime
230
+ DateTime.parse(value)
231
+ when :Date
232
+ Date.parse(value)
233
+ when :String
234
+ value.to_s
235
+ when :Integer
236
+ value.to_i
237
+ when :Float
238
+ value.to_f
239
+ when :Boolean
240
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
241
+ true
242
+ else
243
+ false
244
+ end
245
+ when :Object
246
+ # generic object (usually a Hash), return directly
247
+ value
248
+ when /\AArray<(?<inner_type>.+)>\z/
249
+ inner_type = Regexp.last_match[:inner_type]
250
+ value.map { |v| _deserialize(inner_type, v) }
251
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
252
+ k_type = Regexp.last_match[:k_type]
253
+ v_type = Regexp.last_match[:v_type]
254
+ {}.tap do |hash|
255
+ value.each do |k, v|
256
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
257
+ end
258
+ end
259
+ else # model
260
+ PulpCertguardClient.const_get(type).build_from_hash(value)
261
+ end
262
+ end
263
+
264
+ # Returns the string representation of the object
265
+ # @return [String] String presentation of the object
266
+ def to_s
267
+ to_hash.to_s
268
+ end
269
+
270
+ # to_body is an alias to to_hash (backward compatibility)
271
+ # @return [Hash] Returns the object in the form of hash
272
+ def to_body
273
+ to_hash
274
+ end
275
+
276
+ # Returns the object in the form of hash
277
+ # @return [Hash] Returns the object in the form of hash
278
+ def to_hash
279
+ hash = {}
280
+ self.class.attribute_map.each_pair do |attr, param|
281
+ value = self.send(attr)
282
+ if value.nil?
283
+ is_nullable = self.class.openapi_nullable.include?(attr)
284
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
285
+ end
286
+
287
+ hash[param] = _to_hash(value)
288
+ end
289
+ hash
290
+ end
291
+
292
+ # Outputs non-array value in the form of hash
293
+ # For object, use to_hash. Otherwise, just return the value
294
+ # @param [Object] value Any valid value
295
+ # @return [Hash] Returns the value in the form of hash
296
+ def _to_hash(value)
297
+ if value.is_a?(Array)
298
+ value.compact.map { |v| _to_hash(v) }
299
+ elsif value.is_a?(Hash)
300
+ {}.tap do |hash|
301
+ value.each { |k, v| hash[k] = _to_hash(v) }
302
+ end
303
+ elsif value.respond_to? :to_hash
304
+ value.to_hash
305
+ else
306
+ value
307
+ end
308
+ end
309
+ end
310
+ end