docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.17.2 vs docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.17.3
- old
+ new
@@ -2,55 +2,55 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
-**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [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]
**hidden_fields** | [**Array<AnsibleCollectionRemoteResponseHiddenFields>**](AnsibleCollectionRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly]
-**url** | **String** | The URL of an external content source. |
-**pulp_href** | **String** | | [optional] [readonly]
+**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
**name** | **String** | A unique name for this remote. |
-**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [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]
-**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]
-**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]
-**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
+**url** | **String** | The URL of an external content source. |
**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional]
-**headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional]
+**pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly]
+**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
+**pulp_href** | **String** | | [optional] [readonly]
+**client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional]
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
+**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]
**pulp_labels** | **Hash<String, String>** | | [optional]
-**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
+**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [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]
**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]
+**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]
+**ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional]
+**download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
**metadata_only** | **Boolean** | If True, only metadata about the content will be stored in Pulp. Clients will retrieve content from the remote URL. | [optional]
**git_ref** | **String** | A git ref. e.g.: branch, tag, or commit sha. | [optional]
## Code Sample
```ruby
require 'PulpAnsibleClient'
-instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(ca_cert: null,
- client_cert: null,
- connect_timeout: null,
- hidden_fields: null,
- url: null,
- pulp_href: null,
+instance = PulpAnsibleClient::AnsibleGitRemoteResponse.new(hidden_fields: null,
+ headers: null,
name: null,
- proxy_url: null,
- max_retries: null,
- sock_read_timeout: null,
- sock_connect_timeout: null,
- pulp_last_updated: null,
+ url: null,
rate_limit: null,
- headers: null,
+ pulp_last_updated: null,
+ max_retries: null,
+ pulp_href: null,
+ client_cert: null,
pulp_created: null,
+ sock_read_timeout: null,
pulp_labels: null,
- download_concurrency: null,
+ proxy_url: null,
tls_validation: null,
+ connect_timeout: null,
total_timeout: null,
+ sock_connect_timeout: null,
+ ca_cert: null,
+ download_concurrency: null,
metadata_only: null,
git_ref: null)
```