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
|
@@ -30,6 +30,7 @@ module PulpDebClient
|
|
|
30
30
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
|
31
31
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
|
32
32
|
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
|
33
|
+
# @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
33
34
|
# @option opts [String] :distribution Name of the distribution.
|
|
34
35
|
# @option opts [String] :component Name of the component.
|
|
35
36
|
# @return [AsyncOperationResponse]
|
|
@@ -49,6 +50,7 @@ module PulpDebClient
|
|
|
49
50
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
|
50
51
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
|
51
52
|
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
|
53
|
+
# @option opts [RemoteNetworkConfig] :downloader_config Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
52
54
|
# @option opts [String] :distribution Name of the distribution.
|
|
53
55
|
# @option opts [String] :component Name of the component.
|
|
54
56
|
# @return [Array<(AsyncOperationResponse, Integer, Hash)>] AsyncOperationResponse data, response status code and response headers
|
|
@@ -98,6 +100,7 @@ module PulpDebClient
|
|
|
98
100
|
form_params['file'] = opts[:'file'] if !opts[:'file'].nil?
|
|
99
101
|
form_params['upload'] = opts[:'upload'] if !opts[:'upload'].nil?
|
|
100
102
|
form_params['file_url'] = opts[:'file_url'] if !opts[:'file_url'].nil?
|
|
103
|
+
form_params['downloader_config'] = opts[:'downloader_config'] if !opts[:'downloader_config'].nil?
|
|
101
104
|
form_params['distribution'] = opts[:'distribution'] if !opts[:'distribution'].nil?
|
|
102
105
|
form_params['component'] = opts[:'component'] if !opts[:'component'].nil?
|
|
103
106
|
|
|
@@ -163,9 +166,9 @@ module PulpDebClient
|
|
|
163
166
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
164
167
|
# @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)
|
|
165
168
|
# @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)
|
|
166
|
-
# @option opts [String] :repository_version
|
|
167
|
-
# @option opts [String] :repository_version_added
|
|
168
|
-
# @option opts [String] :repository_version_removed
|
|
169
|
+
# @option opts [String] :repository_version
|
|
170
|
+
# @option opts [String] :repository_version_added
|
|
171
|
+
# @option opts [String] :repository_version_removed
|
|
169
172
|
# @option opts [String] :section Filter results where section matches value
|
|
170
173
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
171
174
|
# @option opts [String] :source Filter results where source matches value
|
|
@@ -215,9 +218,9 @@ module PulpDebClient
|
|
|
215
218
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
216
219
|
# @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)
|
|
217
220
|
# @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)
|
|
218
|
-
# @option opts [String] :repository_version
|
|
219
|
-
# @option opts [String] :repository_version_added
|
|
220
|
-
# @option opts [String] :repository_version_removed
|
|
221
|
+
# @option opts [String] :repository_version
|
|
222
|
+
# @option opts [String] :repository_version_added
|
|
223
|
+
# @option opts [String] :repository_version_removed
|
|
221
224
|
# @option opts [String] :section Filter results where section matches value
|
|
222
225
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
223
226
|
# @option opts [String] :source Filter results where source matches value
|
|
@@ -105,9 +105,9 @@ module PulpDebClient
|
|
|
105
105
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
106
106
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
107
107
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
108
|
-
# @option opts [String] :repository_version
|
|
109
|
-
# @option opts [String] :repository_version_added
|
|
110
|
-
# @option opts [String] :repository_version_removed
|
|
108
|
+
# @option opts [String] :repository_version
|
|
109
|
+
# @option opts [String] :repository_version_added
|
|
110
|
+
# @option opts [String] :repository_version_removed
|
|
111
111
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
112
112
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
113
113
|
# @return [PaginateddebReleaseArchitectureResponseList]
|
|
@@ -131,9 +131,9 @@ module PulpDebClient
|
|
|
131
131
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
132
132
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
133
133
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
134
|
-
# @option opts [String] :repository_version
|
|
135
|
-
# @option opts [String] :repository_version_added
|
|
136
|
-
# @option opts [String] :repository_version_removed
|
|
134
|
+
# @option opts [String] :repository_version
|
|
135
|
+
# @option opts [String] :repository_version_added
|
|
136
|
+
# @option opts [String] :repository_version_removed
|
|
137
137
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
138
138
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
139
139
|
# @return [Array<(PaginateddebReleaseArchitectureResponseList, Integer, Hash)>] PaginateddebReleaseArchitectureResponseList data, response status code and response headers
|
|
@@ -106,9 +106,9 @@ module PulpDebClient
|
|
|
106
106
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
107
107
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
108
108
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
109
|
-
# @option opts [String] :repository_version
|
|
110
|
-
# @option opts [String] :repository_version_added
|
|
111
|
-
# @option opts [String] :repository_version_removed
|
|
109
|
+
# @option opts [String] :repository_version
|
|
110
|
+
# @option opts [String] :repository_version_added
|
|
111
|
+
# @option opts [String] :repository_version_removed
|
|
112
112
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
113
113
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
114
114
|
# @return [PaginateddebReleaseComponentResponseList]
|
|
@@ -133,9 +133,9 @@ module PulpDebClient
|
|
|
133
133
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
134
134
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
135
135
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
136
|
-
# @option opts [String] :repository_version
|
|
137
|
-
# @option opts [String] :repository_version_added
|
|
138
|
-
# @option opts [String] :repository_version_removed
|
|
136
|
+
# @option opts [String] :repository_version
|
|
137
|
+
# @option opts [String] :repository_version_added
|
|
138
|
+
# @option opts [String] :repository_version_removed
|
|
139
139
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
140
140
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
141
141
|
# @return [Array<(PaginateddebReleaseComponentResponseList, Integer, Hash)>] PaginateddebReleaseComponentResponseList data, response status code and response headers
|
|
@@ -105,9 +105,9 @@ module PulpDebClient
|
|
|
105
105
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
106
106
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
107
107
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
108
|
-
# @option opts [String] :repository_version
|
|
109
|
-
# @option opts [String] :repository_version_added
|
|
110
|
-
# @option opts [String] :repository_version_removed
|
|
108
|
+
# @option opts [String] :repository_version
|
|
109
|
+
# @option opts [String] :repository_version_added
|
|
110
|
+
# @option opts [String] :repository_version_removed
|
|
111
111
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
112
112
|
# @option opts [String] :suite Filter results where suite matches value
|
|
113
113
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -133,9 +133,9 @@ module PulpDebClient
|
|
|
133
133
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
134
134
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
135
135
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
136
|
-
# @option opts [String] :repository_version
|
|
137
|
-
# @option opts [String] :repository_version_added
|
|
138
|
-
# @option opts [String] :repository_version_removed
|
|
136
|
+
# @option opts [String] :repository_version
|
|
137
|
+
# @option opts [String] :repository_version_added
|
|
138
|
+
# @option opts [String] :repository_version_removed
|
|
139
139
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
140
140
|
# @option opts [String] :suite Filter results where suite matches value
|
|
141
141
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -108,9 +108,9 @@ module PulpDebClient
|
|
|
108
108
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
109
109
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
110
110
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
111
|
-
# @option opts [String] :repository_version
|
|
112
|
-
# @option opts [String] :repository_version_added
|
|
113
|
-
# @option opts [String] :repository_version_removed
|
|
111
|
+
# @option opts [String] :repository_version
|
|
112
|
+
# @option opts [String] :repository_version_added
|
|
113
|
+
# @option opts [String] :repository_version_removed
|
|
114
114
|
# @option opts [String] :suite Filter results where suite matches value
|
|
115
115
|
# @option opts [String] :version Filter results where version matches value
|
|
116
116
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -139,9 +139,9 @@ module PulpDebClient
|
|
|
139
139
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
140
140
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
141
141
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
142
|
-
# @option opts [String] :repository_version
|
|
143
|
-
# @option opts [String] :repository_version_added
|
|
144
|
-
# @option opts [String] :repository_version_removed
|
|
142
|
+
# @option opts [String] :repository_version
|
|
143
|
+
# @option opts [String] :repository_version_added
|
|
144
|
+
# @option opts [String] :repository_version_removed
|
|
145
145
|
# @option opts [String] :suite Filter results where suite matches value
|
|
146
146
|
# @option opts [String] :version Filter results where version matches value
|
|
147
147
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -105,9 +105,9 @@ module PulpDebClient
|
|
|
105
105
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
106
106
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
107
107
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
108
|
-
# @option opts [String] :repository_version
|
|
109
|
-
# @option opts [String] :repository_version_added
|
|
110
|
-
# @option opts [String] :repository_version_removed
|
|
108
|
+
# @option opts [String] :repository_version
|
|
109
|
+
# @option opts [String] :repository_version_added
|
|
110
|
+
# @option opts [String] :repository_version_removed
|
|
111
111
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
112
112
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
113
113
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -132,9 +132,9 @@ module PulpDebClient
|
|
|
132
132
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
133
133
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
134
134
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
135
|
-
# @option opts [String] :repository_version
|
|
136
|
-
# @option opts [String] :repository_version_added
|
|
137
|
-
# @option opts [String] :repository_version_removed
|
|
135
|
+
# @option opts [String] :repository_version
|
|
136
|
+
# @option opts [String] :repository_version_added
|
|
137
|
+
# @option opts [String] :repository_version_removed
|
|
138
138
|
# @option opts [String] :sha256 Filter results where sha256 matches value
|
|
139
139
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
140
140
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -119,9 +119,9 @@ module PulpDebClient
|
|
|
119
119
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
120
120
|
# @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)
|
|
121
121
|
# @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)
|
|
122
|
-
# @option opts [String] :repository_version
|
|
123
|
-
# @option opts [String] :repository_version_added
|
|
124
|
-
# @option opts [String] :repository_version_removed
|
|
122
|
+
# @option opts [String] :repository_version
|
|
123
|
+
# @option opts [String] :repository_version_added
|
|
124
|
+
# @option opts [String] :repository_version_removed
|
|
125
125
|
# @option opts [String] :source Filter results where source matches value
|
|
126
126
|
# @option opts [String] :standards_version Filter results where standards_version matches value
|
|
127
127
|
# @option opts [String] :testsuite Filter results where testsuite matches value
|
|
@@ -173,9 +173,9 @@ module PulpDebClient
|
|
|
173
173
|
# @option opts [String] :relative_path Filter results where relative_path matches value
|
|
174
174
|
# @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)
|
|
175
175
|
# @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)
|
|
176
|
-
# @option opts [String] :repository_version
|
|
177
|
-
# @option opts [String] :repository_version_added
|
|
178
|
-
# @option opts [String] :repository_version_removed
|
|
176
|
+
# @option opts [String] :repository_version
|
|
177
|
+
# @option opts [String] :repository_version_added
|
|
178
|
+
# @option opts [String] :repository_version_removed
|
|
179
179
|
# @option opts [String] :source Filter results where source matches value
|
|
180
180
|
# @option opts [String] :standards_version Filter results where standards_version matches value
|
|
181
181
|
# @option opts [String] :testsuite Filter results where testsuite matches value
|
|
@@ -103,11 +103,11 @@ module PulpDebClient
|
|
|
103
103
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
104
104
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
105
105
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
106
|
-
# @option opts [String] :release_component
|
|
107
|
-
# @option opts [String] :repository_version
|
|
108
|
-
# @option opts [String] :repository_version_added
|
|
109
|
-
# @option opts [String] :repository_version_removed
|
|
110
|
-
# @option opts [String] :source_package
|
|
106
|
+
# @option opts [String] :release_component
|
|
107
|
+
# @option opts [String] :repository_version
|
|
108
|
+
# @option opts [String] :repository_version_added
|
|
109
|
+
# @option opts [String] :repository_version_removed
|
|
110
|
+
# @option opts [String] :source_package
|
|
111
111
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
112
112
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
113
113
|
# @return [PaginateddebSourcePackageReleaseComponentResponseList]
|
|
@@ -129,11 +129,11 @@ module PulpDebClient
|
|
|
129
129
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
130
130
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
131
131
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
132
|
-
# @option opts [String] :release_component
|
|
133
|
-
# @option opts [String] :repository_version
|
|
134
|
-
# @option opts [String] :repository_version_added
|
|
135
|
-
# @option opts [String] :repository_version_removed
|
|
136
|
-
# @option opts [String] :source_package
|
|
132
|
+
# @option opts [String] :release_component
|
|
133
|
+
# @option opts [String] :repository_version
|
|
134
|
+
# @option opts [String] :repository_version_added
|
|
135
|
+
# @option opts [String] :repository_version_removed
|
|
136
|
+
# @option opts [String] :source_package
|
|
137
137
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
138
138
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
139
139
|
# @return [Array<(PaginateddebSourcePackageReleaseComponentResponseList, Integer, Hash)>] PaginateddebSourcePackageReleaseComponentResponseList data, response status code and response headers
|
|
@@ -259,8 +259,8 @@ module PulpDebClient
|
|
|
259
259
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
260
260
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
261
261
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
262
|
-
# @option opts [String] :repository
|
|
263
|
-
# @option opts [Array<String>] :repository__in
|
|
262
|
+
# @option opts [String] :repository
|
|
263
|
+
# @option opts [Array<String>] :repository__in
|
|
264
264
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
265
265
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
266
266
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -296,8 +296,8 @@ module PulpDebClient
|
|
|
296
296
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
297
297
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
298
298
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
299
|
-
# @option opts [String] :repository
|
|
300
|
-
# @option opts [Array<String>] :repository__in
|
|
299
|
+
# @option opts [String] :repository
|
|
300
|
+
# @option opts [Array<String>] :repository__in
|
|
301
301
|
# @option opts [String] :with_content Filter distributions based on the content served by them
|
|
302
302
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
303
303
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
@@ -253,7 +253,7 @@ module PulpDebClient
|
|
|
253
253
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
254
254
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
255
255
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
256
|
-
# @option opts [String] :repository_version
|
|
256
|
+
# @option opts [String] :repository_version
|
|
257
257
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
258
258
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
259
259
|
# @return [PaginateddebAptPublicationResponseList]
|
|
@@ -284,7 +284,7 @@ module PulpDebClient
|
|
|
284
284
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
285
285
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
286
286
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
287
|
-
# @option opts [String] :repository_version
|
|
287
|
+
# @option opts [String] :repository_version
|
|
288
288
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
289
289
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
290
290
|
# @return [Array<(PaginateddebAptPublicationResponseList, Integer, Hash)>] PaginateddebAptPublicationResponseList data, response status code and response headers
|
|
@@ -253,7 +253,7 @@ module PulpDebClient
|
|
|
253
253
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
254
254
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
255
255
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
256
|
-
# @option opts [String] :repository_version
|
|
256
|
+
# @option opts [String] :repository_version
|
|
257
257
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
258
258
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
259
259
|
# @return [PaginateddebVerbatimPublicationResponseList]
|
|
@@ -284,7 +284,7 @@ module PulpDebClient
|
|
|
284
284
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
285
285
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
286
286
|
# @option opts [String] :repository Repository referenced by HREF/PRN
|
|
287
|
-
# @option opts [String] :repository_version
|
|
287
|
+
# @option opts [String] :repository_version
|
|
288
288
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
289
289
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
290
290
|
# @return [Array<(PaginateddebVerbatimPublicationResponseList, Integer, Hash)>] PaginateddebVerbatimPublicationResponseList data, response status code and response headers
|
|
@@ -249,13 +249,21 @@ module PulpDebClient
|
|
|
249
249
|
# @option opts [String] :name__regex Filter results where name matches regex value
|
|
250
250
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
251
251
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
252
|
-
# @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)
|
|
252
|
+
# @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)
|
|
253
253
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
254
254
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
255
255
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
256
256
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
257
257
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
258
|
-
# @option opts [String] :remote
|
|
258
|
+
# @option opts [String] :remote
|
|
259
|
+
# @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
|
|
260
|
+
# @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
|
|
261
|
+
# @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
|
|
262
|
+
# @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
|
|
263
|
+
# @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
|
|
264
|
+
# @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
|
|
265
|
+
# @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
|
|
266
|
+
# @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
|
|
259
267
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
260
268
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
261
269
|
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
@@ -289,13 +297,21 @@ module PulpDebClient
|
|
|
289
297
|
# @option opts [String] :name__regex Filter results where name matches regex value
|
|
290
298
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
291
299
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
292
|
-
# @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)
|
|
300
|
+
# @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)
|
|
293
301
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
|
294
302
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
295
303
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
296
304
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
297
305
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
298
|
-
# @option opts [String] :remote
|
|
306
|
+
# @option opts [String] :remote
|
|
307
|
+
# @option opts [Integer] :retain_checkpoints Filter results where retain_checkpoints matches value
|
|
308
|
+
# @option opts [Integer] :retain_checkpoints__gt Filter results where retain_checkpoints is greater than value
|
|
309
|
+
# @option opts [Integer] :retain_checkpoints__gte Filter results where retain_checkpoints is greater than or equal to value
|
|
310
|
+
# @option opts [Boolean] :retain_checkpoints__isnull Filter results where retain_checkpoints has a null value
|
|
311
|
+
# @option opts [Integer] :retain_checkpoints__lt Filter results where retain_checkpoints is less than value
|
|
312
|
+
# @option opts [Integer] :retain_checkpoints__lte Filter results where retain_checkpoints is less than or equal to value
|
|
313
|
+
# @option opts [Integer] :retain_checkpoints__ne Filter results where retain_checkpoints not equal to value
|
|
314
|
+
# @option opts [Array<Integer>] :retain_checkpoints__range Filter results where retain_checkpoints is between two comma separated values
|
|
299
315
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
300
316
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
301
317
|
# @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
|
|
@@ -312,7 +328,7 @@ module PulpDebClient
|
|
|
312
328
|
if @api_client.config.debugging
|
|
313
329
|
@api_client.config.logger.debug 'Calling API: RepositoriesAptApi.list ...'
|
|
314
330
|
end
|
|
315
|
-
allowable_values = ["-description", "-name", "-next_version", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "-retain_repo_versions", "-user_hidden", "description", "name", "next_version", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type", "retain_repo_versions", "user_hidden"]
|
|
331
|
+
allowable_values = ["-description", "-name", "-next_version", "-pk", "-pulp_created", "-pulp_id", "-pulp_labels", "-pulp_last_updated", "-pulp_type", "-retain_checkpoints", "-retain_repo_versions", "-user_hidden", "description", "name", "next_version", "pk", "pulp_created", "pulp_id", "pulp_labels", "pulp_last_updated", "pulp_type", "retain_checkpoints", "retain_repo_versions", "user_hidden"]
|
|
316
332
|
if @api_client.config.client_side_validation && opts[:'ordering'] && !opts[:'ordering'].all? { |item| allowable_values.include?(item) }
|
|
317
333
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
318
334
|
end
|
|
@@ -340,6 +356,14 @@ module PulpDebClient
|
|
|
340
356
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
|
341
357
|
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
342
358
|
query_params[:'remote'] = opts[:'remote'] if !opts[:'remote'].nil?
|
|
359
|
+
query_params[:'retain_checkpoints'] = opts[:'retain_checkpoints'] if !opts[:'retain_checkpoints'].nil?
|
|
360
|
+
query_params[:'retain_checkpoints__gt'] = opts[:'retain_checkpoints__gt'] if !opts[:'retain_checkpoints__gt'].nil?
|
|
361
|
+
query_params[:'retain_checkpoints__gte'] = opts[:'retain_checkpoints__gte'] if !opts[:'retain_checkpoints__gte'].nil?
|
|
362
|
+
query_params[:'retain_checkpoints__isnull'] = opts[:'retain_checkpoints__isnull'] if !opts[:'retain_checkpoints__isnull'].nil?
|
|
363
|
+
query_params[:'retain_checkpoints__lt'] = opts[:'retain_checkpoints__lt'] if !opts[:'retain_checkpoints__lt'].nil?
|
|
364
|
+
query_params[:'retain_checkpoints__lte'] = opts[:'retain_checkpoints__lte'] if !opts[:'retain_checkpoints__lte'].nil?
|
|
365
|
+
query_params[:'retain_checkpoints__ne'] = opts[:'retain_checkpoints__ne'] if !opts[:'retain_checkpoints__ne'].nil?
|
|
366
|
+
query_params[:'retain_checkpoints__range'] = @api_client.build_collection_param(opts[:'retain_checkpoints__range'], :csv) if !opts[:'retain_checkpoints__range'].nil?
|
|
343
367
|
query_params[:'retain_repo_versions'] = opts[:'retain_repo_versions'] if !opts[:'retain_repo_versions'].nil?
|
|
344
368
|
query_params[:'retain_repo_versions__gt'] = opts[:'retain_repo_versions__gt'] if !opts[:'retain_repo_versions__gt'].nil?
|
|
345
369
|
query_params[:'retain_repo_versions__gte'] = opts[:'retain_repo_versions__gte'] if !opts[:'retain_repo_versions__gte'].nil?
|
|
@@ -33,6 +33,9 @@ module PulpDebClient
|
|
|
33
33
|
# The latest RepositoryVersion for this Repository will be served.
|
|
34
34
|
attr_accessor :repository
|
|
35
35
|
|
|
36
|
+
# RepositoryVersion to be served
|
|
37
|
+
attr_accessor :repository_version
|
|
38
|
+
|
|
36
39
|
# Publication to be served
|
|
37
40
|
attr_accessor :publication
|
|
38
41
|
|
|
@@ -47,6 +50,7 @@ module PulpDebClient
|
|
|
47
50
|
:'pulp_labels' => :'pulp_labels',
|
|
48
51
|
:'name' => :'name',
|
|
49
52
|
:'repository' => :'repository',
|
|
53
|
+
:'repository_version' => :'repository_version',
|
|
50
54
|
:'publication' => :'publication',
|
|
51
55
|
:'checkpoint' => :'checkpoint'
|
|
52
56
|
}
|
|
@@ -66,6 +70,7 @@ module PulpDebClient
|
|
|
66
70
|
:'pulp_labels' => :'Hash<String, String>',
|
|
67
71
|
:'name' => :'String',
|
|
68
72
|
:'repository' => :'String',
|
|
73
|
+
:'repository_version' => :'String',
|
|
69
74
|
:'publication' => :'String',
|
|
70
75
|
:'checkpoint' => :'Boolean'
|
|
71
76
|
}
|
|
@@ -76,6 +81,7 @@ module PulpDebClient
|
|
|
76
81
|
Set.new([
|
|
77
82
|
:'content_guard',
|
|
78
83
|
:'repository',
|
|
84
|
+
:'repository_version',
|
|
79
85
|
:'publication',
|
|
80
86
|
])
|
|
81
87
|
end
|
|
@@ -127,6 +133,10 @@ module PulpDebClient
|
|
|
127
133
|
self.repository = attributes[:'repository']
|
|
128
134
|
end
|
|
129
135
|
|
|
136
|
+
if attributes.key?(:'repository_version')
|
|
137
|
+
self.repository_version = attributes[:'repository_version']
|
|
138
|
+
end
|
|
139
|
+
|
|
130
140
|
if attributes.key?(:'publication')
|
|
131
141
|
self.publication = attributes[:'publication']
|
|
132
142
|
end
|
|
@@ -210,6 +220,7 @@ module PulpDebClient
|
|
|
210
220
|
pulp_labels == o.pulp_labels &&
|
|
211
221
|
name == o.name &&
|
|
212
222
|
repository == o.repository &&
|
|
223
|
+
repository_version == o.repository_version &&
|
|
213
224
|
publication == o.publication &&
|
|
214
225
|
checkpoint == o.checkpoint
|
|
215
226
|
end
|
|
@@ -223,7 +234,7 @@ module PulpDebClient
|
|
|
223
234
|
# Calculates hash code according to all attributes.
|
|
224
235
|
# @return [Integer] Hash code
|
|
225
236
|
def hash
|
|
226
|
-
[base_path, content_guard, hidden, pulp_labels, name, repository, publication, checkpoint].hash
|
|
237
|
+
[base_path, content_guard, hidden, pulp_labels, name, repository, repository_version, publication, checkpoint].hash
|
|
227
238
|
end
|
|
228
239
|
|
|
229
240
|
# Builds the object from hash
|
|
@@ -36,6 +36,9 @@ module PulpDebClient
|
|
|
36
36
|
# An optional content-guard.
|
|
37
37
|
attr_accessor :content_guard
|
|
38
38
|
|
|
39
|
+
# The Pulp Resource Name (PRN) of the associated optional content guard.
|
|
40
|
+
attr_accessor :content_guard_prn
|
|
41
|
+
|
|
39
42
|
# Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes.
|
|
40
43
|
attr_accessor :no_content_change_since
|
|
41
44
|
|
|
@@ -50,6 +53,9 @@ module PulpDebClient
|
|
|
50
53
|
# The latest RepositoryVersion for this Repository will be served.
|
|
51
54
|
attr_accessor :repository
|
|
52
55
|
|
|
56
|
+
# RepositoryVersion to be served
|
|
57
|
+
attr_accessor :repository_version
|
|
58
|
+
|
|
53
59
|
# Publication to be served
|
|
54
60
|
attr_accessor :publication
|
|
55
61
|
|
|
@@ -65,11 +71,13 @@ module PulpDebClient
|
|
|
65
71
|
:'base_path' => :'base_path',
|
|
66
72
|
:'base_url' => :'base_url',
|
|
67
73
|
:'content_guard' => :'content_guard',
|
|
74
|
+
:'content_guard_prn' => :'content_guard_prn',
|
|
68
75
|
:'no_content_change_since' => :'no_content_change_since',
|
|
69
76
|
:'hidden' => :'hidden',
|
|
70
77
|
:'pulp_labels' => :'pulp_labels',
|
|
71
78
|
:'name' => :'name',
|
|
72
79
|
:'repository' => :'repository',
|
|
80
|
+
:'repository_version' => :'repository_version',
|
|
73
81
|
:'publication' => :'publication',
|
|
74
82
|
:'checkpoint' => :'checkpoint'
|
|
75
83
|
}
|
|
@@ -90,11 +98,13 @@ module PulpDebClient
|
|
|
90
98
|
:'base_path' => :'String',
|
|
91
99
|
:'base_url' => :'String',
|
|
92
100
|
:'content_guard' => :'String',
|
|
101
|
+
:'content_guard_prn' => :'String',
|
|
93
102
|
:'no_content_change_since' => :'String',
|
|
94
103
|
:'hidden' => :'Boolean',
|
|
95
104
|
:'pulp_labels' => :'Hash<String, String>',
|
|
96
105
|
:'name' => :'String',
|
|
97
106
|
:'repository' => :'String',
|
|
107
|
+
:'repository_version' => :'String',
|
|
98
108
|
:'publication' => :'String',
|
|
99
109
|
:'checkpoint' => :'Boolean'
|
|
100
110
|
}
|
|
@@ -105,6 +115,7 @@ module PulpDebClient
|
|
|
105
115
|
Set.new([
|
|
106
116
|
:'content_guard',
|
|
107
117
|
:'repository',
|
|
118
|
+
:'repository_version',
|
|
108
119
|
:'publication',
|
|
109
120
|
])
|
|
110
121
|
end
|
|
@@ -154,6 +165,10 @@ module PulpDebClient
|
|
|
154
165
|
self.content_guard = attributes[:'content_guard']
|
|
155
166
|
end
|
|
156
167
|
|
|
168
|
+
if attributes.key?(:'content_guard_prn')
|
|
169
|
+
self.content_guard_prn = attributes[:'content_guard_prn']
|
|
170
|
+
end
|
|
171
|
+
|
|
157
172
|
if attributes.key?(:'no_content_change_since')
|
|
158
173
|
self.no_content_change_since = attributes[:'no_content_change_since']
|
|
159
174
|
end
|
|
@@ -180,6 +195,10 @@ module PulpDebClient
|
|
|
180
195
|
self.repository = attributes[:'repository']
|
|
181
196
|
end
|
|
182
197
|
|
|
198
|
+
if attributes.key?(:'repository_version')
|
|
199
|
+
self.repository_version = attributes[:'repository_version']
|
|
200
|
+
end
|
|
201
|
+
|
|
183
202
|
if attributes.key?(:'publication')
|
|
184
203
|
self.publication = attributes[:'publication']
|
|
185
204
|
end
|
|
@@ -226,11 +245,13 @@ module PulpDebClient
|
|
|
226
245
|
base_path == o.base_path &&
|
|
227
246
|
base_url == o.base_url &&
|
|
228
247
|
content_guard == o.content_guard &&
|
|
248
|
+
content_guard_prn == o.content_guard_prn &&
|
|
229
249
|
no_content_change_since == o.no_content_change_since &&
|
|
230
250
|
hidden == o.hidden &&
|
|
231
251
|
pulp_labels == o.pulp_labels &&
|
|
232
252
|
name == o.name &&
|
|
233
253
|
repository == o.repository &&
|
|
254
|
+
repository_version == o.repository_version &&
|
|
234
255
|
publication == o.publication &&
|
|
235
256
|
checkpoint == o.checkpoint
|
|
236
257
|
end
|
|
@@ -244,7 +265,7 @@ module PulpDebClient
|
|
|
244
265
|
# Calculates hash code according to all attributes.
|
|
245
266
|
# @return [Integer] Hash code
|
|
246
267
|
def hash
|
|
247
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, base_path, base_url, content_guard, no_content_change_since, hidden, pulp_labels, name, repository, publication, checkpoint].hash
|
|
268
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, base_path, base_url, content_guard, content_guard_prn, no_content_change_since, hidden, pulp_labels, name, repository, repository_version, publication, checkpoint].hash
|
|
248
269
|
end
|
|
249
270
|
|
|
250
271
|
# Builds the object from hash
|