pulp_ansible_client 0.22.2 → 0.23.0

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 (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersion.md +2 -2
  4. data/docs/AnsibleCollectionVersionResponse.md +5 -5
  5. data/docs/AnsibleGitRemote.md +28 -28
  6. data/docs/AnsibleGitRemoteResponse.md +28 -28
  7. data/docs/AnsibleRole.md +3 -3
  8. data/docs/AnsibleRoleResponse.md +5 -5
  9. data/docs/ContentCollectionVersionsApi.md +4 -6
  10. data/docs/PatchedansibleGitRemote.md +28 -28
  11. data/docs/PulpAnsibleApiV3CollectionsVersionsApi.md +2 -4
  12. data/docs/PulpAnsibleApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -4
  13. data/docs/PulpAnsibleDefaultApiV3CollectionsVersionsApi.md +2 -4
  14. data/docs/PulpAnsibleDefaultApiV3PluginAnsibleContentCollectionsIndexVersionsApi.md +2 -4
  15. data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +6 -9
  16. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_collections_versions_api.rb +3 -6
  17. data/lib/pulp_ansible_client/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -6
  18. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_collections_versions_api.rb +3 -6
  19. data/lib/pulp_ansible_client/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api.rb +3 -6
  20. data/lib/pulp_ansible_client/models/ansible_collection_version.rb +11 -11
  21. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +20 -20
  22. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +217 -217
  23. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +147 -147
  24. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  25. data/lib/pulp_ansible_client/models/ansible_role_response.rb +20 -20
  26. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +210 -210
  27. data/lib/pulp_ansible_client/version.rb +1 -1
  28. data/spec/api/content_collection_versions_api_spec.rb +2 -3
  29. data/spec/api/pulp_ansible_api_v3_collections_versions_api_spec.rb +1 -2
  30. data/spec/api/pulp_ansible_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -2
  31. data/spec/api/pulp_ansible_default_api_v3_collections_versions_api_spec.rb +1 -2
  32. data/spec/api/pulp_ansible_default_api_v3_plugin_ansible_content_collections_index_versions_api_spec.rb +1 -2
  33. data/spec/models/ansible_collection_version_response_spec.rb +5 -5
  34. data/spec/models/ansible_collection_version_spec.rb +2 -2
  35. data/spec/models/ansible_git_remote_response_spec.rb +18 -18
  36. data/spec/models/ansible_git_remote_spec.rb +17 -17
  37. data/spec/models/ansible_role_response_spec.rb +5 -5
  38. data/spec/models/ansible_role_spec.rb +2 -2
  39. data/spec/models/patchedansible_git_remote_spec.rb +17 -17
  40. metadata +2 -2
@@ -15,20 +15,20 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersionResponse
18
- # Timestamp of creation.
19
- attr_accessor :pulp_created
20
-
21
18
  # The Pulp Resource Name (PRN).
22
19
  attr_accessor :prn
23
20
 
24
21
  # Artifact file representing the physical content
25
22
  attr_accessor :artifact
26
23
 
24
+ attr_accessor :pulp_href
25
+
26
+ # Timestamp of creation.
27
+ attr_accessor :pulp_created
28
+
27
29
  # 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
30
  attr_accessor :pulp_last_updated
29
31
 
30
- attr_accessor :pulp_href
31
-
32
32
  # The SHA-256 checksum if available.
33
33
  attr_accessor :sha256
34
34
 
@@ -103,11 +103,11 @@ module PulpAnsibleClient
103
103
  # Attribute mapping from ruby-style variable name to JSON key.
104
104
  def self.attribute_map
105
105
  {
106
- :'pulp_created' => :'pulp_created',
107
106
  :'prn' => :'prn',
108
107
  :'artifact' => :'artifact',
109
- :'pulp_last_updated' => :'pulp_last_updated',
110
108
  :'pulp_href' => :'pulp_href',
109
+ :'pulp_created' => :'pulp_created',
110
+ :'pulp_last_updated' => :'pulp_last_updated',
111
111
  :'sha256' => :'sha256',
112
112
  :'md5' => :'md5',
113
113
  :'sha1' => :'sha1',
@@ -138,11 +138,11 @@ module PulpAnsibleClient
138
138
  # Attribute type mapping.
139
139
  def self.openapi_types
140
140
  {
141
- :'pulp_created' => :'DateTime',
142
141
  :'prn' => :'String',
143
142
  :'artifact' => :'String',
144
- :'pulp_last_updated' => :'DateTime',
145
143
  :'pulp_href' => :'String',
144
+ :'pulp_created' => :'DateTime',
145
+ :'pulp_last_updated' => :'DateTime',
146
146
  :'sha256' => :'String',
147
147
  :'md5' => :'String',
148
148
  :'sha1' => :'String',
@@ -192,10 +192,6 @@ module PulpAnsibleClient
192
192
  h[k.to_sym] = v
193
193
  }
194
194
 
195
- if attributes.key?(:'pulp_created')
196
- self.pulp_created = attributes[:'pulp_created']
197
- end
198
-
199
195
  if attributes.key?(:'prn')
200
196
  self.prn = attributes[:'prn']
201
197
  end
@@ -204,14 +200,18 @@ module PulpAnsibleClient
204
200
  self.artifact = attributes[:'artifact']
205
201
  end
206
202
 
207
- if attributes.key?(:'pulp_last_updated')
208
- self.pulp_last_updated = attributes[:'pulp_last_updated']
209
- end
210
-
211
203
  if attributes.key?(:'pulp_href')
212
204
  self.pulp_href = attributes[:'pulp_href']
213
205
  end
214
206
 
207
+ if attributes.key?(:'pulp_created')
208
+ self.pulp_created = attributes[:'pulp_created']
209
+ end
210
+
211
+ if attributes.key?(:'pulp_last_updated')
212
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
213
+ end
214
+
215
215
  if attributes.key?(:'sha256')
216
216
  self.sha256 = attributes[:'sha256']
217
217
  end
@@ -453,11 +453,11 @@ module PulpAnsibleClient
453
453
  def ==(o)
454
454
  return true if self.equal?(o)
455
455
  self.class == o.class &&
456
- pulp_created == o.pulp_created &&
457
456
  prn == o.prn &&
458
457
  artifact == o.artifact &&
459
- pulp_last_updated == o.pulp_last_updated &&
460
458
  pulp_href == o.pulp_href &&
459
+ pulp_created == o.pulp_created &&
460
+ pulp_last_updated == o.pulp_last_updated &&
461
461
  sha256 == o.sha256 &&
462
462
  md5 == o.md5 &&
463
463
  sha1 == o.sha1 &&
@@ -493,7 +493,7 @@ module PulpAnsibleClient
493
493
  # Calculates hash code according to all attributes.
494
494
  # @return [Integer] Hash code
495
495
  def hash
496
- [pulp_created, prn, artifact, pulp_last_updated, pulp_href, sha256, md5, sha1, sha224, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, origin_repository, tags, version, requires_ansible].hash
496
+ [prn, artifact, pulp_href, pulp_created, pulp_last_updated, sha256, md5, sha1, sha224, sha384, sha512, id, authors, contents, dependencies, description, docs_blob, manifest, files, documentation, homepage, issues, license, name, namespace, origin_repository, tags, version, requires_ansible].hash
497
497
  end
498
498
 
499
499
  # Builds the object from hash