pulp_deb_client 2.21.0 → 2.21.1
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 -5
- data/docs/ContentGenericContentsApi.md +2 -2
- data/docs/ContentInstallerPackagesApi.md +2 -2
- data/docs/ContentPackagesApi.md +2 -2
- data/docs/DebAptDistribution.md +2 -0
- data/docs/DebAptDistributionResponse.md +2 -0
- data/docs/DebGenericContent.md +3 -3
- data/docs/DebInstallerFileIndex.md +3 -1
- data/docs/DebInstallerPackage.md +3 -3
- data/docs/DebPackage.md +3 -3
- data/docs/DebPackageIndex.md +3 -1
- data/docs/DebPackageReleaseComponent.md +3 -1
- data/docs/DebRelease.md +3 -1
- data/docs/DebReleaseArchitecture.md +3 -1
- data/docs/DebReleaseComponent.md +3 -1
- data/docs/DebReleaseFile.md +3 -1
- data/docs/DistributionsAptApi.md +2 -2
- data/docs/PatcheddebAptDistribution.md +2 -0
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +3 -3
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +3 -3
- data/lib/pulp_deb_client/api/content_packages_api.rb +3 -3
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +3 -3
- data/lib/pulp_deb_client/models/deb_apt_distribution.rb +13 -1
- data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +13 -1
- data/lib/pulp_deb_client/models/deb_generic_content.rb +11 -11
- data/lib/pulp_deb_client/models/deb_installer_file_index.rb +11 -1
- data/lib/pulp_deb_client/models/deb_installer_package.rb +11 -11
- data/lib/pulp_deb_client/models/deb_package.rb +11 -11
- data/lib/pulp_deb_client/models/deb_package_index.rb +11 -1
- data/lib/pulp_deb_client/models/deb_package_release_component.rb +11 -1
- data/lib/pulp_deb_client/models/deb_release.rb +11 -1
- data/lib/pulp_deb_client/models/deb_release_architecture.rb +11 -1
- data/lib/pulp_deb_client/models/deb_release_component.rb +11 -1
- data/lib/pulp_deb_client/models/deb_release_file.rb +11 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +13 -1
- data/lib/pulp_deb_client/version.rb +1 -1
- data/spec/api/content_generic_contents_api_spec.rb +1 -1
- data/spec/api/content_installer_packages_api_spec.rb +1 -1
- data/spec/api/content_packages_api_spec.rb +1 -1
- data/spec/api/distributions_apt_api_spec.rb +1 -1
- data/spec/models/deb_apt_distribution_response_spec.rb +6 -0
- data/spec/models/deb_apt_distribution_spec.rb +6 -0
- data/spec/models/deb_generic_content_spec.rb +4 -4
- data/spec/models/deb_installer_file_index_spec.rb +6 -0
- data/spec/models/deb_installer_package_spec.rb +4 -4
- data/spec/models/deb_package_index_spec.rb +6 -0
- data/spec/models/deb_package_release_component_spec.rb +6 -0
- data/spec/models/deb_package_spec.rb +4 -4
- data/spec/models/deb_release_architecture_spec.rb +6 -0
- data/spec/models/deb_release_component_spec.rb +6 -0
- data/spec/models/deb_release_file_spec.rb +6 -0
- data/spec/models/deb_release_spec.rb +6 -0
- data/spec/models/patcheddeb_apt_distribution_spec.rb +6 -0
- metadata +59 -59
@@ -21,6 +21,9 @@ module PulpDebClient
|
|
21
21
|
# An optional content-guard.
|
22
22
|
attr_accessor :content_guard
|
23
23
|
|
24
|
+
# Whether this distribution should be shown in the content app.
|
25
|
+
attr_accessor :hidden
|
26
|
+
|
24
27
|
attr_accessor :pulp_labels
|
25
28
|
|
26
29
|
# A unique name. Ex, `rawhide` and `stable`.
|
@@ -37,6 +40,7 @@ module PulpDebClient
|
|
37
40
|
{
|
38
41
|
:'base_path' => :'base_path',
|
39
42
|
:'content_guard' => :'content_guard',
|
43
|
+
:'hidden' => :'hidden',
|
40
44
|
:'pulp_labels' => :'pulp_labels',
|
41
45
|
:'name' => :'name',
|
42
46
|
:'repository' => :'repository',
|
@@ -49,6 +53,7 @@ module PulpDebClient
|
|
49
53
|
{
|
50
54
|
:'base_path' => :'String',
|
51
55
|
:'content_guard' => :'String',
|
56
|
+
:'hidden' => :'Boolean',
|
52
57
|
:'pulp_labels' => :'Hash<String, String>',
|
53
58
|
:'name' => :'String',
|
54
59
|
:'repository' => :'String',
|
@@ -88,6 +93,12 @@ module PulpDebClient
|
|
88
93
|
self.content_guard = attributes[:'content_guard']
|
89
94
|
end
|
90
95
|
|
96
|
+
if attributes.key?(:'hidden')
|
97
|
+
self.hidden = attributes[:'hidden']
|
98
|
+
else
|
99
|
+
self.hidden = false
|
100
|
+
end
|
101
|
+
|
91
102
|
if attributes.key?(:'pulp_labels')
|
92
103
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
93
104
|
self.pulp_labels = value
|
@@ -157,6 +168,7 @@ module PulpDebClient
|
|
157
168
|
self.class == o.class &&
|
158
169
|
base_path == o.base_path &&
|
159
170
|
content_guard == o.content_guard &&
|
171
|
+
hidden == o.hidden &&
|
160
172
|
pulp_labels == o.pulp_labels &&
|
161
173
|
name == o.name &&
|
162
174
|
repository == o.repository &&
|
@@ -172,7 +184,7 @@ module PulpDebClient
|
|
172
184
|
# Calculates hash code according to all attributes.
|
173
185
|
# @return [Integer] Hash code
|
174
186
|
def hash
|
175
|
-
[base_path, content_guard, pulp_labels, name, repository, publication].hash
|
187
|
+
[base_path, content_guard, hidden, pulp_labels, name, repository, publication].hash
|
176
188
|
end
|
177
189
|
|
178
190
|
# Builds the object from hash
|
@@ -37,9 +37,9 @@ describe 'ContentGenericContentsApi' do
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param relative_path Path where the artifact is located relative to distributions base_path
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
40
41
|
# @option opts [String] :artifact Artifact file representing the physical content
|
41
42
|
# @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
|
42
|
-
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
43
43
|
# @option opts [String] :upload An uncommitted upload that may be turned into the artifact of the content unit.
|
44
44
|
# @return [AsyncOperationResponse]
|
45
45
|
describe 'create test' do
|
@@ -36,10 +36,10 @@ describe 'ContentInstallerPackagesApi' do
|
|
36
36
|
# Create an installer package
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
39
40
|
# @option opts [String] :artifact Artifact file representing the physical content
|
40
41
|
# @option opts [String] :relative_path Path where the artifact is located relative to distributions base_path
|
41
42
|
# @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
|
42
|
-
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
43
43
|
# @option opts [String] :upload An uncommitted upload that may be turned into the artifact of the content unit.
|
44
44
|
# @return [AsyncOperationResponse]
|
45
45
|
describe 'create test' do
|
@@ -36,10 +36,10 @@ describe 'ContentPackagesApi' do
|
|
36
36
|
# Create a package
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
39
40
|
# @option opts [String] :artifact Artifact file representing the physical content
|
40
41
|
# @option opts [String] :relative_path Path where the artifact is located relative to distributions base_path
|
41
42
|
# @option opts [File] :file An uploaded file that may be turned into the artifact of the content unit.
|
42
|
-
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
43
43
|
# @option opts [String] :upload An uncommitted upload that may be turned into the artifact of the content unit.
|
44
44
|
# @option opts [String] :distribution Name of the distribution.
|
45
45
|
# @option opts [String] :component Name of the component.
|
@@ -71,7 +71,7 @@ describe 'DistributionsAptApi' do
|
|
71
71
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
72
72
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
73
73
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
74
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
74
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `base_path` - Base path * `-base_path` - Base path (descending) * `hidden` - Hidden * `-hidden` - Hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
75
75
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
76
76
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
77
77
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
@@ -62,6 +62,12 @@ describe 'DebAptDistributionResponse' do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'test attribute "hidden"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
65
71
|
describe 'test attribute "pulp_labels"' do
|
66
72
|
it 'should work' do
|
67
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +44,12 @@ describe 'DebAptDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "hidden"' 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 "pulp_labels"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,25 +32,25 @@ describe 'DebGenericContent' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebGenericContent)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "repository"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "artifact"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "relative_path"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "file"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,6 +32,12 @@ describe 'DebInstallerFileIndex' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebInstallerFileIndex)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "artifacts"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,25 +32,25 @@ describe 'DebInstallerPackage' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebInstallerPackage)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "repository"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "artifact"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "relative_path"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "file"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,6 +32,12 @@ describe 'DebPackageIndex' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebPackageIndex)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "artifacts"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'DebPackageReleaseComponent' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebPackageReleaseComponent)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "package"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,25 +32,25 @@ describe 'DebPackage' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebPackage)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "repository"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "artifact"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "relative_path"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "file"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
@@ -32,6 +32,12 @@ describe 'DebReleaseArchitecture' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebReleaseArchitecture)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "architecture"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'DebReleaseComponent' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebReleaseComponent)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "component"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'DebReleaseFile' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebReleaseFile)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "artifacts"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -32,6 +32,12 @@ describe 'DebRelease' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpDebClient::DebRelease)
|
33
33
|
end
|
34
34
|
end
|
35
|
+
describe 'test attribute "repository"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
35
41
|
describe 'test attribute "codename"' do
|
36
42
|
it 'should work' do
|
37
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -44,6 +44,12 @@ describe 'PatcheddebAptDistribution' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
+
describe 'test attribute "hidden"' 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 "pulp_labels"' do
|
48
54
|
it 'should work' do
|
49
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_deb_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.21.
|
4
|
+
version: 2.21.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -338,81 +338,81 @@ signing_key:
|
|
338
338
|
specification_version: 4
|
339
339
|
summary: Pulp 3 API Ruby Gem
|
340
340
|
test_files:
|
341
|
-
- spec/api/
|
341
|
+
- spec/api/content_package_indices_api_spec.rb
|
342
342
|
- spec/api/content_package_release_components_api_spec.rb
|
343
|
+
- spec/api/content_release_components_api_spec.rb
|
344
|
+
- spec/api/publications_verbatim_api_spec.rb
|
345
|
+
- spec/api/deb_copy_api_spec.rb
|
346
|
+
- spec/api/publications_apt_api_spec.rb
|
347
|
+
- spec/api/content_installer_packages_api_spec.rb
|
343
348
|
- spec/api/content_releases_api_spec.rb
|
349
|
+
- spec/api/repositories_apt_versions_api_spec.rb
|
344
350
|
- spec/api/content_installer_file_indices_api_spec.rb
|
345
|
-
- spec/api/remotes_apt_api_spec.rb
|
346
|
-
- spec/api/content_packages_api_spec.rb
|
347
|
-
- spec/api/content_installer_packages_api_spec.rb
|
348
351
|
- spec/api/repositories_apt_api_spec.rb
|
349
|
-
- spec/api/content_package_indices_api_spec.rb
|
350
|
-
- spec/api/publications_verbatim_api_spec.rb
|
351
|
-
- spec/api/content_release_files_api_spec.rb
|
352
|
-
- spec/api/content_release_components_api_spec.rb
|
353
|
-
- spec/api/content_generic_contents_api_spec.rb
|
354
|
-
- spec/api/repositories_apt_versions_api_spec.rb
|
355
352
|
- spec/api/distributions_apt_api_spec.rb
|
356
|
-
- spec/api/deb_copy_api_spec.rb
|
357
353
|
- spec/api/content_release_architectures_api_spec.rb
|
354
|
+
- spec/api/content_packages_api_spec.rb
|
355
|
+
- spec/api/remotes_apt_api_spec.rb
|
356
|
+
- spec/api/content_generic_contents_api_spec.rb
|
357
|
+
- spec/api/content_release_files_api_spec.rb
|
358
358
|
- spec/api_client_spec.rb
|
359
359
|
- spec/configuration_spec.rb
|
360
|
-
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
361
|
-
- spec/models/paginateddeb_apt_distribution_response_list_spec.rb
|
362
|
-
- spec/models/content_summary_response_spec.rb
|
363
|
-
- spec/models/deb_installer_file_index_spec.rb
|
364
|
-
- spec/models/paginateddeb_package_index_response_list_spec.rb
|
365
|
-
- spec/models/deb_release_file_response_spec.rb
|
366
|
-
- spec/models/deb_installer_package_response_spec.rb
|
367
360
|
- spec/models/deb_release_response_spec.rb
|
368
|
-
- spec/models/
|
361
|
+
- spec/models/deb_apt_remote_response_hidden_fields_spec.rb
|
362
|
+
- spec/models/deb_release_file_response_spec.rb
|
363
|
+
- spec/models/deb_apt_remote_spec.rb
|
364
|
+
- spec/models/repair_spec.rb
|
365
|
+
- spec/models/paginateddeb_release_file_response_list_spec.rb
|
366
|
+
- spec/models/paginateddeb_verbatim_publication_response_list_spec.rb
|
367
|
+
- spec/models/deb_release_component_response_spec.rb
|
369
368
|
- spec/models/deb_package_index_response_spec.rb
|
370
|
-
- spec/models/
|
369
|
+
- spec/models/paginateddeb_apt_remote_response_list_spec.rb
|
370
|
+
- spec/models/apt_repository_sync_url_spec.rb
|
371
|
+
- spec/models/deb_apt_repository_response_spec.rb
|
372
|
+
- spec/models/deb_installer_package_response_spec.rb
|
373
|
+
- spec/models/deb_generic_content_response_spec.rb
|
374
|
+
- spec/models/deb_apt_repository_spec.rb
|
371
375
|
- spec/models/copy_spec.rb
|
372
|
-
- spec/models/
|
376
|
+
- spec/models/deb_release_spec.rb
|
377
|
+
- spec/models/paginateddeb_apt_publication_response_list_spec.rb
|
378
|
+
- spec/models/patcheddeb_apt_repository_spec.rb
|
379
|
+
- spec/models/deb_verbatim_publication_response_spec.rb
|
380
|
+
- spec/models/paginateddeb_apt_distribution_response_list_spec.rb
|
381
|
+
- spec/models/deb_package_index_spec.rb
|
382
|
+
- spec/models/patcheddeb_apt_remote_spec.rb
|
383
|
+
- spec/models/deb_package_release_component_spec.rb
|
384
|
+
- spec/models/deb_installer_package_spec.rb
|
385
|
+
- spec/models/patcheddeb_apt_distribution_spec.rb
|
386
|
+
- spec/models/paginateddeb_package_index_response_list_spec.rb
|
373
387
|
- spec/models/deb_release_architecture_spec.rb
|
388
|
+
- spec/models/paginateddeb_installer_file_index_response_list_spec.rb
|
389
|
+
- spec/models/paginateddeb_generic_content_response_list_spec.rb
|
390
|
+
- spec/models/async_operation_response_spec.rb
|
374
391
|
- spec/models/deb_generic_content_spec.rb
|
375
|
-
- spec/models/deb_installer_file_index_response_spec.rb
|
376
392
|
- spec/models/deb_apt_publication_spec.rb
|
393
|
+
- spec/models/deb_package_release_component_response_spec.rb
|
377
394
|
- spec/models/deb_apt_distribution_response_spec.rb
|
378
|
-
- spec/models/
|
379
|
-
- spec/models/deb_release_component_response_spec.rb
|
380
|
-
- spec/models/paginateddeb_apt_remote_response_list_spec.rb
|
381
|
-
- spec/models/paginateddeb_release_architecture_response_list_spec.rb
|
382
|
-
- spec/models/patcheddeb_apt_remote_spec.rb
|
395
|
+
- spec/models/paginateddeb_release_response_list_spec.rb
|
383
396
|
- spec/models/paginateddeb_package_release_component_response_list_spec.rb
|
384
|
-
- spec/models/
|
385
|
-
- spec/models/
|
386
|
-
- spec/models/deb_apt_remote_spec.rb
|
387
|
-
- spec/models/deb_apt_remote_response_spec.rb
|
388
|
-
- spec/models/deb_package_spec.rb
|
389
|
-
- spec/models/repair_spec.rb
|
390
|
-
- spec/models/deb_package_release_component_response_spec.rb
|
397
|
+
- spec/models/deb_verbatim_publication_spec.rb
|
398
|
+
- spec/models/paginateddeb_release_component_response_list_spec.rb
|
391
399
|
- spec/models/deb_release_file_spec.rb
|
392
|
-
- spec/models/
|
393
|
-
- spec/models/
|
394
|
-
- spec/models/deb_verbatim_publication_response_spec.rb
|
395
|
-
- spec/models/deb_release_architecture_response_spec.rb
|
396
|
-
- spec/models/deb_installer_package_spec.rb
|
400
|
+
- spec/models/deb_installer_file_index_response_spec.rb
|
401
|
+
- spec/models/repository_version_response_spec.rb
|
397
402
|
- spec/models/deb_apt_publication_response_spec.rb
|
398
|
-
- spec/models/patcheddeb_apt_repository_spec.rb
|
399
|
-
- spec/models/deb_package_release_component_spec.rb
|
400
|
-
- spec/models/paginateddeb_release_component_response_list_spec.rb
|
401
|
-
- spec/models/paginated_repository_version_response_list_spec.rb
|
402
|
-
- spec/models/deb_package_response_spec.rb
|
403
|
-
- spec/models/async_operation_response_spec.rb
|
404
|
-
- spec/models/deb_release_spec.rb
|
405
|
-
- spec/models/paginateddeb_installer_file_index_response_list_spec.rb
|
406
403
|
- spec/models/deb_apt_distribution_spec.rb
|
407
|
-
- spec/models/
|
408
|
-
- spec/models/
|
409
|
-
- spec/models/
|
410
|
-
- spec/models/
|
411
|
-
- spec/models/
|
404
|
+
- spec/models/paginateddeb_package_response_list_spec.rb
|
405
|
+
- spec/models/deb_release_component_spec.rb
|
406
|
+
- spec/models/deb_package_response_spec.rb
|
407
|
+
- spec/models/policy_enum_spec.rb
|
408
|
+
- spec/models/repository_add_remove_content_spec.rb
|
409
|
+
- spec/models/deb_package_spec.rb
|
410
|
+
- spec/models/deb_apt_remote_response_spec.rb
|
411
|
+
- spec/models/deb_release_architecture_response_spec.rb
|
412
412
|
- spec/models/paginateddeb_installer_package_response_list_spec.rb
|
413
|
-
- spec/models/
|
414
|
-
- spec/models/
|
415
|
-
- spec/models/
|
416
|
-
- spec/models/
|
417
|
-
- spec/models/
|
413
|
+
- spec/models/deb_installer_file_index_spec.rb
|
414
|
+
- spec/models/paginateddeb_apt_repository_response_list_spec.rb
|
415
|
+
- spec/models/paginateddeb_release_architecture_response_list_spec.rb
|
416
|
+
- spec/models/paginated_repository_version_response_list_spec.rb
|
417
|
+
- spec/models/content_summary_response_spec.rb
|
418
418
|
- spec/spec_helper.rb
|