docs/ContainerContainerDistribution.md in pulp_container_client-2.20.2 vs docs/ContainerContainerDistribution.md in pulp_container_client-2.20.3
- old
+ new
@@ -2,30 +2,30 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
-**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
-**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
-**pulp_labels** | **Hash<String, String>** | | [optional]
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
+**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
**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\") |
+**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
+**pulp_labels** | **Hash<String, String>** | | [optional]
+**hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional] [default to false]
**repository_version** | **String** | RepositoryVersion to be served | [optional]
**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::ContainerContainerDistribution.new(hidden: null,
- content_guard: null,
+instance = PulpContainerClient::ContainerContainerDistribution.new(repository: null,
name: null,
- pulp_labels: null,
- repository: null,
base_path: null,
+ content_guard: null,
+ pulp_labels: null,
+ hidden: null,
repository_version: null,
private: null,
description: null)
```