pulp_ansible_client 0.20.4 → 0.20.6
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/AnsibleCollectionVersionResponse.md +3 -3
- data/docs/AnsibleGitRemote.md +30 -30
- data/docs/AnsibleGitRemoteResponse.md +30 -30
- data/docs/AnsibleRole.md +3 -3
- data/docs/AnsibleRoleResponse.md +3 -3
- data/docs/PatchedansibleGitRemote.md +30 -30
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +250 -250
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +161 -161
- data/lib/pulp_ansible_client/models/ansible_role.rb +11 -11
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +11 -11
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +243 -243
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/spec/models/ansible_collection_version_response_spec.rb +3 -3
- data/spec/models/ansible_git_remote_response_spec.rb +19 -19
- data/spec/models/ansible_git_remote_spec.rb +20 -20
- data/spec/models/ansible_role_response_spec.rb +3 -3
- data/spec/models/ansible_role_spec.rb +2 -2
- data/spec/models/patchedansible_git_remote_spec.rb +20 -20
- metadata +132 -132
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36fc365483c8f211925436b5a00759ef20891f5fa592b72ac0a668d585aa3cd0
|
4
|
+
data.tar.gz: 3ba7d0919bac3076c18b006347f537d61f647da8e8354409c22921e366c65401
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 360c56c6b18c68c0db9683f54845ea899f35389e4abbbc01737c71fe9c20c3ac5fc1d7432bb52b03dede7e538ee4eafc82f9a2da9741ddce4e8b6165a91cd48e
|
7
|
+
data.tar.gz: 5d3d7884bad15f74997fa65ceb0975afb566fd577d42b61593227716e0e4e96382f3c67fa7cebb78948012cb227c7b09fa378ec5fd99983706ba94016dc3de01
|
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.20.
|
10
|
+
- Package version: 0.20.6
|
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.20.
|
27
|
+
gem install ./pulp_ansible_client-0.20.6.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.20.
|
30
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.20.6.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.20.
|
36
|
+
gem 'pulp_ansible_client', '~> 0.20.6'
|
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_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
7
8
|
**artifact** | **String** | Artifact file representing the physical content | [optional]
|
8
9
|
**pulp_href** | **String** | | [optional] [readonly]
|
9
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
10
|
**sha256** | **String** | The SHA-256 checksum if available. | [optional] [readonly]
|
11
11
|
**md5** | **String** | The MD5 checksum if available. | [optional] [readonly]
|
12
12
|
**sha1** | **String** | The SHA-1 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(
|
40
|
+
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(pulp_created: null,
|
41
|
+
artifact: null,
|
41
42
|
pulp_href: null,
|
42
|
-
pulp_created: null,
|
43
43
|
sha256: null,
|
44
44
|
md5: null,
|
45
45
|
sha1: null,
|
data/docs/AnsibleGitRemote.md
CHANGED
@@ -4,26 +4,26 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**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]
|
8
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
9
|
-
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
10
|
-
**name** | **String** | A unique name for this remote. |
|
11
|
-
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
12
|
-
**url** | **String** | The URL of an external content source. |
|
13
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
14
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
15
7
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
16
|
-
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
17
|
-
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
18
|
-
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
19
|
-
**pulp_labels** | **Hash<String, String>** | | [optional]
|
20
8
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
21
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
22
|
-
**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]
|
23
9
|
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
10
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
11
|
+
**url** | **String** | The URL of an external content source. |
|
12
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
13
|
+
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
24
14
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
25
|
-
**
|
15
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
16
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
17
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
26
18
|
**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]
|
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]
|
20
|
+
**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]
|
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
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
23
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
24
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
25
|
+
**name** | **String** | A unique name for this remote. |
|
26
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [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(
|
36
|
-
|
37
|
-
|
38
|
-
name: null,
|
39
|
-
password: null,
|
40
|
-
url: null,
|
41
|
-
download_concurrency: null,
|
35
|
+
instance = PulpAnsibleClient::AnsibleGitRemote.new(max_retries: null,
|
36
|
+
rate_limit: null,
|
37
|
+
username: null,
|
42
38
|
ca_cert: null,
|
43
|
-
|
39
|
+
url: null,
|
40
|
+
client_cert: null,
|
44
41
|
proxy_password: null,
|
42
|
+
client_key: null,
|
45
43
|
proxy_username: null,
|
46
|
-
|
44
|
+
proxy_url: null,
|
47
45
|
pulp_labels: null,
|
48
|
-
rate_limit: null,
|
49
|
-
tls_validation: null,
|
50
|
-
sock_read_timeout: null,
|
51
|
-
username: null,
|
52
|
-
client_key: null,
|
53
|
-
sock_connect_timeout: null,
|
54
46
|
total_timeout: null,
|
47
|
+
connect_timeout: null,
|
48
|
+
sock_connect_timeout: null,
|
49
|
+
sock_read_timeout: null,
|
50
|
+
download_concurrency: null,
|
51
|
+
tls_validation: null,
|
52
|
+
password: null,
|
53
|
+
name: null,
|
54
|
+
headers: null,
|
55
55
|
metadata_only: null,
|
56
56
|
git_ref: null)
|
57
57
|
```
|
@@ -4,25 +4,25 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**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]
|
8
|
-
**pulp_href** | **String** | | [optional] [readonly]
|
9
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
10
|
-
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
11
|
-
**name** | **String** | A unique name for this remote. |
|
12
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
13
|
-
**url** | **String** | The URL of an external content source. |
|
14
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
15
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
16
7
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
17
|
-
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
18
|
-
**pulp_labels** | **Hash<String, String>** | | [optional]
|
19
8
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
20
|
-
**
|
21
|
-
**
|
9
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
10
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
11
|
+
**url** | **String** | The URL of an external content source. |
|
12
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
13
|
+
**hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
|
22
14
|
**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
|
23
|
-
**
|
15
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
16
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
24
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]
|
25
|
-
**
|
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
|
+
**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]
|
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
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
22
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
23
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
24
|
+
**name** | **String** | A unique name for this remote. |
|
25
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
26
26
|
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
|
27
27
|
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
|
28
28
|
|
@@ -31,25 +31,25 @@ Name | Type | Description | Notes
|
|
31
31
|
```ruby
|
32
32
|
require 'PulpAnsibleClient'
|
33
33
|
|
34
|
-
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(
|
35
|
-
|
36
|
-
client_cert: null,
|
37
|
-
proxy_url: null,
|
38
|
-
name: null,
|
34
|
+
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(max_retries: null,
|
35
|
+
rate_limit: null,
|
39
36
|
pulp_created: null,
|
40
|
-
url: null,
|
41
|
-
download_concurrency: null,
|
42
37
|
ca_cert: null,
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
rate_limit: null,
|
47
|
-
tls_validation: null,
|
48
|
-
sock_read_timeout: null,
|
38
|
+
url: null,
|
39
|
+
client_cert: null,
|
40
|
+
hidden_fields: null,
|
49
41
|
pulp_last_updated: null,
|
50
|
-
|
42
|
+
proxy_url: null,
|
43
|
+
pulp_labels: null,
|
51
44
|
total_timeout: null,
|
52
|
-
|
45
|
+
connect_timeout: null,
|
46
|
+
sock_connect_timeout: null,
|
47
|
+
sock_read_timeout: null,
|
48
|
+
download_concurrency: null,
|
49
|
+
tls_validation: null,
|
50
|
+
pulp_href: null,
|
51
|
+
name: null,
|
52
|
+
headers: null,
|
53
53
|
metadata_only: null,
|
54
54
|
git_ref: null)
|
55
55
|
```
|
data/docs/AnsibleRole.md
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**artifact** | **String** | Artifact file representing the physical content |
|
8
7
|
**repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
|
8
|
+
**artifact** | **String** | Artifact file representing the physical content |
|
9
9
|
**version** | **String** | |
|
10
10
|
**name** | **String** | |
|
11
11
|
**namespace** | **String** | |
|
@@ -15,8 +15,8 @@ Name | Type | Description | Notes
|
|
15
15
|
```ruby
|
16
16
|
require 'PulpAnsibleClient'
|
17
17
|
|
18
|
-
instance = PulpAnsibleClient::AnsibleRole.new(
|
19
|
-
|
18
|
+
instance = PulpAnsibleClient::AnsibleRole.new(repository: null,
|
19
|
+
artifact: null,
|
20
20
|
version: null,
|
21
21
|
name: null,
|
22
22
|
namespace: null)
|
data/docs/AnsibleRoleResponse.md
CHANGED
@@ -4,9 +4,9 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**artifact** | **String** | Artifact file representing the physical content |
|
8
7
|
**pulp_href** | **String** | | [optional] [readonly]
|
9
8
|
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
9
|
+
**artifact** | **String** | Artifact file representing the physical content |
|
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(
|
20
|
-
pulp_href: null,
|
19
|
+
instance = PulpAnsibleClient::AnsibleRoleResponse.new(pulp_href: null,
|
21
20
|
pulp_created: null,
|
21
|
+
artifact: 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
|
-
**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]
|
8
|
-
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
9
|
-
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
10
|
-
**name** | **String** | A unique name for this remote. | [optional]
|
11
|
-
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
12
|
-
**url** | **String** | The URL of an external content source. | [optional]
|
13
|
-
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
14
|
-
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
15
7
|
**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
|
16
|
-
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
17
|
-
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
18
|
-
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
|
19
|
-
**pulp_labels** | **Hash<String, String>** | | [optional]
|
20
8
|
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
|
21
|
-
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
22
|
-
**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]
|
23
9
|
**username** | **String** | The username to be used for authentication when syncing. | [optional]
|
10
|
+
**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
|
11
|
+
**url** | **String** | The URL of an external content source. | [optional]
|
12
|
+
**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
|
13
|
+
**proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
24
14
|
**client_key** | **String** | A PEM encoded private key used for authentication. | [optional]
|
25
|
-
**
|
15
|
+
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
|
16
|
+
**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
|
17
|
+
**pulp_labels** | **Hash<String, String>** | | [optional]
|
26
18
|
**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]
|
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]
|
20
|
+
**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]
|
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
|
+
**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
|
23
|
+
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
|
24
|
+
**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
|
25
|
+
**name** | **String** | A unique name for this remote. | [optional]
|
26
|
+
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [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(
|
36
|
-
|
37
|
-
|
38
|
-
name: null,
|
39
|
-
password: null,
|
40
|
-
url: null,
|
41
|
-
download_concurrency: null,
|
35
|
+
instance = PulpAnsibleClient::PatchedansibleGitRemote.new(max_retries: null,
|
36
|
+
rate_limit: null,
|
37
|
+
username: null,
|
42
38
|
ca_cert: null,
|
43
|
-
|
39
|
+
url: null,
|
40
|
+
client_cert: null,
|
44
41
|
proxy_password: null,
|
42
|
+
client_key: null,
|
45
43
|
proxy_username: null,
|
46
|
-
|
44
|
+
proxy_url: null,
|
47
45
|
pulp_labels: null,
|
48
|
-
rate_limit: null,
|
49
|
-
tls_validation: null,
|
50
|
-
sock_read_timeout: null,
|
51
|
-
username: null,
|
52
|
-
client_key: null,
|
53
|
-
sock_connect_timeout: null,
|
54
46
|
total_timeout: null,
|
47
|
+
connect_timeout: null,
|
48
|
+
sock_connect_timeout: null,
|
49
|
+
sock_read_timeout: null,
|
50
|
+
download_concurrency: null,
|
51
|
+
tls_validation: null,
|
52
|
+
password: null,
|
53
|
+
name: null,
|
54
|
+
headers: 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
|
+
# Timestamp of creation.
|
19
|
+
attr_accessor :pulp_created
|
20
|
+
|
18
21
|
# Artifact file representing the physical content
|
19
22
|
attr_accessor :artifact
|
20
23
|
|
21
24
|
attr_accessor :pulp_href
|
22
25
|
|
23
|
-
# Timestamp of creation.
|
24
|
-
attr_accessor :pulp_created
|
25
|
-
|
26
26
|
# The SHA-256 checksum if available.
|
27
27
|
attr_accessor :sha256
|
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_created' => :'pulp_created',
|
100
101
|
:'artifact' => :'artifact',
|
101
102
|
:'pulp_href' => :'pulp_href',
|
102
|
-
:'pulp_created' => :'pulp_created',
|
103
103
|
:'sha256' => :'sha256',
|
104
104
|
:'md5' => :'md5',
|
105
105
|
:'sha1' => :'sha1',
|
@@ -130,9 +130,9 @@ module PulpAnsibleClient
|
|
130
130
|
# Attribute type mapping.
|
131
131
|
def self.openapi_types
|
132
132
|
{
|
133
|
+
:'pulp_created' => :'DateTime',
|
133
134
|
:'artifact' => :'String',
|
134
135
|
:'pulp_href' => :'String',
|
135
|
-
:'pulp_created' => :'DateTime',
|
136
136
|
:'sha256' => :'String',
|
137
137
|
:'md5' => :'String',
|
138
138
|
:'sha1' => :'String',
|
@@ -182,6 +182,10 @@ module PulpAnsibleClient
|
|
182
182
|
h[k.to_sym] = v
|
183
183
|
}
|
184
184
|
|
185
|
+
if attributes.key?(:'pulp_created')
|
186
|
+
self.pulp_created = attributes[:'pulp_created']
|
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_href = attributes[:'pulp_href']
|
191
195
|
end
|
192
196
|
|
193
|
-
if attributes.key?(:'pulp_created')
|
194
|
-
self.pulp_created = attributes[:'pulp_created']
|
195
|
-
end
|
196
|
-
|
197
197
|
if attributes.key?(:'sha256')
|
198
198
|
self.sha256 = attributes[:'sha256']
|
199
199
|
end
|
@@ -435,9 +435,9 @@ module PulpAnsibleClient
|
|
435
435
|
def ==(o)
|
436
436
|
return true if self.equal?(o)
|
437
437
|
self.class == o.class &&
|
438
|
+
pulp_created == o.pulp_created &&
|
438
439
|
artifact == o.artifact &&
|
439
440
|
pulp_href == o.pulp_href &&
|
440
|
-
pulp_created == o.pulp_created &&
|
441
441
|
sha256 == o.sha256 &&
|
442
442
|
md5 == o.md5 &&
|
443
443
|
sha1 == o.sha1 &&
|
@@ -473,7 +473,7 @@ module PulpAnsibleClient
|
|
473
473
|
# Calculates hash code according to all attributes.
|
474
474
|
# @return [Integer] Hash code
|
475
475
|
def hash
|
476
|
-
[artifact, pulp_href,
|
476
|
+
[pulp_created, artifact, 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
|
477
477
|
end
|
478
478
|
|
479
479
|
# Builds the object from hash
|