# PulpContainerClient::ContainerContainerRemote ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **String** | A unique name for this remote. | **url** | **String** | The URL of an external content source. | **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] **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional] **proxy_username** | **String** | The username to authenticte to the proxy. | [optional] **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [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] **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] **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** | [**Policy692Enum**](Policy692Enum.md) | immediate - All manifests and blobs are downloaded and saved during a sync. on_demand - Only tags and manifests are downloaded. Blobs are not downloaded until they are requested for the first time by a client. streamed - Blobs are streamed to the client with every request and never saved. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [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 requests per second for each concurrent downloader | [optional] **upstream_name** | **String** | Name of the upstream repository | **include_tags** | **Array<String>** | A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'. | [optional] **exclude_tags** | **Array<String>** | A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'. | [optional] **sigstore** | **String** | A URL to a sigstore to download image signatures from | [optional] ## Code Sample ```ruby require 'PulpContainerClient' instance = PulpContainerClient::ContainerContainerRemote.new(name: null, url: null, ca_cert: null, client_cert: null, client_key: null, tls_validation: null, proxy_url: null, proxy_username: null, 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, headers: null, rate_limit: null, upstream_name: null, include_tags: null, exclude_tags: null, sigstore: null) ```