docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.22.2 vs docs/AnsibleGitRemoteResponse.md in pulp_ansible_client-0.22.3

- old
+ new

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