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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3763e417b31a5b952aebf3c52e8e854ac651c3b270d067954bcaaa61dc10e2b3
|
|
4
|
+
data.tar.gz: a703f07317352f85457d342f9ec478ad74ca94c5c30d7b271318f748ea642ffb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c541a9179c6c89f11cf931333abb0d573cb08060a29f5b480ae494db0b692cd04d1d12d0b430b9df71b588846d3a647948909635bd5f6719f8d4be3c59b7efc3
|
|
7
|
+
data.tar.gz: e7666472b23e923921099ed199ed2552cd8afd3acb8a33a6e1745608f3ddda866e237575277171e08c3b3259b791fb8313d46a4b8106d93ac2fe96e895c12a5d
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 3.8.
|
|
10
|
+
- Package version: 3.8.2
|
|
11
11
|
- Generator version: 7.10.0
|
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
13
13
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
@@ -25,16 +25,16 @@ gem build pulp_deb_client.gemspec
|
|
|
25
25
|
Then either install the gem locally:
|
|
26
26
|
|
|
27
27
|
```shell
|
|
28
|
-
gem install ./pulp_deb_client-3.8.
|
|
28
|
+
gem install ./pulp_deb_client-3.8.2.gem
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
(for development, run `gem install --dev ./pulp_deb_client-3.8.
|
|
31
|
+
(for development, run `gem install --dev ./pulp_deb_client-3.8.2.gem` to install the development dependencies)
|
|
32
32
|
|
|
33
33
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
34
34
|
|
|
35
35
|
Finally add this to the Gemfile:
|
|
36
36
|
|
|
37
|
-
gem 'pulp_deb_client', '~> 3.8.
|
|
37
|
+
gem 'pulp_deb_client', '~> 3.8.2'
|
|
38
38
|
|
|
39
39
|
### Install from Git
|
|
40
40
|
|
|
@@ -298,6 +298,8 @@ Class | Method | HTTP request | Description
|
|
|
298
298
|
- [PulpDebClient::PatcheddebAptRemote](docs/PatcheddebAptRemote.md)
|
|
299
299
|
- [PulpDebClient::PatcheddebAptRepository](docs/PatcheddebAptRepository.md)
|
|
300
300
|
- [PulpDebClient::PolicyEnum](docs/PolicyEnum.md)
|
|
301
|
+
- [PulpDebClient::RemoteNetworkConfig](docs/RemoteNetworkConfig.md)
|
|
302
|
+
- [PulpDebClient::RemoteNetworkConfigResponse](docs/RemoteNetworkConfigResponse.md)
|
|
301
303
|
- [PulpDebClient::Repair](docs/Repair.md)
|
|
302
304
|
- [PulpDebClient::RepositoryAddRemoveContent](docs/RepositoryAddRemoveContent.md)
|
|
303
305
|
- [PulpDebClient::RepositoryVersionResponse](docs/RepositoryVersionResponse.md)
|
|
@@ -40,7 +40,8 @@ opts = {
|
|
|
40
40
|
artifact: 'artifact_example', # String | Artifact file representing the physical content
|
|
41
41
|
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
42
42
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
43
|
-
file_url: 'file_url_example' # String | A url that Pulp can download and turn into the content unit.
|
|
43
|
+
file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
|
|
44
|
+
downloader_config: PulpDebClient::RemoteNetworkConfig.new # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
begin
|
|
@@ -82,6 +83,7 @@ end
|
|
|
82
83
|
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
83
84
|
| **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
|
|
84
85
|
| **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
|
|
86
|
+
| **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional] |
|
|
85
87
|
|
|
86
88
|
### Return type
|
|
87
89
|
|
|
@@ -130,9 +132,9 @@ opts = {
|
|
|
130
132
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
131
133
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
132
134
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
133
|
-
repository_version: 'repository_version_example', # String |
|
|
134
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
135
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
135
|
+
repository_version: 'repository_version_example', # String |
|
|
136
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
137
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
136
138
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
137
139
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
138
140
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -180,9 +182,9 @@ end
|
|
|
180
182
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
181
183
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
182
184
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
183
|
-
| **repository_version** | **String** |
|
|
184
|
-
| **repository_version_added** | **String** |
|
|
185
|
-
| **repository_version_removed** | **String** |
|
|
185
|
+
| **repository_version** | **String** | | [optional] |
|
|
186
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
187
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
186
188
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
187
189
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
188
190
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
@@ -120,9 +120,9 @@ opts = {
|
|
|
120
120
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
121
121
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
122
122
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
123
|
-
repository_version: 'repository_version_example', # String |
|
|
124
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
123
|
+
repository_version: 'repository_version_example', # String |
|
|
124
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
126
126
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
127
127
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
128
128
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -172,9 +172,9 @@ end
|
|
|
172
172
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
173
173
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
174
174
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
175
|
-
| **repository_version** | **String** |
|
|
176
|
-
| **repository_version_added** | **String** |
|
|
177
|
-
| **repository_version_removed** | **String** |
|
|
175
|
+
| **repository_version** | **String** | | [optional] |
|
|
176
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
177
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
178
178
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
179
179
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
180
180
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
@@ -40,7 +40,8 @@ opts = {
|
|
|
40
40
|
relative_path: 'relative_path_example', # String | Path where the artifact is located relative to distributions base_path
|
|
41
41
|
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
42
42
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
43
|
-
file_url: 'file_url_example' # String | A url that Pulp can download and turn into the content unit.
|
|
43
|
+
file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
|
|
44
|
+
downloader_config: PulpDebClient::RemoteNetworkConfig.new # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
begin
|
|
@@ -82,6 +83,7 @@ end
|
|
|
82
83
|
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
83
84
|
| **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
|
|
84
85
|
| **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
|
|
86
|
+
| **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional] |
|
|
85
87
|
|
|
86
88
|
### Return type
|
|
87
89
|
|
|
@@ -141,9 +143,9 @@ opts = {
|
|
|
141
143
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
142
144
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
143
145
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
144
|
-
repository_version: 'repository_version_example', # String |
|
|
145
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
146
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
146
|
+
repository_version: 'repository_version_example', # String |
|
|
147
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
148
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
147
149
|
section: 'section_example', # String | Filter results where section matches value
|
|
148
150
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
149
151
|
source: 'source_example', # String | Filter results where source matches value
|
|
@@ -206,9 +208,9 @@ end
|
|
|
206
208
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
207
209
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
208
210
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
209
|
-
| **repository_version** | **String** |
|
|
210
|
-
| **repository_version_added** | **String** |
|
|
211
|
-
| **repository_version_removed** | **String** |
|
|
211
|
+
| **repository_version** | **String** | | [optional] |
|
|
212
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
213
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
212
214
|
| **section** | **String** | Filter results where section matches value | [optional] |
|
|
213
215
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
214
216
|
| **source** | **String** | Filter results where source matches value | [optional] |
|
|
@@ -120,9 +120,9 @@ opts = {
|
|
|
120
120
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
121
121
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
122
122
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
123
|
-
repository_version: 'repository_version_example', # String |
|
|
124
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
123
|
+
repository_version: 'repository_version_example', # String |
|
|
124
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
126
126
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
127
127
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
128
128
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -172,9 +172,9 @@ end
|
|
|
172
172
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
173
173
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
174
174
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
175
|
-
| **repository_version** | **String** |
|
|
176
|
-
| **repository_version_added** | **String** |
|
|
177
|
-
| **repository_version_removed** | **String** |
|
|
175
|
+
| **repository_version** | **String** | | [optional] |
|
|
176
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
177
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
178
178
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
179
179
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
180
180
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
@@ -112,16 +112,16 @@ opts = {
|
|
|
112
112
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
113
113
|
ordering: ['-pk'], # Array<String> | 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) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
114
114
|
orphaned_for: 8.14, # Float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
|
115
|
-
package: '
|
|
115
|
+
package: 'package_example', # String |
|
|
116
116
|
prn__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
117
117
|
pulp_href__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
118
118
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
119
119
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
120
120
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
121
|
-
release_component: '
|
|
122
|
-
repository_version: 'repository_version_example', # String |
|
|
123
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
121
|
+
release_component: 'release_component_example', # String |
|
|
122
|
+
repository_version: 'repository_version_example', # String |
|
|
123
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
125
125
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
126
126
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
127
127
|
}
|
|
@@ -162,16 +162,16 @@ end
|
|
|
162
162
|
| **offset** | **Integer** | The initial index from which to return the results. | [optional] |
|
|
163
163
|
| **ordering** | [**Array<String>**](String.md) | 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) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional] |
|
|
164
164
|
| **orphaned_for** | **Float** | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional] |
|
|
165
|
-
| **package** | **String** |
|
|
165
|
+
| **package** | **String** | | [optional] |
|
|
166
166
|
| **prn__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
167
167
|
| **pulp_href__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
168
168
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
169
169
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
170
170
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
171
|
-
| **release_component** | **String** |
|
|
172
|
-
| **repository_version** | **String** |
|
|
173
|
-
| **repository_version_added** | **String** |
|
|
174
|
-
| **repository_version_removed** | **String** |
|
|
171
|
+
| **release_component** | **String** | | [optional] |
|
|
172
|
+
| **repository_version** | **String** | | [optional] |
|
|
173
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
174
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
175
175
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
176
176
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
177
177
|
|
data/docs/ContentPackagesApi.md
CHANGED
|
@@ -41,6 +41,7 @@ opts = {
|
|
|
41
41
|
file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
|
|
42
42
|
upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
|
|
43
43
|
file_url: 'file_url_example', # String | A url that Pulp can download and turn into the content unit.
|
|
44
|
+
downloader_config: PulpDebClient::RemoteNetworkConfig.new, # RemoteNetworkConfig | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url.
|
|
44
45
|
distribution: 'distribution_example', # String | Name of the distribution.
|
|
45
46
|
component: 'component_example' # String | Name of the component.
|
|
46
47
|
}
|
|
@@ -84,6 +85,7 @@ end
|
|
|
84
85
|
| **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
|
|
85
86
|
| **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
|
|
86
87
|
| **file_url** | **String** | A url that Pulp can download and turn into the content unit. | [optional] |
|
|
88
|
+
| **downloader_config** | [**RemoteNetworkConfig**](RemoteNetworkConfig.md) | Configuration for the download process (e.g., proxies, auth, timeouts). Only applicable when providing a 'file_url. | [optional] |
|
|
87
89
|
| **distribution** | **String** | Name of the distribution. | [optional] |
|
|
88
90
|
| **component** | **String** | Name of the component. | [optional] |
|
|
89
91
|
|
|
@@ -156,9 +158,9 @@ opts = {
|
|
|
156
158
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
157
159
|
release: 'release_example', # String | 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)
|
|
158
160
|
release_component: 'release_component_example', # String | 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)
|
|
159
|
-
repository_version: 'repository_version_example', # String |
|
|
160
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
161
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
161
|
+
repository_version: 'repository_version_example', # String |
|
|
162
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
163
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
162
164
|
section: 'section_example', # String | Filter results where section matches value
|
|
163
165
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
164
166
|
source: 'source_example', # String | Filter results where source matches value
|
|
@@ -232,9 +234,9 @@ end
|
|
|
232
234
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
233
235
|
| **release** | **String** | 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) | [optional] |
|
|
234
236
|
| **release_component** | **String** | 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) | [optional] |
|
|
235
|
-
| **repository_version** | **String** |
|
|
236
|
-
| **repository_version_added** | **String** |
|
|
237
|
-
| **repository_version_removed** | **String** |
|
|
237
|
+
| **repository_version** | **String** | | [optional] |
|
|
238
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
239
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
238
240
|
| **section** | **String** | Filter results where section matches value | [optional] |
|
|
239
241
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
240
242
|
| **source** | **String** | Filter results where source matches value | [optional] |
|
|
@@ -119,9 +119,9 @@ opts = {
|
|
|
119
119
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
120
120
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
121
121
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
122
|
-
repository_version: 'repository_version_example', # String |
|
|
123
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
122
|
+
repository_version: 'repository_version_example', # String |
|
|
123
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
125
125
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
126
126
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
127
127
|
}
|
|
@@ -169,9 +169,9 @@ end
|
|
|
169
169
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
170
170
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
171
171
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
172
|
-
| **repository_version** | **String** |
|
|
173
|
-
| **repository_version_added** | **String** |
|
|
174
|
-
| **repository_version_removed** | **String** |
|
|
172
|
+
| **repository_version** | **String** | | [optional] |
|
|
173
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
174
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
175
175
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
176
176
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
177
177
|
|
|
@@ -120,9 +120,9 @@ opts = {
|
|
|
120
120
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
121
121
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
122
122
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
123
|
-
repository_version: 'repository_version_example', # String |
|
|
124
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
123
|
+
repository_version: 'repository_version_example', # String |
|
|
124
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
125
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
126
126
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
127
127
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
128
128
|
}
|
|
@@ -171,9 +171,9 @@ end
|
|
|
171
171
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
172
172
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
173
173
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
174
|
-
| **repository_version** | **String** |
|
|
175
|
-
| **repository_version_added** | **String** |
|
|
176
|
-
| **repository_version_removed** | **String** |
|
|
174
|
+
| **repository_version** | **String** | | [optional] |
|
|
175
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
176
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
177
177
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
178
178
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
179
179
|
|
|
@@ -119,9 +119,9 @@ opts = {
|
|
|
119
119
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
120
120
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
121
121
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
122
|
-
repository_version: 'repository_version_example', # String |
|
|
123
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
122
|
+
repository_version: 'repository_version_example', # String |
|
|
123
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
125
125
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
126
126
|
suite: 'suite_example', # String | Filter results where suite matches value
|
|
127
127
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
@@ -171,9 +171,9 @@ end
|
|
|
171
171
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
172
172
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
173
173
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
174
|
-
| **repository_version** | **String** |
|
|
175
|
-
| **repository_version_added** | **String** |
|
|
176
|
-
| **repository_version_removed** | **String** |
|
|
174
|
+
| **repository_version** | **String** | | [optional] |
|
|
175
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
176
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
177
177
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
178
178
|
| **suite** | **String** | Filter results where suite matches value | [optional] |
|
|
179
179
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
data/docs/ContentReleasesApi.md
CHANGED
|
@@ -122,9 +122,9 @@ opts = {
|
|
|
122
122
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
123
123
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
124
124
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
125
|
-
repository_version: 'repository_version_example', # String |
|
|
126
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
127
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
125
|
+
repository_version: 'repository_version_example', # String |
|
|
126
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
127
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
128
128
|
suite: 'suite_example', # String | Filter results where suite matches value
|
|
129
129
|
version: 'version_example', # String | Filter results where version matches value
|
|
130
130
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
@@ -177,9 +177,9 @@ end
|
|
|
177
177
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
178
178
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
179
179
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
180
|
-
| **repository_version** | **String** |
|
|
181
|
-
| **repository_version_added** | **String** |
|
|
182
|
-
| **repository_version_removed** | **String** |
|
|
180
|
+
| **repository_version** | **String** | | [optional] |
|
|
181
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
182
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
183
183
|
| **suite** | **String** | Filter results where suite matches value | [optional] |
|
|
184
184
|
| **version** | **String** | Filter results where version matches value | [optional] |
|
|
185
185
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
@@ -119,9 +119,9 @@ opts = {
|
|
|
119
119
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
120
120
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
121
121
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
122
|
-
repository_version: 'repository_version_example', # String |
|
|
123
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
122
|
+
repository_version: 'repository_version_example', # String |
|
|
123
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
124
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
125
125
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
126
126
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
127
127
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
@@ -170,9 +170,9 @@ end
|
|
|
170
170
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
171
171
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
172
172
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
173
|
-
| **repository_version** | **String** |
|
|
174
|
-
| **repository_version_added** | **String** |
|
|
175
|
-
| **repository_version_removed** | **String** |
|
|
173
|
+
| **repository_version** | **String** | | [optional] |
|
|
174
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
175
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
176
176
|
| **sha256** | **String** | Filter results where sha256 matches value | [optional] |
|
|
177
177
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
178
178
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
@@ -133,9 +133,9 @@ opts = {
|
|
|
133
133
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
134
134
|
release: 'release_example', # String | 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)
|
|
135
135
|
release_component: 'release_component_example', # String | 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)
|
|
136
|
-
repository_version: 'repository_version_example', # String |
|
|
137
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
138
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
136
|
+
repository_version: 'repository_version_example', # String |
|
|
137
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
138
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
139
139
|
source: 'source_example', # String | Filter results where source matches value
|
|
140
140
|
standards_version: 'standards_version_example', # String | Filter results where standards_version matches value
|
|
141
141
|
testsuite: 'testsuite_example', # String | Filter results where testsuite matches value
|
|
@@ -211,9 +211,9 @@ end
|
|
|
211
211
|
| **relative_path** | **String** | Filter results where relative_path matches value | [optional] |
|
|
212
212
|
| **release** | **String** | 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) | [optional] |
|
|
213
213
|
| **release_component** | **String** | 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) | [optional] |
|
|
214
|
-
| **repository_version** | **String** |
|
|
215
|
-
| **repository_version_added** | **String** |
|
|
216
|
-
| **repository_version_removed** | **String** |
|
|
214
|
+
| **repository_version** | **String** | | [optional] |
|
|
215
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
216
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
217
217
|
| **source** | **String** | Filter results where source matches value | [optional] |
|
|
218
218
|
| **standards_version** | **String** | Filter results where standards_version matches value | [optional] |
|
|
219
219
|
| **testsuite** | **String** | Filter results where testsuite matches value | [optional] |
|
|
@@ -117,11 +117,11 @@ opts = {
|
|
|
117
117
|
pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
|
|
118
118
|
pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
|
|
119
119
|
q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
|
|
120
|
-
release_component: '
|
|
121
|
-
repository_version: 'repository_version_example', # String |
|
|
122
|
-
repository_version_added: 'repository_version_added_example', # String |
|
|
123
|
-
repository_version_removed: 'repository_version_removed_example', # String |
|
|
124
|
-
source_package: '
|
|
120
|
+
release_component: 'release_component_example', # String |
|
|
121
|
+
repository_version: 'repository_version_example', # String |
|
|
122
|
+
repository_version_added: 'repository_version_added_example', # String |
|
|
123
|
+
repository_version_removed: 'repository_version_removed_example', # String |
|
|
124
|
+
source_package: 'source_package_example', # String |
|
|
125
125
|
fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
|
|
126
126
|
exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
|
|
127
127
|
}
|
|
@@ -167,11 +167,11 @@ end
|
|
|
167
167
|
| **pulp_id__in** | [**Array<String>**](String.md) | Multiple values may be separated by commas. | [optional] |
|
|
168
168
|
| **pulp_label_select** | **String** | Filter labels by search string | [optional] |
|
|
169
169
|
| **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
|
|
170
|
-
| **release_component** | **String** |
|
|
171
|
-
| **repository_version** | **String** |
|
|
172
|
-
| **repository_version_added** | **String** |
|
|
173
|
-
| **repository_version_removed** | **String** |
|
|
174
|
-
| **source_package** | **String** |
|
|
170
|
+
| **release_component** | **String** | | [optional] |
|
|
171
|
+
| **repository_version** | **String** | | [optional] |
|
|
172
|
+
| **repository_version_added** | **String** | | [optional] |
|
|
173
|
+
| **repository_version_removed** | **String** | | [optional] |
|
|
174
|
+
| **source_package** | **String** | | [optional] |
|
|
175
175
|
| **fields** | [**Array<String>**](String.md) | A list of fields to include in the response. | [optional] |
|
|
176
176
|
| **exclude_fields** | [**Array<String>**](String.md) | A list of fields to exclude from the response. | [optional] |
|
|
177
177
|
|
data/docs/DebAptDistribution.md
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
11
11
|
| **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
|
|
12
12
|
| **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
|
|
13
|
+
| **repository_version** | **String** | RepositoryVersion to be served | [optional] |
|
|
13
14
|
| **publication** | **String** | Publication to be served | [optional] |
|
|
14
15
|
| **checkpoint** | **Boolean** | | [optional] |
|
|
15
16
|
|
|
@@ -25,6 +26,7 @@ instance = PulpDebClient::DebAptDistribution.new(
|
|
|
25
26
|
pulp_labels: null,
|
|
26
27
|
name: null,
|
|
27
28
|
repository: null,
|
|
29
|
+
repository_version: null,
|
|
28
30
|
publication: null,
|
|
29
31
|
checkpoint: null
|
|
30
32
|
)
|
|
@@ -11,11 +11,13 @@
|
|
|
11
11
|
| **base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | |
|
|
12
12
|
| **base_url** | **String** | The URL for accessing the publication as defined by this distribution. | [optional][readonly] |
|
|
13
13
|
| **content_guard** | **String** | An optional content-guard. | [optional] |
|
|
14
|
+
| **content_guard_prn** | **String** | The Pulp Resource Name (PRN) of the associated optional content guard. | [optional][readonly] |
|
|
14
15
|
| **no_content_change_since** | **String** | Timestamp since when the distributed content served by this distribution has not changed. If equals to `null`, no guarantee is provided about content changes. | [optional][readonly] |
|
|
15
16
|
| **hidden** | **Boolean** | Whether this distribution should be shown in the content app. | [optional][default to false] |
|
|
16
17
|
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
17
18
|
| **name** | **String** | A unique name. Ex, `rawhide` and `stable`. | |
|
|
18
19
|
| **repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional] |
|
|
20
|
+
| **repository_version** | **String** | RepositoryVersion to be served | [optional] |
|
|
19
21
|
| **publication** | **String** | Publication to be served | [optional] |
|
|
20
22
|
| **checkpoint** | **Boolean** | | [optional] |
|
|
21
23
|
|
|
@@ -32,11 +34,13 @@ instance = PulpDebClient::DebAptDistributionResponse.new(
|
|
|
32
34
|
base_path: null,
|
|
33
35
|
base_url: null,
|
|
34
36
|
content_guard: null,
|
|
37
|
+
content_guard_prn: null,
|
|
35
38
|
no_content_change_since: null,
|
|
36
39
|
hidden: null,
|
|
37
40
|
pulp_labels: null,
|
|
38
41
|
name: null,
|
|
39
42
|
repository: null,
|
|
43
|
+
repository_version: null,
|
|
40
44
|
publication: null,
|
|
41
45
|
checkpoint: null
|
|
42
46
|
)
|
data/docs/DebAptRemote.md
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **name** | **String** | A unique name for this remote. | |
|
|
8
8
|
| **url** | **String** | The URL of an external content source. | |
|
|
9
|
+
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
10
|
+
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional] |
|
|
9
11
|
| **ca_cert** | **String** | A PEM encoded CA certificate used to validate the server certificate presented by the remote server. | [optional] |
|
|
10
12
|
| **client_cert** | **String** | A PEM encoded client certificate used for authentication. | [optional] |
|
|
11
13
|
| **client_key** | **String** | A PEM encoded private key used for authentication. | [optional] |
|
|
@@ -15,15 +17,13 @@
|
|
|
15
17
|
| **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
16
18
|
| **username** | **String** | The username to be used for authentication when syncing. | [optional] |
|
|
17
19
|
| **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional] |
|
|
18
|
-
| **pulp_labels** | **Hash<String, String>** | | [optional] |
|
|
19
|
-
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
20
20
|
| **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional] |
|
|
21
|
-
| **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: 'immediate', 'on_demand', and 'streamed'. 'immediate' is the default. * `immediate` - When syncing, download all metadata and content now. * `on_demand` - When syncing, download metadata, but do not download content now. Instead, download content as clients request it, and save it in Pulp to be served for future client requests. * `streamed` - When syncing, download metadata, but do not download content now. Instead,download content as clients request it, but never save it in Pulp. This causes future requests for that same content to have to be downloaded again. | [optional] |
|
|
22
21
|
| **total_timeout** | **Float** | aiohttp.ClientTimeout.total (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] |
|
|
23
22
|
| **connect_timeout** | **Float** | aiohttp.ClientTimeout.connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] |
|
|
24
23
|
| **sock_connect_timeout** | **Float** | aiohttp.ClientTimeout.sock_connect (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] |
|
|
25
24
|
| **sock_read_timeout** | **Float** | aiohttp.ClientTimeout.sock_read (q.v.) for download-connections. The default is null, which will cause the default from the aiohttp library to be used. | [optional] |
|
|
26
25
|
| **headers** | **Array<Object>** | Headers for aiohttp.Clientsession | [optional] |
|
|
26
|
+
| **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional] |
|
|
27
27
|
| **rate_limit** | **Integer** | Limits requests per second for each concurrent downloader | [optional] |
|
|
28
28
|
| **distributions** | **String** | Whitespace separated list of distributions to sync. The distribution is the path from the repository root to the \"Release\" file you want to access. This is often, but not always, equal to either the codename or the suite of the release you want to sync. If the repository you are trying to sync uses \"flat repository format\", the distribution must end with a \"/\". Based on \"/etc/apt/sources.list\" syntax. | |
|
|
29
29
|
| **components** | **String** | Whitespace separatet list of components to sync. If none are supplied, all that are available will be synchronized. Leave blank for repositores using \"flat repository format\". | [optional] |
|
|
@@ -42,6 +42,8 @@ require 'pulp_deb_client'
|
|
|
42
42
|
instance = PulpDebClient::DebAptRemote.new(
|
|
43
43
|
name: null,
|
|
44
44
|
url: null,
|
|
45
|
+
pulp_labels: null,
|
|
46
|
+
policy: null,
|
|
45
47
|
ca_cert: null,
|
|
46
48
|
client_cert: null,
|
|
47
49
|
client_key: null,
|
|
@@ -51,15 +53,13 @@ instance = PulpDebClient::DebAptRemote.new(
|
|
|
51
53
|
proxy_password: null,
|
|
52
54
|
username: null,
|
|
53
55
|
password: null,
|
|
54
|
-
pulp_labels: null,
|
|
55
|
-
download_concurrency: null,
|
|
56
56
|
max_retries: null,
|
|
57
|
-
policy: null,
|
|
58
57
|
total_timeout: null,
|
|
59
58
|
connect_timeout: null,
|
|
60
59
|
sock_connect_timeout: null,
|
|
61
60
|
sock_read_timeout: null,
|
|
62
61
|
headers: null,
|
|
62
|
+
download_concurrency: null,
|
|
63
63
|
rate_limit: null,
|
|
64
64
|
distributions: null,
|
|
65
65
|
components: null,
|