docs/ContainerContainerDistribution.md in pulp_container_client-2.2.1 vs docs/ContainerContainerDistribution.md in pulp_container_client-2.2.2

- old
+ new

@@ -2,24 +2,24 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**repository_version** | **String** | RepositoryVersion to be served | [optional] +**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`. | **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] -**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [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_version** | **String** | RepositoryVersion to be served | [optional] ## Code Sample ```ruby require 'PulpContainerClient' -instance = PulpContainerClient::ContainerContainerDistribution.new(repository_version: null, +instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null, name: null, repository: null, - content_guard: null, - base_path: null) + base_path: null, + repository_version: null) ```