# PulpContainerClient::ContainerContainerDistributionResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_labels** | **Hash<String, String>** | | [optional] **content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional] **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false] **pulp_href** | **String** | | [optional] [readonly] **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes. | [optional] [readonly] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly] **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | **prn** | **String** | The Pulp Resource Name (PRN). | [optional] [readonly] **repository_version** | **String** | RepositoryVersion to be served | [optional] **registry_path** | **String** | The Registry hostname/name/ to use with docker pull command defined by this distribution. | [optional] [readonly] **remote** | **String** | Remote that can be used to fetch content when using pull-through caching. | [optional] [readonly] **namespace** | **String** | Namespace this distribution belongs to. | [optional] [readonly] **private** | **Boolean** | Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access. | [optional] **description** | **String** | An optional description. | [optional] ## Code Sample ```ruby require 'PulpContainerClient' instance = PulpContainerClient::ContainerContainerDistributionResponse.new(pulp_labels: null, content_guard: null, hidden: null, pulp_href: null, no_content_change_since: null, pulp_created: null, repository: null, name: null, pulp_last_updated: null, base_path: null, prn: null, repository_version: null, registry_path: null, remote: null, namespace: null, private: null, description: null) ```