pulp_deb_client 3.8.1 → 3.8.2
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 +6 -4
- data/docs/ContentGenericContentsApi.md +9 -7
- data/docs/ContentInstallerFileIndicesApi.md +6 -6
- data/docs/ContentInstallerPackagesApi.md +9 -7
- data/docs/ContentPackageIndicesApi.md +6 -6
- data/docs/ContentPackageReleaseComponentsApi.md +10 -10
- data/docs/ContentPackagesApi.md +8 -6
- data/docs/ContentReleaseArchitecturesApi.md +6 -6
- data/docs/ContentReleaseComponentsApi.md +6 -6
- data/docs/ContentReleaseFilesApi.md +6 -6
- data/docs/ContentReleasesApi.md +6 -6
- data/docs/ContentSourceIndicesApi.md +6 -6
- data/docs/ContentSourcePackagesApi.md +6 -6
- data/docs/ContentSourceReleaseComponentsApi.md +10 -10
- data/docs/DebAptDistribution.md +2 -0
- data/docs/DebAptDistributionResponse.md +4 -0
- data/docs/DebAptRemote.md +6 -6
- data/docs/DebAptRemoteResponse.md +8 -8
- data/docs/DebAptRepository.md +2 -0
- data/docs/DebAptRepositoryResponse.md +2 -0
- data/docs/DistributionsAptApi.md +4 -4
- data/docs/PatcheddebAptDistribution.md +2 -0
- data/docs/PatcheddebAptRemote.md +6 -6
- data/docs/PatcheddebAptRepository.md +2 -0
- data/docs/PublicationsAptApi.md +2 -2
- data/docs/PublicationsVerbatimApi.md +2 -2
- data/docs/RemoteNetworkConfig.md +50 -0
- data/docs/RemoteNetworkConfigResponse.md +40 -0
- data/docs/RepositoriesAptApi.md +20 -4
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +9 -6
- data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +9 -6
- data/lib/pulp_deb_client/api/content_package_indices_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_package_release_components_api.rb +10 -10
- data/lib/pulp_deb_client/api/content_packages_api.rb +9 -6
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_release_components_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_release_files_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_releases_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_source_indices_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_source_packages_api.rb +6 -6
- data/lib/pulp_deb_client/api/content_source_release_components_api.rb +10 -10
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +4 -4
- data/lib/pulp_deb_client/api/publications_apt_api.rb +2 -2
- data/lib/pulp_deb_client/api/publications_verbatim_api.rb +2 -2
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +29 -5
- data/lib/pulp_deb_client/models/deb_apt_distribution.rb +12 -1
- data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +22 -1
- data/lib/pulp_deb_client/models/deb_apt_remote.rb +48 -33
- data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +60 -45
- data/lib/pulp_deb_client/models/deb_apt_repository.rb +42 -1
- data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +42 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +12 -1
- data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +48 -33
- data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +42 -1
- data/lib/pulp_deb_client/models/remote_network_config.rb +588 -0
- data/lib/pulp_deb_client/models/remote_network_config_response.rb +413 -0
- data/lib/pulp_deb_client/models/set_label.rb +0 -11
- data/lib/pulp_deb_client/models/set_label_response.rb +0 -21
- data/lib/pulp_deb_client/models/unset_label.rb +0 -11
- data/lib/pulp_deb_client/models/unset_label_response.rb +0 -21
- data/lib/pulp_deb_client/version.rb +1 -1
- data/lib/pulp_deb_client.rb +2 -0
- data/spec/api/content_generic_contents_api_spec.rb +4 -3
- data/spec/api/content_installer_file_indices_api_spec.rb +3 -3
- data/spec/api/content_installer_packages_api_spec.rb +4 -3
- data/spec/api/content_package_indices_api_spec.rb +3 -3
- data/spec/api/content_package_release_components_api_spec.rb +5 -5
- data/spec/api/content_packages_api_spec.rb +4 -3
- data/spec/api/content_release_architectures_api_spec.rb +3 -3
- data/spec/api/content_release_components_api_spec.rb +3 -3
- data/spec/api/content_release_files_api_spec.rb +3 -3
- data/spec/api/content_releases_api_spec.rb +3 -3
- data/spec/api/content_source_indices_api_spec.rb +3 -3
- data/spec/api/content_source_packages_api_spec.rb +3 -3
- data/spec/api/content_source_release_components_api_spec.rb +5 -5
- data/spec/api/distributions_apt_api_spec.rb +2 -2
- data/spec/api/publications_apt_api_spec.rb +1 -1
- data/spec/api/publications_verbatim_api_spec.rb +1 -1
- data/spec/api/repositories_apt_api_spec.rb +10 -2
- data/spec/models/deb_apt_distribution_response_spec.rb +12 -0
- data/spec/models/deb_apt_distribution_spec.rb +6 -0
- data/spec/models/deb_apt_remote_response_spec.rb +10 -10
- data/spec/models/deb_apt_remote_spec.rb +17 -17
- data/spec/models/deb_apt_repository_response_spec.rb +6 -0
- data/spec/models/deb_apt_repository_spec.rb +6 -0
- data/spec/models/patcheddeb_apt_distribution_spec.rb +6 -0
- data/spec/models/patcheddeb_apt_remote_spec.rb +17 -17
- data/spec/models/patcheddeb_apt_repository_spec.rb +6 -0
- data/spec/models/remote_network_config_response_spec.rb +102 -0
- data/spec/models/remote_network_config_spec.rb +132 -0
- metadata +88 -80
|
@@ -44,6 +44,7 @@ describe 'ContentPackagesApi' do
|
|
|
44
44
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
|
45
45
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
|
46
46
|
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
|
47
|
+
# @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
47
48
|
# @option opts [String] :distribution Name of the distribution.
|
|
48
49
|
# @option opts [String] :component Name of the component.
|
|
49
50
|
# @return [AsyncOperationResponse]
|
|
@@ -90,9 +91,9 @@ describe 'ContentPackagesApi' do
|
|
|
90
91
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
91
92
|
# @option opts [String] :release Must be a comma-separated string: \"release_href,repository_or_repository_version_href\" release_href: Filter results where Package in Release repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
92
93
|
# @option opts [String] :release_component Must be a comma-separated string: \"release_component_href,repository_or_repository_version_href\" release_component_href: Filter results where Package in ReleaseComponent repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
93
|
-
# @option opts [String] :repository_version
|
|
94
|
-
# @option opts [String] :repository_version_added
|
|
95
|
-
# @option opts [String] :repository_version_removed
|
|
94
|
+
# @option opts [String] :repository_version
|
|
95
|
+
# @option opts [String] :repository_version_added
|
|
96
|
+
# @option opts [String] :repository_version_removed
|
|
96
97
|
# @option opts [String] :section Filter results where section matches value
|
|
97
98
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
98
99
|
# @option opts [String] :source Filter results where source matches value
|
|
@@ -61,9 +61,9 @@ describe 'ContentReleaseArchitecturesApi' do
|
|
|
61
61
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
62
62
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
63
63
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
64
|
-
# @option opts [String] :repository_version
|
|
65
|
-
# @option opts [String] :repository_version_added
|
|
66
|
-
# @option opts [String] :repository_version_removed
|
|
64
|
+
# @option opts [String] :repository_version
|
|
65
|
+
# @option opts [String] :repository_version_added
|
|
66
|
+
# @option opts [String] :repository_version_removed
|
|
67
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
68
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
69
69
|
# @return [PaginateddebReleaseArchitectureResponseList]
|
|
@@ -62,9 +62,9 @@ describe 'ContentReleaseComponentsApi' do
|
|
|
62
62
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
63
63
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
64
64
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
65
|
-
# @option opts [String] :repository_version
|
|
66
|
-
# @option opts [String] :repository_version_added
|
|
67
|
-
# @option opts [String] :repository_version_removed
|
|
65
|
+
# @option opts [String] :repository_version
|
|
66
|
+
# @option opts [String] :repository_version_added
|
|
67
|
+
# @option opts [String] :repository_version_removed
|
|
68
68
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
69
69
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
70
70
|
# @return [PaginateddebReleaseComponentResponseList]
|
|
@@ -61,9 +61,9 @@ describe 'ContentReleaseFilesApi' do
|
|
|
61
61
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
62
62
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
63
63
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
64
|
-
# @option opts [String] :repository_version
|
|
65
|
-
# @option opts [String] :repository_version_added
|
|
66
|
-
# @option opts [String] :repository_version_removed
|
|
64
|
+
# @option opts [String] :repository_version
|
|
65
|
+
# @option opts [String] :repository_version_added
|
|
66
|
+
# @option opts [String] :repository_version_removed
|
|
67
67
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
68
68
|
# @option opts [String] :suite Filter results where suite matches value
|
|
69
69
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -64,9 +64,9 @@ describe 'ContentReleasesApi' do
|
|
|
64
64
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
65
65
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
66
66
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
67
|
-
# @option opts [String] :repository_version
|
|
68
|
-
# @option opts [String] :repository_version_added
|
|
69
|
-
# @option opts [String] :repository_version_removed
|
|
67
|
+
# @option opts [String] :repository_version
|
|
68
|
+
# @option opts [String] :repository_version_added
|
|
69
|
+
# @option opts [String] :repository_version_removed
|
|
70
70
|
# @option opts [String] :suite Filter results where suite matches value
|
|
71
71
|
# @option opts [String] :version Filter results where version matches value
|
|
72
72
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -61,9 +61,9 @@ describe 'ContentSourceIndicesApi' do
|
|
|
61
61
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
62
62
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
63
63
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
64
|
-
# @option opts [String] :repository_version
|
|
65
|
-
# @option opts [String] :repository_version_added
|
|
66
|
-
# @option opts [String] :repository_version_removed
|
|
64
|
+
# @option opts [String] :repository_version
|
|
65
|
+
# @option opts [String] :repository_version_added
|
|
66
|
+
# @option opts [String] :repository_version_removed
|
|
67
67
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
68
68
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
69
69
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -75,9 +75,9 @@ describe 'ContentSourcePackagesApi' do
|
|
|
75
75
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
76
76
|
# @option opts [String] :release Must be a comma-separated string: \"release_href,repository_or_repository_version_href\" release_href: Filter results where SourcePackage in Release repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
77
77
|
# @option opts [String] :release_component Must be a comma-separated string: \"release_component_href,repository_or_repository_version_href\" release_component_href: Filter results where SourcePackage in ReleaseComponent repository_or_repository_version_href: The RepositoryVersion href to filter by, or Repository href (assume latest version)
|
|
78
|
-
# @option opts [String] :repository_version
|
|
79
|
-
# @option opts [String] :repository_version_added
|
|
80
|
-
# @option opts [String] :repository_version_removed
|
|
78
|
+
# @option opts [String] :repository_version
|
|
79
|
+
# @option opts [String] :repository_version_added
|
|
80
|
+
# @option opts [String] :repository_version_removed
|
|
81
81
|
# @option opts [String] :source Filter results where source matches value
|
|
82
82
|
# @option opts [String] :standards_version Filter results where standards_version matches value
|
|
83
83
|
# @option opts [String] :testsuite Filter results where testsuite matches value
|
|
@@ -59,11 +59,11 @@ describe 'ContentSourceReleaseComponentsApi' do
|
|
|
59
59
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
60
60
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
61
61
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
62
|
-
# @option opts [String] :release_component
|
|
63
|
-
# @option opts [String] :repository_version
|
|
64
|
-
# @option opts [String] :repository_version_added
|
|
65
|
-
# @option opts [String] :repository_version_removed
|
|
66
|
-
# @option opts [String] :source_package
|
|
62
|
+
# @option opts [String] :release_component
|
|
63
|
+
# @option opts [String] :repository_version
|
|
64
|
+
# @option opts [String] :repository_version_added
|
|
65
|
+
# @option opts [String] :repository_version_removed
|
|
66
|
+
# @option opts [String] :source_package
|
|
67
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
68
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
69
69
|
# @return [PaginateddebSourcePackageReleaseComponentResponseList]
|
|
@@ -99,8 +99,8 @@ describe 'DistributionsAptApi' do
|
|
|
99
99
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
100
100
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
101
101
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
102
|
-
# @option opts [String] :repository
|
|
103
|
-
# @option opts [Array<String>] :repository__in
|
|
102
|
+
# @option opts [String] :repository
|
|
103
|
+
# @option opts [Array<String>] :repository__in
|
|
104
104
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
105
105
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
106
106
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -95,7 +95,7 @@ describe 'PublicationsAptApi' do
|
|
|
95
95
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
96
96
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
97
97
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
98
|
-
# @option opts [String] :repository_version
|
|
98
|
+
# @option opts [String] :repository_version
|
|
99
99
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
100
100
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
101
101
|
# @return [PaginateddebAptPublicationResponseList]
|
|
@@ -95,7 +95,7 @@ describe 'PublicationsVerbatimApi' do
|
|
|
95
95
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
96
96
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
97
97
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
98
|
-
# @option opts [String] :repository_version
|
|
98
|
+
# @option opts [String] :repository_version
|
|
99
99
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
100
100
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
101
101
|
# @return [PaginateddebVerbatimPublicationResponseList]
|
|
@@ -89,13 +89,21 @@ describe 'RepositoriesAptApi' do
|
|
|
89
89
|
# @option opts [String] :name__regex Filter results where name matches regex value
|
|
90
90
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
91
91
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
92
|
-
# @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) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
92
|
+
# @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) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `retain_checkpoints` - Retain checkpoints * `-retain_checkpoints` - Retain checkpoints (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
93
93
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
94
94
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
95
95
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
96
96
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
97
97
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
98
|
-
# @option opts [String] :remote
|
|
98
|
+
# @option opts [String] :remote
|
|
99
|
+
# @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
|
|
100
|
+
# @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
|
|
101
|
+
# @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
|
|
102
|
+
# @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
|
|
103
|
+
# @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
|
|
104
|
+
# @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
|
|
105
|
+
# @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
|
|
106
|
+
# @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
|
|
99
107
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
100
108
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
101
109
|
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
@@ -69,6 +69,12 @@ describe PulpDebClient::DebAptDistributionResponse do
|
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
+
describe 'test attribute "content_guard_prn"' do
|
|
73
|
+
it 'should work' do
|
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
72
78
|
describe 'test attribute "no_content_change_since"' do
|
|
73
79
|
it 'should work' do
|
|
74
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -99,6 +105,12 @@ describe PulpDebClient::DebAptDistributionResponse do
|
|
|
99
105
|
end
|
|
100
106
|
end
|
|
101
107
|
|
|
108
|
+
describe 'test attribute "repository_version"' do
|
|
109
|
+
it 'should work' do
|
|
110
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
|
|
102
114
|
describe 'test attribute "publication"' do
|
|
103
115
|
it 'should work' do
|
|
104
116
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -63,6 +63,12 @@ describe PulpDebClient::DebAptDistribution do
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
+
describe 'test attribute "repository_version"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
66
72
|
describe 'test attribute "publication"' do
|
|
67
73
|
it 'should work' do
|
|
68
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -63,49 +63,49 @@ describe PulpDebClient::DebAptRemoteResponse do
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "policy"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "hidden_fields"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "ca_cert"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "client_cert"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "tls_validation"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "proxy_url"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
106
106
|
end
|
|
107
107
|
|
|
108
|
-
describe 'test attribute "
|
|
108
|
+
describe 'test attribute "max_retries"' do
|
|
109
109
|
it 'should work' do
|
|
110
110
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
111
111
|
end
|
|
@@ -141,13 +141,13 @@ describe PulpDebClient::DebAptRemoteResponse do
|
|
|
141
141
|
end
|
|
142
142
|
end
|
|
143
143
|
|
|
144
|
-
describe 'test attribute "
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
145
|
it 'should work' do
|
|
146
146
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
147
|
end
|
|
148
148
|
end
|
|
149
149
|
|
|
150
|
-
describe 'test attribute "
|
|
150
|
+
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
153
153
|
end
|
|
@@ -39,67 +39,67 @@ describe PulpDebClient::DebAptRemote do
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "pulp_labels"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "policy"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "ca_cert"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "client_cert"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "client_key"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "tls_validation"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "proxy_url"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "proxy_username"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "proxy_password"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "username"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "password"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
@@ -111,12 +111,6 @@ describe PulpDebClient::DebAptRemote do
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
describe 'test attribute "policy"' do
|
|
115
|
-
it 'should work' do
|
|
116
|
-
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
|
|
120
114
|
describe 'test attribute "total_timeout"' do
|
|
121
115
|
it 'should work' do
|
|
122
116
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -147,6 +141,12 @@ describe PulpDebClient::DebAptRemote do
|
|
|
147
141
|
end
|
|
148
142
|
end
|
|
149
143
|
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
|
+
it 'should work' do
|
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
150
|
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -87,6 +87,12 @@ describe PulpDebClient::DebAptRepositoryResponse do
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
91
|
+
it 'should work' do
|
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
90
96
|
describe 'test attribute "remote"' do
|
|
91
97
|
it 'should work' do
|
|
92
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -51,6 +51,12 @@ describe PulpDebClient::DebAptRepository do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
describe 'test attribute "remote"' do
|
|
55
61
|
it 'should work' do
|
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -63,6 +63,12 @@ describe PulpDebClient::PatcheddebAptDistribution do
|
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
+
describe 'test attribute "repository_version"' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
66
72
|
describe 'test attribute "publication"' do
|
|
67
73
|
it 'should work' do
|
|
68
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -39,67 +39,67 @@ describe PulpDebClient::PatcheddebAptRemote do
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "pulp_labels"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "policy"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "ca_cert"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "client_cert"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "client_key"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "tls_validation"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "proxy_url"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "proxy_username"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "proxy_password"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "username"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
describe 'test attribute "
|
|
102
|
+
describe 'test attribute "password"' do
|
|
103
103
|
it 'should work' do
|
|
104
104
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
105
105
|
end
|
|
@@ -111,12 +111,6 @@ describe PulpDebClient::PatcheddebAptRemote do
|
|
|
111
111
|
end
|
|
112
112
|
end
|
|
113
113
|
|
|
114
|
-
describe 'test attribute "policy"' do
|
|
115
|
-
it 'should work' do
|
|
116
|
-
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
117
|
-
end
|
|
118
|
-
end
|
|
119
|
-
|
|
120
114
|
describe 'test attribute "total_timeout"' do
|
|
121
115
|
it 'should work' do
|
|
122
116
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -147,6 +141,12 @@ describe PulpDebClient::PatcheddebAptRemote do
|
|
|
147
141
|
end
|
|
148
142
|
end
|
|
149
143
|
|
|
144
|
+
describe 'test attribute "download_concurrency"' do
|
|
145
|
+
it 'should work' do
|
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
150
|
describe 'test attribute "rate_limit"' do
|
|
151
151
|
it 'should work' do
|
|
152
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
@@ -51,6 +51,12 @@ describe PulpDebClient::PatcheddebAptRepository do
|
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
54
60
|
describe 'test attribute "remote"' do
|
|
55
61
|
it 'should work' do
|
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|