pulp_rpm_client 3.14.6 → 3.14.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/docs/RpmRepositorySyncURL.md +3 -1
- data/docs/SyncPolicyEnum.md +16 -0
- data/lib/pulp_rpm_client/models/rpm_repository_sync_url.rb +14 -4
- data/lib/pulp_rpm_client/models/sync_policy_enum.rb +37 -0
- data/lib/pulp_rpm_client/version.rb +1 -1
- data/lib/pulp_rpm_client.rb +1 -0
- data/pulp_rpm_client.gemspec +1 -1
- data/spec/models/rpm_repository_sync_url_spec.rb +6 -0
- data/spec/models/sync_policy_enum_spec.rb +35 -0
- metadata +75 -65
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f7a0b7eea8799dc3fe9afa6273affb97e1065f17a06359ae382ff4bf8f863ab
|
4
|
+
data.tar.gz: 679ec2f406886ed2bf85a8f298a076c348d3038037c6df1fdc84fd39fdf7779f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abb81d4f97c0023f5e6ebdd5d28abc29ff3653bdb494dd42a7f36c1107bf289e3e298486e90fdbb817026f48d3a796d6d5bd6df0849045e3b284aecd163e7d1d
|
7
|
+
data.tar.gz: 444a15ccca64ec8fa4bc9ba9648c60625edb1d2b06f929e8ac1ae09a80bdc3002ab66cf9fa1e9d1346ec23473ba6164ecf28930ebac82eac34fede39cf25b1fd
|
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.10
|
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.10.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.10.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.10'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -211,6 +211,7 @@ Class | Method | HTTP request | Description
|
|
211
211
|
- [PulpRpmClient::RpmUpdateRecord](docs/RpmUpdateRecord.md)
|
212
212
|
- [PulpRpmClient::RpmUpdateRecordResponse](docs/RpmUpdateRecordResponse.md)
|
213
213
|
- [PulpRpmClient::SkipTypesEnum](docs/SkipTypesEnum.md)
|
214
|
+
- [PulpRpmClient::SyncPolicyEnum](docs/SyncPolicyEnum.md)
|
214
215
|
- [PulpRpmClient::VariantResponse](docs/VariantResponse.md)
|
215
216
|
|
216
217
|
|
@@ -5,7 +5,8 @@
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
7
|
**remote** | **String** | A remote to sync from. This will override a remote set on repository. | [optional]
|
8
|
-
**mirror** | **Boolean** | If ``True``,
|
8
|
+
**mirror** | **Boolean** | DEPRECATED: If ``True``, ``sync_policy`` will default to 'mirror_complete' instead of 'additive'. | [optional]
|
9
|
+
**sync_policy** | [**SyncPolicyEnum**](SyncPolicyEnum.md) | Options: 'additive', 'mirror_complete', 'mirror_content_only'. Default: 'additive'. Modifies how the sync is performed. 'mirror_complete' will clone the original metadata and create an automatic publication from it, but comes with some limitations and does not work for certain repositories. 'mirror_content_only' will change the repository contents to match the remote but the metadata will be regenerated and will not be bit-for-bit identical. 'additive' will retain the existing contents of the repository and add the contents of the repository being synced. | [optional]
|
9
10
|
**skip_types** | [**Array<SkipTypesEnum>**](SkipTypesEnum.md) | List of content types to skip during sync. | [optional]
|
10
11
|
**optimize** | **Boolean** | Whether or not to optimize sync. | [optional] [default to true]
|
11
12
|
|
@@ -16,6 +17,7 @@ require 'PulpRpmClient'
|
|
16
17
|
|
17
18
|
instance = PulpRpmClient::RpmRepositorySyncURL.new(remote: null,
|
18
19
|
mirror: null,
|
20
|
+
sync_policy: null,
|
19
21
|
skip_types: null,
|
20
22
|
optimize: null)
|
21
23
|
```
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# PulpRpmClient::SyncPolicyEnum
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
Name | Type | Description | Notes
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
|
8
|
+
## Code Sample
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'PulpRpmClient'
|
12
|
+
|
13
|
+
instance = PulpRpmClient::SyncPolicyEnum.new()
|
14
|
+
```
|
15
|
+
|
16
|
+
|
@@ -18,9 +18,12 @@ module PulpRpmClient
|
|
18
18
|
# A remote to sync from. This will override a remote set on repository.
|
19
19
|
attr_accessor :remote
|
20
20
|
|
21
|
-
# If ``True``,
|
21
|
+
# DEPRECATED: If ``True``, ``sync_policy`` will default to 'mirror_complete' instead of 'additive'.
|
22
22
|
attr_accessor :mirror
|
23
23
|
|
24
|
+
# Options: 'additive', 'mirror_complete', 'mirror_content_only'. Default: 'additive'. Modifies how the sync is performed. 'mirror_complete' will clone the original metadata and create an automatic publication from it, but comes with some limitations and does not work for certain repositories. 'mirror_content_only' will change the repository contents to match the remote but the metadata will be regenerated and will not be bit-for-bit identical. 'additive' will retain the existing contents of the repository and add the contents of the repository being synced.
|
25
|
+
attr_accessor :sync_policy
|
26
|
+
|
24
27
|
# List of content types to skip during sync.
|
25
28
|
attr_accessor :skip_types
|
26
29
|
|
@@ -32,6 +35,7 @@ module PulpRpmClient
|
|
32
35
|
{
|
33
36
|
:'remote' => :'remote',
|
34
37
|
:'mirror' => :'mirror',
|
38
|
+
:'sync_policy' => :'sync_policy',
|
35
39
|
:'skip_types' => :'skip_types',
|
36
40
|
:'optimize' => :'optimize'
|
37
41
|
}
|
@@ -42,6 +46,7 @@ module PulpRpmClient
|
|
42
46
|
{
|
43
47
|
:'remote' => :'String',
|
44
48
|
:'mirror' => :'Boolean',
|
49
|
+
:'sync_policy' => :'SyncPolicyEnum',
|
45
50
|
:'skip_types' => :'Array<SkipTypesEnum>',
|
46
51
|
:'optimize' => :'Boolean'
|
47
52
|
}
|
@@ -50,6 +55,8 @@ module PulpRpmClient
|
|
50
55
|
# List of attributes with nullable: true
|
51
56
|
def self.openapi_nullable
|
52
57
|
Set.new([
|
58
|
+
:'mirror',
|
59
|
+
:'sync_policy',
|
53
60
|
])
|
54
61
|
end
|
55
62
|
|
@@ -74,8 +81,10 @@ module PulpRpmClient
|
|
74
81
|
|
75
82
|
if attributes.key?(:'mirror')
|
76
83
|
self.mirror = attributes[:'mirror']
|
77
|
-
|
78
|
-
|
84
|
+
end
|
85
|
+
|
86
|
+
if attributes.key?(:'sync_policy')
|
87
|
+
self.sync_policy = attributes[:'sync_policy']
|
79
88
|
end
|
80
89
|
|
81
90
|
if attributes.key?(:'skip_types')
|
@@ -111,6 +120,7 @@ module PulpRpmClient
|
|
111
120
|
self.class == o.class &&
|
112
121
|
remote == o.remote &&
|
113
122
|
mirror == o.mirror &&
|
123
|
+
sync_policy == o.sync_policy &&
|
114
124
|
skip_types == o.skip_types &&
|
115
125
|
optimize == o.optimize
|
116
126
|
end
|
@@ -124,7 +134,7 @@ module PulpRpmClient
|
|
124
134
|
# Calculates hash code according to all attributes.
|
125
135
|
# @return [Integer] Hash code
|
126
136
|
def hash
|
127
|
-
[remote, mirror, skip_types, optimize].hash
|
137
|
+
[remote, mirror, sync_policy, skip_types, optimize].hash
|
128
138
|
end
|
129
139
|
|
130
140
|
# Builds the object from hash
|
@@ -0,0 +1,37 @@
|
|
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 SyncPolicyEnum
|
17
|
+
ADDITIVE = "additive".freeze
|
18
|
+
MIRROR_COMPLETE = "mirror_complete".freeze
|
19
|
+
MIRROR_CONTENT_ONLY = "mirror_content_only".freeze
|
20
|
+
|
21
|
+
# Builds the enum from string
|
22
|
+
# @param [String] The enum value in the form of the string
|
23
|
+
# @return [String] The enum value
|
24
|
+
def self.build_from_hash(value)
|
25
|
+
new.build_from_hash(value)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Builds the enum from string
|
29
|
+
# @param [String] The enum value in the form of the string
|
30
|
+
# @return [String] The enum value
|
31
|
+
def build_from_hash(value)
|
32
|
+
constantValues = SyncPolicyEnum.constants.select { |c| SyncPolicyEnum::const_get(c) == value }
|
33
|
+
raise "Invalid ENUM value #{value} for class #SyncPolicyEnum" if constantValues.empty?
|
34
|
+
value
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
data/lib/pulp_rpm_client.rb
CHANGED
@@ -79,6 +79,7 @@ require 'pulp_rpm_client/models/rpm_update_collection_response'
|
|
79
79
|
require 'pulp_rpm_client/models/rpm_update_record'
|
80
80
|
require 'pulp_rpm_client/models/rpm_update_record_response'
|
81
81
|
require 'pulp_rpm_client/models/skip_types_enum'
|
82
|
+
require 'pulp_rpm_client/models/sync_policy_enum'
|
82
83
|
require 'pulp_rpm_client/models/variant_response'
|
83
84
|
|
84
85
|
# APIs
|
data/pulp_rpm_client.gemspec
CHANGED
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
27
27
|
s.license = 'GPL-2.0+'
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
29
29
|
|
30
|
-
s.add_runtime_dependency 'faraday', '
|
30
|
+
s.add_runtime_dependency 'faraday', '~> 1.0', '< 1.9.0'
|
31
31
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
32
32
|
|
33
33
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
@@ -44,6 +44,12 @@ describe 'RpmRepositorySyncURL' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "sync_policy"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
47
53
|
describe 'test attribute "skip_types"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,35 @@
|
|
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::SyncPolicyEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'SyncPolicyEnum' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = PulpRpmClient::SyncPolicyEnum.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of SyncPolicyEnum' do
|
31
|
+
it 'should create an instance of SyncPolicyEnum' do
|
32
|
+
expect(@instance).to be_instance_of(PulpRpmClient::SyncPolicyEnum)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '1.0'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.9.0
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 1.9.0
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: json
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -153,6 +159,7 @@ files:
|
|
153
159
|
- docs/RpmUpdateRecord.md
|
154
160
|
- docs/RpmUpdateRecordResponse.md
|
155
161
|
- docs/SkipTypesEnum.md
|
162
|
+
- docs/SyncPolicyEnum.md
|
156
163
|
- docs/VariantResponse.md
|
157
164
|
- git_push.sh
|
158
165
|
- lib/pulp_rpm_client.rb
|
@@ -238,6 +245,7 @@ files:
|
|
238
245
|
- lib/pulp_rpm_client/models/rpm_update_record.rb
|
239
246
|
- lib/pulp_rpm_client/models/rpm_update_record_response.rb
|
240
247
|
- lib/pulp_rpm_client/models/skip_types_enum.rb
|
248
|
+
- lib/pulp_rpm_client/models/sync_policy_enum.rb
|
241
249
|
- lib/pulp_rpm_client/models/variant_response.rb
|
242
250
|
- lib/pulp_rpm_client/version.rb
|
243
251
|
- pulp_rpm_client.gemspec
|
@@ -322,6 +330,7 @@ files:
|
|
322
330
|
- spec/models/rpm_update_record_response_spec.rb
|
323
331
|
- spec/models/rpm_update_record_spec.rb
|
324
332
|
- spec/models/skip_types_enum_spec.rb
|
333
|
+
- spec/models/sync_policy_enum_spec.rb
|
325
334
|
- spec/models/variant_response_spec.rb
|
326
335
|
- spec/spec_helper.rb
|
327
336
|
homepage: https://openapi-generator.tech
|
@@ -348,86 +357,87 @@ signing_key:
|
|
348
357
|
specification_version: 4
|
349
358
|
summary: Pulp 3 API Ruby Gem
|
350
359
|
test_files:
|
351
|
-
- spec/api/
|
352
|
-
- spec/api/content_modulemds_api_spec.rb
|
353
|
-
- spec/api/repositories_rpm_api_spec.rb
|
354
|
-
- spec/api/content_modulemd_defaults_api_spec.rb
|
355
|
-
- spec/api/remotes_uln_api_spec.rb
|
356
|
-
- spec/api/distributions_rpm_api_spec.rb
|
357
|
-
- spec/api/content_repo_metadata_files_api_spec.rb
|
358
|
-
- spec/api/content_packages_api_spec.rb
|
359
|
-
- spec/api/remotes_rpm_api_spec.rb
|
360
|
+
- spec/api/rpm_copy_api_spec.rb
|
360
361
|
- spec/api/content_packagecategories_api_spec.rb
|
362
|
+
- spec/api/distributions_rpm_api_spec.rb
|
361
363
|
- spec/api/publications_rpm_api_spec.rb
|
362
364
|
- spec/api/content_packagegroups_api_spec.rb
|
363
|
-
- spec/api/rpm_copy_api_spec.rb
|
364
365
|
- spec/api/repositories_rpm_versions_api_spec.rb
|
365
|
-
- spec/api/
|
366
|
+
- spec/api/content_packagelangpacks_api_spec.rb
|
366
367
|
- spec/api/content_packageenvironments_api_spec.rb
|
368
|
+
- spec/api/content_distribution_trees_api_spec.rb
|
369
|
+
- spec/api/remotes_rpm_api_spec.rb
|
370
|
+
- spec/api/content_repo_metadata_files_api_spec.rb
|
371
|
+
- spec/api/content_modulemds_api_spec.rb
|
372
|
+
- spec/api/repositories_rpm_api_spec.rb
|
373
|
+
- spec/api/remotes_uln_api_spec.rb
|
374
|
+
- spec/api/content_packages_api_spec.rb
|
375
|
+
- spec/api/content_modulemd_defaults_api_spec.rb
|
367
376
|
- spec/api/content_advisories_api_spec.rb
|
368
377
|
- spec/api_client_spec.rb
|
369
378
|
- spec/configuration_spec.rb
|
370
|
-
- spec/models/
|
379
|
+
- spec/models/rpm_package_group_response_spec.rb
|
380
|
+
- spec/models/paginatedrpm_package_group_response_list_spec.rb
|
381
|
+
- spec/models/rpm_rpm_repository_spec.rb
|
382
|
+
- spec/models/rpm_rpm_repository_response_spec.rb
|
383
|
+
- spec/models/rpm_rpm_remote_response_spec.rb
|
371
384
|
- spec/models/paginatedrpm_package_langpacks_response_list_spec.rb
|
372
|
-
- spec/models/rpm_update_record_spec.rb
|
373
|
-
- spec/models/rpm_package_spec.rb
|
374
|
-
- spec/models/checksum_response_spec.rb
|
375
|
-
- spec/models/rpm_modulemd_spec.rb
|
376
385
|
- spec/models/rpm_rpm_distribution_response_spec.rb
|
377
|
-
- spec/models/rpm_update_collection_spec.rb
|
378
|
-
- spec/models/paginatedrpm_package_response_list_spec.rb
|
379
386
|
- spec/models/rpm_rpm_distribution_spec.rb
|
380
|
-
- spec/models/
|
381
|
-
- spec/models/
|
382
|
-
- spec/models/
|
383
|
-
- spec/models/
|
384
|
-
- spec/models/
|
387
|
+
- spec/models/patchedrpm_rpm_remote_spec.rb
|
388
|
+
- spec/models/patchedrpm_uln_remote_spec.rb
|
389
|
+
- spec/models/content_summary_response_spec.rb
|
390
|
+
- spec/models/paginatedrpm_package_response_list_spec.rb
|
391
|
+
- spec/models/rpm_rpm_publication_spec.rb
|
392
|
+
- spec/models/artifact_response_spec.rb
|
385
393
|
- spec/models/package_checksum_type_enum_spec.rb
|
386
|
-
- spec/models/
|
394
|
+
- spec/models/variant_response_spec.rb
|
395
|
+
- spec/models/rpm_repository_sync_url_spec.rb
|
387
396
|
- spec/models/rpm_modulemd_defaults_response_spec.rb
|
388
|
-
- spec/models/
|
389
|
-
- spec/models/patchedrpm_rpm_repository_spec.rb
|
390
|
-
- spec/models/rpm_uln_remote_response_spec.rb
|
391
|
-
- spec/models/content_summary_response_spec.rb
|
392
|
-
- spec/models/patchedrpm_rpm_distribution_spec.rb
|
393
|
-
- spec/models/paginatedrpm_package_group_response_list_spec.rb
|
394
|
-
- spec/models/rpm_modulemd_defaults_spec.rb
|
397
|
+
- spec/models/sync_policy_enum_spec.rb
|
395
398
|
- spec/models/rpm_update_record_response_spec.rb
|
396
|
-
- spec/models/
|
397
|
-
- spec/models/
|
398
|
-
- spec/models/
|
399
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
400
|
+
- spec/models/addon_response_spec.rb
|
401
|
+
- spec/models/rpm_uln_remote_response_spec.rb
|
402
|
+
- spec/models/repository_version_spec.rb
|
403
|
+
- spec/models/image_response_spec.rb
|
404
|
+
- spec/models/paginatedrpm_rpm_publication_response_list_spec.rb
|
405
|
+
- spec/models/rpm_rpm_remote_spec.rb
|
399
406
|
- spec/models/paginatedrpm_repo_metadata_file_response_list_spec.rb
|
400
|
-
- spec/models/
|
401
|
-
- spec/models/
|
402
|
-
- spec/models/
|
403
|
-
- spec/models/rpm_update_collection_response_spec.rb
|
407
|
+
- spec/models/metadata_checksum_type_enum_spec.rb
|
408
|
+
- spec/models/checksum_response_spec.rb
|
409
|
+
- spec/models/rpm_modulemd_spec.rb
|
404
410
|
- spec/models/skip_types_enum_spec.rb
|
405
|
-
- spec/models/
|
406
|
-
- spec/models/rpm_uln_remote_spec.rb
|
407
|
-
- spec/models/paginatedrpm_modulemd_response_list_spec.rb
|
408
|
-
- spec/models/rpm_distribution_tree_response_spec.rb
|
409
|
-
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
410
|
-
- spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
|
411
|
-
- spec/models/rpm_modulemd_response_spec.rb
|
412
|
-
- spec/models/artifact_response_spec.rb
|
411
|
+
- spec/models/policy_enum_spec.rb
|
413
412
|
- spec/models/paginatedrpm_update_record_response_list_spec.rb
|
414
|
-
- spec/models/
|
413
|
+
- spec/models/rpm_modulemd_response_spec.rb
|
414
|
+
- spec/models/rpm_package_spec.rb
|
415
|
+
- spec/models/content_summary_spec.rb
|
415
416
|
- spec/models/rpm_rpm_publication_response_spec.rb
|
416
417
|
- spec/models/paginatedrpm_package_environment_response_list_spec.rb
|
417
|
-
- spec/models/
|
418
|
-
- spec/models/
|
419
|
-
- spec/models/
|
420
|
-
- spec/models/repository_version_spec.rb
|
421
|
-
- spec/models/rpm_rpm_remote_response_spec.rb
|
422
|
-
- spec/models/rpm_rpm_remote_spec.rb
|
423
|
-
- spec/models/paginatedrpm_uln_remote_response_list_spec.rb
|
418
|
+
- spec/models/paginatedrpm_distribution_tree_response_list_spec.rb
|
419
|
+
- spec/models/paginatedrpm_rpm_distribution_response_list_spec.rb
|
420
|
+
- spec/models/copy_spec.rb
|
424
421
|
- spec/models/rpm_package_environment_response_spec.rb
|
425
|
-
- spec/models/
|
426
|
-
- spec/models/
|
427
|
-
- spec/models/
|
422
|
+
- spec/models/paginatedrpm_modulemd_response_list_spec.rb
|
423
|
+
- spec/models/rpm_update_collection_spec.rb
|
424
|
+
- spec/models/async_operation_response_spec.rb
|
425
|
+
- spec/models/repository_version_response_spec.rb
|
426
|
+
- spec/models/paginatedrpm_rpm_remote_response_list_spec.rb
|
427
|
+
- spec/models/paginatedrpm_rpm_repository_response_list_spec.rb
|
428
|
+
- spec/models/rpm_package_category_response_spec.rb
|
429
|
+
- spec/models/rpm_uln_remote_spec.rb
|
430
|
+
- spec/models/rpm_update_record_spec.rb
|
431
|
+
- spec/models/patchedrpm_rpm_distribution_spec.rb
|
432
|
+
- spec/models/patchedrpm_rpm_repository_spec.rb
|
428
433
|
- spec/models/rpm_package_response_spec.rb
|
429
|
-
- spec/models/
|
434
|
+
- spec/models/rpm_repo_metadata_file_response_spec.rb
|
435
|
+
- spec/models/rpm_modulemd_defaults_spec.rb
|
436
|
+
- spec/models/paginatedrpm_modulemd_defaults_response_list_spec.rb
|
437
|
+
- spec/models/paginatedrpm_package_category_response_list_spec.rb
|
430
438
|
- spec/models/rpm_package_langpacks_response_spec.rb
|
439
|
+
- spec/models/rpm_update_collection_response_spec.rb
|
431
440
|
- spec/models/repository_add_remove_content_spec.rb
|
432
|
-
- spec/models/
|
441
|
+
- spec/models/rpm_distribution_tree_response_spec.rb
|
442
|
+
- spec/models/paginatedrpm_uln_remote_response_list_spec.rb
|
433
443
|
- spec/spec_helper.rb
|