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.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/docs/ContentGenericContentsApi.md +9 -7
  4. data/docs/ContentInstallerFileIndicesApi.md +6 -6
  5. data/docs/ContentInstallerPackagesApi.md +9 -7
  6. data/docs/ContentPackageIndicesApi.md +6 -6
  7. data/docs/ContentPackageReleaseComponentsApi.md +10 -10
  8. data/docs/ContentPackagesApi.md +8 -6
  9. data/docs/ContentReleaseArchitecturesApi.md +6 -6
  10. data/docs/ContentReleaseComponentsApi.md +6 -6
  11. data/docs/ContentReleaseFilesApi.md +6 -6
  12. data/docs/ContentReleasesApi.md +6 -6
  13. data/docs/ContentSourceIndicesApi.md +6 -6
  14. data/docs/ContentSourcePackagesApi.md +6 -6
  15. data/docs/ContentSourceReleaseComponentsApi.md +10 -10
  16. data/docs/DebAptDistribution.md +2 -0
  17. data/docs/DebAptDistributionResponse.md +4 -0
  18. data/docs/DebAptRemote.md +6 -6
  19. data/docs/DebAptRemoteResponse.md +8 -8
  20. data/docs/DebAptRepository.md +2 -0
  21. data/docs/DebAptRepositoryResponse.md +2 -0
  22. data/docs/DistributionsAptApi.md +4 -4
  23. data/docs/PatcheddebAptDistribution.md +2 -0
  24. data/docs/PatcheddebAptRemote.md +6 -6
  25. data/docs/PatcheddebAptRepository.md +2 -0
  26. data/docs/PublicationsAptApi.md +2 -2
  27. data/docs/PublicationsVerbatimApi.md +2 -2
  28. data/docs/RemoteNetworkConfig.md +50 -0
  29. data/docs/RemoteNetworkConfigResponse.md +40 -0
  30. data/docs/RepositoriesAptApi.md +20 -4
  31. data/lib/pulp_deb_client/api/content_generic_contents_api.rb +9 -6
  32. data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +6 -6
  33. data/lib/pulp_deb_client/api/content_installer_packages_api.rb +9 -6
  34. data/lib/pulp_deb_client/api/content_package_indices_api.rb +6 -6
  35. data/lib/pulp_deb_client/api/content_package_release_components_api.rb +10 -10
  36. data/lib/pulp_deb_client/api/content_packages_api.rb +9 -6
  37. data/lib/pulp_deb_client/api/content_release_architectures_api.rb +6 -6
  38. data/lib/pulp_deb_client/api/content_release_components_api.rb +6 -6
  39. data/lib/pulp_deb_client/api/content_release_files_api.rb +6 -6
  40. data/lib/pulp_deb_client/api/content_releases_api.rb +6 -6
  41. data/lib/pulp_deb_client/api/content_source_indices_api.rb +6 -6
  42. data/lib/pulp_deb_client/api/content_source_packages_api.rb +6 -6
  43. data/lib/pulp_deb_client/api/content_source_release_components_api.rb +10 -10
  44. data/lib/pulp_deb_client/api/distributions_apt_api.rb +4 -4
  45. data/lib/pulp_deb_client/api/publications_apt_api.rb +2 -2
  46. data/lib/pulp_deb_client/api/publications_verbatim_api.rb +2 -2
  47. data/lib/pulp_deb_client/api/repositories_apt_api.rb +29 -5
  48. data/lib/pulp_deb_client/models/deb_apt_distribution.rb +12 -1
  49. data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +22 -1
  50. data/lib/pulp_deb_client/models/deb_apt_remote.rb +48 -33
  51. data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +60 -45
  52. data/lib/pulp_deb_client/models/deb_apt_repository.rb +42 -1
  53. data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +42 -1
  54. data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +12 -1
  55. data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +48 -33
  56. data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +42 -1
  57. data/lib/pulp_deb_client/models/remote_network_config.rb +588 -0
  58. data/lib/pulp_deb_client/models/remote_network_config_response.rb +413 -0
  59. data/lib/pulp_deb_client/models/set_label.rb +0 -11
  60. data/lib/pulp_deb_client/models/set_label_response.rb +0 -21
  61. data/lib/pulp_deb_client/models/unset_label.rb +0 -11
  62. data/lib/pulp_deb_client/models/unset_label_response.rb +0 -21
  63. data/lib/pulp_deb_client/version.rb +1 -1
  64. data/lib/pulp_deb_client.rb +2 -0
  65. data/spec/api/content_generic_contents_api_spec.rb +4 -3
  66. data/spec/api/content_installer_file_indices_api_spec.rb +3 -3
  67. data/spec/api/content_installer_packages_api_spec.rb +4 -3
  68. data/spec/api/content_package_indices_api_spec.rb +3 -3
  69. data/spec/api/content_package_release_components_api_spec.rb +5 -5
  70. data/spec/api/content_packages_api_spec.rb +4 -3
  71. data/spec/api/content_release_architectures_api_spec.rb +3 -3
  72. data/spec/api/content_release_components_api_spec.rb +3 -3
  73. data/spec/api/content_release_files_api_spec.rb +3 -3
  74. data/spec/api/content_releases_api_spec.rb +3 -3
  75. data/spec/api/content_source_indices_api_spec.rb +3 -3
  76. data/spec/api/content_source_packages_api_spec.rb +3 -3
  77. data/spec/api/content_source_release_components_api_spec.rb +5 -5
  78. data/spec/api/distributions_apt_api_spec.rb +2 -2
  79. data/spec/api/publications_apt_api_spec.rb +1 -1
  80. data/spec/api/publications_verbatim_api_spec.rb +1 -1
  81. data/spec/api/repositories_apt_api_spec.rb +10 -2
  82. data/spec/models/deb_apt_distribution_response_spec.rb +12 -0
  83. data/spec/models/deb_apt_distribution_spec.rb +6 -0
  84. data/spec/models/deb_apt_remote_response_spec.rb +10 -10
  85. data/spec/models/deb_apt_remote_spec.rb +17 -17
  86. data/spec/models/deb_apt_repository_response_spec.rb +6 -0
  87. data/spec/models/deb_apt_repository_spec.rb +6 -0
  88. data/spec/models/patcheddeb_apt_distribution_spec.rb +6 -0
  89. data/spec/models/patcheddeb_apt_remote_spec.rb +17 -17
  90. data/spec/models/patcheddeb_apt_repository_spec.rb +6 -0
  91. data/spec/models/remote_network_config_response_spec.rb +102 -0
  92. data/spec/models/remote_network_config_spec.rb +132 -0
  93. metadata +88 -80
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83caac54a5d8b20fdb6e40d3072f43f1cfc7a32efe78198fdf748240ffb419cc
4
- data.tar.gz: a088b123b3908b2c658c98f5b60c93004d78c7cc2619378da600635ad0e4dce2
3
+ metadata.gz: 3763e417b31a5b952aebf3c52e8e854ac651c3b270d067954bcaaa61dc10e2b3
4
+ data.tar.gz: a703f07317352f85457d342f9ec478ad74ca94c5c30d7b271318f748ea642ffb
5
5
  SHA512:
6
- metadata.gz: 331b1cd7be8bbfd7ec097a46a096003a75f81c11ede05141562d3f12cb79c5b84f096b1d487ccee7e5bcb33268f95828d69a8b167cc526b884d6bbd2c2809bea
7
- data.tar.gz: b77b5fca8fdece4a39d5fa238ddfc2bb1fcfec12c000fc18582b5f66efb249f46f77661358f626bdccf8c05968eff94d997658484503c75069d862f9e9d64d5c
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.1
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.1.gem
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.1.gem` to install the development dependencies)
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.1'
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 | Repository Version referenced by HREF/PRN
134
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
135
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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** | Repository Version referenced by HREF/PRN | [optional] |
184
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
185
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
188
190
  | **exclude_fields** | [**Array&lt;String&gt;**](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 | Repository Version referenced by HREF/PRN
124
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
125
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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** | Repository Version referenced by HREF/PRN | [optional] |
176
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
177
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
180
180
  | **exclude_fields** | [**Array&lt;String&gt;**](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 &#39;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 | Repository Version referenced by HREF/PRN
145
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
146
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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&lt;String&gt;**](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** | Repository Version referenced by HREF/PRN | [optional] |
210
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
211
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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 | Repository Version referenced by HREF/PRN
124
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
125
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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** | Repository Version referenced by HREF/PRN | [optional] |
176
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
177
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
180
180
  | **exclude_fields** | [**Array&lt;String&gt;**](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: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where package matches value
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: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where release_component matches value
122
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
123
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
124
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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&lt;String&gt;**](String.md) | Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional] |
164
164
  | **orphaned_for** | **Float** | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional] |
165
- | **package** | **String** | Filter results where package matches value | [optional] |
165
+ | **package** | **String** | | [optional] |
166
166
  | **prn__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
167
167
  | **pulp_href__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
168
168
  | **pulp_id__in** | [**Array&lt;String&gt;**](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** | Filter results where release_component matches value | [optional] |
172
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
173
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
174
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
176
176
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
177
177
 
@@ -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 &#39;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 | Repository Version referenced by HREF/PRN
160
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
161
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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: \&quot;release_href,repository_or_repository_version_href\&quot; 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: \&quot;release_component_href,repository_or_repository_version_href\&quot; 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** | Repository Version referenced by HREF/PRN | [optional] |
236
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
237
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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 | Repository Version referenced by HREF/PRN
123
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
124
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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&lt;String&gt;**](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** | Repository Version referenced by HREF/PRN | [optional] |
173
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
174
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
172
+ | **repository_version** | **String** | | [optional] |
173
+ | **repository_version_added** | **String** | | [optional] |
174
+ | **repository_version_removed** | **String** | | [optional] |
175
175
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
176
176
  | **exclude_fields** | [**Array&lt;String&gt;**](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 | Repository Version referenced by HREF/PRN
124
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
125
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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&lt;String&gt;**](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** | Repository Version referenced by HREF/PRN | [optional] |
175
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
176
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
174
+ | **repository_version** | **String** | | [optional] |
175
+ | **repository_version_added** | **String** | | [optional] |
176
+ | **repository_version_removed** | **String** | | [optional] |
177
177
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
178
178
  | **exclude_fields** | [**Array&lt;String&gt;**](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 | Repository Version referenced by HREF/PRN
123
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
124
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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** | Repository Version referenced by HREF/PRN | [optional] |
175
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
176
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
@@ -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 | Repository Version referenced by HREF/PRN
126
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
127
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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&lt;String&gt;**](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** | Repository Version referenced by HREF/PRN | [optional] |
181
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
182
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](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 | Repository Version referenced by HREF/PRN
123
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
124
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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** | Repository Version referenced by HREF/PRN | [optional] |
174
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
175
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
178
178
  | **exclude_fields** | [**Array&lt;String&gt;**](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 | Repository Version referenced by HREF/PRN
137
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
138
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
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: \&quot;release_href,repository_or_repository_version_href\&quot; 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: \&quot;release_component_href,repository_or_repository_version_href\&quot; 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** | Repository Version referenced by HREF/PRN | [optional] |
215
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
216
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
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: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where release_component matches value
121
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
122
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
123
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
124
- source_package: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where source_package matches value
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&lt;String&gt;**](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** | Filter results where release_component matches value | [optional] |
171
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
172
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
173
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
174
- | **source_package** | **String** | Filter results where source_package matches value | [optional] |
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&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
176
176
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
177
177
 
@@ -10,6 +10,7 @@
10
10
  | **pulp_labels** | **Hash&lt;String, String&gt;** | | [optional] |
11
11
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | |
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. \&quot;foo\&quot; and \&quot;foo/bar\&quot;) | |
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 &#x60;null&#x60;, 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&lt;String, String&gt;** | | [optional] |
17
18
  | **name** | **String** | A unique name. Ex, &#x60;rawhide&#x60; and &#x60;stable&#x60;. | |
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&lt;String, String&gt;** | | [optional] |
10
+ | **policy** | [**PolicyEnum**](PolicyEnum.md) | The policy to use when downloading content. The possible values include: &#39;immediate&#39;, &#39;on_demand&#39;, and &#39;streamed&#39;. &#39;immediate&#39; is the default. * &#x60;immediate&#x60; - When syncing, download all metadata and content now. * &#x60;on_demand&#x60; - 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. * &#x60;streamed&#x60; - 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&lt;String, String&gt;** | | [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: &#39;immediate&#39;, &#39;on_demand&#39;, and &#39;streamed&#39;. &#39;immediate&#39; is the default. * &#x60;immediate&#x60; - When syncing, download all metadata and content now. * &#x60;on_demand&#x60; - 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. * &#x60;streamed&#x60; - 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&lt;Object&gt;** | 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 \&quot;Release\&quot; 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 \&quot;flat repository format\&quot;, the distribution must end with a \&quot;/\&quot;. Based on \&quot;/etc/apt/sources.list\&quot; 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 \&quot;flat repository format\&quot;. | [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,