docs/RpmRpmRepositoryResponse.md in pulp_rpm_client-3.23.4 vs docs/RpmRpmRepositoryResponse.md in pulp_rpm_client-3.24.0
- old
+ new
@@ -16,13 +16,14 @@
**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]
**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]
**metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512 | [optional]
**package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512 | [optional]
-**gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
-**repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
+**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** | DEPRECATED: An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
+**repo_config** | [**Object**](.md) | A JSON document describing config.repo file | [optional]
## Code Sample
```ruby
require 'PulpRpmClient'
@@ -41,9 +42,10 @@
retain_package_versions: null,
metadata_checksum_type: null,
package_checksum_type: null,
gpgcheck: null,
repo_gpgcheck: null,
- sqlite_metadata: null)
+ sqlite_metadata: null,
+ repo_config: null)
```