docs/ContainerContainerPushRepositoryResponse.md in pulp_container_client-2.7.0 vs docs/ContainerContainerPushRepositoryResponse.md in pulp_container_client-2.7.1

- old
+ new

@@ -2,30 +2,30 @@ ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**retained_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future. | [optional] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] -**name** | **String** | A unique name for this repository. | **versions_href** | **String** | | [optional] [readonly] -**description** | **String** | An optional description. | [optional] **latest_version_href** | **String** | | [optional] [readonly] -**retained_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future. | [optional] **pulp_href** | **String** | | [optional] [readonly] +**name** | **String** | A unique name for this repository. | **pulp_labels** | [**Object**](.md) | | [optional] +**description** | **String** | An optional description. | [optional] ## Code Sample ```ruby require 'PulpContainerClient' -instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(pulp_created: null, - name: null, +instance = PulpContainerClient::ContainerContainerPushRepositoryResponse.new(retained_versions: null, + pulp_created: null, versions_href: null, - description: null, latest_version_href: null, - retained_versions: null, pulp_href: null, - pulp_labels: null) + name: null, + pulp_labels: null, + description: null) ```