pulp_ansible_client 0.25.6 → 0.25.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +4 -4
- data/docs/AnsibleGitRemote.md +24 -24
- data/docs/AnsibleGitRemoteResponse.md +24 -24
- data/docs/AnsibleRole.md +2 -2
- data/docs/AnsibleRoleResponse.md +4 -4
- data/docs/ContentCollectionVersionsApi.md +6 -6
- data/docs/PatchedansibleGitRemote.md +24 -24
- data/docs/RemotesGitApi.md +2 -2
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +9 -9
- data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
- data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_namespaces_api.rb +2 -2
- data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata.rb +3 -3
- data/lib/pulp_ansible_client/models/ansible_ansible_namespace_metadata_response.rb +3 -3
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +21 -21
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +217 -217
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +149 -149
- data/lib/pulp_ansible_client/models/ansible_role.rb +13 -13
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +23 -23
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +210 -210
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/api/content_collection_versions_api_spec.rb +3 -3
- data/spec/models/ansible_collection_version_response_spec.rb +4 -4
- data/spec/models/ansible_git_remote_response_spec.rb +19 -19
- data/spec/models/ansible_git_remote_spec.rb +18 -18
- data/spec/models/ansible_role_response_spec.rb +4 -4
- data/spec/models/ansible_role_spec.rb +3 -3
- data/spec/models/patchedansible_git_remote_spec.rb +18 -18
- metadata +120 -120
|
@@ -18,21 +18,21 @@ module PulpAnsibleClient
|
|
|
18
18
|
class AnsibleCollectionVersionResponse
|
|
19
19
|
attr_accessor :pulp_href
|
|
20
20
|
|
|
21
|
-
# The Pulp Resource Name (PRN).
|
|
22
|
-
attr_accessor :prn
|
|
23
|
-
|
|
24
21
|
# Timestamp of creation.
|
|
25
22
|
attr_accessor :pulp_created
|
|
26
23
|
|
|
24
|
+
# Artifact file representing the physical content
|
|
25
|
+
attr_accessor :artifact
|
|
26
|
+
|
|
27
27
|
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
|
28
28
|
attr_accessor :pulp_last_updated
|
|
29
29
|
|
|
30
|
+
# The Pulp Resource Name (PRN).
|
|
31
|
+
attr_accessor :prn
|
|
32
|
+
|
|
30
33
|
# A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
31
34
|
attr_accessor :pulp_labels
|
|
32
35
|
|
|
33
|
-
# Artifact file representing the physical content
|
|
34
|
-
attr_accessor :artifact
|
|
35
|
-
|
|
36
36
|
# The SHA-256 checksum if available.
|
|
37
37
|
attr_accessor :sha256
|
|
38
38
|
|
|
@@ -96,11 +96,11 @@ module PulpAnsibleClient
|
|
|
96
96
|
def self.attribute_map
|
|
97
97
|
{
|
|
98
98
|
:'pulp_href' => :'pulp_href',
|
|
99
|
-
:'prn' => :'prn',
|
|
100
99
|
:'pulp_created' => :'pulp_created',
|
|
100
|
+
:'artifact' => :'artifact',
|
|
101
101
|
:'pulp_last_updated' => :'pulp_last_updated',
|
|
102
|
+
:'prn' => :'prn',
|
|
102
103
|
:'pulp_labels' => :'pulp_labels',
|
|
103
|
-
:'artifact' => :'artifact',
|
|
104
104
|
:'sha256' => :'sha256',
|
|
105
105
|
:'md5' => :'md5',
|
|
106
106
|
:'sha1' => :'sha1',
|
|
@@ -133,11 +133,11 @@ module PulpAnsibleClient
|
|
|
133
133
|
def self.openapi_types
|
|
134
134
|
{
|
|
135
135
|
:'pulp_href' => :'String',
|
|
136
|
-
:'prn' => :'String',
|
|
137
136
|
:'pulp_created' => :'Time',
|
|
137
|
+
:'artifact' => :'String',
|
|
138
138
|
:'pulp_last_updated' => :'Time',
|
|
139
|
+
:'prn' => :'String',
|
|
139
140
|
:'pulp_labels' => :'Hash<String, String>',
|
|
140
|
-
:'artifact' => :'String',
|
|
141
141
|
:'sha256' => :'String',
|
|
142
142
|
:'md5' => :'String',
|
|
143
143
|
:'sha1' => :'String',
|
|
@@ -187,28 +187,28 @@ module PulpAnsibleClient
|
|
|
187
187
|
self.pulp_href = attributes[:'pulp_href']
|
|
188
188
|
end
|
|
189
189
|
|
|
190
|
-
if attributes.key?(:'prn')
|
|
191
|
-
self.prn = attributes[:'prn']
|
|
192
|
-
end
|
|
193
|
-
|
|
194
190
|
if attributes.key?(:'pulp_created')
|
|
195
191
|
self.pulp_created = attributes[:'pulp_created']
|
|
196
192
|
end
|
|
197
193
|
|
|
194
|
+
if attributes.key?(:'artifact')
|
|
195
|
+
self.artifact = attributes[:'artifact']
|
|
196
|
+
end
|
|
197
|
+
|
|
198
198
|
if attributes.key?(:'pulp_last_updated')
|
|
199
199
|
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
200
200
|
end
|
|
201
201
|
|
|
202
|
+
if attributes.key?(:'prn')
|
|
203
|
+
self.prn = attributes[:'prn']
|
|
204
|
+
end
|
|
205
|
+
|
|
202
206
|
if attributes.key?(:'pulp_labels')
|
|
203
207
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
204
208
|
self.pulp_labels = value
|
|
205
209
|
end
|
|
206
210
|
end
|
|
207
211
|
|
|
208
|
-
if attributes.key?(:'artifact')
|
|
209
|
-
self.artifact = attributes[:'artifact']
|
|
210
|
-
end
|
|
211
|
-
|
|
212
212
|
if attributes.key?(:'sha256')
|
|
213
213
|
self.sha256 = attributes[:'sha256']
|
|
214
214
|
end
|
|
@@ -465,11 +465,11 @@ module PulpAnsibleClient
|
|
|
465
465
|
return true if self.equal?(o)
|
|
466
466
|
self.class == o.class &&
|
|
467
467
|
pulp_href == o.pulp_href &&
|
|
468
|
-
prn == o.prn &&
|
|
469
468
|
pulp_created == o.pulp_created &&
|
|
469
|
+
artifact == o.artifact &&
|
|
470
470
|
pulp_last_updated == o.pulp_last_updated &&
|
|
471
|
+
prn == o.prn &&
|
|
471
472
|
pulp_labels == o.pulp_labels &&
|
|
472
|
-
artifact == o.artifact &&
|
|
473
473
|
sha256 == o.sha256 &&
|
|
474
474
|
md5 == o.md5 &&
|
|
475
475
|
sha1 == o.sha1 &&
|
|
@@ -501,7 +501,7 @@ module PulpAnsibleClient
|
|
|
501
501
|
# Calculates hash code according to all attributes.
|
|
502
502
|
# @return [Integer] Hash code
|
|
503
503
|
def hash
|
|
504
|
-
[pulp_href,
|
|
504
|
+
[pulp_href, pulp_created, artifact, pulp_last_updated, prn, pulp_labels, sha256, md5, sha1, sha224, sha384, sha512, id, authors, dependencies, description, documentation, homepage, issues, license, name, namespace, origin_repository, tags, version, requires_ansible].hash
|
|
505
505
|
end
|
|
506
506
|
|
|
507
507
|
# Builds the object from hash
|