pulp_rpm_client 3.17.22 → 3.18.0

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 (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -4
  3. data/docs/AcsRpmApi.md +11 -13
  4. data/docs/ContentAdvisoriesApi.md +8 -8
  5. data/docs/ContentDistributionTreesApi.md +8 -8
  6. data/docs/ContentModulemdDefaultsApi.md +13 -29
  7. data/docs/ContentModulemdObsoletesApi.md +192 -0
  8. data/docs/ContentModulemdsApi.md +13 -41
  9. data/docs/ContentPackagecategoriesApi.md +8 -8
  10. data/docs/ContentPackageenvironmentsApi.md +8 -8
  11. data/docs/ContentPackagegroupsApi.md +8 -8
  12. data/docs/ContentPackagelangpacksApi.md +8 -8
  13. data/docs/ContentPackagesApi.md +12 -12
  14. data/docs/ContentRepoMetadataFilesApi.md +8 -8
  15. data/docs/DistributionsRpmApi.md +8 -8
  16. data/docs/PaginatedrpmModulemdObsoleteResponseList.md +23 -0
  17. data/docs/PatchedrpmRpmRepository.md +1 -1
  18. data/docs/PublicationsRpmApi.md +8 -8
  19. data/docs/RemotesRpmApi.md +8 -8
  20. data/docs/RemotesUlnApi.md +8 -8
  21. data/docs/RepositoriesRpmApi.md +8 -8
  22. data/docs/RepositoriesRpmVersionsApi.md +8 -8
  23. data/docs/RpmModulemd.md +8 -12
  24. data/docs/RpmModulemdDefaults.md +4 -12
  25. data/docs/RpmModulemdDefaultsResponse.md +0 -14
  26. data/docs/RpmModulemdObsolete.md +35 -0
  27. data/docs/RpmModulemdObsoleteResponse.md +37 -0
  28. data/docs/RpmModulemdResponse.md +5 -15
  29. data/docs/RpmPackage.md +1 -1
  30. data/docs/RpmRpmPublication.md +1 -1
  31. data/docs/RpmRpmPublicationResponse.md +1 -1
  32. data/docs/RpmRpmRepository.md +1 -1
  33. data/docs/RpmRpmRepositoryResponse.md +1 -1
  34. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +16 -24
  35. data/lib/pulp_rpm_client/api/content_advisories_api.rb +12 -12
  36. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +12 -12
  37. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +23 -69
  38. data/lib/pulp_rpm_client/api/content_modulemd_obsoletes_api.rb +238 -0
  39. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +23 -107
  40. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +12 -12
  41. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +12 -12
  42. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +12 -12
  43. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +12 -12
  44. data/lib/pulp_rpm_client/api/content_packages_api.rb +20 -24
  45. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +12 -12
  46. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +12 -12
  47. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +12 -12
  48. data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +12 -12
  49. data/lib/pulp_rpm_client/api/remotes_uln_api.rb +12 -12
  50. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +12 -12
  51. data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +12 -12
  52. data/lib/pulp_rpm_client/models/paginatedrpm_modulemd_obsolete_response_list.rb +237 -0
  53. data/lib/pulp_rpm_client/models/patchedrpm_rpm_repository.rb +1 -1
  54. data/lib/pulp_rpm_client/models/rpm_modulemd.rb +83 -78
  55. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults.rb +38 -78
  56. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults_response.rb +1 -71
  57. data/lib/pulp_rpm_client/models/rpm_modulemd_obsolete.rb +464 -0
  58. data/lib/pulp_rpm_client/models/rpm_modulemd_obsolete_response.rb +332 -0
  59. data/lib/pulp_rpm_client/models/rpm_modulemd_response.rb +30 -74
  60. data/lib/pulp_rpm_client/models/rpm_package.rb +3 -12
  61. data/lib/pulp_rpm_client/models/rpm_rpm_publication.rb +1 -1
  62. data/lib/pulp_rpm_client/models/rpm_rpm_publication_response.rb +1 -1
  63. data/lib/pulp_rpm_client/models/rpm_rpm_repository.rb +1 -1
  64. data/lib/pulp_rpm_client/models/rpm_rpm_repository_response.rb +1 -1
  65. data/lib/pulp_rpm_client/version.rb +1 -1
  66. data/lib/pulp_rpm_client.rb +4 -0
  67. data/spec/api/acs_rpm_api_spec.rb +4 -5
  68. data/spec/api/content_advisories_api_spec.rb +4 -4
  69. data/spec/api/content_distribution_trees_api_spec.rb +4 -4
  70. data/spec/api/content_modulemd_defaults_api_spec.rb +5 -12
  71. data/spec/api/content_modulemd_obsoletes_api_spec.rb +80 -0
  72. data/spec/api/content_modulemds_api_spec.rb +5 -18
  73. data/spec/api/content_packagecategories_api_spec.rb +4 -4
  74. data/spec/api/content_packageenvironments_api_spec.rb +4 -4
  75. data/spec/api/content_packagegroups_api_spec.rb +4 -4
  76. data/spec/api/content_packagelangpacks_api_spec.rb +4 -4
  77. data/spec/api/content_packages_api_spec.rb +5 -5
  78. data/spec/api/content_repo_metadata_files_api_spec.rb +4 -4
  79. data/spec/api/distributions_rpm_api_spec.rb +4 -4
  80. data/spec/api/publications_rpm_api_spec.rb +4 -4
  81. data/spec/api/remotes_rpm_api_spec.rb +4 -4
  82. data/spec/api/remotes_uln_api_spec.rb +4 -4
  83. data/spec/api/repositories_rpm_api_spec.rb +4 -4
  84. data/spec/api/repositories_rpm_versions_api_spec.rb +4 -4
  85. data/spec/models/paginatedrpm_modulemd_obsolete_response_list_spec.rb +59 -0
  86. data/spec/models/rpm_modulemd_defaults_response_spec.rb +0 -42
  87. data/spec/models/rpm_modulemd_defaults_spec.rb +4 -28
  88. data/spec/models/rpm_modulemd_obsolete_response_spec.rb +101 -0
  89. data/spec/models/rpm_modulemd_obsolete_spec.rb +95 -0
  90. data/spec/models/rpm_modulemd_response_spec.rb +11 -41
  91. data/spec/models/rpm_modulemd_spec.rb +12 -24
  92. metadata +85 -69
@@ -37,8 +37,8 @@ opts = {
37
37
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
38
38
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
39
39
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
40
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
40
+ fields: 'fields_example', # String | A list of fields to include in the response.
41
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
42
42
  }
43
43
 
44
44
  begin
@@ -61,8 +61,8 @@ Name | Type | Description | Notes
61
61
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
62
62
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
63
63
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
64
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
64
+ **fields** | **String**| A list of fields to include in the response. | [optional]
65
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
66
66
 
67
67
  ### Return type
68
68
 
@@ -101,8 +101,8 @@ end
101
101
  api_instance = PulpRpmClient::ContentPackagecategoriesApi.new
102
102
  rpm_package_category_href = 'rpm_package_category_href_example' # String |
103
103
  opts = {
104
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
105
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
104
+ fields: 'fields_example', # String | A list of fields to include in the response.
105
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
106
106
  }
107
107
 
108
108
  begin
@@ -120,8 +120,8 @@ end
120
120
  Name | Type | Description | Notes
121
121
  ------------- | ------------- | ------------- | -------------
122
122
  **rpm_package_category_href** | **String**| |
123
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
124
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
123
+ **fields** | **String**| A list of fields to include in the response. | [optional]
124
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
125
125
 
126
126
  ### Return type
127
127
 
@@ -37,8 +37,8 @@ opts = {
37
37
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
38
38
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
39
39
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
40
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
40
+ fields: 'fields_example', # String | A list of fields to include in the response.
41
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
42
42
  }
43
43
 
44
44
  begin
@@ -61,8 +61,8 @@ Name | Type | Description | Notes
61
61
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
62
62
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
63
63
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
64
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
64
+ **fields** | **String**| A list of fields to include in the response. | [optional]
65
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
66
66
 
67
67
  ### Return type
68
68
 
@@ -101,8 +101,8 @@ end
101
101
  api_instance = PulpRpmClient::ContentPackageenvironmentsApi.new
102
102
  rpm_package_environment_href = 'rpm_package_environment_href_example' # String |
103
103
  opts = {
104
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
105
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
104
+ fields: 'fields_example', # String | A list of fields to include in the response.
105
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
106
106
  }
107
107
 
108
108
  begin
@@ -120,8 +120,8 @@ end
120
120
  Name | Type | Description | Notes
121
121
  ------------- | ------------- | ------------- | -------------
122
122
  **rpm_package_environment_href** | **String**| |
123
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
124
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
123
+ **fields** | **String**| A list of fields to include in the response. | [optional]
124
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
125
125
 
126
126
  ### Return type
127
127
 
@@ -37,8 +37,8 @@ opts = {
37
37
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
38
38
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
39
39
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
40
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
40
+ fields: 'fields_example', # String | A list of fields to include in the response.
41
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
42
42
  }
43
43
 
44
44
  begin
@@ -61,8 +61,8 @@ Name | Type | Description | Notes
61
61
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
62
62
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
63
63
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
64
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
64
+ **fields** | **String**| A list of fields to include in the response. | [optional]
65
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
66
66
 
67
67
  ### Return type
68
68
 
@@ -101,8 +101,8 @@ end
101
101
  api_instance = PulpRpmClient::ContentPackagegroupsApi.new
102
102
  rpm_package_group_href = 'rpm_package_group_href_example' # String |
103
103
  opts = {
104
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
105
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
104
+ fields: 'fields_example', # String | A list of fields to include in the response.
105
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
106
106
  }
107
107
 
108
108
  begin
@@ -120,8 +120,8 @@ end
120
120
  Name | Type | Description | Notes
121
121
  ------------- | ------------- | ------------- | -------------
122
122
  **rpm_package_group_href** | **String**| |
123
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
124
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
123
+ **fields** | **String**| A list of fields to include in the response. | [optional]
124
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
125
125
 
126
126
  ### Return type
127
127
 
@@ -37,8 +37,8 @@ opts = {
37
37
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
38
38
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
39
39
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
40
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
40
+ fields: 'fields_example', # String | A list of fields to include in the response.
41
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
42
42
  }
43
43
 
44
44
  begin
@@ -61,8 +61,8 @@ Name | Type | Description | Notes
61
61
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
62
62
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
63
63
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
64
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
64
+ **fields** | **String**| A list of fields to include in the response. | [optional]
65
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
66
66
 
67
67
  ### Return type
68
68
 
@@ -101,8 +101,8 @@ end
101
101
  api_instance = PulpRpmClient::ContentPackagelangpacksApi.new
102
102
  rpm_package_langpacks_href = 'rpm_package_langpacks_href_example' # String |
103
103
  opts = {
104
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
105
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
104
+ fields: 'fields_example', # String | A list of fields to include in the response.
105
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
106
106
  }
107
107
 
108
108
  begin
@@ -120,8 +120,8 @@ end
120
120
  Name | Type | Description | Notes
121
121
  ------------- | ------------- | ------------- | -------------
122
122
  **rpm_package_langpacks_href** | **String**| |
123
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
124
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
123
+ **fields** | **String**| A list of fields to include in the response. | [optional]
124
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
125
125
 
126
126
  ### Return type
127
127
 
@@ -12,7 +12,7 @@ Method | HTTP request | Description
12
12
 
13
13
  ## create
14
14
 
15
- > AsyncOperationResponse create(relative_path, opts)
15
+ > AsyncOperationResponse create(opts)
16
16
 
17
17
  Create a package
18
18
 
@@ -31,9 +31,9 @@ PulpRpmClient.configure do |config|
31
31
  end
32
32
 
33
33
  api_instance = PulpRpmClient::ContentPackagesApi.new
34
- relative_path = 'relative_path_example' # String | Path where the artifact is located relative to distributions base_path
35
34
  opts = {
36
35
  artifact: 'artifact_example', # String | Artifact file representing the physical content
36
+ relative_path: 'relative_path_example', # String | Path where the artifact is located relative to distributions base_path
37
37
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
38
38
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
39
39
  upload: 'upload_example' # String | An uncommitted upload that may be turned into the artifact of the content unit.
@@ -41,7 +41,7 @@ opts = {
41
41
 
42
42
  begin
43
43
  #Create a package
44
- result = api_instance.create(relative_path, opts)
44
+ result = api_instance.create(opts)
45
45
  p result
46
46
  rescue PulpRpmClient::ApiError => e
47
47
  puts "Exception when calling ContentPackagesApi->create: #{e}"
@@ -53,8 +53,8 @@ end
53
53
 
54
54
  Name | Type | Description | Notes
55
55
  ------------- | ------------- | ------------- | -------------
56
- **relative_path** | **String**| Path where the artifact is located relative to distributions base_path |
57
56
  **artifact** | **String**| Artifact file representing the physical content | [optional]
57
+ **relative_path** | **String**| Path where the artifact is located relative to distributions base_path | [optional]
58
58
  **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
59
59
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
60
60
  **upload** | **String**| An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
@@ -122,8 +122,8 @@ opts = {
122
122
  version: 'version_example', # String | Filter results where version matches value
123
123
  version__in: ['version__in_example'], # Array<String> | Filter results where version is in a comma-separated list of values
124
124
  version__ne: 'version__ne_example', # String | Filter results where version not equal to value
125
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
126
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
125
+ fields: 'fields_example', # String | A list of fields to include in the response.
126
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
127
127
  }
128
128
 
129
129
  begin
@@ -167,8 +167,8 @@ Name | Type | Description | Notes
167
167
  **version** | **String**| Filter results where version matches value | [optional]
168
168
  **version__in** | [**Array&lt;String&gt;**](String.md)| Filter results where version is in a comma-separated list of values | [optional]
169
169
  **version__ne** | **String**| Filter results where version not equal to value | [optional]
170
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
171
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
170
+ **fields** | **String**| A list of fields to include in the response. | [optional]
171
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
172
172
 
173
173
  ### Return type
174
174
 
@@ -207,8 +207,8 @@ end
207
207
  api_instance = PulpRpmClient::ContentPackagesApi.new
208
208
  rpm_package_href = 'rpm_package_href_example' # String |
209
209
  opts = {
210
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
211
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
210
+ fields: 'fields_example', # String | A list of fields to include in the response.
211
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
212
212
  }
213
213
 
214
214
  begin
@@ -226,8 +226,8 @@ end
226
226
  Name | Type | Description | Notes
227
227
  ------------- | ------------- | ------------- | -------------
228
228
  **rpm_package_href** | **String**| |
229
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
230
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
229
+ **fields** | **String**| A list of fields to include in the response. | [optional]
230
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
231
231
 
232
232
  ### Return type
233
233
 
@@ -37,8 +37,8 @@ opts = {
37
37
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
38
38
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
39
39
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
40
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
40
+ fields: 'fields_example', # String | A list of fields to include in the response.
41
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
42
42
  }
43
43
 
44
44
  begin
@@ -61,8 +61,8 @@ Name | Type | Description | Notes
61
61
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
62
62
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
63
63
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
64
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
64
+ **fields** | **String**| A list of fields to include in the response. | [optional]
65
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
66
66
 
67
67
  ### Return type
68
68
 
@@ -101,8 +101,8 @@ end
101
101
  api_instance = PulpRpmClient::ContentRepoMetadataFilesApi.new
102
102
  rpm_repo_metadata_file_href = 'rpm_repo_metadata_file_href_example' # String |
103
103
  opts = {
104
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
105
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
104
+ fields: 'fields_example', # String | A list of fields to include in the response.
105
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
106
106
  }
107
107
 
108
108
  begin
@@ -120,8 +120,8 @@ end
120
120
  Name | Type | Description | Notes
121
121
  ------------- | ------------- | ------------- | -------------
122
122
  **rpm_repo_metadata_file_href** | **String**| |
123
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
124
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
123
+ **fields** | **String**| A list of fields to include in the response. | [optional]
124
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
125
125
 
126
126
  ### Return type
127
127
 
@@ -155,8 +155,8 @@ opts = {
155
155
  ordering: ['ordering_example'], # Array<String> | Ordering
156
156
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
157
157
  with_content: 'with_content_example', # String | Filter distributions based on the content served by them
158
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
159
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
158
+ fields: 'fields_example', # String | A list of fields to include in the response.
159
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
160
160
  }
161
161
 
162
162
  begin
@@ -187,8 +187,8 @@ Name | Type | Description | Notes
187
187
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
188
188
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
189
189
  **with_content** | **String**| Filter distributions based on the content served by them | [optional]
190
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
191
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
190
+ **fields** | **String**| A list of fields to include in the response. | [optional]
191
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
192
192
 
193
193
  ### Return type
194
194
 
@@ -282,8 +282,8 @@ end
282
282
  api_instance = PulpRpmClient::DistributionsRpmApi.new
283
283
  rpm_rpm_distribution_href = 'rpm_rpm_distribution_href_example' # String |
284
284
  opts = {
285
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
286
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
285
+ fields: 'fields_example', # String | A list of fields to include in the response.
286
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
287
287
  }
288
288
 
289
289
  begin
@@ -301,8 +301,8 @@ end
301
301
  Name | Type | Description | Notes
302
302
  ------------- | ------------- | ------------- | -------------
303
303
  **rpm_rpm_distribution_href** | **String**| |
304
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
305
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
304
+ **fields** | **String**| A list of fields to include in the response. | [optional]
305
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
306
306
 
307
307
  ### Return type
308
308
 
@@ -0,0 +1,23 @@
1
+ # PulpRpmClient::PaginatedrpmModulemdObsoleteResponseList
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | | [optional]
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array&lt;RpmModulemdObsoleteResponse&gt;**](RpmModulemdObsoleteResponse.md) | | [optional]
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpRpmClient'
16
+
17
+ instance = PulpRpmClient::PaginatedrpmModulemdObsoleteResponseList.new(count: 123,
18
+ _next: http://api.example.org/accounts/?offset&#x3D;400&amp;limit&#x3D;100,
19
+ previous: http://api.example.org/accounts/?offset&#x3D;200&amp;limit&#x3D;100,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
16
16
  **package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
17
17
  **gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
18
18
  **repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
19
- **sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
19
+ **sqlite_metadata** | **Boolean** | DEPRECATED: An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
20
20
 
21
21
  ## Code Sample
22
22
 
@@ -151,8 +151,8 @@ opts = {
151
151
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
152
152
  repository: 'repository_example', # String | Repository referenced by HREF
153
153
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
154
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
155
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
154
+ fields: 'fields_example', # String | A list of fields to include in the response.
155
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
156
156
  }
157
157
 
158
158
  begin
@@ -182,8 +182,8 @@ Name | Type | Description | Notes
182
182
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
183
183
  **repository** | **String**| Repository referenced by HREF | [optional]
184
184
  **repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
185
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
186
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
185
+ **fields** | **String**| A list of fields to include in the response. | [optional]
186
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
187
187
 
188
188
  ### Return type
189
189
 
@@ -222,8 +222,8 @@ end
222
222
  api_instance = PulpRpmClient::PublicationsRpmApi.new
223
223
  rpm_rpm_publication_href = 'rpm_rpm_publication_href_example' # String |
224
224
  opts = {
225
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
226
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
225
+ fields: 'fields_example', # String | A list of fields to include in the response.
226
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
227
227
  }
228
228
 
229
229
  begin
@@ -241,8 +241,8 @@ end
241
241
  Name | Type | Description | Notes
242
242
  ------------- | ------------- | ------------- | -------------
243
243
  **rpm_rpm_publication_href** | **String**| |
244
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
245
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
244
+ **fields** | **String**| A list of fields to include in the response. | [optional]
245
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
246
246
 
247
247
  ### Return type
248
248
 
@@ -156,8 +156,8 @@ opts = {
156
156
  pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
157
157
  pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
158
158
  pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
159
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
160
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
159
+ fields: 'fields_example', # String | A list of fields to include in the response.
160
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
161
161
  }
162
162
 
163
163
  begin
@@ -189,8 +189,8 @@ Name | Type | Description | Notes
189
189
  **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
190
190
  **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
191
191
  **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
192
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
193
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
192
+ **fields** | **String**| A list of fields to include in the response. | [optional]
193
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
194
194
 
195
195
  ### Return type
196
196
 
@@ -284,8 +284,8 @@ end
284
284
  api_instance = PulpRpmClient::RemotesRpmApi.new
285
285
  rpm_rpm_remote_href = 'rpm_rpm_remote_href_example' # String |
286
286
  opts = {
287
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
288
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
287
+ fields: 'fields_example', # String | A list of fields to include in the response.
288
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
289
289
  }
290
290
 
291
291
  begin
@@ -303,8 +303,8 @@ end
303
303
  Name | Type | Description | Notes
304
304
  ------------- | ------------- | ------------- | -------------
305
305
  **rpm_rpm_remote_href** | **String**| |
306
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
307
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
306
+ **fields** | **String**| A list of fields to include in the response. | [optional]
307
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
308
308
 
309
309
  ### Return type
310
310
 
@@ -156,8 +156,8 @@ opts = {
156
156
  pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
157
157
  pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
158
158
  pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
159
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
160
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
159
+ fields: 'fields_example', # String | A list of fields to include in the response.
160
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
161
161
  }
162
162
 
163
163
  begin
@@ -189,8 +189,8 @@ Name | Type | Description | Notes
189
189
  **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
190
190
  **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
191
191
  **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
192
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
193
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
192
+ **fields** | **String**| A list of fields to include in the response. | [optional]
193
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
194
194
 
195
195
  ### Return type
196
196
 
@@ -284,8 +284,8 @@ end
284
284
  api_instance = PulpRpmClient::RemotesUlnApi.new
285
285
  rpm_uln_remote_href = 'rpm_uln_remote_href_example' # String |
286
286
  opts = {
287
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
288
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
287
+ fields: 'fields_example', # String | A list of fields to include in the response.
288
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
289
289
  }
290
290
 
291
291
  begin
@@ -303,8 +303,8 @@ end
303
303
  Name | Type | Description | Notes
304
304
  ------------- | ------------- | ------------- | -------------
305
305
  **rpm_uln_remote_href** | **String**| |
306
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
307
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
306
+ **fields** | **String**| A list of fields to include in the response. | [optional]
307
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
308
308
 
309
309
  ### Return type
310
310
 
@@ -153,8 +153,8 @@ opts = {
153
153
  ordering: ['ordering_example'], # Array<String> | Ordering
154
154
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
155
155
  remote: 'remote_example', # String | Foreign Key referenced by HREF
156
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
157
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
156
+ fields: 'fields_example', # String | A list of fields to include in the response.
157
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
158
158
  }
159
159
 
160
160
  begin
@@ -181,8 +181,8 @@ Name | Type | Description | Notes
181
181
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
182
182
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
183
183
  **remote** | [**String**](.md)| Foreign Key referenced by HREF | [optional]
184
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
185
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
184
+ **fields** | **String**| A list of fields to include in the response. | [optional]
185
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
186
186
 
187
187
  ### Return type
188
188
 
@@ -331,8 +331,8 @@ end
331
331
  api_instance = PulpRpmClient::RepositoriesRpmApi.new
332
332
  rpm_rpm_repository_href = 'rpm_rpm_repository_href_example' # String |
333
333
  opts = {
334
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
335
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
334
+ fields: 'fields_example', # String | A list of fields to include in the response.
335
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
336
336
  }
337
337
 
338
338
  begin
@@ -350,8 +350,8 @@ end
350
350
  Name | Type | Description | Notes
351
351
  ------------- | ------------- | ------------- | -------------
352
352
  **rpm_rpm_repository_href** | **String**| |
353
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
354
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
353
+ **fields** | **String**| A list of fields to include in the response. | [optional]
354
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
355
355
 
356
356
  ### Return type
357
357
 
@@ -104,8 +104,8 @@ opts = {
104
104
  pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
105
105
  pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
106
106
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
107
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
108
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
107
+ fields: 'fields_example', # String | A list of fields to include in the response.
108
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
109
109
  }
110
110
 
111
111
  begin
@@ -140,8 +140,8 @@ Name | Type | Description | Notes
140
140
  **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
141
141
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
142
142
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
143
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
144
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
143
+ **fields** | **String**| A list of fields to include in the response. | [optional]
144
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
145
145
 
146
146
  ### Return type
147
147
 
@@ -180,8 +180,8 @@ end
180
180
  api_instance = PulpRpmClient::RepositoriesRpmVersionsApi.new
181
181
  rpm_rpm_repository_version_href = 'rpm_rpm_repository_version_href_example' # String |
182
182
  opts = {
183
- fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
184
- exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
183
+ fields: 'fields_example', # String | A list of fields to include in the response.
184
+ exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
185
185
  }
186
186
 
187
187
  begin
@@ -199,8 +199,8 @@ end
199
199
  Name | Type | Description | Notes
200
200
  ------------- | ------------- | ------------- | -------------
201
201
  **rpm_rpm_repository_version_href** | **String**| |
202
- **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
203
- **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
202
+ **fields** | **String**| A list of fields to include in the response. | [optional]
203
+ **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
204
204
 
205
205
  ### Return type
206
206