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