# PulpPythonClient::PythonPythonRemoteResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_href** | **String** | | [optional] [readonly] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **pulp_last_updated** | **DateTime** | Timestamp of the most recent update of the remote. | [optional] [readonly] **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] **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [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** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'on_demand' is the default. * `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] **hidden_fields** | [**Array<PythonPythonRemoteResponseHiddenFields>**](PythonPythonRemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly] **includes** | **Array<String>** | A list containing project specifiers for Python packages to include. | [optional] **excludes** | **Array<String>** | A list containing project specifiers for Python packages to exclude. | [optional] **prereleases** | **Boolean** | Whether or not to include pre-release packages in the sync. | [optional] **package_types** | [**Array<PackageTypesEnum>**](PackageTypesEnum.md) | The package types to sync for Python content. Leave blank to get everypackage type. | [optional] **keep_latest_packages** | **Integer** | The amount of latest versions of a package to keep on sync, includespre-releases if synced. Default 0 keeps all versions. | [optional] [default to 0] **exclude_platforms** | [**Array<ExcludePlatformsEnum>**](ExcludePlatformsEnum.md) | List of platforms to exclude syncing Python packages for. Possible valuesinclude: windows, macos, freebsd, and linux. | [optional] ## Code Sample ```ruby require 'PulpPythonClient' instance = PulpPythonClient::PythonPythonRemoteResponse.new(pulp_href: null, pulp_created: null, pulp_last_updated: null, name: null, url: null, ca_cert: null, client_cert: null, tls_validation: null, proxy_url: 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, hidden_fields: null, includes: null, excludes: null, prereleases: null, package_types: null, keep_latest_packages: null, exclude_platforms: null) ```