pulp_ansible_client 0.22.3 → 0.23.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/AnsibleCollectionVersion.md +4 -4
  4. data/docs/AnsibleCollectionVersionResponse.md +7 -7
  5. data/docs/AnsibleGitRemote.md +28 -28
  6. data/docs/AnsibleGitRemoteResponse.md +29 -29
  7. data/docs/AnsibleRole.md +3 -3
  8. data/docs/AnsibleRoleResponse.md +7 -7
  9. data/docs/ContentCollectionVersionsApi.md +6 -8
  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 +9 -12
  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 +18 -18
  21. data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +25 -25
  22. data/lib/pulp_ansible_client/models/ansible_git_remote.rb +254 -254
  23. data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +167 -167
  24. data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
  25. data/lib/pulp_ansible_client/models/ansible_role_response.rb +25 -25
  26. data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +247 -247
  27. data/lib/pulp_ansible_client/version.rb +1 -1
  28. data/spec/api/content_collection_versions_api_spec.rb +3 -4
  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 +4 -4
  34. data/spec/models/ansible_collection_version_spec.rb +3 -3
  35. data/spec/models/ansible_git_remote_response_spec.rb +20 -20
  36. data/spec/models/ansible_git_remote_spec.rb +20 -20
  37. data/spec/models/ansible_role_response_spec.rb +4 -4
  38. data/spec/models/ansible_role_spec.rb +2 -2
  39. data/spec/models/patchedansible_git_remote_spec.rb +20 -20
  40. metadata +2 -2
@@ -15,8 +15,8 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersion
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
18
+ # A URI of a repository the new content unit should be associated with.
19
+ attr_accessor :repository
20
20
 
21
21
  # An uploaded file that may be turned into the content unit.
22
22
  attr_accessor :file
@@ -24,12 +24,12 @@ module PulpAnsibleClient
24
24
  # A url that Pulp can download and turn into the content unit.
25
25
  attr_accessor :file_url
26
26
 
27
+ # Artifact file representing the physical content
28
+ attr_accessor :artifact
29
+
27
30
  # An uncommitted upload that may be turned into the content unit.
28
31
  attr_accessor :upload
29
32
 
30
- # A URI of a repository the new content unit should be associated with.
31
- attr_accessor :repository
32
-
33
33
  # The name of the collection.
34
34
  attr_accessor :expected_name
35
35
 
@@ -42,11 +42,11 @@ module PulpAnsibleClient
42
42
  # Attribute mapping from ruby-style variable name to JSON key.
43
43
  def self.attribute_map
44
44
  {
45
- :'artifact' => :'artifact',
45
+ :'repository' => :'repository',
46
46
  :'file' => :'file',
47
47
  :'file_url' => :'file_url',
48
+ :'artifact' => :'artifact',
48
49
  :'upload' => :'upload',
49
- :'repository' => :'repository',
50
50
  :'expected_name' => :'expected_name',
51
51
  :'expected_namespace' => :'expected_namespace',
52
52
  :'expected_version' => :'expected_version'
@@ -56,11 +56,11 @@ module PulpAnsibleClient
56
56
  # Attribute type mapping.
57
57
  def self.openapi_types
58
58
  {
59
- :'artifact' => :'String',
59
+ :'repository' => :'String',
60
60
  :'file' => :'File',
61
61
  :'file_url' => :'String',
62
+ :'artifact' => :'String',
62
63
  :'upload' => :'String',
63
- :'repository' => :'String',
64
64
  :'expected_name' => :'String',
65
65
  :'expected_namespace' => :'String',
66
66
  :'expected_version' => :'String'
@@ -88,8 +88,8 @@ module PulpAnsibleClient
88
88
  h[k.to_sym] = v
89
89
  }
90
90
 
91
- if attributes.key?(:'artifact')
92
- self.artifact = attributes[:'artifact']
91
+ if attributes.key?(:'repository')
92
+ self.repository = attributes[:'repository']
93
93
  end
94
94
 
95
95
  if attributes.key?(:'file')
@@ -100,12 +100,12 @@ module PulpAnsibleClient
100
100
  self.file_url = attributes[:'file_url']
101
101
  end
102
102
 
103
- if attributes.key?(:'upload')
104
- self.upload = attributes[:'upload']
103
+ if attributes.key?(:'artifact')
104
+ self.artifact = attributes[:'artifact']
105
105
  end
106
106
 
107
- if attributes.key?(:'repository')
108
- self.repository = attributes[:'repository']
107
+ if attributes.key?(:'upload')
108
+ self.upload = attributes[:'upload']
109
109
  end
110
110
 
111
111
  if attributes.key?(:'expected_name')
@@ -226,11 +226,11 @@ module PulpAnsibleClient
226
226
  def ==(o)
227
227
  return true if self.equal?(o)
228
228
  self.class == o.class &&
229
- artifact == o.artifact &&
229
+ repository == o.repository &&
230
230
  file == o.file &&
231
231
  file_url == o.file_url &&
232
+ artifact == o.artifact &&
232
233
  upload == o.upload &&
233
- repository == o.repository &&
234
234
  expected_name == o.expected_name &&
235
235
  expected_namespace == o.expected_namespace &&
236
236
  expected_version == o.expected_version
@@ -245,7 +245,7 @@ module PulpAnsibleClient
245
245
  # Calculates hash code according to all attributes.
246
246
  # @return [Integer] Hash code
247
247
  def hash
248
- [artifact, file, file_url, upload, repository, expected_name, expected_namespace, expected_version].hash
248
+ [repository, file, file_url, artifact, upload, expected_name, expected_namespace, expected_version].hash
249
249
  end
250
250
 
251
251
  # Builds the object from hash
@@ -15,19 +15,19 @@ require 'date'
15
15
  module PulpAnsibleClient
16
16
  # A serializer for CollectionVersion Content.
17
17
  class AnsibleCollectionVersionResponse
18
- # Artifact file representing the physical content
19
- attr_accessor :artifact
18
+ attr_accessor :pulp_href
20
19
 
21
- # 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.
22
- attr_accessor :pulp_last_updated
20
+ # The Pulp Resource Name (PRN).
21
+ attr_accessor :prn
23
22
 
24
23
  # Timestamp of creation.
25
24
  attr_accessor :pulp_created
26
25
 
27
- attr_accessor :pulp_href
26
+ # Artifact file representing the physical content
27
+ attr_accessor :artifact
28
28
 
29
- # The Pulp Resource Name (PRN).
30
- attr_accessor :prn
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.
30
+ attr_accessor :pulp_last_updated
31
31
 
32
32
  # The SHA-256 checksum if available.
33
33
  attr_accessor :sha256
@@ -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
- :'artifact' => :'artifact',
107
- :'pulp_last_updated' => :'pulp_last_updated',
108
- :'pulp_created' => :'pulp_created',
109
106
  :'pulp_href' => :'pulp_href',
110
107
  :'prn' => :'prn',
108
+ :'pulp_created' => :'pulp_created',
109
+ :'artifact' => :'artifact',
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
- :'artifact' => :'String',
142
- :'pulp_last_updated' => :'DateTime',
143
- :'pulp_created' => :'DateTime',
144
141
  :'pulp_href' => :'String',
145
142
  :'prn' => :'String',
143
+ :'pulp_created' => :'DateTime',
144
+ :'artifact' => :'String',
145
+ :'pulp_last_updated' => :'DateTime',
146
146
  :'sha256' => :'String',
147
147
  :'md5' => :'String',
148
148
  :'sha1' => :'String',
@@ -192,24 +192,24 @@ module PulpAnsibleClient
192
192
  h[k.to_sym] = v
193
193
  }
194
194
 
195
- if attributes.key?(:'artifact')
196
- self.artifact = attributes[:'artifact']
195
+ if attributes.key?(:'pulp_href')
196
+ self.pulp_href = attributes[:'pulp_href']
197
197
  end
198
198
 
199
- if attributes.key?(:'pulp_last_updated')
200
- self.pulp_last_updated = attributes[:'pulp_last_updated']
199
+ if attributes.key?(:'prn')
200
+ self.prn = attributes[:'prn']
201
201
  end
202
202
 
203
203
  if attributes.key?(:'pulp_created')
204
204
  self.pulp_created = attributes[:'pulp_created']
205
205
  end
206
206
 
207
- if attributes.key?(:'pulp_href')
208
- self.pulp_href = attributes[:'pulp_href']
207
+ if attributes.key?(:'artifact')
208
+ self.artifact = attributes[:'artifact']
209
209
  end
210
210
 
211
- if attributes.key?(:'prn')
212
- self.prn = attributes[:'prn']
211
+ if attributes.key?(:'pulp_last_updated')
212
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
213
213
  end
214
214
 
215
215
  if attributes.key?(:'sha256')
@@ -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
- artifact == o.artifact &&
457
- pulp_last_updated == o.pulp_last_updated &&
458
- pulp_created == o.pulp_created &&
459
456
  pulp_href == o.pulp_href &&
460
457
  prn == o.prn &&
458
+ pulp_created == o.pulp_created &&
459
+ artifact == o.artifact &&
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
- [artifact, pulp_last_updated, pulp_created, pulp_href, prn, 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
+ [pulp_href, prn, pulp_created, artifact, 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