docs/ContainerContainerDistribution.md in pulp_container_client-1.4.1 vs docs/ContainerContainerDistribution.md in pulp_container_client-1.4.2

- old
+ new

@@ -2,30 +2,30 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**content_guard** | **String** | An optional content-guard. | [optional] -**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] -**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | -**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] +**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\") | **pulp_href** | **String** | | [optional] [readonly] +**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | +**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **repository_version** | **String** | RepositoryVersion to be served | [optional] -**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\") | +**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] +**content_guard** | **String** | An optional content-guard. | [optional] **registry_path** | **String** | The Registry hostame/name/ to use with docker pull command defined by this distribution. | [optional] [readonly] ## Code Sample ```ruby require 'PulpContainerClient' -instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null, - pulp_created: null, - name: null, - repository: null, +instance = PulpContainerClient::ContainerContainerDistribution.new(base_path: null, pulp_href: null, + name: null, + pulp_created: null, repository_version: null, - base_path: null, + repository: null, + content_guard: null, registry_path: null) ```