pulp_ansible_client 0.11.0.dev1636946173 → 0.11.0.dev1637032524
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.
Potentially problematic release.
This version of pulp_ansible_client might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +26 -26
- data/docs/AnsibleGitRemoteResponse.md +24 -24
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/PatchedansibleGitRemote.md +26 -26
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +10 -10
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +152 -152
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +140 -140
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +152 -152
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +2 -2
- data/spec/models/ansible_git_remote_response_spec.rb +16 -16
- data/spec/models/ansible_git_remote_spec.rb +17 -17
- data/spec/models/ansible_role_response_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +17 -17
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee43dbeb6368d7fc8977c7216849813c39af893fb2668bb6f27e12f340b57c3f
|
4
|
+
data.tar.gz: efde71ce8ee66cd4e7408fa5adbe11e74e52177aaeb6d596bdbb068761a3a1ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62d5f8b62c65ae3c2ef20a40adfbd8ec51fe54c996db624372d515d716eef176c3b3d4593ced1d1b8c48efa5ea324adeafb384d1c92ecf9cae3512254d334448
|
7
|
+
data.tar.gz: e0116b956b9738059128a7ca7630ea4db4b9ae27f714f54b09e0577ef1b870eb806def6e8708054677efdd96f94a05146c1555d03e683159d175009e6f1563b6
|
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.11.0.
|
10
|
+
- Package version: 0.11.0.dev1637032524
|
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.11.0.
|
27
|
+
gem install ./pulp_ansible_client-0.11.0.dev1637032524.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.11.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.11.0.dev1637032524.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.11.0.
|
36
|
+
gem 'pulp_ansible_client', '~> 0.11.0.dev1637032524'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,8 +4,8 @@
|
|
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 |
|
8
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
9
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [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]
|
@@ -37,8 +37,8 @@ Name | Type | Description | Notes
|
|
37
37
|
```ruby
|
38
38
|
require 'PulpAnsibleClient'
|
39
39
|
|
40
|
-
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
|
41
|
-
|
40
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(artifact: null,
|
41
|
+
pulp_href: null,
|
42
42
|
pulp_created: null,
|
43
43
|
md5: null,
|
44
44
|
sha1: null,
|
data/docs/AnsibleGitRemote.md
CHANGED
@@ -5,25 +5,25 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
8
|
-
**
|
9
|
-
**
|
10
|
-
**url** | **String** | The URL of an external content source. |
|
11
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
12
|
-
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
8
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
9
|
+
**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]
|
13
10
|
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
14
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
15
|
-
**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]
|
16
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
17
|
-
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
|
18
11
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
12
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
19
13
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
14
|
+
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
|
15
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
16
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
17
|
+
**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]
|
20
18
|
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
19
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
20
|
+
**url** | **String** | The URL of an external content source. |
|
21
21
|
**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]
|
22
22
|
**name** | **String** | A unique name for this remote. |
|
23
|
-
**
|
24
|
-
**
|
25
|
-
**
|
26
|
-
**
|
23
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
24
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
25
|
+
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
26
|
+
**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]
|
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
|
|
29
29
|
## Code Sample
|
@@ -32,25 +32,25 @@ Name | Type | Description | Notes
|
|
32
32
|
require 'PulpAnsibleClient'
|
33
33
|
|
34
34
|
instance = PulpAnsibleClient::AnsibleGitRemote.new(headers: null,
|
35
|
-
|
36
|
-
|
37
|
-
url: null,
|
38
|
-
username: null,
|
39
|
-
password: null,
|
35
|
+
ca_cert: null,
|
36
|
+
connect_timeout: null,
|
40
37
|
proxy_username: null,
|
41
|
-
client_cert: null,
|
42
|
-
sock_connect_timeout: null,
|
43
|
-
tls_validation: null,
|
44
|
-
rate_limit: null,
|
45
38
|
max_retries: null,
|
39
|
+
username: null,
|
46
40
|
client_key: null,
|
41
|
+
rate_limit: null,
|
42
|
+
download_concurrency: null,
|
43
|
+
pulp_labels: null,
|
44
|
+
total_timeout: null,
|
47
45
|
proxy_password: null,
|
46
|
+
proxy_url: null,
|
47
|
+
url: null,
|
48
48
|
sock_read_timeout: null,
|
49
49
|
name: null,
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
50
|
+
client_cert: null,
|
51
|
+
tls_validation: null,
|
52
|
+
password: null,
|
53
|
+
sock_connect_timeout: null,
|
54
54
|
metadata_only: null)
|
55
55
|
```
|
56
56
|
|
@@ -5,23 +5,23 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
8
|
-
**
|
8
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
9
|
+
**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]
|
10
|
+
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
11
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
12
|
+
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
|
13
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
14
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
9
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]
|
16
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
17
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
18
|
**url** | **String** | The URL of an external content source. |
|
11
|
-
**
|
19
|
+
**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]
|
20
|
+
**name** | **String** | A unique name for this remote. |
|
12
21
|
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
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
22
|
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
15
23
|
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
16
|
-
**
|
17
|
-
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
18
|
-
**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]
|
19
|
-
**name** | **String** | A unique name for this remote. |
|
20
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
21
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
22
|
-
**pulp_labels** | [**Object**](.md) | | [optional]
|
23
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
24
|
-
**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]
|
24
|
+
**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]
|
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
|
|
27
27
|
## Code Sample
|
@@ -30,23 +30,23 @@ Name | Type | Description | Notes
|
|
30
30
|
require 'PulpAnsibleClient'
|
31
31
|
|
32
32
|
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(headers: null,
|
33
|
-
|
33
|
+
ca_cert: null,
|
34
|
+
connect_timeout: null,
|
35
|
+
max_retries: null,
|
36
|
+
pulp_href: null,
|
37
|
+
rate_limit: null,
|
38
|
+
download_concurrency: null,
|
39
|
+
pulp_labels: null,
|
34
40
|
total_timeout: null,
|
41
|
+
proxy_url: null,
|
42
|
+
pulp_created: null,
|
35
43
|
url: null,
|
36
|
-
|
44
|
+
sock_read_timeout: null,
|
45
|
+
name: null,
|
37
46
|
client_cert: null,
|
38
|
-
sock_connect_timeout: null,
|
39
47
|
tls_validation: null,
|
40
48
|
pulp_last_updated: null,
|
41
|
-
|
42
|
-
max_retries: null,
|
43
|
-
sock_read_timeout: null,
|
44
|
-
name: null,
|
45
|
-
ca_cert: null,
|
46
|
-
pulp_created: null,
|
47
|
-
pulp_labels: null,
|
48
|
-
download_concurrency: null,
|
49
|
-
connect_timeout: null,
|
49
|
+
sock_connect_timeout: null,
|
50
50
|
metadata_only: null)
|
51
51
|
```
|
52
52
|
|
data/docs/AnsibleRoleResponse.md
CHANGED
@@ -4,8 +4,8 @@
|
|
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 |
|
8
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
9
9
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
10
|
**version** | **String** | |
|
11
11
|
**name** | **String** | |
|
@@ -16,8 +16,8 @@ Name | Type | Description | Notes
|
|
16
16
|
```ruby
|
17
17
|
require 'PulpAnsibleClient'
|
18
18
|
|
19
|
-
instance = PulpAnsibleClient::AnsibleRoleResponse.new(
|
20
|
-
|
19
|
+
instance = PulpAnsibleClient::AnsibleRoleResponse.new(artifact: null,
|
20
|
+
pulp_href: null,
|
21
21
|
pulp_created: null,
|
22
22
|
version: null,
|
23
23
|
name: null,
|
@@ -5,25 +5,25 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
8
|
-
**
|
9
|
-
**
|
10
|
-
**url** | **String** | The URL of an external content source. | [optional]
|
11
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
12
|
-
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
8
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
9
|
+
**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]
|
13
10
|
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
14
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
15
|
-
**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]
|
16
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
17
|
-
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
|
18
11
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
12
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
19
13
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
14
|
+
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
|
15
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
16
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
17
|
+
**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]
|
20
18
|
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
19
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
20
|
+
**url** | **String** | The URL of an external content source. | [optional]
|
21
21
|
**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]
|
22
22
|
**name** | **String** | A unique name for this remote. | [optional]
|
23
|
-
**
|
24
|
-
**
|
25
|
-
**
|
26
|
-
**
|
23
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
24
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
25
|
+
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
26
|
+
**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]
|
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
|
|
29
29
|
## Code Sample
|
@@ -32,25 +32,25 @@ Name | Type | Description | Notes
|
|
32
32
|
require 'PulpAnsibleClient'
|
33
33
|
|
34
34
|
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(headers: null,
|
35
|
-
|
36
|
-
|
37
|
-
url: null,
|
38
|
-
username: null,
|
39
|
-
password: null,
|
35
|
+
ca_cert: null,
|
36
|
+
connect_timeout: null,
|
40
37
|
proxy_username: null,
|
41
|
-
client_cert: null,
|
42
|
-
sock_connect_timeout: null,
|
43
|
-
tls_validation: null,
|
44
|
-
rate_limit: null,
|
45
38
|
max_retries: null,
|
39
|
+
username: null,
|
46
40
|
client_key: null,
|
41
|
+
rate_limit: null,
|
42
|
+
download_concurrency: null,
|
43
|
+
pulp_labels: null,
|
44
|
+
total_timeout: null,
|
47
45
|
proxy_password: null,
|
46
|
+
proxy_url: null,
|
47
|
+
url: null,
|
48
48
|
sock_read_timeout: null,
|
49
49
|
name: null,
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
50
|
+
client_cert: null,
|
51
|
+
tls_validation: null,
|
52
|
+
password: null,
|
53
|
+
sock_connect_timeout: null,
|
54
54
|
metadata_only: null)
|
55
55
|
```
|
56
56
|
|
@@ -15,11 +15,11 @@ 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
|
|
21
|
+
attr_accessor :pulp_href
|
22
|
+
|
23
23
|
# Timestamp of creation.
|
24
24
|
attr_accessor :pulp_created
|
25
25
|
|
@@ -97,8 +97,8 @@ 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',
|
101
|
+
:'pulp_href' => :'pulp_href',
|
102
102
|
:'pulp_created' => :'pulp_created',
|
103
103
|
:'md5' => :'md5',
|
104
104
|
:'sha1' => :'sha1',
|
@@ -130,8 +130,8 @@ module PulpAnsibleClient
|
|
130
130
|
# Attribute type mapping.
|
131
131
|
def self.openapi_types
|
132
132
|
{
|
133
|
-
:'pulp_href' => :'String',
|
134
133
|
:'artifact' => :'String',
|
134
|
+
:'pulp_href' => :'String',
|
135
135
|
:'pulp_created' => :'DateTime',
|
136
136
|
:'md5' => :'String',
|
137
137
|
:'sha1' => :'String',
|
@@ -182,14 +182,14 @@ 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
|
192
188
|
|
189
|
+
if attributes.key?(:'pulp_href')
|
190
|
+
self.pulp_href = attributes[:'pulp_href']
|
191
|
+
end
|
192
|
+
|
193
193
|
if attributes.key?(:'pulp_created')
|
194
194
|
self.pulp_created = attributes[:'pulp_created']
|
195
195
|
end
|
@@ -548,8 +548,8 @@ module PulpAnsibleClient
|
|
548
548
|
def ==(o)
|
549
549
|
return true if self.equal?(o)
|
550
550
|
self.class == o.class &&
|
551
|
-
pulp_href == o.pulp_href &&
|
552
551
|
artifact == o.artifact &&
|
552
|
+
pulp_href == o.pulp_href &&
|
553
553
|
pulp_created == o.pulp_created &&
|
554
554
|
md5 == o.md5 &&
|
555
555
|
sha1 == o.sha1 &&
|
@@ -586,7 +586,7 @@ module PulpAnsibleClient
|
|
586
586
|
# Calculates hash code according to all attributes.
|
587
587
|
# @return [Integer] Hash code
|
588
588
|
def hash
|
589
|
-
[
|
589
|
+
[artifact, pulp_href, 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
|
590
590
|
end
|
591
591
|
|
592
592
|
# Builds the object from hash
|