pulp_ansible_client 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleRoleResponse.md +3 -3
- data/lib/pulp_ansible_client/models/ansible_collection_version.rb +15 -15
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +25 -25
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_role_response_spec.rb +3 -3
- metadata +69 -69
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8455ddbe12f589be8c240f64dd2faa14a6cf3f52d0a61d2eed881f7b59a6ab7
|
4
|
+
data.tar.gz: b06897147bd91724ed5c76e0bc9d5c6dd76a70a7bdd57176dca6de8e87d02b5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63993086d0034005347d973b549d48f788e9d91095ad0a5ec769d8e9ef7e62d9518d089e18093d8f22b61981f33f0e1b3a6922bdcfa7ea8933779bb7914ca04f
|
7
|
+
data.tar.gz: 8a6bfd648a8b9a582695ec0e18c9d196aa854bd5547b5e7481c3c4c7a566fecb5152a8bd38503cf0831fcf69ba89bab66e204f95fa5f8836586a39df1e5498c8
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 0.7.
|
10
|
+
- Package version: 0.7.3
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_ansible_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_ansible_client-0.7.
|
27
|
+
gem install ./pulp_ansible_client-0.7.3.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.7.
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.7.3.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_ansible_client', '~> 0.7.
|
36
|
+
gem 'pulp_ansible_client', '~> 0.7.3'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
8
7
|
**artifact** | **String** | Artifact file representing the physical content |
|
9
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
10
10
|
**md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
|
11
11
|
**sha1** | **String** | The SHA-1 checksum if available. | [optional] [readonly]
|
12
12
|
**sha224** | **String** | The SHA-224 checksum if available. | [optional] [readonly]
|
@@ -37,9 +37,9 @@ Name | Type | Description | Notes
|
|
37
37
|
```ruby
|
38
38
|
require 'PulpAnsibleClient'
|
39
39
|
|
40
|
-
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
|
41
|
-
artifact: null,
|
40
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(artifact: null,
|
42
41
|
pulp_created: null,
|
42
|
+
pulp_href: null,
|
43
43
|
md5: null,
|
44
44
|
sha1: null,
|
45
45
|
sha224: null,
|
data/docs/AnsibleRoleResponse.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
8
7
|
**artifact** | **String** | Artifact file representing the physical content |
|
9
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
10
10
|
**version** | **String** | |
|
11
11
|
**name** | **String** | |
|
12
12
|
**namespace** | **String** | |
|
@@ -16,9 +16,9 @@ Name | Type | Description | Notes
|
|
16
16
|
```ruby
|
17
17
|
require 'PulpAnsibleClient'
|
18
18
|
|
19
|
-
instance = PulpAnsibleClient::AnsibleRoleResponse.new(
|
20
|
-
artifact: null,
|
19
|
+
instance = PulpAnsibleClient::AnsibleRoleResponse.new(artifact: null,
|
21
20
|
pulp_created: null,
|
21
|
+
pulp_href: null,
|
22
22
|
version: null,
|
23
23
|
name: null,
|
24
24
|
namespace: null)
|
@@ -290,16 +290,16 @@ module PulpAnsibleClient
|
|
290
290
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
291
291
|
end
|
292
292
|
|
293
|
-
if @name.to_s.length >
|
294
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to
|
293
|
+
if @name.to_s.length > 64
|
294
|
+
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 64.')
|
295
295
|
end
|
296
296
|
|
297
297
|
if @namespace.nil?
|
298
298
|
invalid_properties.push('invalid value for "namespace", namespace cannot be nil.')
|
299
299
|
end
|
300
300
|
|
301
|
-
if @namespace.to_s.length >
|
302
|
-
invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to
|
301
|
+
if @namespace.to_s.length > 64
|
302
|
+
invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 64.')
|
303
303
|
end
|
304
304
|
|
305
305
|
if @repository.nil?
|
@@ -314,8 +314,8 @@ module PulpAnsibleClient
|
|
314
314
|
invalid_properties.push('invalid value for "version", version cannot be nil.')
|
315
315
|
end
|
316
316
|
|
317
|
-
if @version.to_s.length >
|
318
|
-
invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to
|
317
|
+
if @version.to_s.length > 128
|
318
|
+
invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 128.')
|
319
319
|
end
|
320
320
|
|
321
321
|
if !@requires_ansible.nil? && @requires_ansible.to_s.length > 255
|
@@ -345,13 +345,13 @@ module PulpAnsibleClient
|
|
345
345
|
return false if @issues.to_s.length > 2000
|
346
346
|
return false if @license.nil?
|
347
347
|
return false if @name.nil?
|
348
|
-
return false if @name.to_s.length >
|
348
|
+
return false if @name.to_s.length > 64
|
349
349
|
return false if @namespace.nil?
|
350
|
-
return false if @namespace.to_s.length >
|
350
|
+
return false if @namespace.to_s.length > 64
|
351
351
|
return false if @repository.nil?
|
352
352
|
return false if @repository.to_s.length > 2000
|
353
353
|
return false if @version.nil?
|
354
|
-
return false if @version.to_s.length >
|
354
|
+
return false if @version.to_s.length > 128
|
355
355
|
return false if !@requires_ansible.nil? && @requires_ansible.to_s.length > 255
|
356
356
|
true
|
357
357
|
end
|
@@ -405,8 +405,8 @@ module PulpAnsibleClient
|
|
405
405
|
fail ArgumentError, 'name cannot be nil'
|
406
406
|
end
|
407
407
|
|
408
|
-
if name.to_s.length >
|
409
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to
|
408
|
+
if name.to_s.length > 64
|
409
|
+
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 64.'
|
410
410
|
end
|
411
411
|
|
412
412
|
@name = name
|
@@ -419,8 +419,8 @@ module PulpAnsibleClient
|
|
419
419
|
fail ArgumentError, 'namespace cannot be nil'
|
420
420
|
end
|
421
421
|
|
422
|
-
if namespace.to_s.length >
|
423
|
-
fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to
|
422
|
+
if namespace.to_s.length > 64
|
423
|
+
fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 64.'
|
424
424
|
end
|
425
425
|
|
426
426
|
@namespace = namespace
|
@@ -447,8 +447,8 @@ module PulpAnsibleClient
|
|
447
447
|
fail ArgumentError, 'version cannot be nil'
|
448
448
|
end
|
449
449
|
|
450
|
-
if version.to_s.length >
|
451
|
-
fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to
|
450
|
+
if version.to_s.length > 128
|
451
|
+
fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 128.'
|
452
452
|
end
|
453
453
|
|
454
454
|
@version = version
|
@@ -15,14 +15,14 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for CollectionVersion Content.
|
17
17
|
class AnsibleCollectionVersionResponse
|
18
|
-
attr_accessor :pulp_href
|
19
|
-
|
20
18
|
# Artifact file representing the physical content
|
21
19
|
attr_accessor :artifact
|
22
20
|
|
23
21
|
# Timestamp of creation.
|
24
22
|
attr_accessor :pulp_created
|
25
23
|
|
24
|
+
attr_accessor :pulp_href
|
25
|
+
|
26
26
|
# The MD5 checksum if available.
|
27
27
|
attr_accessor :md5
|
28
28
|
|
@@ -97,9 +97,9 @@ module PulpAnsibleClient
|
|
97
97
|
# Attribute mapping from ruby-style variable name to JSON key.
|
98
98
|
def self.attribute_map
|
99
99
|
{
|
100
|
-
:'pulp_href' => :'pulp_href',
|
101
100
|
:'artifact' => :'artifact',
|
102
101
|
:'pulp_created' => :'pulp_created',
|
102
|
+
:'pulp_href' => :'pulp_href',
|
103
103
|
:'md5' => :'md5',
|
104
104
|
:'sha1' => :'sha1',
|
105
105
|
:'sha224' => :'sha224',
|
@@ -130,9 +130,9 @@ module PulpAnsibleClient
|
|
130
130
|
# Attribute type mapping.
|
131
131
|
def self.openapi_types
|
132
132
|
{
|
133
|
-
:'pulp_href' => :'String',
|
134
133
|
:'artifact' => :'String',
|
135
134
|
:'pulp_created' => :'DateTime',
|
135
|
+
:'pulp_href' => :'String',
|
136
136
|
:'md5' => :'String',
|
137
137
|
:'sha1' => :'String',
|
138
138
|
:'sha224' => :'String',
|
@@ -182,10 +182,6 @@ module PulpAnsibleClient
|
|
182
182
|
h[k.to_sym] = v
|
183
183
|
}
|
184
184
|
|
185
|
-
if attributes.key?(:'pulp_href')
|
186
|
-
self.pulp_href = attributes[:'pulp_href']
|
187
|
-
end
|
188
|
-
|
189
185
|
if attributes.key?(:'artifact')
|
190
186
|
self.artifact = attributes[:'artifact']
|
191
187
|
end
|
@@ -194,6 +190,10 @@ module PulpAnsibleClient
|
|
194
190
|
self.pulp_created = attributes[:'pulp_created']
|
195
191
|
end
|
196
192
|
|
193
|
+
if attributes.key?(:'pulp_href')
|
194
|
+
self.pulp_href = attributes[:'pulp_href']
|
195
|
+
end
|
196
|
+
|
197
197
|
if attributes.key?(:'md5')
|
198
198
|
self.md5 = attributes[:'md5']
|
199
199
|
end
|
@@ -371,16 +371,16 @@ module PulpAnsibleClient
|
|
371
371
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
372
372
|
end
|
373
373
|
|
374
|
-
if @name.to_s.length >
|
375
|
-
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to
|
374
|
+
if @name.to_s.length > 64
|
375
|
+
invalid_properties.push('invalid value for "name", the character length must be smaller than or equal to 64.')
|
376
376
|
end
|
377
377
|
|
378
378
|
if @namespace.nil?
|
379
379
|
invalid_properties.push('invalid value for "namespace", namespace cannot be nil.')
|
380
380
|
end
|
381
381
|
|
382
|
-
if @namespace.to_s.length >
|
383
|
-
invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to
|
382
|
+
if @namespace.to_s.length > 64
|
383
|
+
invalid_properties.push('invalid value for "namespace", the character length must be smaller than or equal to 64.')
|
384
384
|
end
|
385
385
|
|
386
386
|
if @repository.nil?
|
@@ -395,8 +395,8 @@ module PulpAnsibleClient
|
|
395
395
|
invalid_properties.push('invalid value for "version", version cannot be nil.')
|
396
396
|
end
|
397
397
|
|
398
|
-
if @version.to_s.length >
|
399
|
-
invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to
|
398
|
+
if @version.to_s.length > 128
|
399
|
+
invalid_properties.push('invalid value for "version", the character length must be smaller than or equal to 128.')
|
400
400
|
end
|
401
401
|
|
402
402
|
if !@requires_ansible.nil? && @requires_ansible.to_s.length > 255
|
@@ -426,13 +426,13 @@ module PulpAnsibleClient
|
|
426
426
|
return false if @issues.to_s.length > 2000
|
427
427
|
return false if @license.nil?
|
428
428
|
return false if @name.nil?
|
429
|
-
return false if @name.to_s.length >
|
429
|
+
return false if @name.to_s.length > 64
|
430
430
|
return false if @namespace.nil?
|
431
|
-
return false if @namespace.to_s.length >
|
431
|
+
return false if @namespace.to_s.length > 64
|
432
432
|
return false if @repository.nil?
|
433
433
|
return false if @repository.to_s.length > 2000
|
434
434
|
return false if @version.nil?
|
435
|
-
return false if @version.to_s.length >
|
435
|
+
return false if @version.to_s.length > 128
|
436
436
|
return false if !@requires_ansible.nil? && @requires_ansible.to_s.length > 255
|
437
437
|
true
|
438
438
|
end
|
@@ -486,8 +486,8 @@ module PulpAnsibleClient
|
|
486
486
|
fail ArgumentError, 'name cannot be nil'
|
487
487
|
end
|
488
488
|
|
489
|
-
if name.to_s.length >
|
490
|
-
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to
|
489
|
+
if name.to_s.length > 64
|
490
|
+
fail ArgumentError, 'invalid value for "name", the character length must be smaller than or equal to 64.'
|
491
491
|
end
|
492
492
|
|
493
493
|
@name = name
|
@@ -500,8 +500,8 @@ module PulpAnsibleClient
|
|
500
500
|
fail ArgumentError, 'namespace cannot be nil'
|
501
501
|
end
|
502
502
|
|
503
|
-
if namespace.to_s.length >
|
504
|
-
fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to
|
503
|
+
if namespace.to_s.length > 64
|
504
|
+
fail ArgumentError, 'invalid value for "namespace", the character length must be smaller than or equal to 64.'
|
505
505
|
end
|
506
506
|
|
507
507
|
@namespace = namespace
|
@@ -528,8 +528,8 @@ module PulpAnsibleClient
|
|
528
528
|
fail ArgumentError, 'version cannot be nil'
|
529
529
|
end
|
530
530
|
|
531
|
-
if version.to_s.length >
|
532
|
-
fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to
|
531
|
+
if version.to_s.length > 128
|
532
|
+
fail ArgumentError, 'invalid value for "version", the character length must be smaller than or equal to 128.'
|
533
533
|
end
|
534
534
|
|
535
535
|
@version = version
|
@@ -550,9 +550,9 @@ module PulpAnsibleClient
|
|
550
550
|
def ==(o)
|
551
551
|
return true if self.equal?(o)
|
552
552
|
self.class == o.class &&
|
553
|
-
pulp_href == o.pulp_href &&
|
554
553
|
artifact == o.artifact &&
|
555
554
|
pulp_created == o.pulp_created &&
|
555
|
+
pulp_href == o.pulp_href &&
|
556
556
|
md5 == o.md5 &&
|
557
557
|
sha1 == o.sha1 &&
|
558
558
|
sha224 == o.sha224 &&
|
@@ -588,7 +588,7 @@ module PulpAnsibleClient
|
|
588
588
|
# Calculates hash code according to all attributes.
|
589
589
|
# @return [Integer] Hash code
|
590
590
|
def hash
|
591
|
-
[
|
591
|
+
[artifact, pulp_created, pulp_href, md5, sha1, sha224, sha256, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, repository, tags, version, requires_ansible].hash
|
592
592
|
end
|
593
593
|
|
594
594
|
# Builds the object from hash
|
@@ -15,14 +15,14 @@ require 'date'
|
|
15
15
|
module PulpAnsibleClient
|
16
16
|
# A serializer for Role versions.
|
17
17
|
class AnsibleRoleResponse
|
18
|
-
attr_accessor :pulp_href
|
19
|
-
|
20
18
|
# Artifact file representing the physical content
|
21
19
|
attr_accessor :artifact
|
22
20
|
|
23
21
|
# Timestamp of creation.
|
24
22
|
attr_accessor :pulp_created
|
25
23
|
|
24
|
+
attr_accessor :pulp_href
|
25
|
+
|
26
26
|
attr_accessor :version
|
27
27
|
|
28
28
|
attr_accessor :name
|
@@ -32,9 +32,9 @@ module PulpAnsibleClient
|
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
|
-
:'pulp_href' => :'pulp_href',
|
36
35
|
:'artifact' => :'artifact',
|
37
36
|
:'pulp_created' => :'pulp_created',
|
37
|
+
:'pulp_href' => :'pulp_href',
|
38
38
|
:'version' => :'version',
|
39
39
|
:'name' => :'name',
|
40
40
|
:'namespace' => :'namespace'
|
@@ -44,9 +44,9 @@ module PulpAnsibleClient
|
|
44
44
|
# Attribute type mapping.
|
45
45
|
def self.openapi_types
|
46
46
|
{
|
47
|
-
:'pulp_href' => :'String',
|
48
47
|
:'artifact' => :'String',
|
49
48
|
:'pulp_created' => :'DateTime',
|
49
|
+
:'pulp_href' => :'String',
|
50
50
|
:'version' => :'String',
|
51
51
|
:'name' => :'String',
|
52
52
|
:'namespace' => :'String'
|
@@ -74,10 +74,6 @@ module PulpAnsibleClient
|
|
74
74
|
h[k.to_sym] = v
|
75
75
|
}
|
76
76
|
|
77
|
-
if attributes.key?(:'pulp_href')
|
78
|
-
self.pulp_href = attributes[:'pulp_href']
|
79
|
-
end
|
80
|
-
|
81
77
|
if attributes.key?(:'artifact')
|
82
78
|
self.artifact = attributes[:'artifact']
|
83
79
|
end
|
@@ -86,6 +82,10 @@ module PulpAnsibleClient
|
|
86
82
|
self.pulp_created = attributes[:'pulp_created']
|
87
83
|
end
|
88
84
|
|
85
|
+
if attributes.key?(:'pulp_href')
|
86
|
+
self.pulp_href = attributes[:'pulp_href']
|
87
|
+
end
|
88
|
+
|
89
89
|
if attributes.key?(:'version')
|
90
90
|
self.version = attributes[:'version']
|
91
91
|
end
|
@@ -137,9 +137,9 @@ module PulpAnsibleClient
|
|
137
137
|
def ==(o)
|
138
138
|
return true if self.equal?(o)
|
139
139
|
self.class == o.class &&
|
140
|
-
pulp_href == o.pulp_href &&
|
141
140
|
artifact == o.artifact &&
|
142
141
|
pulp_created == o.pulp_created &&
|
142
|
+
pulp_href == o.pulp_href &&
|
143
143
|
version == o.version &&
|
144
144
|
name == o.name &&
|
145
145
|
namespace == o.namespace
|
@@ -154,7 +154,7 @@ module PulpAnsibleClient
|
|
154
154
|
# Calculates hash code according to all attributes.
|
155
155
|
# @return [Integer] Hash code
|
156
156
|
def hash
|
157
|
-
[
|
157
|
+
[artifact, pulp_created, pulp_href, version, name, namespace].hash
|
158
158
|
end
|
159
159
|
|
160
160
|
# Builds the object from hash
|
@@ -32,19 +32,19 @@ describe 'AnsibleCollectionVersionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleCollectionVersionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "artifact"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_created"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
@@ -32,19 +32,19 @@ describe 'AnsibleRoleResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpAnsibleClient::AnsibleRoleResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "artifact"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_created"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_ansible_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-04-
|
11
|
+
date: 2021-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -355,95 +355,95 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
355
355
|
- !ruby/object:Gem::Version
|
356
356
|
version: '0'
|
357
357
|
requirements: []
|
358
|
-
rubygems_version: 3.0.3
|
358
|
+
rubygems_version: 3.0.3.1
|
359
359
|
signing_key:
|
360
360
|
specification_version: 4
|
361
361
|
summary: Pulp 3 API Ruby Gem
|
362
362
|
test_files:
|
363
|
-
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
364
|
-
- spec/api/ansible_copy_api_spec.rb
|
365
|
-
- spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
|
366
|
-
- spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
|
367
|
-
- spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
|
368
|
-
- spec/api/pulp_ansible_galaxy_v3_api_spec.rb
|
369
|
-
- spec/api/repositories_ansible_api_spec.rb
|
370
|
-
- spec/api/remotes_role_api_spec.rb
|
371
|
-
- spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
|
372
|
-
- spec/api/api_roles_api_spec.rb
|
373
|
-
- spec/api/api_collections_api_spec.rb
|
374
363
|
- spec/api/repositories_ansible_versions_api_spec.rb
|
364
|
+
- spec/api/pulp_ansible_galaxy_api_v3_all_api_spec.rb
|
365
|
+
- spec/api/pulp_ansible_tags_api_spec.rb
|
375
366
|
- spec/api/pulp_ansible_api_api_spec.rb
|
376
|
-
- spec/api/
|
377
|
-
- spec/api/remotes_collection_api_spec.rb
|
367
|
+
- spec/api/pulp_ansible_galaxy_api_v2_versions_api_spec.rb
|
378
368
|
- spec/api/distributions_ansible_api_spec.rb
|
379
|
-
- spec/api/
|
380
|
-
- spec/api/galaxy_detail_api_spec.rb
|
369
|
+
- spec/api/pulp_ansible_galaxy_api_v3_versions_api_spec.rb
|
381
370
|
- spec/api/versions_api_spec.rb
|
382
|
-
- spec/api/collection_import_api_spec.rb
|
383
371
|
- spec/api/ansible_collections_api_spec.rb
|
384
|
-
- spec/api/
|
372
|
+
- spec/api/pulp_ansible_galaxy_api_v3_collections_api_spec.rb
|
385
373
|
- spec/api/content_collection_versions_api_spec.rb
|
374
|
+
- spec/api/pulp_ansible_galaxy_api_v3_collections_docs_blob_api_spec.rb
|
375
|
+
- spec/api/ansible_copy_api_spec.rb
|
376
|
+
- spec/api/api_roles_api_spec.rb
|
377
|
+
- spec/api/collection_import_api_spec.rb
|
378
|
+
- spec/api/galaxy_detail_api_spec.rb
|
379
|
+
- spec/api/remotes_collection_api_spec.rb
|
380
|
+
- spec/api/content_roles_api_spec.rb
|
381
|
+
- spec/api/api_collections_api_spec.rb
|
382
|
+
- spec/api/repositories_ansible_api_spec.rb
|
383
|
+
- spec/api/pulp_ansible_galaxy_v3_api_spec.rb
|
384
|
+
- spec/api/pulp_ansible_galaxy_api_collections_api_spec.rb
|
385
|
+
- spec/api/remotes_role_api_spec.rb
|
386
386
|
- spec/api_client_spec.rb
|
387
387
|
- spec/configuration_spec.rb
|
388
|
-
- spec/models/
|
389
|
-
- spec/models/ansible_ansible_repository_spec.rb
|
390
|
-
- spec/models/collection_namespace_response_spec.rb
|
391
|
-
- spec/models/ansible_ansible_distribution_response_spec.rb
|
392
|
-
- spec/models/patchedansible_role_remote_spec.rb
|
393
|
-
- spec/models/repository_version_response_spec.rb
|
394
|
-
- spec/models/paginated_galaxy_role_response_list_spec.rb
|
395
|
-
- spec/models/paginated_galaxy_collection_response_list_spec.rb
|
388
|
+
- spec/models/ansible_tag_response_spec.rb
|
396
389
|
- spec/models/unpaginated_collection_version_response_spec.rb
|
397
|
-
- spec/models/
|
390
|
+
- spec/models/ansible_role_spec.rb
|
391
|
+
- spec/models/ansible_repository_sync_url_spec.rb
|
392
|
+
- spec/models/galaxy_collection_spec.rb
|
393
|
+
- spec/models/patchedansible_collection_remote_spec.rb
|
394
|
+
- spec/models/ansible_role_response_spec.rb
|
395
|
+
- spec/models/paginated_collection_version_response_list_spec.rb
|
398
396
|
- spec/models/ansible_ansible_distribution_spec.rb
|
399
|
-
- spec/models/
|
400
|
-
- spec/models/
|
401
|
-
- spec/models/
|
402
|
-
- spec/models/paginatedansible_role_response_list_spec.rb
|
403
|
-
- spec/models/galaxy_role_response_spec.rb
|
397
|
+
- spec/models/ansible_collection_remote_response_spec.rb
|
398
|
+
- spec/models/content_summary_spec.rb
|
399
|
+
- spec/models/ansible_role_remote_spec.rb
|
404
400
|
- spec/models/patchedansible_ansible_distribution_spec.rb
|
405
|
-
- spec/models/
|
406
|
-
- spec/models/
|
407
|
-
- spec/models/
|
401
|
+
- spec/models/copy_spec.rb
|
402
|
+
- spec/models/collection_version_response_spec.rb
|
403
|
+
- spec/models/paginated_collection_response_list_links_spec.rb
|
408
404
|
- spec/models/paginated_galaxy_collection_version_response_list_spec.rb
|
409
|
-
- spec/models/
|
410
|
-
- spec/models/ansible_repository_sync_url_spec.rb
|
411
|
-
- spec/models/content_summary_response_spec.rb
|
405
|
+
- spec/models/galaxy_role_version_response_spec.rb
|
412
406
|
- spec/models/ansible_ansible_repository_response_spec.rb
|
413
|
-
- spec/models/
|
414
|
-
- spec/models/
|
415
|
-
- spec/models/
|
407
|
+
- spec/models/content_summary_response_spec.rb
|
408
|
+
- spec/models/collection_one_shot_spec.rb
|
409
|
+
- spec/models/ansible_collection_remote_spec.rb
|
410
|
+
- spec/models/ansible_ansible_repository_spec.rb
|
416
411
|
- spec/models/ansible_collection_version_spec.rb
|
412
|
+
- spec/models/repository_add_remove_content_spec.rb
|
417
413
|
- spec/models/galaxy_collection_response_spec.rb
|
418
|
-
- spec/models/
|
419
|
-
- spec/models/
|
420
|
-
- spec/models/
|
421
|
-
- spec/models/
|
422
|
-
- spec/models/
|
414
|
+
- spec/models/tag_response_spec.rb
|
415
|
+
- spec/models/paginatedansible_collection_response_list_spec.rb
|
416
|
+
- spec/models/ansible_collection_version_response_spec.rb
|
417
|
+
- spec/models/patchedansible_role_remote_spec.rb
|
418
|
+
- spec/models/collection_response_spec.rb
|
419
|
+
- spec/models/repository_version_spec.rb
|
420
|
+
- spec/models/collection_import_detail_response_spec.rb
|
421
|
+
- spec/models/artifact_ref_response_spec.rb
|
422
|
+
- spec/models/collection_version_docs_response_spec.rb
|
423
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
424
|
+
- spec/models/ansible_role_remote_response_spec.rb
|
423
425
|
- spec/models/paginatedansible_collection_version_response_list_spec.rb
|
424
|
-
- spec/models/
|
425
|
-
- spec/models/ansible_tag_response_spec.rb
|
426
|
+
- spec/models/repo_metadata_response_spec.rb
|
426
427
|
- spec/models/paginated_tag_response_list_spec.rb
|
427
|
-
- spec/models/
|
428
|
-
- spec/models/
|
429
|
-
- spec/models/
|
430
|
-
- spec/models/
|
428
|
+
- spec/models/repository_version_response_spec.rb
|
429
|
+
- spec/models/paginatedansible_collection_remote_response_list_spec.rb
|
430
|
+
- spec/models/collection_namespace_response_spec.rb
|
431
|
+
- spec/models/paginatedansible_role_response_list_spec.rb
|
431
432
|
- spec/models/patchedansible_ansible_repository_spec.rb
|
432
|
-
- spec/models/
|
433
|
-
- spec/models/
|
434
|
-
- spec/models/paginatedansible_collection_response_list_spec.rb
|
435
|
-
- spec/models/collection_ref_response_spec.rb
|
436
|
-
- spec/models/repository_version_spec.rb
|
437
|
-
- spec/models/ansible_collection_response_spec.rb
|
438
|
-
- spec/models/collection_version_response_spec.rb
|
439
|
-
- spec/models/ansible_role_response_spec.rb
|
440
|
-
- spec/models/policy_enum_spec.rb
|
433
|
+
- spec/models/paginated_collection_response_list_spec.rb
|
434
|
+
- spec/models/paginated_galaxy_collection_response_list_spec.rb
|
441
435
|
- spec/models/paginated_galaxy_role_version_response_list_spec.rb
|
442
|
-
- spec/models/
|
443
|
-
- spec/models/
|
444
|
-
- spec/models/
|
436
|
+
- spec/models/policy_enum_spec.rb
|
437
|
+
- spec/models/paginated_collection_response_list_meta_spec.rb
|
438
|
+
- spec/models/galaxy_role_response_spec.rb
|
439
|
+
- spec/models/paginated_galaxy_role_response_list_spec.rb
|
440
|
+
- spec/models/paginatedansible_ansible_repository_response_list_spec.rb
|
441
|
+
- spec/models/collection_metadata_response_spec.rb
|
442
|
+
- spec/models/ansible_collection_response_spec.rb
|
443
|
+
- spec/models/ansible_ansible_distribution_response_spec.rb
|
444
|
+
- spec/models/galaxy_collection_version_response_spec.rb
|
445
|
+
- spec/models/paginatedansible_role_remote_response_list_spec.rb
|
445
446
|
- spec/models/async_operation_response_spec.rb
|
446
|
-
- spec/models/
|
447
|
-
- spec/models/
|
448
|
-
- spec/models/collection_import_detail_response_spec.rb
|
447
|
+
- spec/models/collection_ref_response_spec.rb
|
448
|
+
- spec/models/paginatedansible_ansible_distribution_response_list_spec.rb
|
449
449
|
- spec/spec_helper.rb
|