pulp_rpm_client 3.35.1 → 3.35.3

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 (80) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContentAdvisoriesApi.md +8 -6
  4. data/docs/ContentDistributionTreesApi.md +6 -6
  5. data/docs/ContentModulemdDefaultsApi.md +6 -6
  6. data/docs/ContentModulemdObsoletesApi.md +6 -6
  7. data/docs/ContentModulemdsApi.md +6 -6
  8. data/docs/ContentPackagecategoriesApi.md +6 -6
  9. data/docs/ContentPackageenvironmentsApi.md +6 -6
  10. data/docs/ContentPackagegroupsApi.md +6 -6
  11. data/docs/ContentPackagelangpacksApi.md +6 -6
  12. data/docs/ContentPackagesApi.md +10 -6
  13. data/docs/ContentRepoMetadataFilesApi.md +6 -6
  14. data/docs/DistributionsRpmApi.md +4 -4
  15. data/docs/PatchedrpmRpmDistribution.md +2 -0
  16. data/docs/PatchedrpmRpmRepository.md +3 -1
  17. data/docs/PublicationsRpmApi.md +2 -2
  18. data/docs/RepositoriesRpmApi.md +20 -4
  19. data/docs/RepositoryAddRemoveContent.md +3 -1
  20. data/docs/RpmModulemd.md +2 -0
  21. data/docs/RpmModulemdDefaults.md +2 -0
  22. data/docs/RpmModulemdObsolete.md +2 -0
  23. data/docs/RpmRpmDistribution.md +2 -0
  24. data/docs/RpmRpmDistributionResponse.md +4 -0
  25. data/docs/RpmRpmRepository.md +3 -1
  26. data/docs/RpmRpmRepositoryResponse.md +3 -1
  27. data/lib/pulp_rpm_client/api/content_advisories_api.rb +9 -6
  28. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +6 -6
  29. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +6 -6
  30. data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +6 -6
  31. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +6 -6
  32. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +6 -6
  33. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +6 -6
  34. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +6 -6
  35. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +6 -6
  36. data/lib/pulp_rpm_client/api/content_packages_api.rb +12 -6
  37. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +6 -6
  38. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +4 -4
  39. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +2 -2
  40. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +29 -5
  41. data/lib/pulp_rpm_client/models/patchedrpm_rpm_distribution.rb +12 -1
  42. data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +37 -7
  43. data/lib/pulp_rpm_client/models/repository_add_remove_content.rb +16 -4
  44. data/lib/pulp_rpm_client/models/rpm_modulemd.rb +11 -1
  45. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults.rb +11 -1
  46. data/lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb +11 -1
  47. data/lib/pulp_rpm_client/models/rpm_rpm_distribution.rb +12 -1
  48. data/lib/pulp_rpm_client/models/rpm_rpm_distribution_response.rb +22 -1
  49. data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +37 -7
  50. data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +29 -8
  51. data/lib/pulp_rpm_client/models/set_label.rb +0 -11
  52. data/lib/pulp_rpm_client/models/set_label_response.rb +0 -21
  53. data/lib/pulp_rpm_client/models/unset_label.rb +0 -11
  54. data/lib/pulp_rpm_client/models/unset_label_response.rb +0 -21
  55. data/lib/pulp_rpm_client/version.rb +1 -1
  56. data/spec/api/content_advisories_api_spec.rb +4 -3
  57. data/spec/api/content_distribution_trees_api_spec.rb +3 -3
  58. data/spec/api/content_modulemd_defaults_api_spec.rb +3 -3
  59. data/spec/api/content_modulemd_obsoletes_api_spec.rb +3 -3
  60. data/spec/api/content_modulemds_api_spec.rb +3 -3
  61. data/spec/api/content_packagecategories_api_spec.rb +3 -3
  62. data/spec/api/content_packageenvironments_api_spec.rb +3 -3
  63. data/spec/api/content_packagegroups_api_spec.rb +3 -3
  64. data/spec/api/content_packagelangpacks_api_spec.rb +3 -3
  65. data/spec/api/content_packages_api_spec.rb +5 -3
  66. data/spec/api/content_repo_metadata_files_api_spec.rb +3 -3
  67. data/spec/api/distributions_rpm_api_spec.rb +2 -2
  68. data/spec/api/publications_rpm_api_spec.rb +1 -1
  69. data/spec/api/repositories_rpm_api_spec.rb +10 -2
  70. data/spec/models/patchedrpm_rpm_distribution_spec.rb +6 -0
  71. data/spec/models/patchedrpm_rpm_repository_spec.rb +6 -0
  72. data/spec/models/repository_add_remove_content_spec.rb +6 -0
  73. data/spec/models/rpm_modulemd_defaults_spec.rb +6 -0
  74. data/spec/models/rpm_modulemd_obsolete_spec.rb +6 -0
  75. data/spec/models/rpm_modulemd_spec.rb +6 -0
  76. data/spec/models/rpm_rpm_distribution_response_spec.rb +12 -0
  77. data/spec/models/rpm_rpm_distribution_spec.rb +6 -0
  78. data/spec/models/rpm_rpm_repository_response_spec.rb +6 -0
  79. data/spec/models/rpm_rpm_repository_spec.rb +6 -0
  80. metadata +83 -83
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8be4650ed72061f4ab178f223f2766e8d71c461e5ec8d76630226198ff06a205
4
- data.tar.gz: cf7ab2d26a4205b6d3bd5b643d8988d3137dddc957b7b0c0cb512db988743e2f
3
+ metadata.gz: 3b36aa9c8378ab98d4862c7b637dba2140d1c95a8e8a95ad702498b2768d8a62
4
+ data.tar.gz: c3fe3d185ce07f686c4ce725b7a954908f16546ddb8b7787b39ff726558daede
5
5
  SHA512:
6
- metadata.gz: fd849d40d0d4851a7fa89f375bae32d87186adece8327a82797524249eba9321b50f494cd89f8dba5d2dae9ecbdc03f86b60afba5138788b03530d91695423bf
7
- data.tar.gz: bab03b420bb8768cad096fa9d10e6d1d5f751ee391fe3eea08eb741e203c6b7957c743c8d40586d1c2f532e875d9aa4cb40c954dee21bed5d9edb7922022e240
6
+ metadata.gz: 4631912cf95027e24d35027a619963c426db74437bc230b52f1977014caf7730ca4b5b8d2ee39f3504704b1c2d72b1ae89bd82405d9e0a97ea8d71ebb64aec23
7
+ data.tar.gz: 7f6792101c56664b48f8c21df4025a30b247b95f290edf6563119839d94008cd87ae4ab86e4437b27e39cda69df7d4fc6f29012527252a797c6af579f2227230
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.35.1
10
+ - Package version: 3.35.3
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_rpm_client.gemspec
25
25
  Then either install the gem locally:
26
26
 
27
27
  ```shell
28
- gem install ./pulp_rpm_client-3.35.1.gem
28
+ gem install ./pulp_rpm_client-3.35.3.gem
29
29
  ```
30
30
 
31
- (for development, run `gem install --dev ./pulp_rpm_client-3.35.1.gem` to install the development dependencies)
31
+ (for development, run `gem install --dev ./pulp_rpm_client-3.35.3.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_rpm_client', '~> 3.35.1'
37
+ gem 'pulp_rpm_client', '~> 3.35.3'
38
38
 
39
39
  ### Install from Git
40
40
 
@@ -35,6 +35,7 @@ api_instance = PulpRpmClient::ContentAdvisoriesApi.new
35
35
  opts = {
36
36
  x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
37
37
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
38
+ overwrite: true, # Boolean | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true.
38
39
  pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
39
40
  file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
40
41
  upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit.
@@ -75,6 +76,7 @@ end
75
76
  | ---- | ---- | ----------- | ----- |
76
77
  | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
77
78
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
79
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
78
80
  | **pulp_labels** | [**Hash&lt;String, String&gt;**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
79
81
  | **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
80
82
  | **upload** | **String** | An uncommitted upload that may be turned into the content unit. | [optional] |
@@ -129,9 +131,9 @@ opts = {
129
131
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
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
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
133
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
134
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
134
+ repository_version: 'repository_version_example', # String |
135
+ repository_version_added: 'repository_version_added_example', # String |
136
+ repository_version_removed: 'repository_version_removed_example', # String |
135
137
  severity: 'severity_example', # String | Filter results where severity matches value
136
138
  severity__in: ['inner_example'], # Array<String> | Filter results where severity is in a comma-separated list of values
137
139
  severity__ne: 'severity__ne_example', # String | Filter results where severity not equal to value
@@ -188,9 +190,9 @@ end
188
190
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
189
191
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
190
192
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
191
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
192
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
193
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
193
+ | **repository_version** | **String** | | [optional] |
194
+ | **repository_version_added** | **String** | | [optional] |
195
+ | **repository_version_removed** | **String** | | [optional] |
194
196
  | **severity** | **String** | Filter results where severity matches value | [optional] |
195
197
  | **severity__in** | [**Array&lt;String&gt;**](String.md) | Filter results where severity is in a comma-separated list of values | [optional] |
196
198
  | **severity__ne** | **String** | Filter results where severity not equal to value | [optional] |
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -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
  sha256: 'sha256_example', # String |
126
126
  stream: 'stream_example', # String | Filter results where stream matches value
127
127
  stream__in: ['inner_example'], # Array<String> | Filter results where stream is in a comma-separated list of values
@@ -172,9 +172,9 @@ end
172
172
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
173
173
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
174
174
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [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** | | [optional] |
179
179
  | **stream** | **String** | Filter results where stream matches value | [optional] |
180
180
  | **stream__in** | [**Array&lt;String&gt;**](String.md) | Filter results where stream is in a comma-separated list of values | [optional] |
@@ -117,9 +117,9 @@ 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
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
121
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
122
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
120
+ repository_version: 'repository_version_example', # String |
121
+ repository_version_added: 'repository_version_added_example', # String |
122
+ repository_version_removed: 'repository_version_removed_example', # String |
123
123
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
124
124
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
125
125
  }
@@ -165,9 +165,9 @@ end
165
165
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
166
166
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
167
167
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
168
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
169
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
170
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
168
+ | **repository_version** | **String** | | [optional] |
169
+ | **repository_version_added** | **String** | | [optional] |
170
+ | **repository_version_removed** | **String** | | [optional] |
171
171
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
172
172
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
173
173
 
@@ -123,9 +123,9 @@ opts = {
123
123
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
124
124
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
125
125
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
126
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
127
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
128
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
126
+ repository_version: 'repository_version_example', # String |
127
+ repository_version_added: 'repository_version_added_example', # String |
128
+ repository_version_removed: 'repository_version_removed_example', # String |
129
129
  sha256: 'sha256_example', # String |
130
130
  stream: 'stream_example', # String | Filter results where stream matches value
131
131
  stream__in: ['inner_example'], # Array<String> | Filter results where stream is in a comma-separated list of values
@@ -182,9 +182,9 @@ end
182
182
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
183
183
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
184
184
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
185
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
186
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
187
- | **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] |
188
188
  | **sha256** | **String** | | [optional] |
189
189
  | **stream** | **String** | Filter results where stream matches value | [optional] |
190
190
  | **stream__in** | [**Array&lt;String&gt;**](String.md) | Filter results where stream is in a comma-separated list of values | [optional] |
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -36,6 +36,7 @@ api_instance = PulpRpmClient::ContentPackagesApi.new
36
36
  opts = {
37
37
  x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
38
38
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
39
+ overwrite: true, # Boolean | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true.
39
40
  pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
40
41
  artifact: 'artifact_example', # String | Artifact file representing the physical content
41
42
  relative_path: 'relative_path_example', # String | Path where the artifact is located relative to distributions base_path
@@ -78,6 +79,7 @@ end
78
79
  | ---- | ---- | ----------- | ----- |
79
80
  | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
80
81
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
82
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
81
83
  | **pulp_labels** | [**Hash&lt;String, String&gt;**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
82
84
  | **artifact** | **String** | Artifact file representing the physical content | [optional] |
83
85
  | **relative_path** | **String** | Path where the artifact is located relative to distributions base_path | [optional] |
@@ -156,9 +158,9 @@ opts = {
156
158
  release__in: ['inner_example'], # Array<String> | Filter results where release is in a comma-separated list of values
157
159
  release__ne: 'release__ne_example', # String | Filter results where release not equal to value
158
160
  release__startswith: 'release__startswith_example', # String | Filter results where release starts with value
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
  sha256: 'sha256_example', # String |
163
165
  version: 'version_example', # String | Filter results where version matches value
164
166
  version__in: ['inner_example'], # Array<String> | Filter results where version is in a comma-separated list of values
@@ -232,9 +234,9 @@ end
232
234
  | **release__in** | [**Array&lt;String&gt;**](String.md) | Filter results where release is in a comma-separated list of values | [optional] |
233
235
  | **release__ne** | **String** | Filter results where release not equal to value | [optional] |
234
236
  | **release__startswith** | **String** | Filter results where release starts with value | [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
  | **sha256** | **String** | | [optional] |
239
241
  | **version** | **String** | Filter results where version matches value | [optional] |
240
242
  | **version__in** | [**Array&lt;String&gt;**](String.md) | Filter results where version is in a comma-separated list of values | [optional] |
@@ -509,6 +511,7 @@ end
509
511
  api_instance = PulpRpmClient::ContentPackagesApi.new
510
512
  opts = {
511
513
  x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
514
+ overwrite: true, # Boolean | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when 'repository' is specified. Defaults to true.
512
515
  pulp_labels: { key: 'inner_example'}, # Hash<String, String> | A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
513
516
  artifact: 'artifact_example', # String | Artifact file representing the physical content
514
517
  file: File.new('/path/to/some/file'), # File | An uploaded file that may be turned into the content unit.
@@ -549,6 +552,7 @@ end
549
552
  | Name | Type | Description | Notes |
550
553
  | ---- | ---- | ----------- | ----- |
551
554
  | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
555
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
552
556
  | **pulp_labels** | [**Hash&lt;String, String&gt;**](Hash.md) | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
553
557
  | **artifact** | **String** | Artifact file representing the physical content | [optional] |
554
558
  | **file** | **File** | An uploaded file that may be turned into the content unit. | [optional] |
@@ -42,9 +42,9 @@ opts = {
42
42
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
43
43
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
44
44
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
45
- repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN
46
- repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN
47
- repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN
45
+ repository_version: 'repository_version_example', # String |
46
+ repository_version_added: 'repository_version_added_example', # String |
47
+ repository_version_removed: 'repository_version_removed_example', # String |
48
48
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
49
49
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
50
50
  }
@@ -90,9 +90,9 @@ end
90
90
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
91
91
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
92
92
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
93
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
94
- | **repository_version_added** | **String** | Repository Version referenced by HREF/PRN | [optional] |
95
- | **repository_version_removed** | **String** | Repository Version referenced by HREF/PRN | [optional] |
93
+ | **repository_version** | **String** | | [optional] |
94
+ | **repository_version_added** | **String** | | [optional] |
95
+ | **repository_version_removed** | **String** | | [optional] |
96
96
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
97
97
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
98
98
 
@@ -287,8 +287,8 @@ opts = {
287
287
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
288
288
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
289
289
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
290
- repository: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Filter results where repository matches value
291
- repository__in: ['inner_example'], # Array<String> | Filter results where repository is in a comma-separated list of values
290
+ repository: 'repository_example', # String |
291
+ repository__in: ['inner_example'], # Array<String> |
292
292
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
293
293
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
294
294
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
@@ -348,8 +348,8 @@ end
348
348
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
349
349
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
350
350
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
351
- | **repository** | **String** | Filter results where repository matches value | [optional] |
352
- | **repository__in** | [**Array&lt;String&gt;**](String.md) | Filter results where repository is in a comma-separated list of values | [optional] |
351
+ | **repository** | **String** | | [optional] |
352
+ | **repository__in** | [**Array&lt;String&gt;**](String.md) | | [optional] |
353
353
  | **with_content** | **String** | Filter distributions based on the content served by them | [optional] |
354
354
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
355
355
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
@@ -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;. | [optional] |
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
  | **generate_repo_config** | **Boolean** | An option specifying whether Pulp should generate *.repo files. | [optional][default to false] |
15
16
  | **checkpoint** | **Boolean** | | [optional] |
@@ -26,6 +27,7 @@ instance = PulpRpmClient::PatchedrpmRpmDistribution.new(
26
27
  pulp_labels: null,
27
28
  name: null,
28
29
  repository: null,
30
+ repository_version: null,
29
31
  publication: null,
30
32
  generate_repo_config: null,
31
33
  checkpoint: null
@@ -8,11 +8,12 @@
8
8
  | **name** | **String** | A unique name for this repository. | [optional] |
9
9
  | **description** | **String** | An optional description. | [optional] |
10
10
  | **retain_repo_versions** | **Integer** | Retain X versions of the repository. Default is null which retains all versions. | [optional] |
11
+ | **retain_checkpoints** | **Integer** | Retain X checkpoint publications for the repository. Default is null which retains all checkpoints. | [optional] |
11
12
  | **remote** | **String** | An optional remote to use by default when syncing. | [optional] |
12
13
  | **autopublish** | **Boolean** | Whether to automatically create publications for new repository versions, and update any distributions pointing to this repository. | [optional][default to false] |
13
14
  | **metadata_signing_service** | **String** | A reference to an associated signing service. | [optional] |
14
15
  | **package_signing_service** | **String** | A reference to an associated package signing service. | [optional] |
15
- | **package_signing_fingerprint** | **String** | The pubkey V4 fingerprint (160 bits) to be passed to the package signing service.The signing service will use that on signing operations related to this repository. | [optional][default to &#39;&#39;] |
16
+ | **package_signing_fingerprint** | **String** | The pubkey V4 fingerprint (160 bits) to be passed to the package signing service.The signing service will use that on signing operations related to this repository. | [optional] |
16
17
  | **retain_package_versions** | **Integer** | The number of versions of each package to keep in the repository; older versions will be purged. The default is &#39;0&#39;, which will disable this feature and keep all versions of each package. | [optional] |
17
18
  | **checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The preferred checksum type during repo publish. * &#x60;unknown&#x60; - unknown * &#x60;md5&#x60; - md5 * &#x60;sha1&#x60; - sha1 * &#x60;sha224&#x60; - sha224 * &#x60;sha256&#x60; - sha256 * &#x60;sha384&#x60; - sha384 * &#x60;sha512&#x60; - sha512 | [optional] |
18
19
  | **repo_config** | **Object** | A JSON document describing the config.repo file Pulp should generate for this repo | [optional] |
@@ -29,6 +30,7 @@ instance = PulpRpmClient::PatchedrpmRpmRepository.new(
29
30
  name: null,
30
31
  description: null,
31
32
  retain_repo_versions: null,
33
+ retain_checkpoints: null,
32
34
  remote: null,
33
35
  autopublish: null,
34
36
  metadata_signing_service: null,
@@ -278,7 +278,7 @@ opts = {
278
278
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
279
279
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
280
280
  repository: 'repository_example', # String | Repository referenced by HREF/PRN
281
- repository_version: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Repository Version referenced by HREF/PRN
281
+ repository_version: 'repository_version_example', # String |
282
282
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
283
283
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
284
284
  }
@@ -333,7 +333,7 @@ end
333
333
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
334
334
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
335
335
  | **repository** | **String** | Repository referenced by HREF/PRN | [optional] |
336
- | **repository_version** | **String** | Repository Version referenced by HREF/PRN | [optional] |
336
+ | **repository_version** | **String** | | [optional] |
337
337
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
338
338
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
339
339
 
@@ -279,13 +279,21 @@ opts = {
279
279
  name__regex: 'name__regex_example', # String | Filter results where name matches regex value
280
280
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
281
281
  offset: 56, # Integer | The initial index from which to return the results.
282
- ordering: ['-description'], # 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
282
+ ordering: ['-description'], # 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) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `retain_checkpoints` - Retain checkpoints * `-retain_checkpoints` - Retain checkpoints (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
283
283
  prn__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
284
284
  pulp_href__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
285
285
  pulp_id__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
286
286
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
287
287
  q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters
288
- remote: '38400000-8cf0-11bd-b23e-10b96e4ef00d', # String | Foreign Key referenced by HREF
288
+ remote: 'remote_example', # String |
289
+ retain_checkpoints: 56, # Integer | Filter results where retain_checkpoints matches value
290
+ retain_checkpoints__gt: 56, # Integer | Filter results where retain_checkpoints is greater than value
291
+ retain_checkpoints__gte: 56, # Integer | Filter results where retain_checkpoints is greater than or equal to value
292
+ retain_checkpoints__isnull: true, # Boolean | Filter results where retain_checkpoints has a null value
293
+ retain_checkpoints__lt: 56, # Integer | Filter results where retain_checkpoints is less than value
294
+ retain_checkpoints__lte: 56, # Integer | Filter results where retain_checkpoints is less than or equal to value
295
+ retain_checkpoints__ne: 56, # Integer | Filter results where retain_checkpoints not equal to value
296
+ retain_checkpoints__range: [37], # Array<Integer> | Filter results where retain_checkpoints is between two comma separated values
289
297
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
290
298
  retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
291
299
  retain_repo_versions__gte: 56, # Integer | Filter results where retain_repo_versions is greater than or equal to value
@@ -343,13 +351,21 @@ end
343
351
  | **name__regex** | **String** | Filter results where name matches regex value | [optional] |
344
352
  | **name__startswith** | **String** | Filter results where name starts with value | [optional] |
345
353
  | **offset** | **Integer** | The initial index from which to return the results. | [optional] |
346
- | **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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional] |
354
+ | **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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;retain_checkpoints&#x60; - Retain checkpoints * &#x60;-retain_checkpoints&#x60; - Retain checkpoints (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional] |
347
355
  | **prn__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
348
356
  | **pulp_href__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
349
357
  | **pulp_id__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
350
358
  | **pulp_label_select** | **String** | Filter labels by search string | [optional] |
351
359
  | **q** | **String** | Filter results by using NOT, AND and OR operations on other filters | [optional] |
352
- | **remote** | **String** | Foreign Key referenced by HREF | [optional] |
360
+ | **remote** | **String** | | [optional] |
361
+ | **retain_checkpoints** | **Integer** | Filter results where retain_checkpoints matches value | [optional] |
362
+ | **retain_checkpoints__gt** | **Integer** | Filter results where retain_checkpoints is greater than value | [optional] |
363
+ | **retain_checkpoints__gte** | **Integer** | Filter results where retain_checkpoints is greater than or equal to value | [optional] |
364
+ | **retain_checkpoints__isnull** | **Boolean** | Filter results where retain_checkpoints has a null value | [optional] |
365
+ | **retain_checkpoints__lt** | **Integer** | Filter results where retain_checkpoints is less than value | [optional] |
366
+ | **retain_checkpoints__lte** | **Integer** | Filter results where retain_checkpoints is less than or equal to value | [optional] |
367
+ | **retain_checkpoints__ne** | **Integer** | Filter results where retain_checkpoints not equal to value | [optional] |
368
+ | **retain_checkpoints__range** | [**Array&lt;Integer&gt;**](Integer.md) | Filter results where retain_checkpoints is between two comma separated values | [optional] |
353
369
  | **retain_repo_versions** | **Integer** | Filter results where retain_repo_versions matches value | [optional] |
354
370
  | **retain_repo_versions__gt** | **Integer** | Filter results where retain_repo_versions is greater than value | [optional] |
355
371
  | **retain_repo_versions__gte** | **Integer** | Filter results where retain_repo_versions is greater than or equal to value | [optional] |
@@ -7,6 +7,7 @@
7
7
  | **add_content_units** | **Array&lt;String&gt;** | A list of content units to add to a new repository version. This content is added after remove_content_units are removed. | [optional] |
8
8
  | **remove_content_units** | **Array&lt;String&gt;** | A list of content units to remove from the latest repository version. You may also specify &#39;*&#39; as an entry to remove all content. This content is removed before add_content_units are added. | [optional] |
9
9
  | **base_version** | **String** | A repository version whose content will be used as the initial set of content for the new repository version | [optional] |
10
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Defaults to true. | [optional][default to true] |
10
11
 
11
12
  ## Example
12
13
 
@@ -16,7 +17,8 @@ require 'pulp_rpm_client'
16
17
  instance = PulpRpmClient::RepositoryAddRemoveContent.new(
17
18
  add_content_units: null,
18
19
  remove_content_units: null,
19
- base_version: null
20
+ base_version: null,
21
+ overwrite: null
20
22
  )
21
23
  ```
22
24
 
data/docs/RpmModulemd.md CHANGED
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
8
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
8
9
  | **pulp_labels** | **Hash&lt;String, String&gt;** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
9
10
  | **name** | **String** | Modulemd name. | |
10
11
  | **stream** | **String** | Stream name. | |
@@ -26,6 +27,7 @@ require 'pulp_rpm_client'
26
27
 
27
28
  instance = PulpRpmClient::RpmModulemd.new(
28
29
  repository: null,
30
+ overwrite: null,
29
31
  pulp_labels: null,
30
32
  name: null,
31
33
  stream: null,
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
8
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
8
9
  | **pulp_labels** | **Hash&lt;String, String&gt;** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
9
10
  | **_module** | **String** | Modulemd name. | |
10
11
  | **stream** | **String** | Modulemd default stream. | |
@@ -18,6 +19,7 @@ require 'pulp_rpm_client'
18
19
 
19
20
  instance = PulpRpmClient::RpmModulemdDefaults.new(
20
21
  repository: null,
22
+ overwrite: null,
21
23
  pulp_labels: null,
22
24
  _module: null,
23
25
  stream: null,
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional] |
8
+ | **overwrite** | **Boolean** | When set to true, existing content in the repository with the same unique key will be silently overwritten. When set to false, the task will fail if content would be overwritten. Only used when &#39;repository&#39; is specified. Defaults to true. | [optional] |
8
9
  | **pulp_labels** | **Hash&lt;String, String&gt;** | A dictionary of arbitrary key/value pairs used to describe a specific Content instance. | [optional] |
9
10
  | **modified** | **String** | Obsolete modified time. | |
10
11
  | **module_name** | **String** | Modulemd name. | |
@@ -24,6 +25,7 @@ require 'pulp_rpm_client'
24
25
 
25
26
  instance = PulpRpmClient::RpmModulemdObsolete.new(
26
27
  repository: null,
28
+ overwrite: null,
27
29
  pulp_labels: null,
28
30
  modified: null,
29
31
  module_name: null,