pulp_ansible_client 0.29.2 → 0.29.3
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 +6 -4
- data/docs/AnsibleCollectionRemote.md +6 -6
- data/docs/AnsibleCollectionRemoteResponse.md +8 -8
- data/docs/AnsibleCollectionVersionResponse.md +6 -6
- data/docs/AnsibleGitRemote.md +28 -28
- data/docs/AnsibleGitRemoteResponse.md +28 -28
- data/docs/AnsibleRoleRemote.md +6 -6
- data/docs/AnsibleRoleRemoteResponse.md +9 -9
- data/docs/AnsibleRoleResponse.md +6 -6
- data/docs/ContentCollectionSignaturesApi.md +3 -1
- data/docs/ContentCollectionVersionsApi.md +4 -2
- data/docs/PatchedansibleCollectionRemote.md +6 -6
- data/docs/PatchedansibleGitRemote.md +28 -28
- data/docs/PatchedansibleRoleRemote.md +6 -6
- data/docs/RemoteNetworkConfig.md +50 -0
- data/docs/RemoteNetworkConfigResponse.md +40 -0
- data/lib/pulp_ansible_client/api/content_collection_signatures_api.rb +3 -0
- data/lib/pulp_ansible_client/api/content_collection_versions_api.rb +6 -3
- data/lib/pulp_ansible_client/models/ansible_collection_remote.rb +33 -33
- data/lib/pulp_ansible_client/models/ansible_collection_remote_response.rb +45 -45
- data/lib/pulp_ansible_client/models/ansible_collection_version_response.rb +32 -32
- data/lib/pulp_ansible_client/models/ansible_git_remote.rb +253 -253
- data/lib/pulp_ansible_client/models/ansible_git_remote_response.rb +152 -152
- data/lib/pulp_ansible_client/models/ansible_role_remote.rb +33 -33
- data/lib/pulp_ansible_client/models/ansible_role_remote_response.rb +49 -49
- data/lib/pulp_ansible_client/models/ansible_role_response.rb +32 -32
- data/lib/pulp_ansible_client/models/patchedansible_collection_remote.rb +33 -33
- data/lib/pulp_ansible_client/models/patchedansible_git_remote.rb +244 -244
- data/lib/pulp_ansible_client/models/patchedansible_role_remote.rb +33 -33
- data/lib/pulp_ansible_client/models/remote_network_config.rb +573 -0
- data/lib/pulp_ansible_client/models/remote_network_config_response.rb +398 -0
- data/lib/pulp_ansible_client/version.rb +1 -1
- data/lib/pulp_ansible_client.rb +2 -0
- data/spec/api/content_collection_signatures_api_spec.rb +1 -0
- data/spec/api/content_collection_versions_api_spec.rb +2 -1
- data/spec/models/ansible_collection_remote_response_spec.rb +10 -10
- data/spec/models/ansible_collection_remote_spec.rb +17 -17
- data/spec/models/ansible_collection_version_response_spec.rb +6 -6
- data/spec/models/ansible_git_remote_response_spec.rb +20 -20
- data/spec/models/ansible_git_remote_spec.rb +19 -19
- data/spec/models/ansible_role_remote_response_spec.rb +10 -10
- data/spec/models/ansible_role_remote_spec.rb +17 -17
- data/spec/models/ansible_role_response_spec.rb +6 -6
- data/spec/models/patchedansible_collection_remote_spec.rb +17 -17
- data/spec/models/patchedansible_git_remote_spec.rb +19 -19
- data/spec/models/patchedansible_role_remote_spec.rb +17 -17
- data/spec/models/remote_network_config_response_spec.rb +102 -0
- data/spec/models/remote_network_config_spec.rb +132 -0
- metadata +10 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ad92189a69f2b0692e9e7ebb61148b408d19002f6659a2e04f7cbbed90f1562
|
|
4
|
+
data.tar.gz: 36a3d282629d37c13553dc33673b819742b8a363d46a1f43ab456e312ff9db4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 270dc690219191f643c6660c73a4ab0bb34ac98a9bae650c15a911cf5f19bfdcf74aa2047dc95a981dcc680bdb25b1329311eb43844ca6e871937d3415c67000
|
|
7
|
+
data.tar.gz: f13e1fcc1c8701fbed425fb2159f341d2842e4c9848b4951fefd5b6327d8eb04adcb207b655914b0f9723c2fdfabe1aa15f073c8385dc1ca5013b89ff9324b2b
|
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.29.
|
|
10
|
+
- Package version: 0.29.3
|
|
11
11
|
- Generator version: 7.10.0
|
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
13
13
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
@@ -25,16 +25,16 @@ gem build pulp_ansible_client.gemspec
|
|
|
25
25
|
Then either install the gem locally:
|
|
26
26
|
|
|
27
27
|
```shell
|
|
28
|
-
gem install ./pulp_ansible_client-0.29.
|
|
28
|
+
gem install ./pulp_ansible_client-0.29.3.gem
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
(for development, run `gem install --dev ./pulp_ansible_client-0.29.
|
|
31
|
+
(for development, run `gem install --dev ./pulp_ansible_client-0.29.3.gem` to install the development dependencies)
|
|
32
32
|
|
|
33
33
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
34
34
|
|
|
35
35
|
Finally add this to the Gemfile:
|
|
36
36
|
|
|
37
|
-
gem 'pulp_ansible_client', '~> 0.29.
|
|
37
|
+
gem 'pulp_ansible_client', '~> 0.29.3'
|
|
38
38
|
|
|
39
39
|
### Install from Git
|
|
40
40
|
|
|
@@ -364,6 +364,8 @@ Class | Method | HTTP request | Description
|
|
|
364
364
|
- [PulpAnsibleClient::PatchedansibleGitRemote](docs/PatchedansibleGitRemote.md)
|
|
365
365
|
- [PulpAnsibleClient::PatchedansibleRoleRemote](docs/PatchedansibleRoleRemote.md)
|
|
366
366
|
- [PulpAnsibleClient::PolicyEnum](docs/PolicyEnum.md)
|
|
367
|
+
- [PulpAnsibleClient::RemoteNetworkConfig](docs/RemoteNetworkConfig.md)
|
|
368
|
+
- [PulpAnsibleClient::RemoteNetworkConfigResponse](docs/RemoteNetworkConfigResponse.md)
|
|
367
369
|
- [PulpAnsibleClient::Repair](docs/Repair.md)
|
|
368
370
|
- [PulpAnsibleClient::RepoMetadataResponse](docs/RepoMetadataResponse.md)
|
|
369
371
|
- [PulpAnsibleClient::Repository](docs/Repository.md)
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **name** | **String** | A unique name for this remote. | |
|
|
8
8
|
| **url** | **String** | The URL of an external content source. | |
|
|
9
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
10
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
9
11
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
10
12
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
11
13
|
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
@@ -15,15 +17,13 @@
|
|
|
15
17
|
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
16
18
|
| **username** | **String** | The username to be used for authentication when syncing. | [optional] |
|
|
17
19
|
| **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
18
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
19
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
20
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
21
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
22
21
|
| **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] |
|
|
23
22
|
| **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
23
|
| **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
24
|
| **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] |
|
|
26
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
27
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
28
28
|
| **requirements_file** | **String** | The string version of Collection requirements yaml. | [optional] |
|
|
29
29
|
| **auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional] |
|
|
@@ -39,6 +39,8 @@ require 'pulp_ansible_client'
|
|
|
39
39
|
instance = PulpAnsibleClient::AnsibleCollectionRemote.new(
|
|
40
40
|
name: null,
|
|
41
41
|
url: null,
|
|
42
|
+
pulp_labels: null,
|
|
43
|
+
policy: null,
|
|
42
44
|
ca_cert: null,
|
|
43
45
|
client_cert: null,
|
|
44
46
|
client_key: null,
|
|
@@ -48,15 +50,13 @@ instance = PulpAnsibleClient::AnsibleCollectionRemote.new(
|
|
|
48
50
|
proxy_password: null,
|
|
49
51
|
username: null,
|
|
50
52
|
password: null,
|
|
51
|
-
pulp_labels: null,
|
|
52
|
-
download_concurrency: null,
|
|
53
53
|
max_retries: null,
|
|
54
|
-
policy: null,
|
|
55
54
|
total_timeout: null,
|
|
56
55
|
connect_timeout: null,
|
|
57
56
|
sock_connect_timeout: null,
|
|
58
57
|
sock_read_timeout: null,
|
|
59
58
|
headers: null,
|
|
59
|
+
download_concurrency: null,
|
|
60
60
|
rate_limit: null,
|
|
61
61
|
requirements_file: null,
|
|
62
62
|
auth_url: null,
|
|
@@ -10,21 +10,21 @@
|
|
|
10
10
|
| **pulp_last_updated** | **Time** | Timestamp of the most recent update of the remote. | [optional][readonly] |
|
|
11
11
|
| **name** | **String** | A unique name for this remote. | |
|
|
12
12
|
| **url** | **String** | The URL of an external content source. | |
|
|
13
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
14
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
15
|
+
| **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
|
|
13
16
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
14
17
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
15
18
|
| **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
|
|
16
19
|
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
17
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
18
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
19
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
20
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
21
21
|
| **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] |
|
|
22
22
|
| **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] |
|
|
23
23
|
| **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] |
|
|
24
24
|
| **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] |
|
|
25
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
26
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
27
|
-
| **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
|
|
28
28
|
| **requirements_file** | **String** | The string version of Collection requirements yaml. | [optional] |
|
|
29
29
|
| **auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional] |
|
|
30
30
|
| **sync_dependencies** | **Boolean** | Sync dependencies for collections specified via requirements file | [optional] |
|
|
@@ -43,21 +43,21 @@ instance = PulpAnsibleClient::AnsibleCollectionRemoteResponse.new(
|
|
|
43
43
|
pulp_last_updated: null,
|
|
44
44
|
name: null,
|
|
45
45
|
url: null,
|
|
46
|
+
pulp_labels: null,
|
|
47
|
+
policy: null,
|
|
48
|
+
hidden_fields: null,
|
|
46
49
|
ca_cert: null,
|
|
47
50
|
client_cert: null,
|
|
48
51
|
tls_validation: null,
|
|
49
52
|
proxy_url: null,
|
|
50
|
-
pulp_labels: null,
|
|
51
|
-
download_concurrency: null,
|
|
52
53
|
max_retries: null,
|
|
53
|
-
policy: null,
|
|
54
54
|
total_timeout: null,
|
|
55
55
|
connect_timeout: null,
|
|
56
56
|
sock_connect_timeout: null,
|
|
57
57
|
sock_read_timeout: null,
|
|
58
58
|
headers: null,
|
|
59
|
+
download_concurrency: null,
|
|
59
60
|
rate_limit: null,
|
|
60
|
-
hidden_fields: null,
|
|
61
61
|
requirements_file: null,
|
|
62
62
|
auth_url: null,
|
|
63
63
|
sync_dependencies: null,
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **pulp_last_updated** | **Time** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional][readonly] |
|
|
7
8
|
| **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
|
|
9
|
+
| **pulp_href** | **String** | | [optional][readonly] |
|
|
8
10
|
| **artifact** | **String** | Artifact file representing the physical content | [optional] |
|
|
9
|
-
| **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
|
|
10
|
-
| **pulp_last_updated** | **Time** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional][readonly] |
|
|
11
11
|
| **vuln_report** | **String** | | [optional][readonly] |
|
|
12
|
-
| **pulp_href** | **String** | | [optional][readonly] |
|
|
13
12
|
| **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
|
|
13
|
+
| **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
|
|
14
14
|
| **sha256** | **String** | The SHA-256 checksum if available. | [optional][readonly] |
|
|
15
15
|
| **md5** | **String** | The MD5 checksum if available. | [optional][readonly] |
|
|
16
16
|
| **sha1** | **String** | The SHA-1 checksum if available. | [optional][readonly] |
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
require 'pulp_ansible_client'
|
|
39
39
|
|
|
40
40
|
instance = PulpAnsibleClient::AnsibleCollectionVersionResponse.new(
|
|
41
|
+
pulp_last_updated: null,
|
|
41
42
|
pulp_created: null,
|
|
43
|
+
pulp_href: null,
|
|
42
44
|
artifact: null,
|
|
43
|
-
pulp_labels: null,
|
|
44
|
-
pulp_last_updated: null,
|
|
45
45
|
vuln_report: null,
|
|
46
|
-
pulp_href: null,
|
|
47
46
|
prn: null,
|
|
47
|
+
pulp_labels: null,
|
|
48
48
|
sha256: null,
|
|
49
49
|
md5: null,
|
|
50
50
|
sha1: null,
|
data/docs/AnsibleGitRemote.md
CHANGED
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
-
| **
|
|
8
|
-
| **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] |
|
|
9
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
7
|
+
| **url** | **String** | The URL of an external content source. | |
|
|
10
8
|
| **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
|
-
| **
|
|
9
|
+
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
10
|
+
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
11
|
+
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
12
|
+
| **name** | **String** | A unique name for this remote. | |
|
|
13
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
12
14
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [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] |
|
|
13
16
|
| **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
|
|
17
|
+
| **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [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
|
+
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
20
|
+
| **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
|
|
14
21
|
| **username** | **String** | The username to be used for authentication when syncing. | [optional] |
|
|
22
|
+
| **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] |
|
|
23
|
+
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
24
|
+
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
15
25
|
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
16
26
|
| **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] |
|
|
17
|
-
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
18
|
-
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
19
|
-
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
20
|
-
| **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] |
|
|
21
|
-
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
22
|
-
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
23
|
-
| **url** | **String** | The URL of an external content source. | |
|
|
24
|
-
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
25
|
-
| **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] |
|
|
26
|
-
| **name** | **String** | A unique name for this remote. | |
|
|
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
|
|
|
@@ -33,26 +33,26 @@
|
|
|
33
33
|
require 'pulp_ansible_client'
|
|
34
34
|
|
|
35
35
|
instance = PulpAnsibleClient::AnsibleGitRemote.new(
|
|
36
|
-
|
|
37
|
-
sock_read_timeout: null,
|
|
38
|
-
download_concurrency: null,
|
|
36
|
+
url: null,
|
|
39
37
|
max_retries: null,
|
|
40
|
-
|
|
38
|
+
proxy_url: null,
|
|
39
|
+
headers: null,
|
|
40
|
+
client_key: null,
|
|
41
|
+
name: null,
|
|
42
|
+
download_concurrency: null,
|
|
41
43
|
client_cert: null,
|
|
44
|
+
total_timeout: null,
|
|
42
45
|
tls_validation: null,
|
|
46
|
+
password: null,
|
|
47
|
+
sock_read_timeout: null,
|
|
48
|
+
rate_limit: null,
|
|
49
|
+
proxy_username: null,
|
|
43
50
|
username: null,
|
|
51
|
+
sock_connect_timeout: null,
|
|
52
|
+
proxy_password: null,
|
|
53
|
+
ca_cert: null,
|
|
44
54
|
pulp_labels: null,
|
|
45
55
|
connect_timeout: null,
|
|
46
|
-
ca_cert: null,
|
|
47
|
-
proxy_password: null,
|
|
48
|
-
proxy_url: null,
|
|
49
|
-
proxy_username: null,
|
|
50
|
-
rate_limit: null,
|
|
51
|
-
headers: null,
|
|
52
|
-
url: null,
|
|
53
|
-
client_key: null,
|
|
54
|
-
sock_connect_timeout: null,
|
|
55
|
-
name: null,
|
|
56
56
|
metadata_only: null,
|
|
57
57
|
git_ref: null
|
|
58
58
|
)
|
|
@@ -4,26 +4,26 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
-
| **
|
|
8
|
-
| **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
|
-
| **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] |
|
|
10
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
7
|
+
| **url** | **String** | The URL of an external content source. | |
|
|
11
8
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
9
|
+
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
10
|
+
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
11
|
+
| **name** | **String** | A unique name for this remote. | |
|
|
12
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
12
13
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
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] |
|
|
13
15
|
| **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
|
|
14
|
-
| **
|
|
15
|
-
| **
|
|
16
|
-
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
17
|
-
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
18
|
-
| **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
|
|
16
|
+
| **pulp_href** | **String** | | [optional][readonly] |
|
|
17
|
+
| **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
18
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
20
|
-
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
21
|
-
| **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
|
|
22
19
|
| **pulp_last_updated** | **Time** | Timestamp of the most recent update of the remote. | [optional][readonly] |
|
|
23
|
-
| **url** | **String** | The URL of an external content source. | |
|
|
24
|
-
| **pulp_href** | **String** | | [optional][readonly] |
|
|
25
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] |
|
|
26
|
-
| **
|
|
21
|
+
| **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
|
|
22
|
+
| **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
|
|
23
|
+
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
24
|
+
| **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
|
|
25
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
26
|
+
| **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] |
|
|
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
|
|
|
@@ -33,26 +33,26 @@
|
|
|
33
33
|
require 'pulp_ansible_client'
|
|
34
34
|
|
|
35
35
|
instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(
|
|
36
|
-
|
|
37
|
-
total_timeout: null,
|
|
38
|
-
sock_read_timeout: null,
|
|
39
|
-
download_concurrency: null,
|
|
36
|
+
url: null,
|
|
40
37
|
max_retries: null,
|
|
38
|
+
proxy_url: null,
|
|
39
|
+
headers: null,
|
|
40
|
+
name: null,
|
|
41
|
+
download_concurrency: null,
|
|
41
42
|
client_cert: null,
|
|
43
|
+
total_timeout: null,
|
|
42
44
|
tls_validation: null,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
ca_cert: null,
|
|
46
|
-
proxy_url: null,
|
|
47
|
-
prn: null,
|
|
45
|
+
pulp_href: null,
|
|
46
|
+
sock_read_timeout: null,
|
|
48
47
|
rate_limit: null,
|
|
49
|
-
headers: null,
|
|
50
|
-
pulp_created: null,
|
|
51
48
|
pulp_last_updated: null,
|
|
52
|
-
url: null,
|
|
53
|
-
pulp_href: null,
|
|
54
49
|
sock_connect_timeout: null,
|
|
55
|
-
|
|
50
|
+
hidden_fields: null,
|
|
51
|
+
pulp_created: null,
|
|
52
|
+
ca_cert: null,
|
|
53
|
+
prn: null,
|
|
54
|
+
pulp_labels: null,
|
|
55
|
+
connect_timeout: null,
|
|
56
56
|
metadata_only: null,
|
|
57
57
|
git_ref: null
|
|
58
58
|
)
|
data/docs/AnsibleRoleRemote.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **name** | **String** | A unique name for this remote. | |
|
|
8
8
|
| **url** | **String** | The URL of an external content source. | |
|
|
9
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
10
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
9
11
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
10
12
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
11
13
|
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
@@ -15,15 +17,13 @@
|
|
|
15
17
|
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
16
18
|
| **username** | **String** | The username to be used for authentication when syncing. | [optional] |
|
|
17
19
|
| **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
18
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
19
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
20
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
21
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
22
21
|
| **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] |
|
|
23
22
|
| **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
23
|
| **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
24
|
| **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] |
|
|
26
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
27
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
28
28
|
|
|
29
29
|
## Example
|
|
@@ -34,6 +34,8 @@ require 'pulp_ansible_client'
|
|
|
34
34
|
instance = PulpAnsibleClient::AnsibleRoleRemote.new(
|
|
35
35
|
name: null,
|
|
36
36
|
url: null,
|
|
37
|
+
pulp_labels: null,
|
|
38
|
+
policy: null,
|
|
37
39
|
ca_cert: null,
|
|
38
40
|
client_cert: null,
|
|
39
41
|
client_key: null,
|
|
@@ -43,15 +45,13 @@ instance = PulpAnsibleClient::AnsibleRoleRemote.new(
|
|
|
43
45
|
proxy_password: null,
|
|
44
46
|
username: null,
|
|
45
47
|
password: null,
|
|
46
|
-
pulp_labels: null,
|
|
47
|
-
download_concurrency: null,
|
|
48
48
|
max_retries: null,
|
|
49
|
-
policy: null,
|
|
50
49
|
total_timeout: null,
|
|
51
50
|
connect_timeout: null,
|
|
52
51
|
sock_connect_timeout: null,
|
|
53
52
|
sock_read_timeout: null,
|
|
54
53
|
headers: null,
|
|
54
|
+
download_concurrency: null,
|
|
55
55
|
rate_limit: null
|
|
56
56
|
)
|
|
57
57
|
```
|
|
@@ -10,21 +10,21 @@
|
|
|
10
10
|
| **pulp_last_updated** | **Time** | Timestamp of the most recent update of the remote. | [optional][readonly] |
|
|
11
11
|
| **name** | **String** | A unique name for this remote. | |
|
|
12
12
|
| **url** | **String** | The URL of an external content source. | |
|
|
13
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
14
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
15
|
+
| **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
|
|
13
16
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
14
17
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
15
18
|
| **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] |
|
|
16
19
|
| **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] |
|
|
17
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
18
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
19
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
20
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
21
21
|
| **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] |
|
|
22
22
|
| **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] |
|
|
23
23
|
| **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] |
|
|
24
24
|
| **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] |
|
|
25
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
26
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
27
|
-
| **hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFieldsInner>**](AnsibleCollectionRemoteResponseHiddenFieldsInner.md) | List of hidden (write only) fields | [optional] |
|
|
28
28
|
|
|
29
29
|
## Example
|
|
30
30
|
|
|
@@ -38,21 +38,21 @@ instance = PulpAnsibleClient::AnsibleRoleRemoteResponse.new(
|
|
|
38
38
|
pulp_last_updated: null,
|
|
39
39
|
name: null,
|
|
40
40
|
url: null,
|
|
41
|
+
pulp_labels: null,
|
|
42
|
+
policy: null,
|
|
43
|
+
hidden_fields: null,
|
|
41
44
|
ca_cert: null,
|
|
42
45
|
client_cert: null,
|
|
43
46
|
tls_validation: null,
|
|
44
47
|
proxy_url: null,
|
|
45
|
-
pulp_labels: null,
|
|
46
|
-
download_concurrency: null,
|
|
47
48
|
max_retries: null,
|
|
48
|
-
policy: null,
|
|
49
49
|
total_timeout: null,
|
|
50
50
|
connect_timeout: null,
|
|
51
51
|
sock_connect_timeout: null,
|
|
52
52
|
sock_read_timeout: null,
|
|
53
53
|
headers: null,
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
download_concurrency: null,
|
|
55
|
+
rate_limit: null
|
|
56
56
|
)
|
|
57
57
|
```
|
|
58
58
|
|
data/docs/AnsibleRoleResponse.md
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **pulp_last_updated** | **Time** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional][readonly] |
|
|
7
8
|
| **pulp_created** | **Time** | Timestamp of creation. | [optional][readonly] |
|
|
9
|
+
| **pulp_href** | **String** | | [optional][readonly] |
|
|
8
10
|
| **artifact** | **String** | Artifact file representing the physical content | |
|
|
9
|
-
| **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
|
|
10
|
-
| **pulp_last_updated** | **Time** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional][readonly] |
|
|
11
11
|
| **vuln_report** | **String** | | [optional][readonly] |
|
|
12
|
-
| **pulp_href** | **String** | | [optional][readonly] |
|
|
13
12
|
| **prn** | **String** | The Pulp Resource Name (PRN). | [optional][readonly] |
|
|
13
|
+
| **pulp_labels** | **Hash<String, String>** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
|
|
14
14
|
| **version** | **String** | | |
|
|
15
15
|
| **name** | **String** | | |
|
|
16
16
|
| **namespace** | **String** | | |
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
require 'pulp_ansible_client'
|
|
22
22
|
|
|
23
23
|
instance = PulpAnsibleClient::AnsibleRoleResponse.new(
|
|
24
|
+
pulp_last_updated: null,
|
|
24
25
|
pulp_created: null,
|
|
26
|
+
pulp_href: null,
|
|
25
27
|
artifact: null,
|
|
26
|
-
pulp_labels: null,
|
|
27
|
-
pulp_last_updated: null,
|
|
28
28
|
vuln_report: null,
|
|
29
|
-
pulp_href: null,
|
|
30
29
|
prn: null,
|
|
30
|
+
pulp_labels: null,
|
|
31
31
|
version: null,
|
|
32
32
|
name: null,
|
|
33
33
|
namespace: null
|
|
@@ -39,7 +39,8 @@ opts = {
|
|
|
39
39
|
pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
40
40
|
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
41
41
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
42
|
-
file_url: 'file_url_example' # String | A url that Pulp can download and turn into the content unit.
|
|
42
|
+
file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
|
|
43
|
+
downloader_config: PulpAnsibleClient::RemoteNetworkConfig.new # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
43
44
|
}
|
|
44
45
|
|
|
45
46
|
begin
|
|
@@ -80,6 +81,7 @@ end
|
|
|
80
81
|
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
81
82
|
| **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
|
|
82
83
|
| **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
|
|
84
|
+
| **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional] |
|
|
83
85
|
|
|
84
86
|
### Return type
|
|
85
87
|
|
|
@@ -34,11 +34,12 @@ end
|
|
|
34
34
|
api_instance = PulpAnsibleClient::ContentCollectionVersionsApi.new
|
|
35
35
|
opts = {
|
|
36
36
|
x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
|
|
37
|
+
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
38
|
+
downloader_config: PulpAnsibleClient::RemoteNetworkConfig.new, # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
37
39
|
file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
|
|
38
40
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
39
41
|
artifact: 'artifact_example', # String | Artifact file representing the physical content
|
|
40
42
|
pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
|
41
|
-
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
42
43
|
repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
|
|
43
44
|
expected_name: 'expected_name_example', # String | The name of the collection.
|
|
44
45
|
expected_namespace: 'expected_namespace_example', # String | The namespace of the collection.
|
|
@@ -77,11 +78,12 @@ end
|
|
|
77
78
|
| Name | Type | Description | Notes |
|
|
78
79
|
| ---- | ---- | ----------- | ----- |
|
|
79
80
|
| **x_task_diagnostics** | [**Array<String>**](String.md) | List of profilers to use on tasks. | [optional] |
|
|
81
|
+
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
82
|
+
| **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional] |
|
|
80
83
|
| **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
|
|
81
84
|
| **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
|
|
82
85
|
| **artifact** | **String** | Artifact file representing the physical content | [optional] |
|
|
83
86
|
| **pulp_labels** | [**Hash<String, String>**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
|
|
84
|
-
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
85
87
|
| **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
|
|
86
88
|
| **expected_name** | **String** | The name of the collection. | [optional] |
|
|
87
89
|
| **expected_namespace** | **String** | The namespace of the collection. | [optional] |
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **name** | **String** | A unique name for this remote. | [optional] |
|
|
8
8
|
| **url** | **String** | The URL of an external content source. | [optional] |
|
|
9
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
10
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
9
11
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
10
12
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
11
13
|
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
@@ -15,15 +17,13 @@
|
|
|
15
17
|
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
16
18
|
| **username** | **String** | The username to be used for authentication when syncing. | [optional] |
|
|
17
19
|
| **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
18
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
19
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
20
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
21
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. * `immediate` - When syncing, download all metadata and content now. | [optional] |
|
|
22
21
|
| **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] |
|
|
23
22
|
| **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
23
|
| **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
24
|
| **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] |
|
|
26
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
27
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
28
28
|
| **requirements_file** | **String** | The string version of Collection requirements yaml. | [optional] |
|
|
29
29
|
| **auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional] |
|
|
@@ -39,6 +39,8 @@ require 'pulp_ansible_client'
|
|
|
39
39
|
instance = PulpAnsibleClient::PatchedansibleCollectionRemote.new(
|
|
40
40
|
name: null,
|
|
41
41
|
url: null,
|
|
42
|
+
pulp_labels: null,
|
|
43
|
+
policy: null,
|
|
42
44
|
ca_cert: null,
|
|
43
45
|
client_cert: null,
|
|
44
46
|
client_key: null,
|
|
@@ -48,15 +50,13 @@ instance = PulpAnsibleClient::PatchedansibleCollectionRemote.new(
|
|
|
48
50
|
proxy_password: null,
|
|
49
51
|
username: null,
|
|
50
52
|
password: null,
|
|
51
|
-
pulp_labels: null,
|
|
52
|
-
download_concurrency: null,
|
|
53
53
|
max_retries: null,
|
|
54
|
-
policy: null,
|
|
55
54
|
total_timeout: null,
|
|
56
55
|
connect_timeout: null,
|
|
57
56
|
sock_connect_timeout: null,
|
|
58
57
|
sock_read_timeout: null,
|
|
59
58
|
headers: null,
|
|
59
|
+
download_concurrency: null,
|
|
60
60
|
rate_limit: null,
|
|
61
61
|
requirements_file: null,
|
|
62
62
|
auth_url: null,
|