pulp_ansible_client 0.12.0.dev1640747746 → 0.12.0.dev1640834158

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pulp_ansible_client might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4283026b97b38d372d8c76279e864ccffe3f9711d06f453c16127fed3189690b
4
- data.tar.gz: 80d6c79c490597eb6976c9b0112eb8532d65ae0e81ed00ecf7058dd3ebe3ccb1
3
+ metadata.gz: bc3402aaefe34910019cb3276e6407264c6a3e270f33a83b4c23d31d0ab5965f
4
+ data.tar.gz: b535abc64f539aff9e5b1a6ead8b88e5fccc56d2de59989b8b7284e281e3738d
5
5
  SHA512:
6
- metadata.gz: 8ff06c7fa7900d1fd2d036164676aece769505f064fbcf143f1612f7edb42e5c1f4c3bde16d025eaa414785520732c40ee061ed94458ae54d09cc0f4d897e972
7
- data.tar.gz: 6c3e06b2a54f9cc8b2f7f04f466741a820e2b0dc1e707022503b67bdd0e985a0d276e9b612e4216f0f7c3c48d81b9caa13ac40b36784f0b7f1dd6fadce26cbe2
6
+ metadata.gz: c63e82e935aeea74e07528d599a7ae0c0061b050938780da2ab02cbc2edf0496457dbfde65a1c9a54e1b1dd9c50b7aee124f3d16b65a2e3beeed398e509c661b
7
+ data.tar.gz: 89c4b412c830afd5311697cb9bb0f169c032ad54824e3c7a1108e1f642c2ceef3cfdd1f42b963ea3de517fbd220e7bfef51731d955a966a22e29398aa3c163d4
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.12.0.dev1640747746
10
+ - Package version: 0.12.0.dev1640834158
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.12.0.dev1640747746.gem
27
+ gem install ./pulp_ansible_client-0.12.0.dev1640834158.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_ansible_client-0.12.0.dev1640747746.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_ansible_client-0.12.0.dev1640834158.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.12.0.dev1640747746'
36
+ gem 'pulp_ansible_client', '~> 0.12.0.dev1640834158'
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]
7
8
  **artifact** | **String** | Artifact file representing the physical content | [optional]
8
9
  **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(artifact: null,
40
+ instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_href: null,
41
+ artifact: null,
41
42
  pulp_created: null,
42
- pulp_href: null,
43
43
  md5: null,
44
44
  sha1: null,
45
45
  sha224: null,
@@ -4,26 +4,26 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
7
+ **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
8
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
9
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
8
10
  **pulp_labels** | [**Object**](.md) | | [optional]
11
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
12
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
13
+ **password** | **String** | The password to be used for authentication when syncing. | [optional]
14
+ **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
15
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
16
+ **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
9
17
  **name** | **String** | A unique name for this remote. |
10
18
  **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
11
- **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
12
- **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
13
- **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
14
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
15
- **url** | **String** | The URL of an external content source. |
16
- **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
17
19
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
18
- **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
19
20
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
21
+ **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
22
+ **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
23
+ **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
24
+ **url** | **String** | The URL of an external content source. |
20
25
  **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
21
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
22
26
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
23
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
24
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
25
- **password** | **String** | The password to be used for authentication when syncing. | [optional]
26
- **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
27
27
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
28
28
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
29
29
 
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
32
32
  ```ruby
33
33
  require 'PulpAnsibleClient'
34
34
 
35
- instance = PulpAnsibleClient::AnsibleGitRemote.new(client_key: null,
35
+ instance = PulpAnsibleClient::AnsibleGitRemote.new(proxy_password: null,
36
+ rate_limit: null,
37
+ ca_cert: null,
36
38
  pulp_labels: null,
39
+ tls_validation: null,
40
+ client_key: null,
41
+ password: null,
42
+ sock_connect_timeout: null,
43
+ download_concurrency: null,
44
+ total_timeout: null,
37
45
  name: null,
38
46
  client_cert: null,
39
- sock_connect_timeout: null,
40
- proxy_url: null,
41
- proxy_password: null,
42
- tls_validation: null,
43
- url: null,
44
- headers: null,
45
47
  connect_timeout: null,
46
- max_retries: null,
47
48
  username: null,
49
+ headers: null,
50
+ proxy_url: null,
51
+ max_retries: null,
52
+ url: null,
48
53
  sock_read_timeout: null,
49
- rate_limit: null,
50
54
  proxy_username: null,
51
- ca_cert: null,
52
- download_concurrency: null,
53
- password: null,
54
- total_timeout: null,
55
55
  metadata_only: null,
56
56
  git_ref: null)
57
57
  ```
@@ -4,24 +4,24 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_href** | **String** | | [optional] [readonly]
8
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
9
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
7
10
  **pulp_labels** | [**Object**](.md) | | [optional]
11
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
12
+ **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
13
+ **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
14
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
15
+ **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
8
16
  **name** | **String** | A unique name for this remote. |
9
17
  **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
10
- **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
11
- **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
12
- **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
13
- **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
14
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
15
- **url** | **String** | The URL of an external content source. |
16
- **pulp_href** | **String** | | [optional] [readonly]
17
- **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
18
18
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
19
+ **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
20
+ **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
19
21
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
22
+ **url** | **String** | The URL of an external content source. |
20
23
  **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
21
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
22
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
23
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
24
- **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
24
+ **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
25
25
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
26
26
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
27
27
 
@@ -30,24 +30,24 @@ Name | Type | Description | Notes
30
30
  ```ruby
31
31
  require 'PulpAnsibleClient'
32
32
 
33
- instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(pulp_labels: null,
33
+ instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(pulp_href: null,
34
+ rate_limit: null,
35
+ ca_cert: null,
36
+ pulp_labels: null,
37
+ tls_validation: null,
38
+ pulp_last_updated: null,
39
+ sock_connect_timeout: null,
40
+ download_concurrency: null,
41
+ total_timeout: null,
34
42
  name: null,
35
43
  client_cert: null,
36
- sock_connect_timeout: null,
37
- pulp_created: null,
38
- proxy_url: null,
39
- pulp_last_updated: null,
40
- tls_validation: null,
41
- url: null,
42
- pulp_href: null,
43
- headers: null,
44
44
  connect_timeout: null,
45
+ headers: null,
46
+ proxy_url: null,
45
47
  max_retries: null,
48
+ url: null,
46
49
  sock_read_timeout: null,
47
- rate_limit: null,
48
- ca_cert: null,
49
- download_concurrency: null,
50
- total_timeout: null,
50
+ pulp_created: null,
51
51
  metadata_only: null,
52
52
  git_ref: null)
53
53
  ```
@@ -4,9 +4,9 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_href** | **String** | | [optional] [readonly]
7
8
  **artifact** | **String** | Artifact file representing the physical content |
8
9
  **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(artifact: null,
19
+ instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_href: null,
20
+ artifact: null,
20
21
  pulp_created: null,
21
- pulp_href: null,
22
22
  version: null,
23
23
  name: null,
24
24
  namespace: null)
@@ -4,26 +4,26 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
7
+ **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
8
+ **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
9
+ **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
8
10
  **pulp_labels** | [**Object**](.md) | | [optional]
11
+ **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
12
+ **client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
13
+ **password** | **String** | The password to be used for authentication when syncing. | [optional]
14
+ **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
15
+ **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
16
+ **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
9
17
  **name** | **String** | A unique name for this remote. | [optional]
10
18
  **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
11
- **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
12
- **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
13
- **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
14
- **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
15
- **url** | **String** | The URL of an external content source. | [optional]
16
- **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
17
19
  **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
18
- **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
19
20
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
21
+ **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
22
+ **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
23
+ **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
24
+ **url** | **String** | The URL of an external content source. | [optional]
20
25
  **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
21
- **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
22
26
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
23
- **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
24
- **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
25
- **password** | **String** | The password to be used for authentication when syncing. | [optional]
26
- **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional]
27
27
  **metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
28
28
  **git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
29
29
 
@@ -32,26 +32,26 @@ Name | Type | Description | Notes
32
32
  ```ruby
33
33
  require 'PulpAnsibleClient'
34
34
 
35
- instance = PulpAnsibleClient::PatchedansibleGitRemote.new(client_key: null,
35
+ instance = PulpAnsibleClient::PatchedansibleGitRemote.new(proxy_password: null,
36
+ rate_limit: null,
37
+ ca_cert: null,
36
38
  pulp_labels: null,
39
+ tls_validation: null,
40
+ client_key: null,
41
+ password: null,
42
+ sock_connect_timeout: null,
43
+ download_concurrency: null,
44
+ total_timeout: null,
37
45
  name: null,
38
46
  client_cert: null,
39
- sock_connect_timeout: null,
40
- proxy_url: null,
41
- proxy_password: null,
42
- tls_validation: null,
43
- url: null,
44
- headers: null,
45
47
  connect_timeout: null,
46
- max_retries: null,
47
48
  username: null,
49
+ headers: null,
50
+ proxy_url: null,
51
+ max_retries: null,
52
+ url: null,
48
53
  sock_read_timeout: null,
49
- rate_limit: null,
50
54
  proxy_username: null,
51
- ca_cert: null,
52
- download_concurrency: null,
53
- password: null,
54
- total_timeout: null,
55
55
  metadata_only: null,
56
56
  git_ref: null)
57
57
  ```
@@ -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
+
18
20
  # Artifact file representing the physical content
19
21
  attr_accessor :artifact
20
22
 
21
23
  # Timestamp of creation.
22
24
  attr_accessor :pulp_created
23
25
 
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',
100
101
  :'artifact' => :'artifact',
101
102
  :'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',
133
134
  :'artifact' => :'String',
134
135
  :'pulp_created' => :'DateTime',
135
- :'pulp_href' => :'String',
136
136
  :'md5' => :'String',
137
137
  :'sha1' => :'String',
138
138
  :'sha224' => :'String',
@@ -182,6 +182,10 @@ 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
+
185
189
  if attributes.key?(:'artifact')
186
190
  self.artifact = attributes[:'artifact']
187
191
  end
@@ -190,10 +194,6 @@ module PulpAnsibleClient
190
194
  self.pulp_created = attributes[:'pulp_created']
191
195
  end
192
196
 
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
@@ -543,9 +543,9 @@ module PulpAnsibleClient
543
543
  def ==(o)
544
544
  return true if self.equal?(o)
545
545
  self.class == o.class &&
546
+ pulp_href == o.pulp_href &&
546
547
  artifact == o.artifact &&
547
548
  pulp_created == o.pulp_created &&
548
- pulp_href == o.pulp_href &&
549
549
  md5 == o.md5 &&
550
550
  sha1 == o.sha1 &&
551
551
  sha224 == o.sha224 &&
@@ -581,7 +581,7 @@ module PulpAnsibleClient
581
581
  # Calculates hash code according to all attributes.
582
582
  # @return [Integer] Hash code
583
583
  def hash
584
- [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
584
+ [pulp_href, artifact, pulp_created, 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
585
585
  end
586
586
 
587
587
  # Builds the object from hash