pulp_rpm_client 3.24.0 → 3.25.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/docs/{MetadataChecksumTypeEnum.md → CompressionTypeEnum.md} +2 -2
  4. data/docs/ContentAdvisoriesApi.md +2 -0
  5. data/docs/ContentDistributionTreesApi.md +2 -0
  6. data/docs/ContentModulemdDefaultsApi.md +2 -0
  7. data/docs/ContentModulemdObsoletesApi.md +2 -0
  8. data/docs/ContentModulemdsApi.md +2 -0
  9. data/docs/ContentPackagecategoriesApi.md +2 -0
  10. data/docs/ContentPackageenvironmentsApi.md +2 -0
  11. data/docs/ContentPackagegroupsApi.md +2 -0
  12. data/docs/ContentPackagelangpacksApi.md +2 -0
  13. data/docs/ContentPackagesApi.md +2 -0
  14. data/docs/ContentRepoMetadataFilesApi.md +2 -0
  15. data/docs/PatchedrpmRpmRepository.md +7 -5
  16. data/docs/RpmRpmPublication.md +7 -5
  17. data/docs/RpmRpmPublicationResponse.md +8 -4
  18. data/docs/RpmRpmRepository.md +7 -5
  19. data/docs/RpmRpmRepositoryResponse.md +8 -4
  20. data/lib/pulp_rpm_client/api/content_advisories_api.rb +3 -0
  21. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +3 -0
  22. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +3 -0
  23. data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +3 -0
  24. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +3 -0
  25. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +3 -0
  26. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +3 -0
  27. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +3 -0
  28. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +3 -0
  29. data/lib/pulp_rpm_client/api/content_packages_api.rb +3 -0
  30. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +3 -0
  31. data/lib/pulp_rpm_client/models/{metadata_checksum_type_enum.rb → compression_type_enum.rb} +5 -10
  32. data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +29 -19
  33. data/lib/pulp_rpm_client/models/rpm_rpm_publication.rb +27 -19
  34. data/lib/pulp_rpm_client/models/rpm_rpm_publication_response.rb +28 -8
  35. data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +29 -19
  36. data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +30 -8
  37. data/lib/pulp_rpm_client/version.rb +1 -1
  38. data/lib/pulp_rpm_client.rb +1 -1
  39. data/spec/api/content_advisories_api_spec.rb +1 -0
  40. data/spec/api/content_distribution_trees_api_spec.rb +1 -0
  41. data/spec/api/content_modulemd_defaults_api_spec.rb +1 -0
  42. data/spec/api/content_modulemd_obsoletes_api_spec.rb +1 -0
  43. data/spec/api/content_modulemds_api_spec.rb +1 -0
  44. data/spec/api/content_packagecategories_api_spec.rb +1 -0
  45. data/spec/api/content_packageenvironments_api_spec.rb +1 -0
  46. data/spec/api/content_packagegroups_api_spec.rb +1 -0
  47. data/spec/api/content_packagelangpacks_api_spec.rb +1 -0
  48. data/spec/api/content_packages_api_spec.rb +1 -0
  49. data/spec/api/content_repo_metadata_files_api_spec.rb +1 -0
  50. data/spec/models/{metadata_checksum_type_enum_spec.rb → compression_type_enum_spec.rb} +6 -6
  51. data/spec/models/patchedrpm_rpm_repository_spec.rb +8 -2
  52. data/spec/models/rpm_rpm_publication_response_spec.rb +12 -0
  53. data/spec/models/rpm_rpm_publication_spec.rb +8 -2
  54. data/spec/models/rpm_rpm_repository_response_spec.rb +12 -0
  55. data/spec/models/rpm_rpm_repository_spec.rb +8 -2
  56. metadata +88 -88
@@ -38,10 +38,13 @@ module PulpRpmClient
38
38
  # The number of versions of each package to keep in the repository; older versions will be purged. The default is '0', which will disable this feature and keep all versions of each package.
39
39
  attr_accessor :retain_package_versions
40
40
 
41
- # The checksum type for metadata. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
41
+ # The preferred checksum type during repo publish. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
42
+ attr_accessor :checksum_type
43
+
44
+ # DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
42
45
  attr_accessor :metadata_checksum_type
43
46
 
44
- # The checksum type for packages. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
47
+ # DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
45
48
  attr_accessor :package_checksum_type
46
49
 
47
50
  # DEPRECATED: An option specifying whether a client should perform a GPG signature check on packages.
@@ -50,12 +53,12 @@ module PulpRpmClient
50
53
  # DEPRECATED: An option specifying whether a client should perform a GPG signature check on the repodata.
51
54
  attr_accessor :repo_gpgcheck
52
55
 
53
- # DEPRECATED: An option specifying whether Pulp should generate SQLite metadata.
54
- attr_accessor :sqlite_metadata
55
-
56
56
  # A JSON document describing config.repo file
57
57
  attr_accessor :repo_config
58
58
 
59
+ # The compression type to use for metadata files. * `zstd` - zstd * `gz` - gz
60
+ attr_accessor :compression_type
61
+
59
62
  # Attribute mapping from ruby-style variable name to JSON key.
60
63
  def self.attribute_map
61
64
  {
@@ -67,12 +70,13 @@ module PulpRpmClient
67
70
  :'autopublish' => :'autopublish',
68
71
  :'metadata_signing_service' => :'metadata_signing_service',
69
72
  :'retain_package_versions' => :'retain_package_versions',
73
+ :'checksum_type' => :'checksum_type',
70
74
  :'metadata_checksum_type' => :'metadata_checksum_type',
71
75
  :'package_checksum_type' => :'package_checksum_type',
72
76
  :'gpgcheck' => :'gpgcheck',
73
77
  :'repo_gpgcheck' => :'repo_gpgcheck',
74
- :'sqlite_metadata' => :'sqlite_metadata',
75
- :'repo_config' => :'repo_config'
78
+ :'repo_config' => :'repo_config',
79
+ :'compression_type' => :'compression_type'
76
80
  }
77
81
  end
78
82
 
@@ -87,12 +91,13 @@ module PulpRpmClient
87
91
  :'autopublish' => :'Boolean',
88
92
  :'metadata_signing_service' => :'String',
89
93
  :'retain_package_versions' => :'Integer',
90
- :'metadata_checksum_type' => :'MetadataChecksumTypeEnum',
94
+ :'checksum_type' => :'PackageChecksumTypeEnum',
95
+ :'metadata_checksum_type' => :'PackageChecksumTypeEnum',
91
96
  :'package_checksum_type' => :'PackageChecksumTypeEnum',
92
97
  :'gpgcheck' => :'Integer',
93
98
  :'repo_gpgcheck' => :'Integer',
94
- :'sqlite_metadata' => :'Boolean',
95
- :'repo_config' => :'Object'
99
+ :'repo_config' => :'Object',
100
+ :'compression_type' => :'CompressionTypeEnum'
96
101
  }
97
102
  end
98
103
 
@@ -103,10 +108,12 @@ module PulpRpmClient
103
108
  :'retain_repo_versions',
104
109
  :'remote',
105
110
  :'metadata_signing_service',
111
+ :'checksum_type',
106
112
  :'metadata_checksum_type',
107
113
  :'package_checksum_type',
108
114
  :'gpgcheck',
109
115
  :'repo_gpgcheck',
116
+ :'compression_type'
110
117
  ])
111
118
  end
112
119
 
@@ -161,6 +168,10 @@ module PulpRpmClient
161
168
  self.retain_package_versions = attributes[:'retain_package_versions']
162
169
  end
163
170
 
171
+ if attributes.key?(:'checksum_type')
172
+ self.checksum_type = attributes[:'checksum_type']
173
+ end
174
+
164
175
  if attributes.key?(:'metadata_checksum_type')
165
176
  self.metadata_checksum_type = attributes[:'metadata_checksum_type']
166
177
  end
@@ -177,15 +188,13 @@ module PulpRpmClient
177
188
  self.repo_gpgcheck = attributes[:'repo_gpgcheck']
178
189
  end
179
190
 
180
- if attributes.key?(:'sqlite_metadata')
181
- self.sqlite_metadata = attributes[:'sqlite_metadata']
182
- else
183
- self.sqlite_metadata = false
184
- end
185
-
186
191
  if attributes.key?(:'repo_config')
187
192
  self.repo_config = attributes[:'repo_config']
188
193
  end
194
+
195
+ if attributes.key?(:'compression_type')
196
+ self.compression_type = attributes[:'compression_type']
197
+ end
189
198
  end
190
199
 
191
200
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -331,12 +340,13 @@ module PulpRpmClient
331
340
  autopublish == o.autopublish &&
332
341
  metadata_signing_service == o.metadata_signing_service &&
333
342
  retain_package_versions == o.retain_package_versions &&
343
+ checksum_type == o.checksum_type &&
334
344
  metadata_checksum_type == o.metadata_checksum_type &&
335
345
  package_checksum_type == o.package_checksum_type &&
336
346
  gpgcheck == o.gpgcheck &&
337
347
  repo_gpgcheck == o.repo_gpgcheck &&
338
- sqlite_metadata == o.sqlite_metadata &&
339
- repo_config == o.repo_config
348
+ repo_config == o.repo_config &&
349
+ compression_type == o.compression_type
340
350
  end
341
351
 
342
352
  # @see the `==` method
@@ -348,7 +358,7 @@ module PulpRpmClient
348
358
  # Calculates hash code according to all attributes.
349
359
  # @return [Integer] Hash code
350
360
  def hash
351
- [pulp_labels, name, description, retain_repo_versions, remote, autopublish, metadata_signing_service, retain_package_versions, metadata_checksum_type, package_checksum_type, gpgcheck, repo_gpgcheck, sqlite_metadata, repo_config].hash
361
+ [pulp_labels, name, description, retain_repo_versions, remote, autopublish, metadata_signing_service, retain_package_versions, checksum_type, metadata_checksum_type, package_checksum_type, gpgcheck, repo_gpgcheck, repo_config, compression_type].hash
352
362
  end
353
363
 
354
364
  # Builds the object from hash
@@ -47,10 +47,13 @@ module PulpRpmClient
47
47
  # The number of versions of each package to keep in the repository; older versions will be purged. The default is '0', which will disable this feature and keep all versions of each package.
48
48
  attr_accessor :retain_package_versions
49
49
 
50
- # The checksum type for metadata. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
50
+ # The preferred checksum type during repo publish. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
51
+ attr_accessor :checksum_type
52
+
53
+ # DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
51
54
  attr_accessor :metadata_checksum_type
52
55
 
53
- # The checksum type for packages. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
56
+ # DEPRECATED: use CHECKSUM_TYPE instead. * `unknown` - unknown * `md5` - md5 * `sha1` - sha1 * `sha224` - sha224 * `sha256` - sha256 * `sha384` - sha384 * `sha512` - sha512
54
57
  attr_accessor :package_checksum_type
55
58
 
56
59
  # DEPRECATED: An option specifying whether a client should perform a GPG signature check on packages.
@@ -59,12 +62,15 @@ module PulpRpmClient
59
62
  # DEPRECATED: An option specifying whether a client should perform a GPG signature check on the repodata.
60
63
  attr_accessor :repo_gpgcheck
61
64
 
62
- # DEPRECATED: An option specifying whether Pulp should generate SQLite metadata.
65
+ # REMOVED: An option specifying whether Pulp should generate SQLite metadata. Not operation since pulp_rpm 3.25.0 release
63
66
  attr_accessor :sqlite_metadata
64
67
 
65
68
  # A JSON document describing config.repo file
66
69
  attr_accessor :repo_config
67
70
 
71
+ # The compression type to use for metadata files. * `zstd` - zstd * `gz` - gz
72
+ attr_accessor :compression_type
73
+
68
74
  # Attribute mapping from ruby-style variable name to JSON key.
69
75
  def self.attribute_map
70
76
  {
@@ -80,12 +86,14 @@ module PulpRpmClient
80
86
  :'autopublish' => :'autopublish',
81
87
  :'metadata_signing_service' => :'metadata_signing_service',
82
88
  :'retain_package_versions' => :'retain_package_versions',
89
+ :'checksum_type' => :'checksum_type',
83
90
  :'metadata_checksum_type' => :'metadata_checksum_type',
84
91
  :'package_checksum_type' => :'package_checksum_type',
85
92
  :'gpgcheck' => :'gpgcheck',
86
93
  :'repo_gpgcheck' => :'repo_gpgcheck',
87
94
  :'sqlite_metadata' => :'sqlite_metadata',
88
- :'repo_config' => :'repo_config'
95
+ :'repo_config' => :'repo_config',
96
+ :'compression_type' => :'compression_type'
89
97
  }
90
98
  end
91
99
 
@@ -104,12 +112,14 @@ module PulpRpmClient
104
112
  :'autopublish' => :'Boolean',
105
113
  :'metadata_signing_service' => :'String',
106
114
  :'retain_package_versions' => :'Integer',
107
- :'metadata_checksum_type' => :'MetadataChecksumTypeEnum',
115
+ :'checksum_type' => :'PackageChecksumTypeEnum',
116
+ :'metadata_checksum_type' => :'PackageChecksumTypeEnum',
108
117
  :'package_checksum_type' => :'PackageChecksumTypeEnum',
109
118
  :'gpgcheck' => :'Integer',
110
119
  :'repo_gpgcheck' => :'Integer',
111
120
  :'sqlite_metadata' => :'Boolean',
112
- :'repo_config' => :'Object'
121
+ :'repo_config' => :'Object',
122
+ :'compression_type' => :'CompressionTypeEnum'
113
123
  }
114
124
  end
115
125
 
@@ -120,10 +130,12 @@ module PulpRpmClient
120
130
  :'retain_repo_versions',
121
131
  :'remote',
122
132
  :'metadata_signing_service',
133
+ :'checksum_type',
123
134
  :'metadata_checksum_type',
124
135
  :'package_checksum_type',
125
136
  :'gpgcheck',
126
137
  :'repo_gpgcheck',
138
+ :'compression_type'
127
139
  ])
128
140
  end
129
141
 
@@ -194,6 +206,10 @@ module PulpRpmClient
194
206
  self.retain_package_versions = attributes[:'retain_package_versions']
195
207
  end
196
208
 
209
+ if attributes.key?(:'checksum_type')
210
+ self.checksum_type = attributes[:'checksum_type']
211
+ end
212
+
197
213
  if attributes.key?(:'metadata_checksum_type')
198
214
  self.metadata_checksum_type = attributes[:'metadata_checksum_type']
199
215
  end
@@ -219,6 +235,10 @@ module PulpRpmClient
219
235
  if attributes.key?(:'repo_config')
220
236
  self.repo_config = attributes[:'repo_config']
221
237
  end
238
+
239
+ if attributes.key?(:'compression_type')
240
+ self.compression_type = attributes[:'compression_type']
241
+ end
222
242
  end
223
243
 
224
244
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -334,12 +354,14 @@ module PulpRpmClient
334
354
  autopublish == o.autopublish &&
335
355
  metadata_signing_service == o.metadata_signing_service &&
336
356
  retain_package_versions == o.retain_package_versions &&
357
+ checksum_type == o.checksum_type &&
337
358
  metadata_checksum_type == o.metadata_checksum_type &&
338
359
  package_checksum_type == o.package_checksum_type &&
339
360
  gpgcheck == o.gpgcheck &&
340
361
  repo_gpgcheck == o.repo_gpgcheck &&
341
362
  sqlite_metadata == o.sqlite_metadata &&
342
- repo_config == o.repo_config
363
+ repo_config == o.repo_config &&
364
+ compression_type == o.compression_type
343
365
  end
344
366
 
345
367
  # @see the `==` method
@@ -351,7 +373,7 @@ module PulpRpmClient
351
373
  # Calculates hash code according to all attributes.
352
374
  # @return [Integer] Hash code
353
375
  def hash
354
- [pulp_href, pulp_created, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, remote, autopublish, metadata_signing_service, retain_package_versions, metadata_checksum_type, package_checksum_type, gpgcheck, repo_gpgcheck, sqlite_metadata, repo_config].hash
376
+ [pulp_href, pulp_created, versions_href, pulp_labels, latest_version_href, name, description, retain_repo_versions, remote, autopublish, metadata_signing_service, retain_package_versions, checksum_type, metadata_checksum_type, package_checksum_type, gpgcheck, repo_gpgcheck, sqlite_metadata, repo_config, compression_type].hash
355
377
  end
356
378
 
357
379
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpRpmClient
14
- VERSION = '3.24.0'
14
+ VERSION = '3.25.1'
15
15
  end
@@ -21,11 +21,11 @@ require 'pulp_rpm_client/models/addon_response'
21
21
  require 'pulp_rpm_client/models/artifact_response'
22
22
  require 'pulp_rpm_client/models/async_operation_response'
23
23
  require 'pulp_rpm_client/models/checksum_response'
24
+ require 'pulp_rpm_client/models/compression_type_enum'
24
25
  require 'pulp_rpm_client/models/comps_xml'
25
26
  require 'pulp_rpm_client/models/content_summary_response'
26
27
  require 'pulp_rpm_client/models/copy'
27
28
  require 'pulp_rpm_client/models/image_response'
28
- require 'pulp_rpm_client/models/metadata_checksum_type_enum'
29
29
  require 'pulp_rpm_client/models/my_permissions_response'
30
30
  require 'pulp_rpm_client/models/nested_role'
31
31
  require 'pulp_rpm_client/models/nested_role_response'
@@ -55,6 +55,7 @@ describe 'ContentAdvisoriesApi' do
55
55
  # @option opts [Integer] :limit Number of results to return per page.
56
56
  # @option opts [Integer] :offset The initial index from which to return the results.
57
57
  # @option opts [Array<String>] :ordering 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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;updated_date&#x60; - Updated date * &#x60;-updated_date&#x60; - Updated date (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;issued_date&#x60; - Issued date * &#x60;-issued_date&#x60; - Issued date (descending) * &#x60;fromstr&#x60; - Fromstr * &#x60;-fromstr&#x60; - Fromstr (descending) * &#x60;status&#x60; - Status * &#x60;-status&#x60; - Status (descending) * &#x60;title&#x60; - Title * &#x60;-title&#x60; - Title (descending) * &#x60;summary&#x60; - Summary * &#x60;-summary&#x60; - Summary (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;severity&#x60; - Severity * &#x60;-severity&#x60; - Severity (descending) * &#x60;solution&#x60; - Solution * &#x60;-solution&#x60; - Solution (descending) * &#x60;release&#x60; - Release * &#x60;-release&#x60; - Release (descending) * &#x60;rights&#x60; - Rights * &#x60;-rights&#x60; - Rights (descending) * &#x60;reboot_suggested&#x60; - Reboot suggested * &#x60;-reboot_suggested&#x60; - Reboot suggested (descending) * &#x60;pushcount&#x60; - Pushcount * &#x60;-pushcount&#x60; - Pushcount (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
58
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
58
59
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
59
60
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
60
61
  # @option opts [String] :q
@@ -39,6 +39,7 @@ describe 'ContentDistributionTreesApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -53,6 +53,7 @@ describe 'ContentModulemdDefaultsApi' do
53
53
  # @option opts [Array<String>] :module__in Filter results where module is in a comma-separated list of values
54
54
  # @option opts [Integer] :offset The initial index from which to return the results.
55
55
  # @option opts [Array<String>] :ordering 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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;module&#x60; - Module * &#x60;-module&#x60; - Module (descending) * &#x60;stream&#x60; - Stream * &#x60;-stream&#x60; - Stream (descending) * &#x60;profiles&#x60; - Profiles * &#x60;-profiles&#x60; - Profiles (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;snippet&#x60; - Snippet * &#x60;-snippet&#x60; - Snippet (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
56
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
56
57
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
57
58
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
58
59
  # @option opts [String] :q
@@ -51,6 +51,7 @@ describe 'ContentModulemdObsoletesApi' do
51
51
  # @option opts [Integer] :limit Number of results to return per page.
52
52
  # @option opts [Integer] :offset The initial index from which to return the results.
53
53
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
54
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
54
55
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
55
56
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
56
57
  # @option opts [String] :q
@@ -57,6 +57,7 @@ describe 'ContentModulemdsApi' do
57
57
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
58
58
  # @option opts [Integer] :offset The initial index from which to return the results.
59
59
  # @option opts [Array<String>] :ordering 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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;stream&#x60; - Stream * &#x60;-stream&#x60; - Stream (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;context&#x60; - Context * &#x60;-context&#x60; - Context (descending) * &#x60;arch&#x60; - Arch * &#x60;-arch&#x60; - Arch (descending) * &#x60;static_context&#x60; - Static context * &#x60;-static_context&#x60; - Static context (descending) * &#x60;dependencies&#x60; - Dependencies * &#x60;-dependencies&#x60; - Dependencies (descending) * &#x60;artifacts&#x60; - Artifacts * &#x60;-artifacts&#x60; - Artifacts (descending) * &#x60;profiles&#x60; - Profiles * &#x60;-profiles&#x60; - Profiles (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;snippet&#x60; - Snippet * &#x60;-snippet&#x60; - Snippet (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
60
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
60
61
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
61
62
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
62
63
  # @option opts [String] :q
@@ -39,6 +39,7 @@ describe 'ContentPackagecategoriesApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -39,6 +39,7 @@ describe 'ContentPackageenvironmentsApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -39,6 +39,7 @@ describe 'ContentPackagegroupsApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -39,6 +39,7 @@ describe 'ContentPackagelangpacksApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -72,6 +72,7 @@ describe 'ContentPackagesApi' do
72
72
  # @option opts [String] :name__startswith Filter results where name starts with value
73
73
  # @option opts [Integer] :offset The initial index from which to return the results.
74
74
  # @option opts [Array<String>] :ordering 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;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;epoch&#x60; - Epoch * &#x60;-epoch&#x60; - Epoch (descending) * &#x60;version&#x60; - Version * &#x60;-version&#x60; - Version (descending) * &#x60;release&#x60; - Release * &#x60;-release&#x60; - Release (descending) * &#x60;arch&#x60; - Arch * &#x60;-arch&#x60; - Arch (descending) * &#x60;evr&#x60; - Evr * &#x60;-evr&#x60; - Evr (descending) * &#x60;pkgId&#x60; - Pkgid * &#x60;-pkgId&#x60; - Pkgid (descending) * &#x60;checksum_type&#x60; - Checksum type * &#x60;-checksum_type&#x60; - Checksum type (descending) * &#x60;summary&#x60; - Summary * &#x60;-summary&#x60; - Summary (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;changelogs&#x60; - Changelogs * &#x60;-changelogs&#x60; - Changelogs (descending) * &#x60;files&#x60; - Files * &#x60;-files&#x60; - Files (descending) * &#x60;requires&#x60; - Requires * &#x60;-requires&#x60; - Requires (descending) * &#x60;provides&#x60; - Provides * &#x60;-provides&#x60; - Provides (descending) * &#x60;conflicts&#x60; - Conflicts * &#x60;-conflicts&#x60; - Conflicts (descending) * &#x60;obsoletes&#x60; - Obsoletes * &#x60;-obsoletes&#x60; - Obsoletes (descending) * &#x60;suggests&#x60; - Suggests * &#x60;-suggests&#x60; - Suggests (descending) * &#x60;enhances&#x60; - Enhances * &#x60;-enhances&#x60; - Enhances (descending) * &#x60;recommends&#x60; - Recommends * &#x60;-recommends&#x60; - Recommends (descending) * &#x60;supplements&#x60; - Supplements * &#x60;-supplements&#x60; - Supplements (descending) * &#x60;location_base&#x60; - Location base * &#x60;-location_base&#x60; - Location base (descending) * &#x60;location_href&#x60; - Location href * &#x60;-location_href&#x60; - Location href (descending) * &#x60;rpm_buildhost&#x60; - Rpm buildhost * &#x60;-rpm_buildhost&#x60; - Rpm buildhost (descending) * &#x60;rpm_group&#x60; - Rpm group * &#x60;-rpm_group&#x60; - Rpm group (descending) * &#x60;rpm_license&#x60; - Rpm license * &#x60;-rpm_license&#x60; - Rpm license (descending) * &#x60;rpm_packager&#x60; - Rpm packager * &#x60;-rpm_packager&#x60; - Rpm packager (descending) * &#x60;rpm_sourcerpm&#x60; - Rpm sourcerpm * &#x60;-rpm_sourcerpm&#x60; - Rpm sourcerpm (descending) * &#x60;rpm_vendor&#x60; - Rpm vendor * &#x60;-rpm_vendor&#x60; - Rpm vendor (descending) * &#x60;rpm_header_start&#x60; - Rpm header start * &#x60;-rpm_header_start&#x60; - Rpm header start (descending) * &#x60;rpm_header_end&#x60; - Rpm header end * &#x60;-rpm_header_end&#x60; - Rpm header end (descending) * &#x60;size_archive&#x60; - Size archive * &#x60;-size_archive&#x60; - Size archive (descending) * &#x60;size_installed&#x60; - Size installed * &#x60;-size_installed&#x60; - Size installed (descending) * &#x60;size_package&#x60; - Size package * &#x60;-size_package&#x60; - Size package (descending) * &#x60;time_build&#x60; - Time build * &#x60;-time_build&#x60; - Time build (descending) * &#x60;time_file&#x60; - Time file * &#x60;-time_file&#x60; - Time file (descending) * &#x60;is_modular&#x60; - Is modular * &#x60;-is_modular&#x60; - Is modular (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
75
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
75
76
  # @option opts [String] :pkg_id Filter results where pkgId matches value
76
77
  # @option opts [Array<String>] :pkg_id__in Filter results where pkgId is in a comma-separated list of values
77
78
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
@@ -39,6 +39,7 @@ describe 'ContentRepoMetadataFilesApi' do
39
39
  # @option opts [Integer] :limit Number of results to return per page.
40
40
  # @option opts [Integer] :offset The initial index from which to return the results.
41
41
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
42
+ # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
42
43
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
43
44
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
44
45
  # @option opts [String] :q
@@ -14,22 +14,22 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for PulpRpmClient::MetadataChecksumTypeEnum
17
+ # Unit tests for PulpRpmClient::CompressionTypeEnum
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe 'MetadataChecksumTypeEnum' do
20
+ describe 'CompressionTypeEnum' do
21
21
  before do
22
22
  # run before each test
23
- @instance = PulpRpmClient::MetadataChecksumTypeEnum.new
23
+ @instance = PulpRpmClient::CompressionTypeEnum.new
24
24
  end
25
25
 
26
26
  after do
27
27
  # run after each test
28
28
  end
29
29
 
30
- describe 'test an instance of MetadataChecksumTypeEnum' do
31
- it 'should create an instance of MetadataChecksumTypeEnum' do
32
- expect(@instance).to be_instance_of(PulpRpmClient::MetadataChecksumTypeEnum)
30
+ describe 'test an instance of CompressionTypeEnum' do
31
+ it 'should create an instance of CompressionTypeEnum' do
32
+ expect(@instance).to be_instance_of(PulpRpmClient::CompressionTypeEnum)
33
33
  end
34
34
  end
35
35
  end
@@ -80,6 +80,12 @@ describe 'PatchedrpmRpmRepository' do
80
80
  end
81
81
  end
82
82
 
83
+ describe 'test attribute "checksum_type"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
83
89
  describe 'test attribute "metadata_checksum_type"' do
84
90
  it 'should work' do
85
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -104,13 +110,13 @@ describe 'PatchedrpmRpmRepository' do
104
110
  end
105
111
  end
106
112
 
107
- describe 'test attribute "sqlite_metadata"' do
113
+ describe 'test attribute "repo_config"' do
108
114
  it 'should work' do
109
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
116
  end
111
117
  end
112
118
 
113
- describe 'test attribute "repo_config"' do
119
+ describe 'test attribute "compression_type"' do
114
120
  it 'should work' do
115
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
122
  end
@@ -56,6 +56,12 @@ describe 'RpmRpmPublicationResponse' do
56
56
  end
57
57
  end
58
58
 
59
+ describe 'test attribute "checksum_type"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
59
65
  describe 'test attribute "metadata_checksum_type"' do
60
66
  it 'should work' do
61
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -92,4 +98,10 @@ describe 'RpmRpmPublicationResponse' do
92
98
  end
93
99
  end
94
100
 
101
+ describe 'test attribute "compression_type"' do
102
+ it 'should work' do
103
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
104
+ end
105
+ end
106
+
95
107
  end
@@ -44,6 +44,12 @@ describe 'RpmRpmPublication' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "checksum_type"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "metadata_checksum_type"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -68,13 +74,13 @@ describe 'RpmRpmPublication' do
68
74
  end
69
75
  end
70
76
 
71
- describe 'test attribute "sqlite_metadata"' do
77
+ describe 'test attribute "repo_config"' do
72
78
  it 'should work' do
73
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
80
  end
75
81
  end
76
82
 
77
- describe 'test attribute "repo_config"' do
83
+ describe 'test attribute "compression_type"' do
78
84
  it 'should work' do
79
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
86
  end
@@ -104,6 +104,12 @@ describe 'RpmRpmRepositoryResponse' do
104
104
  end
105
105
  end
106
106
 
107
+ describe 'test attribute "checksum_type"' do
108
+ it 'should work' do
109
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
+ end
111
+ end
112
+
107
113
  describe 'test attribute "metadata_checksum_type"' do
108
114
  it 'should work' do
109
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -140,4 +146,10 @@ describe 'RpmRpmRepositoryResponse' do
140
146
  end
141
147
  end
142
148
 
149
+ describe 'test attribute "compression_type"' do
150
+ it 'should work' do
151
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
152
+ end
153
+ end
154
+
143
155
  end
@@ -80,6 +80,12 @@ describe 'RpmRpmRepository' do
80
80
  end
81
81
  end
82
82
 
83
+ describe 'test attribute "checksum_type"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
83
89
  describe 'test attribute "metadata_checksum_type"' do
84
90
  it 'should work' do
85
91
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -104,13 +110,13 @@ describe 'RpmRpmRepository' do
104
110
  end
105
111
  end
106
112
 
107
- describe 'test attribute "sqlite_metadata"' do
113
+ describe 'test attribute "repo_config"' do
108
114
  it 'should work' do
109
115
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
110
116
  end
111
117
  end
112
118
 
113
- describe 'test attribute "repo_config"' do
119
+ describe 'test attribute "compression_type"' do
114
120
  it 'should work' do
115
121
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
116
122
  end