# PulpcoreClient::UpstreamPulpResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_href** | **String** | | [optional] [readonly] **prn** | **String** | The Pulp Resource Name (PRN). | [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 Pulp server. | **base_url** | **String** | The transport, hostname, and an optional port of the Pulp server. e.g. https://example.com | **api_root** | **String** | The API root. Defaults to '/pulp/'. | **domain** | **String** | The domain of the Pulp server if enabled. | [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] **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional] **hidden_fields** | [**Array<RemoteResponseHiddenFields>**](RemoteResponseHiddenFields.md) | List of hidden (write only) fields | [optional] [readonly] **q_select** | **String** | Filter distributions on the upstream Pulp using complex filtering. E.g. pulp_label_select=\"foo\" OR pulp_label_select=\"key=val\" | [optional] **last_replication** | **DateTime** | Timestamp of the last replication that occurred. Equals to 'null' if no replication task has been executed. | [optional] [readonly] ## Code Sample ```ruby require 'PulpcoreClient' instance = PulpcoreClient::UpstreamPulpResponse.new(pulp_href: null, prn: null, pulp_created: null, pulp_last_updated: null, name: null, base_url: null, api_root: null, domain: null, ca_cert: null, client_cert: null, tls_validation: null, hidden_fields: null, q_select: null, last_replication: null) ```