pulp_deb_client 2.20.1 → 2.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/docs/ContentGenericContentsApi.md +14 -10
- data/docs/ContentInstallerFileIndicesApi.md +14 -10
- data/docs/ContentInstallerPackagesApi.md +20 -16
- data/docs/ContentPackageIndicesApi.md +14 -10
- data/docs/ContentPackageReleaseComponentsApi.md +16 -12
- data/docs/ContentPackagesApi.md +20 -16
- data/docs/ContentReleaseArchitecturesApi.md +15 -11
- data/docs/ContentReleaseComponentsApi.md +15 -11
- data/docs/ContentReleaseFilesApi.md +14 -10
- data/docs/ContentReleasesApi.md +14 -10
- data/docs/DebAptDistribution.md +1 -1
- data/docs/DebAptDistributionResponse.md +1 -1
- data/docs/DebAptRemote.md +2 -2
- data/docs/DebAptRemoteResponse.md +4 -2
- data/docs/DebAptRemoteResponseHiddenFields.md +19 -0
- data/docs/DebAptRepository.md +2 -2
- data/docs/DebAptRepositoryResponse.md +2 -2
- data/docs/DebInstallerFileIndex.md +0 -2
- data/docs/DebInstallerFileIndexResponse.md +0 -2
- data/docs/DebPackageIndex.md +0 -2
- data/docs/DebPackageIndexResponse.md +0 -2
- data/docs/DistributionsAptApi.md +22 -14
- data/docs/PatcheddebAptDistribution.md +1 -1
- data/docs/PatcheddebAptRemote.md +2 -2
- data/docs/PatcheddebAptRepository.md +2 -2
- data/docs/PublicationsAptApi.md +16 -12
- data/docs/PublicationsVerbatimApi.md +16 -12
- data/docs/RemotesAptApi.md +18 -14
- data/docs/RepositoriesAptApi.md +33 -13
- data/docs/RepositoriesAptVersionsApi.md +16 -14
- data/docs/RepositoryAddRemoveContent.md +2 -2
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_installer_file_indices_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +27 -21
- data/lib/pulp_deb_client/api/content_package_indices_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_package_release_components_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_packages_api.rb +27 -21
- data/lib/pulp_deb_client/api/content_release_architectures_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_release_components_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_release_files_api.rb +21 -15
- data/lib/pulp_deb_client/api/content_releases_api.rb +21 -15
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +31 -19
- data/lib/pulp_deb_client/api/publications_apt_api.rb +23 -17
- data/lib/pulp_deb_client/api/publications_verbatim_api.rb +23 -17
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +25 -19
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +47 -17
- data/lib/pulp_deb_client/api/repositories_apt_versions_api.rb +22 -19
- data/lib/pulp_deb_client/models/deb_apt_distribution.rb +4 -2
- data/lib/pulp_deb_client/models/deb_apt_distribution_response.rb +4 -2
- data/lib/pulp_deb_client/models/deb_apt_remote.rb +5 -3
- data/lib/pulp_deb_client/models/deb_apt_remote_response.rb +18 -4
- data/lib/pulp_deb_client/models/deb_apt_remote_response_hidden_fields.rb +215 -0
- data/lib/pulp_deb_client/models/deb_apt_repository.rb +5 -3
- data/lib/pulp_deb_client/models/deb_apt_repository_response.rb +5 -3
- data/lib/pulp_deb_client/models/deb_installer_file_index.rb +1 -16
- data/lib/pulp_deb_client/models/deb_installer_file_index_response.rb +1 -16
- data/lib/pulp_deb_client/models/deb_package_index.rb +1 -16
- data/lib/pulp_deb_client/models/deb_package_index_response.rb +1 -16
- data/lib/pulp_deb_client/models/patcheddeb_apt_distribution.rb +4 -2
- data/lib/pulp_deb_client/models/patcheddeb_apt_remote.rb +5 -3
- data/lib/pulp_deb_client/models/patcheddeb_apt_repository.rb +5 -3
- data/lib/pulp_deb_client/models/repository_add_remove_content.rb +2 -2
- data/lib/pulp_deb_client/version.rb +1 -1
- data/lib/pulp_deb_client.rb +1 -0
- data/spec/api/content_generic_contents_api_spec.rb +7 -5
- data/spec/api/content_installer_file_indices_api_spec.rb +7 -5
- data/spec/api/content_installer_packages_api_spec.rb +10 -8
- data/spec/api/content_package_indices_api_spec.rb +7 -5
- data/spec/api/content_package_release_components_api_spec.rb +7 -5
- data/spec/api/content_packages_api_spec.rb +10 -8
- data/spec/api/content_release_architectures_api_spec.rb +7 -5
- data/spec/api/content_release_components_api_spec.rb +7 -5
- data/spec/api/content_release_files_api_spec.rb +7 -5
- data/spec/api/content_releases_api_spec.rb +7 -5
- data/spec/api/distributions_apt_api_spec.rb +11 -7
- data/spec/api/publications_apt_api_spec.rb +8 -6
- data/spec/api/publications_verbatim_api_spec.rb +8 -6
- data/spec/api/remotes_apt_api_spec.rb +9 -7
- data/spec/api/repositories_apt_api_spec.rb +16 -6
- data/spec/api/repositories_apt_versions_api_spec.rb +8 -7
- data/spec/models/deb_apt_remote_response_hidden_fields_spec.rb +47 -0
- data/spec/models/deb_apt_remote_response_spec.rb +6 -0
- data/spec/models/deb_installer_file_index_response_spec.rb +0 -6
- data/spec/models/deb_installer_file_index_spec.rb +0 -6
- data/spec/models/deb_package_index_response_spec.rb +0 -6
- data/spec/models/deb_package_index_spec.rb +0 -6
- metadata +57 -53
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb6bb8d396bfddc99d0d59c0fae8e230fd05123d06139cf203e39483a8ea6a72
|
|
4
|
+
data.tar.gz: e2615b979d7f359087d2c6565b4461bbc9505b1b2ac9f12ac8ea444cfddb31c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fee7efec3f358545d96949ddf6e80fbc8b9f3edd80d0f53d52aca0ea0fae65a28ceea33df045cb7239264b4e1d66d30c6df0365f5cb5d25f51a90cea5f07c361
|
|
7
|
+
data.tar.gz: 74e06d89ce92d342018eade1ca7587e9d282ce7981b8a5de67559fbb892a6e13f4090504b4dd6e534ecf2a7f522e03e745baf5fb9d0d90a5f3211a44defa0a0c
|
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: 2.20.
|
|
10
|
+
- Package version: 2.20.3
|
|
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_deb_client.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./pulp_deb_client-2.20.
|
|
27
|
+
gem install ./pulp_deb_client-2.20.3.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_deb_client-2.20.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_deb_client-2.20.3.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_deb_client', '~> 2.20.
|
|
36
|
+
gem 'pulp_deb_client', '~> 2.20.3'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -166,6 +166,7 @@ Class | Method | HTTP request | Description
|
|
|
166
166
|
- [PulpDebClient::DebAptPublicationResponse](docs/DebAptPublicationResponse.md)
|
|
167
167
|
- [PulpDebClient::DebAptRemote](docs/DebAptRemote.md)
|
|
168
168
|
- [PulpDebClient::DebAptRemoteResponse](docs/DebAptRemoteResponse.md)
|
|
169
|
+
- [PulpDebClient::DebAptRemoteResponseHiddenFields](docs/DebAptRemoteResponseHiddenFields.md)
|
|
169
170
|
- [PulpDebClient::DebAptRepository](docs/DebAptRepository.md)
|
|
170
171
|
- [PulpDebClient::DebAptRepositoryResponse](docs/DebAptRepositoryResponse.md)
|
|
171
172
|
- [PulpDebClient::DebBasePackage](docs/DebBasePackage.md)
|
|
@@ -97,14 +97,16 @@ api_instance = PulpDebClient::ContentGenericContentsApi.new
|
|
|
97
97
|
opts = {
|
|
98
98
|
limit: 56, # Integer | Number of results to return per page.
|
|
99
99
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
100
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
100
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
101
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
102
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
101
103
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
102
104
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
103
105
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
104
106
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
105
107
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
106
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
107
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
108
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
109
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
108
110
|
}
|
|
109
111
|
|
|
110
112
|
begin
|
|
@@ -123,14 +125,16 @@ Name | Type | Description | Notes
|
|
|
123
125
|
------------- | ------------- | ------------- | -------------
|
|
124
126
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
125
127
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
126
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
128
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
129
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
130
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
127
131
|
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
128
132
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
129
133
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
130
134
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
131
135
|
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
132
|
-
**fields** | **String
|
|
133
|
-
**exclude_fields** | **String
|
|
136
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
137
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
134
138
|
|
|
135
139
|
### Return type
|
|
136
140
|
|
|
@@ -169,8 +173,8 @@ end
|
|
|
169
173
|
api_instance = PulpDebClient::ContentGenericContentsApi.new
|
|
170
174
|
deb_generic_content_href = 'deb_generic_content_href_example' # String |
|
|
171
175
|
opts = {
|
|
172
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
173
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
176
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
177
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
174
178
|
}
|
|
175
179
|
|
|
176
180
|
begin
|
|
@@ -188,8 +192,8 @@ end
|
|
|
188
192
|
Name | Type | Description | Notes
|
|
189
193
|
------------- | ------------- | ------------- | -------------
|
|
190
194
|
**deb_generic_content_href** | **String**| |
|
|
191
|
-
**fields** | **String
|
|
192
|
-
**exclude_fields** | **String
|
|
195
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
196
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
193
197
|
|
|
194
198
|
### Return type
|
|
195
199
|
|
|
@@ -89,14 +89,16 @@ opts = {
|
|
|
89
89
|
component: 'component_example', # String | Filter results where component matches value
|
|
90
90
|
limit: 56, # Integer | Number of results to return per page.
|
|
91
91
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
92
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
92
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `component` - Component * `-component` - Component (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
93
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
94
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
93
95
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
94
96
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
95
97
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
96
98
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
97
99
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
98
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
99
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
100
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
101
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
begin
|
|
@@ -117,14 +119,16 @@ Name | Type | Description | Notes
|
|
|
117
119
|
**component** | **String**| Filter results where component matches value | [optional]
|
|
118
120
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
119
121
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
120
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
122
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `component` - Component * `-component` - Component (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
123
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
124
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
121
125
|
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
122
126
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
123
127
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
124
128
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
125
129
|
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
126
|
-
**fields** | **String
|
|
127
|
-
**exclude_fields** | **String
|
|
130
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
131
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
128
132
|
|
|
129
133
|
### Return type
|
|
130
134
|
|
|
@@ -163,8 +167,8 @@ end
|
|
|
163
167
|
api_instance = PulpDebClient::ContentInstallerFileIndicesApi.new
|
|
164
168
|
deb_installer_file_index_href = 'deb_installer_file_index_href_example' # String |
|
|
165
169
|
opts = {
|
|
166
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
167
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
170
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
171
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
168
172
|
}
|
|
169
173
|
|
|
170
174
|
begin
|
|
@@ -182,8 +186,8 @@ end
|
|
|
182
186
|
Name | Type | Description | Notes
|
|
183
187
|
------------- | ------------- | ------------- | -------------
|
|
184
188
|
**deb_installer_file_index_href** | **String**| |
|
|
185
|
-
**fields** | **String
|
|
186
|
-
**exclude_fields** | **String
|
|
189
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
190
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
187
191
|
|
|
188
192
|
### Return type
|
|
189
193
|
|
|
@@ -97,19 +97,21 @@ api_instance = PulpDebClient::ContentInstallerPackagesApi.new
|
|
|
97
97
|
opts = {
|
|
98
98
|
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
99
99
|
auto_built_package: 'auto_built_package_example', # String | Filter results where auto_built_package matches value
|
|
100
|
-
build_essential: true, # Boolean | Filter results where build_essential matches value
|
|
100
|
+
build_essential: true, # Boolean | Filter results where build_essential matches value * `True` - yes * `False` - no
|
|
101
101
|
built_using: 'built_using_example', # String | Filter results where built_using matches value
|
|
102
|
-
essential: true, # Boolean | Filter results where essential matches value
|
|
102
|
+
essential: true, # Boolean | Filter results where essential matches value * `True` - yes * `False` - no
|
|
103
103
|
installed_size: 56, # Integer | Filter results where installed_size matches value
|
|
104
104
|
limit: 56, # Integer | Number of results to return per page.
|
|
105
105
|
maintainer: 'maintainer_example', # String | Filter results where maintainer matches value
|
|
106
|
-
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value
|
|
106
|
+
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value * `no` - no * `same` - same * `foreign` - foreign * `allowed` - allowed
|
|
107
107
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
108
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
108
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `package` - Package * `-package` - Package (descending) * `source` - Source * `-source` - Source (descending) * `version` - Version * `-version` - Version (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `section` - Section * `-section` - Section (descending) * `priority` - Priority * `-priority` - Priority (descending) * `origin` - Origin * `-origin` - Origin (descending) * `tag` - Tag * `-tag` - Tag (descending) * `bugs` - Bugs * `-bugs` - Bugs (descending) * `essential` - Essential * `-essential` - Essential (descending) * `build_essential` - Build essential * `-build_essential` - Build essential (descending) * `installed_size` - Installed size * `-installed_size` - Installed size (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `original_maintainer` - Original maintainer * `-original_maintainer` - Original maintainer (descending) * `description` - Description * `-description` - Description (descending) * `description_md5` - Description md5 * `-description_md5` - Description md5 (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `built_using` - Built using * `-built_using` - Built using (descending) * `auto_built_package` - Auto built package * `-auto_built_package` - Auto built package (descending) * `multi_arch` - Multi arch * `-multi_arch` - Multi arch (descending) * `breaks` - Breaks * `-breaks` - Breaks (descending) * `conflicts` - Conflicts * `-conflicts` - Conflicts (descending) * `depends` - Depends * `-depends` - Depends (descending) * `recommends` - Recommends * `-recommends` - Recommends (descending) * `suggests` - Suggests * `-suggests` - Suggests (descending) * `enhances` - Enhances * `-enhances` - Enhances (descending) * `pre_depends` - Pre depends * `-pre_depends` - Pre depends (descending) * `provides` - Provides * `-provides` - Provides (descending) * `replaces` - Replaces * `-replaces` - Replaces (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `custom_fields` - Custom fields * `-custom_fields` - Custom fields (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
109
109
|
origin: 'origin_example', # String | Filter results where origin matches value
|
|
110
110
|
original_maintainer: 'original_maintainer_example', # String | Filter results where original_maintainer matches value
|
|
111
111
|
package: 'package_example', # String | Filter results where package matches value
|
|
112
112
|
priority: 'priority_example', # String | Filter results where priority matches value
|
|
113
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
114
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
113
115
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
114
116
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
115
117
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
@@ -118,8 +120,8 @@ opts = {
|
|
|
118
120
|
source: 'source_example', # String | Filter results where source matches value
|
|
119
121
|
tag: 'tag_example', # String | Filter results where tag matches value
|
|
120
122
|
version: 'version_example', # String | Filter results where version matches value
|
|
121
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
122
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
123
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
124
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
begin
|
|
@@ -138,19 +140,21 @@ Name | Type | Description | Notes
|
|
|
138
140
|
------------- | ------------- | ------------- | -------------
|
|
139
141
|
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
140
142
|
**auto_built_package** | **String**| Filter results where auto_built_package matches value | [optional]
|
|
141
|
-
**build_essential** | **Boolean**| Filter results where build_essential matches value | [optional]
|
|
143
|
+
**build_essential** | **Boolean**| Filter results where build_essential matches value * `True` - yes * `False` - no | [optional]
|
|
142
144
|
**built_using** | **String**| Filter results where built_using matches value | [optional]
|
|
143
|
-
**essential** | **Boolean**| Filter results where essential matches value | [optional]
|
|
145
|
+
**essential** | **Boolean**| Filter results where essential matches value * `True` - yes * `False` - no | [optional]
|
|
144
146
|
**installed_size** | **Integer**| Filter results where installed_size matches value | [optional]
|
|
145
147
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
146
148
|
**maintainer** | **String**| Filter results where maintainer matches value | [optional]
|
|
147
|
-
**multi_arch** | **String**| Filter results where multi_arch matches value | [optional]
|
|
149
|
+
**multi_arch** | **String**| Filter results where multi_arch matches value * `no` - no * `same` - same * `foreign` - foreign * `allowed` - allowed | [optional]
|
|
148
150
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
149
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
151
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `package` - Package * `-package` - Package (descending) * `source` - Source * `-source` - Source (descending) * `version` - Version * `-version` - Version (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `section` - Section * `-section` - Section (descending) * `priority` - Priority * `-priority` - Priority (descending) * `origin` - Origin * `-origin` - Origin (descending) * `tag` - Tag * `-tag` - Tag (descending) * `bugs` - Bugs * `-bugs` - Bugs (descending) * `essential` - Essential * `-essential` - Essential (descending) * `build_essential` - Build essential * `-build_essential` - Build essential (descending) * `installed_size` - Installed size * `-installed_size` - Installed size (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `original_maintainer` - Original maintainer * `-original_maintainer` - Original maintainer (descending) * `description` - Description * `-description` - Description (descending) * `description_md5` - Description md5 * `-description_md5` - Description md5 (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `built_using` - Built using * `-built_using` - Built using (descending) * `auto_built_package` - Auto built package * `-auto_built_package` - Auto built package (descending) * `multi_arch` - Multi arch * `-multi_arch` - Multi arch (descending) * `breaks` - Breaks * `-breaks` - Breaks (descending) * `conflicts` - Conflicts * `-conflicts` - Conflicts (descending) * `depends` - Depends * `-depends` - Depends (descending) * `recommends` - Recommends * `-recommends` - Recommends (descending) * `suggests` - Suggests * `-suggests` - Suggests (descending) * `enhances` - Enhances * `-enhances` - Enhances (descending) * `pre_depends` - Pre depends * `-pre_depends` - Pre depends (descending) * `provides` - Provides * `-provides` - Provides (descending) * `replaces` - Replaces * `-replaces` - Replaces (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `custom_fields` - Custom fields * `-custom_fields` - Custom fields (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
150
152
|
**origin** | **String**| Filter results where origin matches value | [optional]
|
|
151
153
|
**original_maintainer** | **String**| Filter results where original_maintainer matches value | [optional]
|
|
152
154
|
**package** | **String**| Filter results where package matches value | [optional]
|
|
153
155
|
**priority** | **String**| Filter results where priority matches value | [optional]
|
|
156
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
157
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
154
158
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
155
159
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
156
160
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
@@ -159,8 +163,8 @@ Name | Type | Description | Notes
|
|
|
159
163
|
**source** | **String**| Filter results where source matches value | [optional]
|
|
160
164
|
**tag** | **String**| Filter results where tag matches value | [optional]
|
|
161
165
|
**version** | **String**| Filter results where version matches value | [optional]
|
|
162
|
-
**fields** | **String
|
|
163
|
-
**exclude_fields** | **String
|
|
166
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
167
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
164
168
|
|
|
165
169
|
### Return type
|
|
166
170
|
|
|
@@ -199,8 +203,8 @@ end
|
|
|
199
203
|
api_instance = PulpDebClient::ContentInstallerPackagesApi.new
|
|
200
204
|
deb_installer_package_href = 'deb_installer_package_href_example' # String |
|
|
201
205
|
opts = {
|
|
202
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
203
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
206
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
207
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
204
208
|
}
|
|
205
209
|
|
|
206
210
|
begin
|
|
@@ -218,8 +222,8 @@ end
|
|
|
218
222
|
Name | Type | Description | Notes
|
|
219
223
|
------------- | ------------- | ------------- | -------------
|
|
220
224
|
**deb_installer_package_href** | **String**| |
|
|
221
|
-
**fields** | **String
|
|
222
|
-
**exclude_fields** | **String
|
|
225
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
226
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
223
227
|
|
|
224
228
|
### Return type
|
|
225
229
|
|
|
@@ -89,14 +89,16 @@ opts = {
|
|
|
89
89
|
component: 'component_example', # String | Filter results where component matches value
|
|
90
90
|
limit: 56, # Integer | Number of results to return per page.
|
|
91
91
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
92
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
92
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `component` - Component * `-component` - Component (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `artifact_set_sha256` - Artifact set sha256 * `-artifact_set_sha256` - Artifact set sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
93
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
94
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
93
95
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
94
96
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
95
97
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
96
98
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
97
99
|
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
98
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
99
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
100
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
101
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
begin
|
|
@@ -117,14 +119,16 @@ Name | Type | Description | Notes
|
|
|
117
119
|
**component** | **String**| Filter results where component matches value | [optional]
|
|
118
120
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
119
121
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
120
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
122
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `component` - Component * `-component` - Component (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `artifact_set_sha256` - Artifact set sha256 * `-artifact_set_sha256` - Artifact set sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
123
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
124
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
121
125
|
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
122
126
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
123
127
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
124
128
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
125
129
|
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
126
|
-
**fields** | **String
|
|
127
|
-
**exclude_fields** | **String
|
|
130
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
131
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
128
132
|
|
|
129
133
|
### Return type
|
|
130
134
|
|
|
@@ -163,8 +167,8 @@ end
|
|
|
163
167
|
api_instance = PulpDebClient::ContentPackageIndicesApi.new
|
|
164
168
|
deb_package_index_href = 'deb_package_index_href_example' # String |
|
|
165
169
|
opts = {
|
|
166
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
167
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
170
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
171
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
168
172
|
}
|
|
169
173
|
|
|
170
174
|
begin
|
|
@@ -182,8 +186,8 @@ end
|
|
|
182
186
|
Name | Type | Description | Notes
|
|
183
187
|
------------- | ------------- | ------------- | -------------
|
|
184
188
|
**deb_package_index_href** | **String**| |
|
|
185
|
-
**fields** | **String
|
|
186
|
-
**exclude_fields** | **String
|
|
189
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
190
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
187
191
|
|
|
188
192
|
### Return type
|
|
189
193
|
|
|
@@ -87,14 +87,16 @@ api_instance = PulpDebClient::ContentPackageReleaseComponentsApi.new
|
|
|
87
87
|
opts = {
|
|
88
88
|
limit: 56, # Integer | Number of results to return per page.
|
|
89
89
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
90
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
90
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
91
91
|
package: 'package_example', # String | Filter results where package matches value
|
|
92
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
93
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
92
94
|
release_component: 'release_component_example', # String | Filter results where release_component matches value
|
|
93
95
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
94
96
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
95
97
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
96
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
97
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
98
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
99
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
begin
|
|
@@ -113,14 +115,16 @@ Name | Type | Description | Notes
|
|
|
113
115
|
------------- | ------------- | ------------- | -------------
|
|
114
116
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
115
117
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
116
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
117
|
-
**package** |
|
|
118
|
-
**
|
|
118
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
119
|
+
**package** | **String**| Filter results where package matches value | [optional]
|
|
120
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
121
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
122
|
+
**release_component** | **String**| Filter results where release_component matches value | [optional]
|
|
119
123
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
120
124
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
121
125
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
122
|
-
**fields** | **String
|
|
123
|
-
**exclude_fields** | **String
|
|
126
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
127
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
124
128
|
|
|
125
129
|
### Return type
|
|
126
130
|
|
|
@@ -159,8 +163,8 @@ end
|
|
|
159
163
|
api_instance = PulpDebClient::ContentPackageReleaseComponentsApi.new
|
|
160
164
|
deb_package_release_component_href = 'deb_package_release_component_href_example' # String |
|
|
161
165
|
opts = {
|
|
162
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
163
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
166
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
167
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
164
168
|
}
|
|
165
169
|
|
|
166
170
|
begin
|
|
@@ -178,8 +182,8 @@ end
|
|
|
178
182
|
Name | Type | Description | Notes
|
|
179
183
|
------------- | ------------- | ------------- | -------------
|
|
180
184
|
**deb_package_release_component_href** | **String**| |
|
|
181
|
-
**fields** | **String
|
|
182
|
-
**exclude_fields** | **String
|
|
185
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
186
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
183
187
|
|
|
184
188
|
### Return type
|
|
185
189
|
|
data/docs/ContentPackagesApi.md
CHANGED
|
@@ -97,19 +97,21 @@ api_instance = PulpDebClient::ContentPackagesApi.new
|
|
|
97
97
|
opts = {
|
|
98
98
|
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
99
99
|
auto_built_package: 'auto_built_package_example', # String | Filter results where auto_built_package matches value
|
|
100
|
-
build_essential: true, # Boolean | Filter results where build_essential matches value
|
|
100
|
+
build_essential: true, # Boolean | Filter results where build_essential matches value * `True` - yes * `False` - no
|
|
101
101
|
built_using: 'built_using_example', # String | Filter results where built_using matches value
|
|
102
|
-
essential: true, # Boolean | Filter results where essential matches value
|
|
102
|
+
essential: true, # Boolean | Filter results where essential matches value * `True` - yes * `False` - no
|
|
103
103
|
installed_size: 56, # Integer | Filter results where installed_size matches value
|
|
104
104
|
limit: 56, # Integer | Number of results to return per page.
|
|
105
105
|
maintainer: 'maintainer_example', # String | Filter results where maintainer matches value
|
|
106
|
-
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value
|
|
106
|
+
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value * `no` - no * `same` - same * `foreign` - foreign * `allowed` - allowed
|
|
107
107
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
108
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
108
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `package` - Package * `-package` - Package (descending) * `source` - Source * `-source` - Source (descending) * `version` - Version * `-version` - Version (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `section` - Section * `-section` - Section (descending) * `priority` - Priority * `-priority` - Priority (descending) * `origin` - Origin * `-origin` - Origin (descending) * `tag` - Tag * `-tag` - Tag (descending) * `bugs` - Bugs * `-bugs` - Bugs (descending) * `essential` - Essential * `-essential` - Essential (descending) * `build_essential` - Build essential * `-build_essential` - Build essential (descending) * `installed_size` - Installed size * `-installed_size` - Installed size (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `original_maintainer` - Original maintainer * `-original_maintainer` - Original maintainer (descending) * `description` - Description * `-description` - Description (descending) * `description_md5` - Description md5 * `-description_md5` - Description md5 (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `built_using` - Built using * `-built_using` - Built using (descending) * `auto_built_package` - Auto built package * `-auto_built_package` - Auto built package (descending) * `multi_arch` - Multi arch * `-multi_arch` - Multi arch (descending) * `breaks` - Breaks * `-breaks` - Breaks (descending) * `conflicts` - Conflicts * `-conflicts` - Conflicts (descending) * `depends` - Depends * `-depends` - Depends (descending) * `recommends` - Recommends * `-recommends` - Recommends (descending) * `suggests` - Suggests * `-suggests` - Suggests (descending) * `enhances` - Enhances * `-enhances` - Enhances (descending) * `pre_depends` - Pre depends * `-pre_depends` - Pre depends (descending) * `provides` - Provides * `-provides` - Provides (descending) * `replaces` - Replaces * `-replaces` - Replaces (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `custom_fields` - Custom fields * `-custom_fields` - Custom fields (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
109
109
|
origin: 'origin_example', # String | Filter results where origin matches value
|
|
110
110
|
original_maintainer: 'original_maintainer_example', # String | Filter results where original_maintainer matches value
|
|
111
111
|
package: 'package_example', # String | Filter results where package matches value
|
|
112
112
|
priority: 'priority_example', # String | Filter results where priority matches value
|
|
113
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
114
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
113
115
|
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
114
116
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
115
117
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
@@ -119,8 +121,8 @@ opts = {
|
|
|
119
121
|
source: 'source_example', # String | Filter results where source matches value
|
|
120
122
|
tag: 'tag_example', # String | Filter results where tag matches value
|
|
121
123
|
version: 'version_example', # String | Filter results where version matches value
|
|
122
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
123
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
124
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
125
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
124
126
|
}
|
|
125
127
|
|
|
126
128
|
begin
|
|
@@ -139,19 +141,21 @@ Name | Type | Description | Notes
|
|
|
139
141
|
------------- | ------------- | ------------- | -------------
|
|
140
142
|
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
141
143
|
**auto_built_package** | **String**| Filter results where auto_built_package matches value | [optional]
|
|
142
|
-
**build_essential** | **Boolean**| Filter results where build_essential matches value | [optional]
|
|
144
|
+
**build_essential** | **Boolean**| Filter results where build_essential matches value * `True` - yes * `False` - no | [optional]
|
|
143
145
|
**built_using** | **String**| Filter results where built_using matches value | [optional]
|
|
144
|
-
**essential** | **Boolean**| Filter results where essential matches value | [optional]
|
|
146
|
+
**essential** | **Boolean**| Filter results where essential matches value * `True` - yes * `False` - no | [optional]
|
|
145
147
|
**installed_size** | **Integer**| Filter results where installed_size matches value | [optional]
|
|
146
148
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
147
149
|
**maintainer** | **String**| Filter results where maintainer matches value | [optional]
|
|
148
|
-
**multi_arch** | **String**| Filter results where multi_arch matches value | [optional]
|
|
150
|
+
**multi_arch** | **String**| Filter results where multi_arch matches value * `no` - no * `same` - same * `foreign` - foreign * `allowed` - allowed | [optional]
|
|
149
151
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
150
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
152
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `package` - Package * `-package` - Package (descending) * `source` - Source * `-source` - Source (descending) * `version` - Version * `-version` - Version (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `section` - Section * `-section` - Section (descending) * `priority` - Priority * `-priority` - Priority (descending) * `origin` - Origin * `-origin` - Origin (descending) * `tag` - Tag * `-tag` - Tag (descending) * `bugs` - Bugs * `-bugs` - Bugs (descending) * `essential` - Essential * `-essential` - Essential (descending) * `build_essential` - Build essential * `-build_essential` - Build essential (descending) * `installed_size` - Installed size * `-installed_size` - Installed size (descending) * `maintainer` - Maintainer * `-maintainer` - Maintainer (descending) * `original_maintainer` - Original maintainer * `-original_maintainer` - Original maintainer (descending) * `description` - Description * `-description` - Description (descending) * `description_md5` - Description md5 * `-description_md5` - Description md5 (descending) * `homepage` - Homepage * `-homepage` - Homepage (descending) * `built_using` - Built using * `-built_using` - Built using (descending) * `auto_built_package` - Auto built package * `-auto_built_package` - Auto built package (descending) * `multi_arch` - Multi arch * `-multi_arch` - Multi arch (descending) * `breaks` - Breaks * `-breaks` - Breaks (descending) * `conflicts` - Conflicts * `-conflicts` - Conflicts (descending) * `depends` - Depends * `-depends` - Depends (descending) * `recommends` - Recommends * `-recommends` - Recommends (descending) * `suggests` - Suggests * `-suggests` - Suggests (descending) * `enhances` - Enhances * `-enhances` - Enhances (descending) * `pre_depends` - Pre depends * `-pre_depends` - Pre depends (descending) * `provides` - Provides * `-provides` - Provides (descending) * `replaces` - Replaces * `-replaces` - Replaces (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `custom_fields` - Custom fields * `-custom_fields` - Custom fields (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
151
153
|
**origin** | **String**| Filter results where origin matches value | [optional]
|
|
152
154
|
**original_maintainer** | **String**| Filter results where original_maintainer matches value | [optional]
|
|
153
155
|
**package** | **String**| Filter results where package matches value | [optional]
|
|
154
156
|
**priority** | **String**| Filter results where priority matches value | [optional]
|
|
157
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
158
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
155
159
|
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
156
160
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
157
161
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
@@ -161,8 +165,8 @@ Name | Type | Description | Notes
|
|
|
161
165
|
**source** | **String**| Filter results where source matches value | [optional]
|
|
162
166
|
**tag** | **String**| Filter results where tag matches value | [optional]
|
|
163
167
|
**version** | **String**| Filter results where version matches value | [optional]
|
|
164
|
-
**fields** | **String
|
|
165
|
-
**exclude_fields** | **String
|
|
168
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
169
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
166
170
|
|
|
167
171
|
### Return type
|
|
168
172
|
|
|
@@ -201,8 +205,8 @@ end
|
|
|
201
205
|
api_instance = PulpDebClient::ContentPackagesApi.new
|
|
202
206
|
deb_package_href = 'deb_package_href_example' # String |
|
|
203
207
|
opts = {
|
|
204
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
205
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
208
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
209
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
206
210
|
}
|
|
207
211
|
|
|
208
212
|
begin
|
|
@@ -220,8 +224,8 @@ end
|
|
|
220
224
|
Name | Type | Description | Notes
|
|
221
225
|
------------- | ------------- | ------------- | -------------
|
|
222
226
|
**deb_package_href** | **String**| |
|
|
223
|
-
**fields** | **String
|
|
224
|
-
**exclude_fields** | **String
|
|
227
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
228
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
225
229
|
|
|
226
230
|
### Return type
|
|
227
231
|
|
|
@@ -88,13 +88,15 @@ opts = {
|
|
|
88
88
|
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
89
89
|
limit: 56, # Integer | Number of results to return per page.
|
|
90
90
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
91
|
-
ordering: ['ordering_example'], # Array<String> | Ordering
|
|
91
|
+
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
92
|
+
pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
93
|
+
pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
|
|
92
94
|
release: 'release_example', # String | Filter results where release matches value
|
|
93
95
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
94
96
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
95
97
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
96
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
97
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
98
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
99
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
begin
|
|
@@ -114,13 +116,15 @@ Name | Type | Description | Notes
|
|
|
114
116
|
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
115
117
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
116
118
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
117
|
-
**ordering** | [**Array<String>**](String.md)| Ordering | [optional]
|
|
118
|
-
**
|
|
119
|
+
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `architecture` - Architecture * `-architecture` - Architecture (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
120
|
+
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
121
|
+
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
122
|
+
**release** | **String**| Filter results where release matches value | [optional]
|
|
119
123
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
120
124
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
121
125
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
122
|
-
**fields** | **String
|
|
123
|
-
**exclude_fields** | **String
|
|
126
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
127
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
124
128
|
|
|
125
129
|
### Return type
|
|
126
130
|
|
|
@@ -159,8 +163,8 @@ end
|
|
|
159
163
|
api_instance = PulpDebClient::ContentReleaseArchitecturesApi.new
|
|
160
164
|
deb_release_architecture_href = 'deb_release_architecture_href_example' # String |
|
|
161
165
|
opts = {
|
|
162
|
-
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
163
|
-
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
166
|
+
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
167
|
+
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
164
168
|
}
|
|
165
169
|
|
|
166
170
|
begin
|
|
@@ -178,8 +182,8 @@ end
|
|
|
178
182
|
Name | Type | Description | Notes
|
|
179
183
|
------------- | ------------- | ------------- | -------------
|
|
180
184
|
**deb_release_architecture_href** | **String**| |
|
|
181
|
-
**fields** | **String
|
|
182
|
-
**exclude_fields** | **String
|
|
185
|
+
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
186
|
+
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
183
187
|
|
|
184
188
|
### Return type
|
|
185
189
|
|