pulp_ansible_client 0.12.0.dev1640661396 → 0.12.0.dev1641007063
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 +23 -23
- 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 +223 -223
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +132 -132
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +10 -10
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +216 -216
- 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 +18 -18
- data/spec/models/ansible_git_remote_spec.rb +19 -19
- data/spec/models/ansible_role_response_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +19 -19
- 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: 958662cf2395205d0965dcc2d8f4dbe014103e1b4f63ba7cebf1044c0bdf88e1
|
4
|
+
data.tar.gz: edaefc37f3871ab58eab2134dc9651b9df4a487218aca754ec6f4b17f2ed0da9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45784aaade8d1749a3af9e80d47952fbad285379165ce85e8cbda39d6bd6f82da83105b6d31cf95bfde1dc76da04498f42a6f3c92c9a630bfe1fa41f63d069e5
|
7
|
+
data.tar.gz: 797596c06f2c4b7ef3c9dc11fd8f27b82b3aef6ad92745e1700cbefd835ce16c26b68c7ae7d8806d3e1b42dae097600f5719a2d0703f602d58c257f12358ad31
|
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.
|
10
|
+
- Package version: 0.12.0.dev1641007063
|
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.
|
27
|
+
gem install ./pulp_ansible_client-0.12.0.dev1641007063.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.12.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.12.0.dev1641007063.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.
|
36
|
+
gem 'pulp_ansible_client', '~> 0.12.0.dev1641007063'
|
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
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
8
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
9
9
|
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
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(pulp_created: null,
|
41
|
+
pulp_href: null,
|
42
42
|
artifact: null,
|
43
43
|
md5: null,
|
44
44
|
sha1: null,
|
data/docs/AnsibleGitRemote.md
CHANGED
@@ -4,26 +4,26 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
7
|
+
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
8
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
8
9
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
9
|
-
**
|
10
|
-
**
|
10
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
11
|
+
**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]
|
11
12
|
**url** | **String** | The URL of an external content source. |
|
12
|
-
**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]
|
13
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
14
13
|
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
15
|
-
**
|
16
|
-
**
|
17
|
-
**
|
18
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
19
|
-
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
14
|
+
**pulp_labels** | [**Object**](.md) | | [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
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
20
17
|
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
21
|
-
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
22
18
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
23
|
-
**
|
24
|
-
**
|
19
|
+
**name** | **String** | A unique name for this remote. |
|
20
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
25
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
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
23
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
26
24
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
25
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [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(
|
35
|
+
instance = PulpAnsibleClient::AnsibleGitRemote.new(proxy_password: null,
|
36
|
+
client_key: null,
|
36
37
|
rate_limit: null,
|
37
|
-
|
38
|
-
|
38
|
+
ca_cert: null,
|
39
|
+
connect_timeout: null,
|
39
40
|
url: null,
|
40
|
-
total_timeout: null,
|
41
|
-
username: null,
|
42
41
|
password: null,
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
ca_cert: null,
|
47
|
-
proxy_password: null,
|
42
|
+
pulp_labels: null,
|
43
|
+
sock_connect_timeout: null,
|
44
|
+
download_concurrency: null,
|
48
45
|
client_cert: null,
|
49
|
-
client_key: null,
|
50
46
|
headers: null,
|
51
|
-
|
52
|
-
|
47
|
+
name: null,
|
48
|
+
username: null,
|
53
49
|
sock_read_timeout: null,
|
50
|
+
proxy_url: null,
|
51
|
+
proxy_username: null,
|
54
52
|
max_retries: null,
|
53
|
+
tls_validation: 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
|
-
**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]
|
9
7
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
10
|
-
**
|
11
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
12
|
-
**url** | **String** | The URL of an external content source. |
|
13
|
-
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
14
|
-
**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
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
15
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]
|
16
|
-
**
|
17
|
-
**
|
10
|
+
**url** | **String** | The URL of an external content source. |
|
11
|
+
**pulp_labels** | [**Object**](.md) | | [optional]
|
18
12
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
19
|
-
**
|
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]
|
20
15
|
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
16
|
+
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
21
17
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
22
|
-
**
|
18
|
+
**name** | **String** | A unique name for this remote. |
|
19
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
23
20
|
**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
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
24
22
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
23
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [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]
|
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(
|
34
|
-
|
35
|
-
rate_limit: null,
|
36
|
-
pulp_labels: null,
|
37
|
-
download_concurrency: null,
|
38
|
-
url: null,
|
39
|
-
pulp_last_updated: null,
|
40
|
-
total_timeout: null,
|
33
|
+
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(rate_limit: null,
|
34
|
+
ca_cert: null,
|
41
35
|
connect_timeout: null,
|
42
|
-
|
43
|
-
|
36
|
+
url: null,
|
37
|
+
pulp_labels: null,
|
44
38
|
pulp_created: null,
|
45
|
-
|
39
|
+
sock_connect_timeout: null,
|
40
|
+
download_concurrency: null,
|
46
41
|
client_cert: null,
|
42
|
+
pulp_last_updated: null,
|
47
43
|
headers: null,
|
48
|
-
|
44
|
+
name: null,
|
45
|
+
pulp_href: null,
|
49
46
|
sock_read_timeout: null,
|
47
|
+
proxy_url: null,
|
50
48
|
max_retries: null,
|
49
|
+
tls_validation: null,
|
50
|
+
total_timeout: null,
|
51
51
|
metadata_only: null,
|
52
52
|
git_ref: null)
|
53
53
|
```
|
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
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
8
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
9
9
|
**artifact** | **String** | Artifact file representing the physical content |
|
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(pulp_created: null,
|
20
|
+
pulp_href: null,
|
21
21
|
artifact: null,
|
22
22
|
version: null,
|
23
23
|
name: null,
|
@@ -4,26 +4,26 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
7
|
+
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
8
|
+
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
8
9
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
9
|
-
**
|
10
|
-
**
|
10
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
11
|
+
**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]
|
11
12
|
**url** | **String** | The URL of an external content source. | [optional]
|
12
|
-
**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]
|
13
|
-
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
14
13
|
**password** | **String** | The password to be used for authentication when syncing. | [optional]
|
15
|
-
**
|
16
|
-
**
|
17
|
-
**
|
18
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
19
|
-
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
|
14
|
+
**pulp_labels** | [**Object**](.md) | | [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
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
20
17
|
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
21
|
-
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
22
18
|
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
23
|
-
**
|
24
|
-
**
|
19
|
+
**name** | **String** | A unique name for this remote. | [optional]
|
20
|
+
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
25
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
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
23
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
26
24
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
25
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [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(
|
35
|
+
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(proxy_password: null,
|
36
|
+
client_key: null,
|
36
37
|
rate_limit: null,
|
37
|
-
|
38
|
-
|
38
|
+
ca_cert: null,
|
39
|
+
connect_timeout: null,
|
39
40
|
url: null,
|
40
|
-
total_timeout: null,
|
41
|
-
username: null,
|
42
41
|
password: null,
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
ca_cert: null,
|
47
|
-
proxy_password: null,
|
42
|
+
pulp_labels: null,
|
43
|
+
sock_connect_timeout: null,
|
44
|
+
download_concurrency: null,
|
48
45
|
client_cert: null,
|
49
|
-
client_key: null,
|
50
46
|
headers: null,
|
51
|
-
|
52
|
-
|
47
|
+
name: null,
|
48
|
+
username: null,
|
53
49
|
sock_read_timeout: null,
|
50
|
+
proxy_url: null,
|
51
|
+
proxy_username: null,
|
54
52
|
max_retries: null,
|
53
|
+
tls_validation: null,
|
54
|
+
total_timeout: null,
|
55
55
|
metadata_only: null,
|
56
56
|
git_ref: null)
|
57
57
|
```
|
@@ -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
|
# Timestamp of creation.
|
21
19
|
attr_accessor :pulp_created
|
22
20
|
|
21
|
+
attr_accessor :pulp_href
|
22
|
+
|
23
23
|
# Artifact file representing the physical content
|
24
24
|
attr_accessor :artifact
|
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
|
:'pulp_created' => :'pulp_created',
|
101
|
+
:'pulp_href' => :'pulp_href',
|
102
102
|
:'artifact' => :'artifact',
|
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
|
:'pulp_created' => :'DateTime',
|
134
|
+
:'pulp_href' => :'String',
|
135
135
|
:'artifact' => :'String',
|
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?(:'pulp_created')
|
190
186
|
self.pulp_created = attributes[:'pulp_created']
|
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?(:'artifact')
|
194
194
|
self.artifact = attributes[:'artifact']
|
195
195
|
end
|
@@ -543,8 +543,8 @@ 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 &&
|
547
546
|
pulp_created == o.pulp_created &&
|
547
|
+
pulp_href == o.pulp_href &&
|
548
548
|
artifact == o.artifact &&
|
549
549
|
md5 == o.md5 &&
|
550
550
|
sha1 == o.sha1 &&
|
@@ -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
|
-
[
|
584
|
+
[pulp_created, pulp_href, artifact, 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
|