docs/PatchedrpmUlnRemote.md in pulp_rpm_client-3.13.3 vs docs/PatchedrpmUlnRemote.md in pulp_rpm_client-3.14.0
- old
+ new
@@ -14,16 +14,17 @@
**proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
**proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
**username** | **String** | Your ULN account username. | [optional]
**password** | **String** | Your ULN account password. | [optional]
**pulp_labels** | [**Object**](.md) | | [optional]
-**download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional]
+**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
+**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
**policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default. | [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]
+**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]
+**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]
+**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]
+**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]
**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
**rate_limit** | **Integer** | Limits total download rate in requests per second | [optional]
**uln_server_base_url** | **String** | Base URL of the ULN server. If the uln_server_base_url is not provided pulp_rpm willuse the contents of the DEFAULT_ULN_SERVER_BASE_URL setting instead. | [optional]
## Code Sample
@@ -42,9 +43,10 @@
proxy_password: null,
username: null,
password: null,
pulp_labels: null,
download_concurrency: null,
+ max_retries: null,
policy: null,
total_timeout: null,
connect_timeout: null,
sock_connect_timeout: null,
sock_read_timeout: null,