pulp_rpm_client 3.17.4 → 3.17.7

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 (89) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -6
  3. data/docs/AcsRpmApi.md +2 -2
  4. data/docs/ContentAdvisoriesApi.md +2 -2
  5. data/docs/ContentDistributionTreesApi.md +2 -2
  6. data/docs/ContentModulemdDefaultsApi.md +5 -3
  7. data/docs/ContentModulemdsApi.md +4 -2
  8. data/docs/ContentPackagecategoriesApi.md +2 -2
  9. data/docs/ContentPackageenvironmentsApi.md +2 -2
  10. data/docs/ContentPackagegroupsApi.md +2 -2
  11. data/docs/ContentPackagelangpacksApi.md +2 -2
  12. data/docs/ContentPackagesApi.md +5 -3
  13. data/docs/ContentRepoMetadataFilesApi.md +2 -2
  14. data/docs/DistributionsRpmApi.md +2 -2
  15. data/docs/PatchedrpmRpmRemote.md +2 -2
  16. data/docs/PatchedrpmUlnRemote.md +1 -1
  17. data/docs/PublicationsRpmApi.md +4 -2
  18. data/docs/RemotesRpmApi.md +2 -2
  19. data/docs/RemotesUlnApi.md +2 -2
  20. data/docs/Repair.md +17 -0
  21. data/docs/RepositoriesRpmApi.md +2 -2
  22. data/docs/RepositoriesRpmVersionsApi.md +6 -6
  23. data/docs/RpmModulemd.md +2 -0
  24. data/docs/RpmModulemdDefaults.md +2 -0
  25. data/docs/RpmPackage.md +3 -1
  26. data/docs/RpmRpmPublication.md +2 -2
  27. data/docs/RpmRpmPublicationResponse.md +2 -2
  28. data/docs/RpmRpmRemote.md +2 -2
  29. data/docs/RpmUlnRemote.md +1 -1
  30. data/docs/RpmUlnRemoteResponse.md +0 -4
  31. data/lib/pulp_rpm_client/api/acs_rpm_api.rb +7 -3
  32. data/lib/pulp_rpm_client/api/content_advisories_api.rb +7 -3
  33. data/lib/pulp_rpm_client/api/content_distribution_trees_api.rb +7 -3
  34. data/lib/pulp_rpm_client/api/content_modulemd_defaults_api.rb +10 -3
  35. data/lib/pulp_rpm_client/api/content_modulemds_api.rb +10 -3
  36. data/lib/pulp_rpm_client/api/content_packagecategories_api.rb +7 -3
  37. data/lib/pulp_rpm_client/api/content_packageenvironments_api.rb +7 -3
  38. data/lib/pulp_rpm_client/api/content_packagegroups_api.rb +7 -3
  39. data/lib/pulp_rpm_client/api/content_packagelangpacks_api.rb +7 -3
  40. data/lib/pulp_rpm_client/api/content_packages_api.rb +10 -3
  41. data/lib/pulp_rpm_client/api/content_repo_metadata_files_api.rb +7 -3
  42. data/lib/pulp_rpm_client/api/distributions_rpm_api.rb +7 -3
  43. data/lib/pulp_rpm_client/api/publications_rpm_api.rb +10 -3
  44. data/lib/pulp_rpm_client/api/remotes_rpm_api.rb +7 -3
  45. data/lib/pulp_rpm_client/api/remotes_uln_api.rb +7 -3
  46. data/lib/pulp_rpm_client/api/repositories_rpm_api.rb +7 -3
  47. data/lib/pulp_rpm_client/api/repositories_rpm_versions_api.rb +16 -12
  48. data/lib/pulp_rpm_client/api_client.rb +1 -4
  49. data/lib/pulp_rpm_client/configuration.rb +1 -0
  50. data/lib/pulp_rpm_client/models/patchedrpm_rpm_remote.rb +2 -2
  51. data/lib/pulp_rpm_client/models/patchedrpm_uln_remote.rb +1 -1
  52. data/lib/pulp_rpm_client/models/{repository_version.rb → repair.rb} +13 -12
  53. data/lib/pulp_rpm_client/models/rpm_modulemd.rb +11 -1
  54. data/lib/pulp_rpm_client/models/rpm_modulemd_defaults.rb +11 -1
  55. data/lib/pulp_rpm_client/models/rpm_package.rb +14 -4
  56. data/lib/pulp_rpm_client/models/rpm_rpm_publication.rb +0 -4
  57. data/lib/pulp_rpm_client/models/rpm_rpm_publication_response.rb +0 -4
  58. data/lib/pulp_rpm_client/models/rpm_rpm_remote.rb +2 -2
  59. data/lib/pulp_rpm_client/models/rpm_uln_remote.rb +1 -1
  60. data/lib/pulp_rpm_client/models/rpm_uln_remote_response.rb +1 -31
  61. data/lib/pulp_rpm_client/version.rb +1 -1
  62. data/lib/pulp_rpm_client.rb +1 -2
  63. data/spec/api/acs_rpm_api_spec.rb +1 -1
  64. data/spec/api/content_advisories_api_spec.rb +1 -1
  65. data/spec/api/content_distribution_trees_api_spec.rb +1 -1
  66. data/spec/api/content_modulemd_defaults_api_spec.rb +2 -1
  67. data/spec/api/content_modulemds_api_spec.rb +2 -1
  68. data/spec/api/content_packagecategories_api_spec.rb +1 -1
  69. data/spec/api/content_packageenvironments_api_spec.rb +1 -1
  70. data/spec/api/content_packagegroups_api_spec.rb +1 -1
  71. data/spec/api/content_packagelangpacks_api_spec.rb +1 -1
  72. data/spec/api/content_packages_api_spec.rb +2 -1
  73. data/spec/api/content_repo_metadata_files_api_spec.rb +1 -1
  74. data/spec/api/distributions_rpm_api_spec.rb +1 -1
  75. data/spec/api/publications_rpm_api_spec.rb +2 -1
  76. data/spec/api/remotes_rpm_api_spec.rb +1 -1
  77. data/spec/api/remotes_uln_api_spec.rb +1 -1
  78. data/spec/api/repositories_rpm_api_spec.rb +1 -1
  79. data/spec/api/repositories_rpm_versions_api_spec.rb +2 -2
  80. data/spec/models/{repository_version_spec.rb → repair_spec.rb} +7 -7
  81. data/spec/models/rpm_modulemd_defaults_spec.rb +6 -0
  82. data/spec/models/rpm_modulemd_spec.rb +6 -0
  83. data/spec/models/rpm_package_spec.rb +6 -0
  84. data/spec/models/rpm_uln_remote_response_spec.rb +0 -12
  85. metadata +73 -77
  86. data/docs/ContentSummary.md +0 -21
  87. data/docs/RepositoryVersion.md +0 -17
  88. data/lib/pulp_rpm_client/models/content_summary.rb +0 -246
  89. data/spec/models/content_summary_spec.rb +0 -53
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45ef605acc5d0cebd85c986c9b07de41859a761817ac1c7e6be43e156baf8fc6
4
- data.tar.gz: 0b856e9ec80328b3304c847c3e8311c0caebaac222e86136b1285655daa37163
3
+ metadata.gz: 29682f344723ba796d1c31fe5644eb05bfd57a37e37730b61726b523d0bafd8c
4
+ data.tar.gz: 3f895270e0152f3d50c3fb36deaf8b0ea2b52f272815065064e7120de0db8908
5
5
  SHA512:
6
- metadata.gz: 650b8a6939829f8778cba68168a6b218542fae97d924cbf0a6c3ec3393eb2c19ac81381ab812fa5e026f03d79cacd39c6c7667a73307379bd0c9d4ca5a4b9b64
7
- data.tar.gz: 5656be3c80186bbea38846a52b09fadafeac081f4c7c43bf0ba3905b55fd94941e7b07e6c80dba7212a164592815e0104334f5bdb41e11aade5307ce604b62f0
6
+ metadata.gz: 181bd3951878b8be734ef8e67b9510ae7efb88145ffb75b19f20240701c6eb4bd84b58b5096aee6724ef92402fe48de6ebc17f78f57554d917c9e54b42372552
7
+ data.tar.gz: 18779f489151c28bb6653ec89cb11d83ac6cfd530d7b7b1f0dc33fb20669729db1973b47724773b7d0a0595776923ae0b36ae669bb173026d460a37b143bb569
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.17.4
10
+ - Package version: 3.17.7
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_rpm_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_rpm_client-3.17.4.gem
27
+ gem install ./pulp_rpm_client-3.17.7.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_rpm_client-3.17.4.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_rpm_client-3.17.7.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_rpm_client', '~> 3.17.4'
36
+ gem 'pulp_rpm_client', '~> 3.17.7'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -159,7 +159,6 @@ Class | Method | HTTP request | Description
159
159
  - [PulpRpmClient::AsyncOperationResponse](docs/AsyncOperationResponse.md)
160
160
  - [PulpRpmClient::ChecksumResponse](docs/ChecksumResponse.md)
161
161
  - [PulpRpmClient::CompsXml](docs/CompsXml.md)
162
- - [PulpRpmClient::ContentSummary](docs/ContentSummary.md)
163
162
  - [PulpRpmClient::ContentSummaryResponse](docs/ContentSummaryResponse.md)
164
163
  - [PulpRpmClient::Copy](docs/Copy.md)
165
164
  - [PulpRpmClient::ImageResponse](docs/ImageResponse.md)
@@ -188,8 +187,8 @@ Class | Method | HTTP request | Description
188
187
  - [PulpRpmClient::PatchedrpmRpmRepository](docs/PatchedrpmRpmRepository.md)
189
188
  - [PulpRpmClient::PatchedrpmUlnRemote](docs/PatchedrpmUlnRemote.md)
190
189
  - [PulpRpmClient::PolicyEnum](docs/PolicyEnum.md)
190
+ - [PulpRpmClient::Repair](docs/Repair.md)
191
191
  - [PulpRpmClient::RepositoryAddRemoveContent](docs/RepositoryAddRemoveContent.md)
192
- - [PulpRpmClient::RepositoryVersion](docs/RepositoryVersion.md)
193
192
  - [PulpRpmClient::RepositoryVersionResponse](docs/RepositoryVersionResponse.md)
194
193
  - [PulpRpmClient::RpmDistributionTreeResponse](docs/RpmDistributionTreeResponse.md)
195
194
  - [PulpRpmClient::RpmModulemd](docs/RpmModulemd.md)
data/docs/AcsRpmApi.md CHANGED
@@ -149,7 +149,7 @@ opts = {
149
149
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
150
150
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
151
151
  offset: 56, # Integer | The initial index from which to return the results.
152
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
152
+ ordering: ['ordering_example'], # Array<String> | Ordering
153
153
  fields: 'fields_example', # String | A list of fields to include in the response.
154
154
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
155
155
  }
@@ -175,7 +175,7 @@ Name | Type | Description | Notes
175
175
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
176
176
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
177
177
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
178
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
178
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
179
179
  **fields** | **String**| A list of fields to include in the response. | [optional]
180
180
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
181
181
 
@@ -93,7 +93,7 @@ opts = {
93
93
  id__in: ['id__in_example'], # Array<String> | Filter results where id is in a comma-separated list of values
94
94
  limit: 56, # Integer | Number of results to return per page.
95
95
  offset: 56, # Integer | The initial index from which to return the results.
96
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
96
+ ordering: ['ordering_example'], # Array<String> | Ordering
97
97
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
98
98
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
99
99
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
@@ -128,7 +128,7 @@ Name | Type | Description | Notes
128
128
  **id__in** | [**Array&lt;String&gt;**](String.md)| Filter results where id is in a comma-separated list of values | [optional]
129
129
  **limit** | **Integer**| Number of results to return per page. | [optional]
130
130
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
131
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
131
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
132
132
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
133
133
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
134
134
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentDistributionTreesApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -38,7 +38,8 @@ profiles = nil # Object | Default profiles for modulemd streams.
38
38
  opts = {
39
39
  artifact: 'artifact_example', # String | Artifact file representing the physical content
40
40
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
41
- repository: 'repository_example' # String | A URI of a repository the new content unit should be associated with.
41
+ repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
42
+ upload: 'upload_example' # String | An uncommitted upload that may be turned into the artifact of the content unit.
42
43
  }
43
44
 
44
45
  begin
@@ -62,6 +63,7 @@ Name | Type | Description | Notes
62
63
  **artifact** | **String**| Artifact file representing the physical content | [optional]
63
64
  **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
64
65
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
66
+ **upload** | **String**| An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
65
67
 
66
68
  ### Return type
67
69
 
@@ -103,7 +105,7 @@ opts = {
103
105
  _module: '_module_example', # String | Filter results where module matches value
104
106
  module__in: ['module__in_example'], # Array<String> | Filter results where module is in a comma-separated list of values
105
107
  offset: 56, # Integer | The initial index from which to return the results.
106
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
108
+ ordering: ['ordering_example'], # Array<String> | Ordering
107
109
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
108
110
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
109
111
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
@@ -132,7 +134,7 @@ Name | Type | Description | Notes
132
134
  **_module** | **String**| Filter results where module matches value | [optional]
133
135
  **module__in** | [**Array&lt;String&gt;**](String.md)| Filter results where module is in a comma-separated list of values | [optional]
134
136
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
135
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
137
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
136
138
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
137
139
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
138
140
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
@@ -43,6 +43,7 @@ opts = {
43
43
  artifact: 'artifact_example', # String | Artifact file representing the physical content
44
44
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
45
45
  repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
46
+ upload: 'upload_example', # String | An uncommitted upload that may be turned into the artifact of the content unit.
46
47
  static_context: true, # Boolean | Modulemd static-context flag.
47
48
  packages: 'packages_example' # Array<String> | Modulemd artifacts' packages.
48
49
  }
@@ -72,6 +73,7 @@ Name | Type | Description | Notes
72
73
  **artifact** | **String**| Artifact file representing the physical content | [optional]
73
74
  **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
74
75
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
76
+ **upload** | **String**| An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
75
77
  **static_context** | **Boolean**| Modulemd static-context flag. | [optional]
76
78
  **packages** | [**Array&lt;String&gt;**](String.md)| Modulemd artifacts&#39; packages. | [optional]
77
79
 
@@ -115,7 +117,7 @@ opts = {
115
117
  name: 'name_example', # String | Filter results where name matches value
116
118
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
117
119
  offset: 56, # Integer | The initial index from which to return the results.
118
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
120
+ ordering: ['ordering_example'], # Array<String> | Ordering
119
121
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
120
122
  repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
121
123
  repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
@@ -144,7 +146,7 @@ Name | Type | Description | Notes
144
146
  **name** | **String**| Filter results where name matches value | [optional]
145
147
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
146
148
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
147
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
149
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
148
150
  **repository_version** | **String**| Repository Version referenced by HREF | [optional]
149
151
  **repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
150
152
  **repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentPackagecategoriesApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentPackageenvironmentsApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentPackagegroupsApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentPackagelangpacksApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -35,7 +35,8 @@ relative_path = 'relative_path_example' # String | Path where the artifact is lo
35
35
  opts = {
36
36
  artifact: 'artifact_example', # String | Artifact file representing the physical content
37
37
  file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the artifact of the content unit.
38
- repository: 'repository_example' # String | A URI of a repository the new content unit should be associated with.
38
+ repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
39
+ upload: 'upload_example' # String | An uncommitted upload that may be turned into the artifact of the content unit.
39
40
  }
40
41
 
41
42
  begin
@@ -56,6 +57,7 @@ Name | Type | Description | Notes
56
57
  **artifact** | **String**| Artifact file representing the physical content | [optional]
57
58
  **file** | **File**| An uploaded file that may be turned into the artifact of the content unit. | [optional]
58
59
  **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
60
+ **upload** | **String**| An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
59
61
 
60
62
  ### Return type
61
63
 
@@ -107,7 +109,7 @@ opts = {
107
109
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
108
110
  name__ne: 'name__ne_example', # String | Filter results where name not equal to value
109
111
  offset: 56, # Integer | The initial index from which to return the results.
110
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
112
+ ordering: ['ordering_example'], # Array<String> | Ordering
111
113
  pkg_id: 'pkg_id_example', # String | Filter results where pkgId matches value
112
114
  pkg_id__in: ['pkg_id__in_example'], # Array<String> | Filter results where pkgId is in a comma-separated list of values
113
115
  release: 'release_example', # String | Filter results where release matches value
@@ -152,7 +154,7 @@ Name | Type | Description | Notes
152
154
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
153
155
  **name__ne** | **String**| Filter results where name not equal to value | [optional]
154
156
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
155
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
157
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
156
158
  **pkg_id** | **String**| Filter results where pkgId matches value | [optional]
157
159
  **pkg_id__in** | [**Array&lt;String&gt;**](String.md)| Filter results where pkgId is in a comma-separated list of values | [optional]
158
160
  **release** | **String**| Filter results where release matches value | [optional]
@@ -33,7 +33,7 @@ api_instance = PulpRpmClient::ContentRepoMetadataFilesApi.new
33
33
  opts = {
34
34
  limit: 56, # Integer | Number of results to return per page.
35
35
  offset: 56, # Integer | The initial index from which to return the results.
36
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
36
+ ordering: ['ordering_example'], # Array<String> | Ordering
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
@@ -57,7 +57,7 @@ Name | Type | Description | Notes
57
57
  ------------- | ------------- | ------------- | -------------
58
58
  **limit** | **Integer**| Number of results to return per page. | [optional]
59
59
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
60
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
60
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
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]
@@ -152,7 +152,7 @@ opts = {
152
152
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
153
153
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
154
154
  offset: 56, # Integer | The initial index from which to return the results.
155
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
155
+ ordering: ['ordering_example'], # Array<String> | Ordering
156
156
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
157
157
  fields: 'fields_example', # String | A list of fields to include in the response.
158
158
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
@@ -183,7 +183,7 @@ Name | Type | Description | Notes
183
183
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
184
184
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
185
185
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
186
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
186
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
187
187
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
188
188
  **fields** | **String**| A list of fields to include in the response. | [optional]
189
189
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
@@ -12,9 +12,9 @@ Name | Type | Description | Notes
12
12
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
13
13
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
14
14
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
15
- **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
15
+ **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
16
  **username** | **String** | The username to be used for authentication when syncing. | [optional]
17
- **password** | **String** | The password to be used for authentication when syncing. | [optional]
17
+ **password** | **String** | The password to be used for authentication when syncing. Extra leading and trailing whitespace characters are not trimmed. | [optional]
18
18
  **pulp_labels** | [**Object**](.md) | | [optional]
19
19
  **download_concurrency** | **Integer** | Total number of simultaneous connections. If not set then the default value will be used. | [optional]
20
20
  **max_retries** | **Integer** | Maximum number of retry attempts after a download failure. If not set then the default value (3) will be used. | [optional]
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
12
12
  **tls_validation** | **Boolean** | If True, TLS peer validation must be performed. | [optional]
13
13
  **proxy_url** | **String** | The proxy URL. Format: scheme://host:port | [optional]
14
14
  **proxy_username** | **String** | The username to authenticte to the proxy. | [optional]
15
- **proxy_password** | **String** | The password to authenticte to the proxy. | [optional]
15
+ **proxy_password** | **String** | The password to authenticate to the proxy. Extra leading and trailing whitespace characters are not trimmed. | [optional]
16
16
  **username** | **String** | Your ULN account username. | [optional]
17
17
  **password** | **String** | Your ULN account password. | [optional]
18
18
  **pulp_labels** | [**Object**](.md) | | [optional]
@@ -142,13 +142,14 @@ opts = {
142
142
  content__in: 'content__in_example', # String | Content Unit referenced by HREF
143
143
  limit: 56, # Integer | Number of results to return per page.
144
144
  offset: 56, # Integer | The initial index from which to return the results.
145
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
145
+ ordering: ['ordering_example'], # Array<String> | Ordering
146
146
  pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
147
147
  pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
148
148
  pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
149
149
  pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
150
150
  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
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
+ repository: 'repository_example', # String | Repository referenced by HREF
152
153
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
153
154
  fields: 'fields_example', # String | A list of fields to include in the response.
154
155
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
@@ -172,13 +173,14 @@ Name | Type | Description | Notes
172
173
  **content__in** | **String**| Content Unit referenced by HREF | [optional]
173
174
  **limit** | **Integer**| Number of results to return per page. | [optional]
174
175
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
175
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
176
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
176
177
  **pulp_created** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
177
178
  **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
178
179
  **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
179
180
  **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
180
181
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
181
182
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
183
+ **repository** | **String**| Repository referenced by HREF | [optional]
182
184
  **repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
183
185
  **fields** | **String**| A list of fields to include in the response. | [optional]
184
186
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
@@ -148,7 +148,7 @@ opts = {
148
148
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
149
149
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
150
150
  offset: 56, # Integer | The initial index from which to return the results.
151
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
151
+ ordering: ['ordering_example'], # Array<String> | Ordering
152
152
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
153
153
  pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
154
154
  pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value
@@ -181,7 +181,7 @@ Name | Type | Description | Notes
181
181
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
182
182
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
183
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
184
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
184
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
185
185
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
186
186
  **pulp_last_updated** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
187
187
  **pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional]
@@ -148,7 +148,7 @@ opts = {
148
148
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
149
149
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
150
150
  offset: 56, # Integer | The initial index from which to return the results.
151
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
151
+ ordering: ['ordering_example'], # Array<String> | Ordering
152
152
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
153
153
  pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
154
154
  pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value
@@ -181,7 +181,7 @@ Name | Type | Description | Notes
181
181
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
182
182
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
183
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
184
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
184
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
185
185
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
186
186
  **pulp_last_updated** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
187
187
  **pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional]
data/docs/Repair.md ADDED
@@ -0,0 +1,17 @@
1
+ # PulpRpmClient::Repair
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **verify_checksums** | **Boolean** | Will verify that the checksum of all stored files matches what saved in the database. Otherwise only the existence of the files will be checked. Enabled by default | [optional] [default to true]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'PulpRpmClient'
13
+
14
+ instance = PulpRpmClient::Repair.new(verify_checksums: null)
15
+ ```
16
+
17
+
@@ -150,7 +150,7 @@ opts = {
150
150
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
151
151
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
152
152
  offset: 56, # Integer | The initial index from which to return the results.
153
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
153
+ ordering: ['ordering_example'], # Array<String> | Ordering
154
154
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
155
155
  fields: 'fields_example', # String | A list of fields to include in the response.
156
156
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
@@ -177,7 +177,7 @@ Name | Type | Description | Notes
177
177
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
178
178
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
179
179
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
180
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
180
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
181
181
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
182
182
  **fields** | **String**| A list of fields to include in the response. | [optional]
183
183
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
@@ -97,7 +97,7 @@ opts = {
97
97
  number__lte: 56, # Integer | Filter results where number is less than or equal to value
98
98
  number__range: [56], # Array<Integer> | Filter results where number is between two comma separated values
99
99
  offset: 56, # Integer | The initial index from which to return the results.
100
- ordering: 'ordering_example', # String | Which field to use when ordering the results.
100
+ ordering: ['ordering_example'], # Array<String> | Ordering
101
101
  pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
102
102
  pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
103
103
  pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
@@ -133,7 +133,7 @@ Name | Type | Description | Notes
133
133
  **number__lte** | **Integer**| Filter results where number is less than or equal to value | [optional]
134
134
  **number__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where number is between two comma separated values | [optional]
135
135
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
136
- **ordering** | **String**| Which field to use when ordering the results. | [optional]
136
+ **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering | [optional]
137
137
  **pulp_created** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
138
138
  **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
139
139
  **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
@@ -218,7 +218,7 @@ Name | Type | Description | Notes
218
218
 
219
219
  ## repair
220
220
 
221
- > AsyncOperationResponse repair(rpm_rpm_repository_version_href, repository_version)
221
+ > AsyncOperationResponse repair(rpm_rpm_repository_version_href, repair)
222
222
 
223
223
 
224
224
 
@@ -238,10 +238,10 @@ end
238
238
 
239
239
  api_instance = PulpRpmClient::RepositoriesRpmVersionsApi.new
240
240
  rpm_rpm_repository_version_href = 'rpm_rpm_repository_version_href_example' # String |
241
- repository_version = PulpRpmClient::RepositoryVersion.new # RepositoryVersion |
241
+ repair = PulpRpmClient::Repair.new # Repair |
242
242
 
243
243
  begin
244
- result = api_instance.repair(rpm_rpm_repository_version_href, repository_version)
244
+ result = api_instance.repair(rpm_rpm_repository_version_href, repair)
245
245
  p result
246
246
  rescue PulpRpmClient::ApiError => e
247
247
  puts "Exception when calling RepositoriesRpmVersionsApi->repair: #{e}"
@@ -254,7 +254,7 @@ end
254
254
  Name | Type | Description | Notes
255
255
  ------------- | ------------- | ------------- | -------------
256
256
  **rpm_rpm_repository_version_href** | **String**| |
257
- **repository_version** | [**RepositoryVersion**](RepositoryVersion.md)| |
257
+ **repair** | [**Repair**](Repair.md)| |
258
258
 
259
259
  ### Return type
260
260
 
data/docs/RpmModulemd.md CHANGED
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **relative_path** | **String** | Path where the artifact is located relative to distributions base_path |
9
9
  **file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
10
10
  **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
11
+ **upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
11
12
  **name** | **String** | Modulemd name. |
12
13
  **stream** | **String** | Stream name. |
13
14
  **version** | **String** | Modulemd version. |
@@ -27,6 +28,7 @@ instance = PulpRpmClient::RpmModulemd.new(artifact: null,
27
28
  relative_path: null,
28
29
  file: null,
29
30
  repository: null,
31
+ upload: null,
30
32
  name: null,
31
33
  stream: null,
32
34
  version: null,
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **relative_path** | **String** | Path where the artifact is located relative to distributions base_path |
9
9
  **file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
10
10
  **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
11
+ **upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
11
12
  **_module** | **String** | Modulemd name. |
12
13
  **stream** | **String** | Modulemd default stream. |
13
14
  **profiles** | [**Object**](.md) | Default profiles for modulemd streams. |
@@ -21,6 +22,7 @@ instance = PulpRpmClient::RpmModulemdDefaults.new(artifact: null,
21
22
  relative_path: null,
22
23
  file: null,
23
24
  repository: null,
25
+ upload: null,
24
26
  _module: null,
25
27
  stream: null,
26
28
  profiles: null)
data/docs/RpmPackage.md CHANGED
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **relative_path** | **String** | Path where the artifact is located relative to distributions base_path |
9
9
  **file** | **File** | An uploaded file that may be turned into the artifact of the content unit. | [optional]
10
10
  **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
11
+ **upload** | **String** | An uncommitted upload that may be turned into the artifact of the content unit. | [optional]
11
12
 
12
13
  ## Code Sample
13
14
 
@@ -17,7 +18,8 @@ require 'PulpRpmClient'
17
18
  instance = PulpRpmClient::RpmPackage.new(artifact: null,
18
19
  relative_path: null,
19
20
  file: null,
20
- repository: null)
21
+ repository: null,
22
+ upload: null)
21
23
  ```
22
24
 
23
25
 
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  **repository** | **String** | A URI of the repository to be published. | [optional]
9
9
  **metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. | [optional]
10
10
  **package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
11
- **gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
12
- **repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
11
+ **gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional]
12
+ **repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional]
13
13
  **sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
14
14
 
15
15
  ## Code Sample
@@ -10,8 +10,8 @@ Name | Type | Description | Notes
10
10
  **repository** | **String** | A URI of the repository to be published. | [optional]
11
11
  **metadata_checksum_type** | [**MetadataChecksumTypeEnum**](MetadataChecksumTypeEnum.md) | The checksum type for metadata. | [optional]
12
12
  **package_checksum_type** | [**PackageChecksumTypeEnum**](PackageChecksumTypeEnum.md) | The checksum type for packages. | [optional]
13
- **gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional] [default to 0]
14
- **repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional] [default to 0]
13
+ **gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on packages. | [optional]
14
+ **repo_gpgcheck** | **Integer** | An option specifying whether a client should perform a GPG signature check on the repodata. | [optional]
15
15
  **sqlite_metadata** | **Boolean** | An option specifying whether Pulp should generate SQLite metadata. | [optional] [default to false]
16
16
 
17
17
  ## Code Sample