# PulpRpmClient::RpmRpmRepositoryResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **pulp_href** | **String** | | [optional] [readonly] **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly] **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] **versions_href** | **String** | | [optional] [readonly] **pulp_labels** | **Hash<String, String>** | | [optional] **latest_version_href** | **String** | | [optional] [readonly] **name** | **String** | A unique name for this repository. | **description** | **String** | An optional description. | [optional] **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] **remote** | **String** | An optional remote to use by default when syncing. | [optional] **autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false] **metadata_signing_service** | **String** | A reference to an associated signing service. | [optional] **package_signing_service** | **String** | A reference to an associated package signing service. | [optional] **package_signing_fingerprint** | **String** | The pubkey V4 fingerprint (160 bits) to be passed to the package signing service.The signing service will use that on signing operations related to this repository. | [optional] [default to ''] **retain_package_versions** | **Integer** | The number of versions of each package to keep in the repository; older versions will be purged. The default is '0', which will disable this feature and keep all versions of each package. | [optional] **checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The preferred checksum type during repo publish. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512 | [optional] **metadata_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512 | [optional] **package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512 | [optional] **gpgcheck** | **Integer** | DEPRECATED: An option specifying whether a client should perform a GPG signature check on packages. | [optional] **repo_gpgcheck** | **Integer** | DEPRECATED: An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] **sqlite_metadata** | **Boolean** | REMOVED: An option specifying whether Pulp should generate SQLite metadata. Not operation since pulp_rpm 3.25.0 release | [optional] [readonly] [default to false] **repo_config** | [**AnyType**](.md) | A JSON document describing config.repo file | [optional] **compression_type** | [**CompressionTypeEnum**](CompressionTypeEnum.md) | The compression type to use for metadata files. * `zstd` - zstd * `gz` - gz | [optional] ## Code Sample ```ruby require 'PulpRpmClient' instance = PulpRpmClient::RpmRpmRepositoryResponse.new(pulp_href: null, pulp_created: null, pulp_last_updated: null, versions_href: null, pulp_labels: null, latest_version_href: null, name: null, description: null, retain_repo_versions: null, remote: null, autopublish: null, metadata_signing_service: null, package_signing_service: null, package_signing_fingerprint: null, retain_package_versions: null, checksum_type: null, metadata_checksum_type: null, package_checksum_type: null, gpgcheck: null, repo_gpgcheck: null, sqlite_metadata: null, repo_config: null, compression_type: null) ```