docs/AnsibleGitRemote.md in pulp_ansible_client-0.20.10 vs docs/AnsibleGitRemote.md in pulp_ansible_client-0.21.0

- old
+ new

@@ -2,57 +2,57 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**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] -**username** | **String** | The username to be used for authentication when syncing. | [optional] -**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [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] -**pulp_labels** | **Hash<String, String>** | | [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] -**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] -**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] -**proxy_username** | **String** | The username to authenticte to the proxy. | [optional] +**url** | **String** | The URL of an external content source. | +**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [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] +**max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] **name** | **String** | A unique name for this remote. | **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [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] -**url** | **String** | The URL of an external content source. | -**client_key** | **String** | A PEM encoded private key used for authentication. | [optional] -**tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] +**username** | **String** | The username to be used for authentication when syncing. | [optional] **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] +**rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] +**password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [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] +**client_key** | **String** | A PEM encoded private key 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] +**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] +**proxy_username** | **String** | The username to authenticte to the proxy. | [optional] +**pulp_labels** | **Hash<String, String>** | | [optional] +**proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [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::AnsibleGitRemote.new(download_concurrency: null, - proxy_url: null, - username: null, - password: null, - sock_connect_timeout: null, - ca_cert: null, - pulp_labels: null, - total_timeout: null, - max_retries: null, - rate_limit: null, - proxy_username: null, +instance = PulpAnsibleClient::AnsibleGitRemote.new(ca_cert: null, + url: null, + tls_validation: null, sock_read_timeout: null, + max_retries: null, name: null, headers: null, - connect_timeout: null, - url: null, - client_key: null, - tls_validation: null, + username: null, proxy_password: null, + rate_limit: null, + password: null, client_cert: null, + sock_connect_timeout: null, + client_key: null, + connect_timeout: null, + total_timeout: null, + proxy_username: null, + pulp_labels: null, + proxy_url: null, + download_concurrency: null, metadata_only: null, git_ref: null) ```