docs/PatchedansibleCollectionRemote.md in pulp_ansible_client-0.5.4 vs docs/PatchedansibleCollectionRemote.md in pulp_ansible_client-0.5.5
- old
+ new
@@ -13,10 +13,14 @@
**proxy_url** | **String** | The proxy URL. Format: scheme://user:password@host:port | [optional]
**username** | **String** | The username to be used for authentication when syncing. | [optional]
**password** | **String** | The password to be used for authentication when syncing. | [optional]
**download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
**policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. | [optional]
+**total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. | [optional]
+**connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. | [optional]
+**sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. | [optional]
+**sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. | [optional]
**requirements_file** | **String** | The string version of Collection requirements yaml. | [optional]
**auth_url** | **String** | The URL to receive a session token from, e.g. used with Automation Hub. | [optional]
**token** | **String** | The token key to use for authentication. See https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#configuring-the-ansible-galaxy-clientfor more details | [optional]
## Code Sample
@@ -33,9 +37,13 @@
proxy_url: null,
username: null,
password: null,
download_concurrency: null,
policy: null,
+ total_timeout: null,
+ connect_timeout: null,
+ sock_connect_timeout: null,
+ sock_read_timeout: null,
requirements_file: null,
auth_url: null,
token: null)
```