# PulpPythonClient::PythonPythonRemote ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_href** | **String** | | [optional] [readonly] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **name** | **String** | A unique name for this remote. | **url** | **String** | The URL of an external content source. | **ca_cert** | **String** | A string containing the PEM encoded CA certificate used to validate the server certificate presented by the remote server. All new line characters must be escaped. | [optional] **client_cert** | **String** | A string containing the PEM encoded client certificate used for authentication. All new line characters must be escaped. | [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] **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly] **download_concurrency** | **Integer** | Total number of simultaneous connections. | [optional] **policy** | **String** | The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'cache_only'. 'immediate' is the default. | [optional] [default to 'immediate'] **includes** | [**Object**](.md) | A JSON list containing project specifiers for Python packages to include. | [optional] **excludes** | [**Object**](.md) | A JSON list containing project specifiers for Python packages to exclude. | [optional] **prereleases** | **Boolean** | Whether or not to include pre-release packages in the sync. | [optional] ## Code Sample ```ruby require 'PulpPythonClient' instance = PulpPythonClient::PythonPythonRemote.new(pulp_href: null, pulp_created: null, name: null, url: null, ca_cert: null, client_cert: null, client_key: null, tls_validation: null, proxy_url: null, username: null, password: null, pulp_last_updated: null, download_concurrency: null, policy: null, includes: null, excludes: null, prereleases: null) ```