pulp_rpm_client 3.14.1 → 3.14.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -5
- data/docs/PatchedrpmRpmRepository.md +2 -2
- data/docs/RpmRpmRepository.md +2 -2
- data/docs/RpmRpmRepositoryResponse.md +2 -2
- data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +2 -2
- data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +2 -2
- data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +2 -2
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/lib/pulp_rpm_client.rb +0 -1
- metadata +2 -6
- data/docs/NullEnum.md +0 -16
- data/lib/pulp_rpm_client/models/null_enum.rb +0 -35
- data/spec/models/null_enum_spec.rb +0 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adbe0b3e052a487dba48f15b2aa699ebbe29817230e987973665895f5605e5ef
|
4
|
+
data.tar.gz: 9d6635f64d8a377dda389bae5dd0013a97bec2fb2cb7ab4866cee4a2d2944928
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89d7de516f80cd4b8a5741bdedf4a7b0b1b012a849d24639523899eb4f8427f469715d57f8a7d962b6bc364c67d7eca2c01f5421e87d3bb13ac724e9b2cb0d89
|
7
|
+
data.tar.gz: 5c70670a0e4a3b8ef4facbc33b13c4802a92d56c98c25883dcbb9865ceb63e9465dbff8beac18b8b24dba5ef19c948321854f176bf228b647cf5ebf32aa42ba0
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: v3
|
10
|
-
- Package version: 3.14.
|
10
|
+
- Package version: 3.14.2
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_rpm_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_rpm_client-3.14.
|
27
|
+
gem install ./pulp_rpm_client-3.14.2.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_rpm_client-3.14.
|
30
|
+
(for development, run `gem install --dev ./pulp_rpm_client-3.14.2.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_rpm_client', '~> 3.14.
|
36
|
+
gem 'pulp_rpm_client', '~> 3.14.2'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -158,7 +158,6 @@ Class | Method | HTTP request | Description
|
|
158
158
|
- [PulpRpmClient::Copy](docs/Copy.md)
|
159
159
|
- [PulpRpmClient::ImageResponse](docs/ImageResponse.md)
|
160
160
|
- [PulpRpmClient::MetadataChecksumTypeEnum](docs/MetadataChecksumTypeEnum.md)
|
161
|
-
- [PulpRpmClient::NullEnum](docs/NullEnum.md)
|
162
161
|
- [PulpRpmClient::PackageChecksumTypeEnum](docs/PackageChecksumTypeEnum.md)
|
163
162
|
- [PulpRpmClient::PaginatedRepositoryVersionResponseList](docs/PaginatedRepositoryVersionResponseList.md)
|
164
163
|
- [PulpRpmClient::PaginatedrpmDistributionTreeResponseList](docs/PaginatedrpmDistributionTreeResponseList.md)
|
@@ -12,8 +12,8 @@ Name | Type | Description | Notes
|
|
12
12
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
13
13
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
14
14
|
**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]
|
15
|
-
**metadata_checksum_type** | [**
|
16
|
-
**package_checksum_type** | [**
|
15
|
+
**metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. | [optional]
|
16
|
+
**package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
|
17
17
|
**gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
|
18
18
|
**repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
|
19
19
|
**sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
|
data/docs/RpmRpmRepository.md
CHANGED
@@ -12,8 +12,8 @@ Name | Type | Description | Notes
|
|
12
12
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
13
13
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
14
14
|
**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]
|
15
|
-
**metadata_checksum_type** | [**
|
16
|
-
**package_checksum_type** | [**
|
15
|
+
**metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. | [optional]
|
16
|
+
**package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
|
17
17
|
**gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
|
18
18
|
**repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
|
19
19
|
**sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
|
@@ -16,8 +16,8 @@ Name | Type | Description | Notes
|
|
16
16
|
**autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional] [default to false]
|
17
17
|
**metadata_signing_service** | **String** | A reference to an associated signing service. | [optional]
|
18
18
|
**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]
|
19
|
-
**metadata_checksum_type** | [**
|
20
|
-
**package_checksum_type** | [**
|
19
|
+
**metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. | [optional]
|
20
|
+
**package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
|
21
21
|
**gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
|
22
22
|
**repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
|
23
23
|
**sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
|
@@ -82,8 +82,8 @@ module PulpRpmClient
|
|
82
82
|
:'autopublish' => :'Boolean',
|
83
83
|
:'metadata_signing_service' => :'String',
|
84
84
|
:'retain_package_versions' => :'Integer',
|
85
|
-
:'metadata_checksum_type' => :'
|
86
|
-
:'package_checksum_type' => :'
|
85
|
+
:'metadata_checksum_type' => :'MetadataChecksumTypeEnum',
|
86
|
+
:'package_checksum_type' => :'PackageChecksumTypeEnum',
|
87
87
|
:'gpgcheck' => :'Integer',
|
88
88
|
:'repo_gpgcheck' => :'Integer',
|
89
89
|
:'sqlite_metadata' => :'Boolean'
|
@@ -82,8 +82,8 @@ module PulpRpmClient
|
|
82
82
|
:'autopublish' => :'Boolean',
|
83
83
|
:'metadata_signing_service' => :'String',
|
84
84
|
:'retain_package_versions' => :'Integer',
|
85
|
-
:'metadata_checksum_type' => :'
|
86
|
-
:'package_checksum_type' => :'
|
85
|
+
:'metadata_checksum_type' => :'MetadataChecksumTypeEnum',
|
86
|
+
:'package_checksum_type' => :'PackageChecksumTypeEnum',
|
87
87
|
:'gpgcheck' => :'Integer',
|
88
88
|
:'repo_gpgcheck' => :'Integer',
|
89
89
|
:'sqlite_metadata' => :'Boolean'
|
@@ -99,8 +99,8 @@ module PulpRpmClient
|
|
99
99
|
:'autopublish' => :'Boolean',
|
100
100
|
:'metadata_signing_service' => :'String',
|
101
101
|
:'retain_package_versions' => :'Integer',
|
102
|
-
:'metadata_checksum_type' => :'
|
103
|
-
:'package_checksum_type' => :'
|
102
|
+
:'metadata_checksum_type' => :'MetadataChecksumTypeEnum',
|
103
|
+
:'package_checksum_type' => :'PackageChecksumTypeEnum',
|
104
104
|
:'gpgcheck' => :'Integer',
|
105
105
|
:'repo_gpgcheck' => :'Integer',
|
106
106
|
:'sqlite_metadata' => :'Boolean'
|
data/lib/pulp_rpm_client.rb
CHANGED
@@ -26,7 +26,6 @@ require 'pulp_rpm_client/models/content_summary_response'
|
|
26
26
|
require 'pulp_rpm_client/models/copy'
|
27
27
|
require 'pulp_rpm_client/models/image_response'
|
28
28
|
require 'pulp_rpm_client/models/metadata_checksum_type_enum'
|
29
|
-
require 'pulp_rpm_client/models/null_enum'
|
30
29
|
require 'pulp_rpm_client/models/package_checksum_type_enum'
|
31
30
|
require 'pulp_rpm_client/models/paginated_repository_version_response_list'
|
32
31
|
require 'pulp_rpm_client/models/paginatedrpm_distribution_tree_response_list'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_rpm_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.14.
|
4
|
+
version: 3.14.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-08-
|
11
|
+
date: 2021-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -94,7 +94,6 @@ files:
|
|
94
94
|
- docs/DistributionsRpmApi.md
|
95
95
|
- docs/ImageResponse.md
|
96
96
|
- docs/MetadataChecksumTypeEnum.md
|
97
|
-
- docs/NullEnum.md
|
98
97
|
- docs/PackageChecksumTypeEnum.md
|
99
98
|
- docs/PaginatedRepositoryVersionResponseList.md
|
100
99
|
- docs/PaginatedrpmDistributionTreeResponseList.md
|
@@ -186,7 +185,6 @@ files:
|
|
186
185
|
- lib/pulp_rpm_client/models/copy.rb
|
187
186
|
- lib/pulp_rpm_client/models/image_response.rb
|
188
187
|
- lib/pulp_rpm_client/models/metadata_checksum_type_enum.rb
|
189
|
-
- lib/pulp_rpm_client/models/null_enum.rb
|
190
188
|
- lib/pulp_rpm_client/models/package_checksum_type_enum.rb
|
191
189
|
- lib/pulp_rpm_client/models/paginated_repository_version_response_list.rb
|
192
190
|
- lib/pulp_rpm_client/models/paginatedrpm_distribution_tree_response_list.rb
|
@@ -271,7 +269,6 @@ files:
|
|
271
269
|
- spec/models/copy_spec.rb
|
272
270
|
- spec/models/image_response_spec.rb
|
273
271
|
- spec/models/metadata_checksum_type_enum_spec.rb
|
274
|
-
- spec/models/null_enum_spec.rb
|
275
272
|
- spec/models/package_checksum_type_enum_spec.rb
|
276
273
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
277
274
|
- spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
|
@@ -400,7 +397,6 @@ test_files:
|
|
400
397
|
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
401
398
|
- spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
|
402
399
|
- spec/models/rpm_package_langpacks_response_spec.rb
|
403
|
-
- spec/models/null_enum_spec.rb
|
404
400
|
- spec/models/content_summary_response_spec.rb
|
405
401
|
- spec/models/async_operation_response_spec.rb
|
406
402
|
- spec/models/paginated_repository_version_response_list_spec.rb
|
data/docs/NullEnum.md
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# PulpRpmClient::NullEnum
|
2
|
-
|
3
|
-
## Properties
|
4
|
-
|
5
|
-
Name | Type | Description | Notes
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
|
8
|
-
## Code Sample
|
9
|
-
|
10
|
-
```ruby
|
11
|
-
require 'PulpRpmClient'
|
12
|
-
|
13
|
-
instance = PulpRpmClient::NullEnum.new()
|
14
|
-
```
|
15
|
-
|
16
|
-
|
@@ -1,35 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#Pulp 3 API
|
3
|
-
|
4
|
-
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
-
|
6
|
-
The version of the OpenAPI document: v3
|
7
|
-
Contact: pulp-list@redhat.com
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'date'
|
14
|
-
|
15
|
-
module PulpRpmClient
|
16
|
-
class NullEnum
|
17
|
-
NULL = "null".freeze
|
18
|
-
|
19
|
-
# Builds the enum from string
|
20
|
-
# @param [String] The enum value in the form of the string
|
21
|
-
# @return [String] The enum value
|
22
|
-
def self.build_from_hash(value)
|
23
|
-
new.build_from_hash(value)
|
24
|
-
end
|
25
|
-
|
26
|
-
# Builds the enum from string
|
27
|
-
# @param [String] The enum value in the form of the string
|
28
|
-
# @return [String] The enum value
|
29
|
-
def build_from_hash(value)
|
30
|
-
constantValues = NullEnum.constants.select { |c| NullEnum::const_get(c) == value }
|
31
|
-
raise "Invalid ENUM value #{value} for class #NullEnum" if constantValues.empty?
|
32
|
-
value
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
@@ -1,35 +0,0 @@
|
|
1
|
-
=begin
|
2
|
-
#Pulp 3 API
|
3
|
-
|
4
|
-
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
-
|
6
|
-
The version of the OpenAPI document: v3
|
7
|
-
Contact: pulp-list@redhat.com
|
8
|
-
Generated by: https://openapi-generator.tech
|
9
|
-
OpenAPI Generator version: 4.3.1
|
10
|
-
|
11
|
-
=end
|
12
|
-
|
13
|
-
require 'spec_helper'
|
14
|
-
require 'json'
|
15
|
-
require 'date'
|
16
|
-
|
17
|
-
# Unit tests for PulpRpmClient::NullEnum
|
18
|
-
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
-
# Please update as you see appropriate
|
20
|
-
describe 'NullEnum' do
|
21
|
-
before do
|
22
|
-
# run before each test
|
23
|
-
@instance = PulpRpmClient::NullEnum.new
|
24
|
-
end
|
25
|
-
|
26
|
-
after do
|
27
|
-
# run after each test
|
28
|
-
end
|
29
|
-
|
30
|
-
describe 'test an instance of NullEnum' do
|
31
|
-
it 'should create an instance of NullEnum' do
|
32
|
-
expect(@instance).to be_instance_of(PulpRpmClient::NullEnum)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|