# PulpContainerClient::PatchedcontainerContainerRemote ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **name** | **String** | A unique name for this remote. | [optional] **url** | **String** | The URL of an external content source. | [optional] **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://user:password@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. | [optional] **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional] **policy** | [**PolicyEnum**](PolicyEnum.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. | [optional] **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. | [optional] **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. | [optional] **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. | [optional] **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. | [optional] **upstream_name** | **String** | Name of the upstream repository | [optional] **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] ## Code Sample ```ruby require 'PulpContainerClient' instance = PulpContainerClient::PatchedcontainerContainerRemote.new(name: null, url: null, ca_cert: null, client_cert: null, client_key: null, tls_validation: null, proxy_url: null, username: null, password: null, download_concurrency: null, policy: null, total_timeout: null, connect_timeout: null, sock_connect_timeout: null, sock_read_timeout: null, upstream_name: null, include_tags: null, exclude_tags: null) ```