pulp_deb_client 2.0.0b2 → 2.0.0b3
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 +32 -18
- data/docs/ContentGenericContentsApi.md +12 -4
- data/docs/ContentInstallerFileIndexApi.md +20 -8
- data/docs/ContentInstallerPackagesApi.md +42 -4
- data/docs/ContentPackageIndexApi.md +20 -8
- data/docs/ContentPackagesApi.md +46 -6
- data/docs/{ContentReleasesApi.md → ContentReleaseFilesApi.md} +44 -32
- data/docs/ContentSummary.md +21 -0
- data/docs/{InstallerPackage.md → DebBasePackage.md} +40 -46
- data/docs/{DebDistribution.md → DebDebDistribution.md} +6 -6
- data/docs/{DebPublication.md → DebDebPublication.md} +5 -7
- data/docs/{DebRemote.md → DebDebRemote.md} +15 -21
- data/docs/DebDebRepository.md +27 -0
- data/docs/{GenericContent.md → DebGenericContent.md} +11 -17
- data/docs/{InstallerFileIndex.md → DebInstallerFileIndex.md} +5 -7
- data/docs/{PackageIndex.md → DebPackageIndex.md} +5 -7
- data/docs/{Release.md → DebReleaseFile.md} +5 -7
- data/docs/{VerbatimPublication.md → DebVerbatimPublication.md} +5 -7
- data/docs/DistributionsAptApi.md +16 -12
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse20010.md +23 -0
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse2005.md +1 -1
- data/docs/InlineResponse2006.md +1 -1
- data/docs/InlineResponse2007.md +1 -1
- data/docs/InlineResponse2008.md +1 -1
- data/docs/InlineResponse2009.md +1 -1
- data/docs/PublicationsAptApi.md +12 -8
- data/docs/PublicationsVerbatimApi.md +12 -8
- data/docs/RemotesAptApi.md +30 -81
- data/docs/RepositoriesAptApi.md +465 -0
- data/docs/RepositoriesDebVersionsApi.md +214 -0
- data/docs/RepositoryAddRemoveContent.md +21 -0
- data/docs/RepositorySyncURL.md +2 -2
- data/docs/RepositoryVersion.md +25 -0
- data/lib/pulp_deb_client/api/content_generic_contents_api.rb +16 -4
- data/lib/pulp_deb_client/api/content_installer_file_index_api.rb +27 -9
- data/lib/pulp_deb_client/api/content_installer_packages_api.rb +61 -4
- data/lib/pulp_deb_client/api/content_package_index_api.rb +27 -9
- data/lib/pulp_deb_client/api/content_packages_api.rb +67 -7
- data/lib/pulp_deb_client/api/{content_releases_api.rb → content_release_files_api.rb} +61 -43
- data/lib/pulp_deb_client/api/distributions_apt_api.rb +19 -13
- data/lib/pulp_deb_client/api/publications_apt_api.rb +15 -9
- data/lib/pulp_deb_client/api/publications_verbatim_api.rb +15 -9
- data/lib/pulp_deb_client/api/remotes_apt_api.rb +40 -102
- data/lib/pulp_deb_client/api/repositories_apt_api.rb +568 -0
- data/lib/pulp_deb_client/api/repositories_deb_versions_api.rb +268 -0
- data/lib/pulp_deb_client/api_client.rb +1 -1
- data/lib/pulp_deb_client/api_error.rb +1 -1
- data/lib/pulp_deb_client/configuration.rb +1 -1
- data/lib/pulp_deb_client/models/async_operation_response.rb +12 -2
- data/lib/pulp_deb_client/models/content_summary.rb +246 -0
- data/lib/pulp_deb_client/models/{package.rb → deb_base_package.rb} +28 -62
- data/lib/pulp_deb_client/models/{deb_distribution.rb → deb_deb_distribution.rb} +30 -36
- data/lib/pulp_deb_client/models/{deb_publication.rb → deb_deb_publication.rb} +29 -42
- data/lib/pulp_deb_client/models/{deb_remote.rb → deb_deb_remote.rb} +87 -147
- data/lib/pulp_deb_client/models/deb_deb_repository.rb +294 -0
- data/lib/pulp_deb_client/models/{generic_content.rb → deb_generic_content.rb} +28 -62
- data/lib/pulp_deb_client/models/{installer_file_index.rb → deb_installer_file_index.rb} +28 -42
- data/lib/pulp_deb_client/models/{package_index.rb → deb_package_index.rb} +28 -42
- data/lib/pulp_deb_client/models/{release.rb → deb_release_file.rb} +28 -42
- data/lib/pulp_deb_client/models/{verbatim_publication.rb → deb_verbatim_publication.rb} +29 -42
- data/lib/pulp_deb_client/models/inline_response200.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2001.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response20010.rb +247 -0
- data/lib/pulp_deb_client/models/inline_response2002.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2003.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2004.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2005.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2006.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2007.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2008.rb +15 -3
- data/lib/pulp_deb_client/models/inline_response2009.rb +15 -3
- data/lib/pulp_deb_client/models/repository_add_remove_content.rb +231 -0
- data/lib/pulp_deb_client/models/repository_sync_url.rb +22 -12
- data/lib/pulp_deb_client/models/repository_version.rb +244 -0
- data/lib/pulp_deb_client/version.rb +2 -2
- data/lib/pulp_deb_client.rb +18 -12
- data/pulp_deb_client.gemspec +1 -1
- data/spec/api/content_generic_contents_api_spec.rb +6 -2
- data/spec/api/content_installer_file_index_api_spec.rb +9 -3
- data/spec/api/content_installer_packages_api_spec.rb +21 -2
- data/spec/api/content_package_index_api_spec.rb +9 -3
- data/spec/api/content_packages_api_spec.rb +23 -3
- data/spec/api/{content_releases_api_spec.rb → content_release_files_api_spec.rb} +23 -17
- data/spec/api/distributions_apt_api_spec.rb +5 -3
- data/spec/api/publications_apt_api_spec.rb +5 -3
- data/spec/api/publications_verbatim_api_spec.rb +5 -3
- data/spec/api/remotes_apt_api_spec.rb +12 -22
- data/spec/api/repositories_apt_api_spec.rb +141 -0
- data/spec/api/repositories_deb_versions_api_spec.rb +91 -0
- data/spec/api_client_spec.rb +2 -2
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/async_operation_response_spec.rb +1 -1
- data/spec/models/content_summary_spec.rb +53 -0
- data/spec/models/{package_spec.rb → deb_base_package_spec.rb} +9 -27
- data/spec/models/{deb_distribution_spec.rb → deb_deb_distribution_spec.rb} +9 -9
- data/spec/models/{deb_publication_spec.rb → deb_deb_publication_spec.rb} +9 -15
- data/spec/models/{deb_remote_spec.rb → deb_deb_remote_spec.rb} +14 -32
- data/spec/models/{verbatim_publication_spec.rb → deb_deb_repository_spec.rb} +13 -13
- data/spec/models/{generic_content_spec.rb → deb_generic_content_spec.rb} +9 -27
- data/spec/models/{package_index_spec.rb → deb_installer_file_index_spec.rb} +9 -15
- data/spec/models/{installer_file_index_spec.rb → deb_package_index_spec.rb} +9 -15
- data/spec/models/{release_spec.rb → deb_release_file_spec.rb} +9 -15
- data/spec/models/deb_verbatim_publication_spec.rb +65 -0
- data/spec/models/inline_response20010_spec.rb +59 -0
- data/spec/models/inline_response2001_spec.rb +1 -1
- data/spec/models/inline_response2002_spec.rb +1 -1
- data/spec/models/inline_response2003_spec.rb +1 -1
- data/spec/models/inline_response2004_spec.rb +1 -1
- data/spec/models/inline_response2005_spec.rb +1 -1
- data/spec/models/inline_response2006_spec.rb +1 -1
- data/spec/models/inline_response2007_spec.rb +1 -1
- data/spec/models/inline_response2008_spec.rb +1 -1
- data/spec/models/inline_response2009_spec.rb +1 -1
- data/spec/models/inline_response200_spec.rb +1 -1
- data/spec/models/repository_add_remove_content_spec.rb +53 -0
- data/spec/models/repository_sync_url_spec.rb +2 -2
- data/spec/models/repository_version_spec.rb +65 -0
- data/spec/spec_helper.rb +1 -1
- metadata +70 -46
- data/docs/Package.md +0 -99
- data/lib/pulp_deb_client/models/installer_package.rb +0 -1101
- data/spec/models/installer_package_spec.rb +0 -287
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e485927f2b14be95d61efae3bb2a540d1a256ac144a3a7303766862c777fef80
|
|
4
|
+
data.tar.gz: 66eecc67ecd19af5a505c4c2ef9898da6e2e45a5a02deef2c4f4d16dae53e6e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9681d4d183686e6ccd92664dd0a89301dbbf26860488ea7bf1c017b2de622b35a37db1e6b2123de46db04de1897876f5b1cf1978c7b281411b30389333c2daed
|
|
7
|
+
data.tar.gz: 52062f590d6de7ddfdfdd572852c4bb083f1086f0ea19b16aa795c2bc58a92358e2815236e8c9ccd97af81fdd441adb6a91a0b013b7e51eed06f5ad549b997a7
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
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.0.
|
|
10
|
+
- Package version: 2.0.0b3
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,16 +23,16 @@ gem build pulp_deb_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./pulp_deb_client-2.0.
|
|
26
|
+
gem install ./pulp_deb_client-2.0.0b3.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./pulp_deb_client-2.0.
|
|
29
|
+
(for development, run `gem install --dev ./pulp_deb_client-2.0.0b3.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'pulp_deb_client', '~> 2.0.
|
|
35
|
+
gem 'pulp_deb_client', '~> 2.0.0b3'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -102,9 +102,9 @@ Class | Method | HTTP request | Description
|
|
|
102
102
|
*PulpDebClient::ContentPackagesApi* | [**create**](docs/ContentPackagesApi.md#create) | **POST** /pulp/api/v3/content/deb/packages/ | Create a package
|
|
103
103
|
*PulpDebClient::ContentPackagesApi* | [**list**](docs/ContentPackagesApi.md#list) | **GET** /pulp/api/v3/content/deb/packages/ | List packages
|
|
104
104
|
*PulpDebClient::ContentPackagesApi* | [**read**](docs/ContentPackagesApi.md#read) | **GET** {package_href} | Inspect a package
|
|
105
|
-
*PulpDebClient::
|
|
106
|
-
*PulpDebClient::
|
|
107
|
-
*PulpDebClient::
|
|
105
|
+
*PulpDebClient::ContentReleaseFilesApi* | [**create**](docs/ContentReleaseFilesApi.md#create) | **POST** /pulp/api/v3/content/deb/release_files/ | Create a release file
|
|
106
|
+
*PulpDebClient::ContentReleaseFilesApi* | [**list**](docs/ContentReleaseFilesApi.md#list) | **GET** /pulp/api/v3/content/deb/release_files/ | List release files
|
|
107
|
+
*PulpDebClient::ContentReleaseFilesApi* | [**read**](docs/ContentReleaseFilesApi.md#read) | **GET** {release_file_href} | Inspect a release file
|
|
108
108
|
*PulpDebClient::DistributionsAptApi* | [**create**](docs/DistributionsAptApi.md#create) | **POST** /pulp/api/v3/distributions/deb/apt/ | Create a deb distribution
|
|
109
109
|
*PulpDebClient::DistributionsAptApi* | [**delete**](docs/DistributionsAptApi.md#delete) | **DELETE** {deb_distribution_href} | Delete a deb distribution
|
|
110
110
|
*PulpDebClient::DistributionsAptApi* | [**list**](docs/DistributionsAptApi.md#list) | **GET** /pulp/api/v3/distributions/deb/apt/ | List deb distributions
|
|
@@ -124,19 +124,37 @@ Class | Method | HTTP request | Description
|
|
|
124
124
|
*PulpDebClient::RemotesAptApi* | [**list**](docs/RemotesAptApi.md#list) | **GET** /pulp/api/v3/remotes/deb/apt/ | List deb remotes
|
|
125
125
|
*PulpDebClient::RemotesAptApi* | [**partial_update**](docs/RemotesAptApi.md#partial_update) | **PATCH** {deb_remote_href} | Partially update a deb remote
|
|
126
126
|
*PulpDebClient::RemotesAptApi* | [**read**](docs/RemotesAptApi.md#read) | **GET** {deb_remote_href} | Inspect a deb remote
|
|
127
|
-
*PulpDebClient::RemotesAptApi* | [**sync**](docs/RemotesAptApi.md#sync) | **POST** {deb_remote_href}sync/ |
|
|
128
127
|
*PulpDebClient::RemotesAptApi* | [**update**](docs/RemotesAptApi.md#update) | **PUT** {deb_remote_href} | Update a deb remote
|
|
128
|
+
*PulpDebClient::RepositoriesAptApi* | [**create**](docs/RepositoriesAptApi.md#create) | **POST** /pulp/api/v3/repositories/deb/apt/ | Create a deb repository
|
|
129
|
+
*PulpDebClient::RepositoriesAptApi* | [**delete**](docs/RepositoriesAptApi.md#delete) | **DELETE** {deb_repository_href} | Delete a deb repository
|
|
130
|
+
*PulpDebClient::RepositoriesAptApi* | [**list**](docs/RepositoriesAptApi.md#list) | **GET** /pulp/api/v3/repositories/deb/apt/ | List deb repositorys
|
|
131
|
+
*PulpDebClient::RepositoriesAptApi* | [**modify**](docs/RepositoriesAptApi.md#modify) | **POST** {deb_repository_href}modify/ |
|
|
132
|
+
*PulpDebClient::RepositoriesAptApi* | [**partial_update**](docs/RepositoriesAptApi.md#partial_update) | **PATCH** {deb_repository_href} | Partially update a deb repository
|
|
133
|
+
*PulpDebClient::RepositoriesAptApi* | [**read**](docs/RepositoriesAptApi.md#read) | **GET** {deb_repository_href} | Inspect a deb repository
|
|
134
|
+
*PulpDebClient::RepositoriesAptApi* | [**sync**](docs/RepositoriesAptApi.md#sync) | **POST** {deb_repository_href}sync/ | Sync from remote
|
|
135
|
+
*PulpDebClient::RepositoriesAptApi* | [**update**](docs/RepositoriesAptApi.md#update) | **PUT** {deb_repository_href} | Update a deb repository
|
|
136
|
+
*PulpDebClient::RepositoriesDebVersionsApi* | [**delete**](docs/RepositoriesDebVersionsApi.md#delete) | **DELETE** {apt_repository_version_href} | Delete a repository version
|
|
137
|
+
*PulpDebClient::RepositoriesDebVersionsApi* | [**list**](docs/RepositoriesDebVersionsApi.md#list) | **GET** {deb_repository_href}versions/ | List repository versions
|
|
138
|
+
*PulpDebClient::RepositoriesDebVersionsApi* | [**read**](docs/RepositoriesDebVersionsApi.md#read) | **GET** {apt_repository_version_href} | Inspect a repository version
|
|
129
139
|
|
|
130
140
|
|
|
131
141
|
## Documentation for Models
|
|
132
142
|
|
|
133
143
|
- [PulpDebClient::AsyncOperationResponse](docs/AsyncOperationResponse.md)
|
|
134
|
-
- [PulpDebClient::
|
|
135
|
-
- [PulpDebClient::
|
|
136
|
-
- [PulpDebClient::
|
|
137
|
-
- [PulpDebClient::
|
|
144
|
+
- [PulpDebClient::ContentSummary](docs/ContentSummary.md)
|
|
145
|
+
- [PulpDebClient::DebBasePackage](docs/DebBasePackage.md)
|
|
146
|
+
- [PulpDebClient::DebDebDistribution](docs/DebDebDistribution.md)
|
|
147
|
+
- [PulpDebClient::DebDebPublication](docs/DebDebPublication.md)
|
|
148
|
+
- [PulpDebClient::DebDebRemote](docs/DebDebRemote.md)
|
|
149
|
+
- [PulpDebClient::DebDebRepository](docs/DebDebRepository.md)
|
|
150
|
+
- [PulpDebClient::DebGenericContent](docs/DebGenericContent.md)
|
|
151
|
+
- [PulpDebClient::DebInstallerFileIndex](docs/DebInstallerFileIndex.md)
|
|
152
|
+
- [PulpDebClient::DebPackageIndex](docs/DebPackageIndex.md)
|
|
153
|
+
- [PulpDebClient::DebReleaseFile](docs/DebReleaseFile.md)
|
|
154
|
+
- [PulpDebClient::DebVerbatimPublication](docs/DebVerbatimPublication.md)
|
|
138
155
|
- [PulpDebClient::InlineResponse200](docs/InlineResponse200.md)
|
|
139
156
|
- [PulpDebClient::InlineResponse2001](docs/InlineResponse2001.md)
|
|
157
|
+
- [PulpDebClient::InlineResponse20010](docs/InlineResponse20010.md)
|
|
140
158
|
- [PulpDebClient::InlineResponse2002](docs/InlineResponse2002.md)
|
|
141
159
|
- [PulpDebClient::InlineResponse2003](docs/InlineResponse2003.md)
|
|
142
160
|
- [PulpDebClient::InlineResponse2004](docs/InlineResponse2004.md)
|
|
@@ -145,13 +163,9 @@ Class | Method | HTTP request | Description
|
|
|
145
163
|
- [PulpDebClient::InlineResponse2007](docs/InlineResponse2007.md)
|
|
146
164
|
- [PulpDebClient::InlineResponse2008](docs/InlineResponse2008.md)
|
|
147
165
|
- [PulpDebClient::InlineResponse2009](docs/InlineResponse2009.md)
|
|
148
|
-
- [PulpDebClient::
|
|
149
|
-
- [PulpDebClient::InstallerPackage](docs/InstallerPackage.md)
|
|
150
|
-
- [PulpDebClient::Package](docs/Package.md)
|
|
151
|
-
- [PulpDebClient::PackageIndex](docs/PackageIndex.md)
|
|
152
|
-
- [PulpDebClient::Release](docs/Release.md)
|
|
166
|
+
- [PulpDebClient::RepositoryAddRemoveContent](docs/RepositoryAddRemoveContent.md)
|
|
153
167
|
- [PulpDebClient::RepositorySyncURL](docs/RepositorySyncURL.md)
|
|
154
|
-
- [PulpDebClient::
|
|
168
|
+
- [PulpDebClient::RepositoryVersion](docs/RepositoryVersion.md)
|
|
155
169
|
|
|
156
170
|
|
|
157
171
|
## Documentation for Authorization
|
|
@@ -93,12 +93,15 @@ end
|
|
|
93
93
|
|
|
94
94
|
api_instance = PulpDebClient::ContentGenericContentsApi.new
|
|
95
95
|
opts = {
|
|
96
|
+
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
97
|
+
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
96
98
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
97
99
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
98
100
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
99
101
|
limit: 56, # Integer | Number of results to return per page.
|
|
100
102
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
101
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
103
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
104
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
102
105
|
}
|
|
103
106
|
|
|
104
107
|
begin
|
|
@@ -115,12 +118,15 @@ end
|
|
|
115
118
|
|
|
116
119
|
Name | Type | Description | Notes
|
|
117
120
|
------------- | ------------- | ------------- | -------------
|
|
121
|
+
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
122
|
+
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
118
123
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
119
124
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
120
125
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
121
126
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
122
127
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
123
128
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
129
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
124
130
|
|
|
125
131
|
### Return type
|
|
126
132
|
|
|
@@ -138,7 +144,7 @@ Name | Type | Description | Notes
|
|
|
138
144
|
|
|
139
145
|
## read
|
|
140
146
|
|
|
141
|
-
>
|
|
147
|
+
> DebGenericContent read(generic_content_href, opts)
|
|
142
148
|
|
|
143
149
|
Inspect a generic content
|
|
144
150
|
|
|
@@ -159,7 +165,8 @@ end
|
|
|
159
165
|
api_instance = PulpDebClient::ContentGenericContentsApi.new
|
|
160
166
|
generic_content_href = 'generic_content_href_example' # String | URI of Generic Content. e.g.: /pulp/api/v3/content/deb/generic_contents/1/
|
|
161
167
|
opts = {
|
|
162
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
168
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
169
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
163
170
|
}
|
|
164
171
|
|
|
165
172
|
begin
|
|
@@ -178,10 +185,11 @@ Name | Type | Description | Notes
|
|
|
178
185
|
------------- | ------------- | ------------- | -------------
|
|
179
186
|
**generic_content_href** | **String**| URI of Generic Content. e.g.: /pulp/api/v3/content/deb/generic_contents/1/ |
|
|
180
187
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
188
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
181
189
|
|
|
182
190
|
### Return type
|
|
183
191
|
|
|
184
|
-
[**
|
|
192
|
+
[**DebGenericContent**](DebGenericContent.md)
|
|
185
193
|
|
|
186
194
|
### Authorization
|
|
187
195
|
|
|
@@ -12,7 +12,7 @@ Method | HTTP request | Description
|
|
|
12
12
|
|
|
13
13
|
## create
|
|
14
14
|
|
|
15
|
-
>
|
|
15
|
+
> DebInstallerFileIndex create(data)
|
|
16
16
|
|
|
17
17
|
Create an installer file index
|
|
18
18
|
|
|
@@ -31,7 +31,7 @@ PulpDebClient.configure do |config|
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
api_instance = PulpDebClient::ContentInstallerFileIndexApi.new
|
|
34
|
-
data = PulpDebClient::
|
|
34
|
+
data = PulpDebClient::DebInstallerFileIndex.new # DebInstallerFileIndex |
|
|
35
35
|
|
|
36
36
|
begin
|
|
37
37
|
#Create an installer file index
|
|
@@ -47,11 +47,11 @@ end
|
|
|
47
47
|
|
|
48
48
|
Name | Type | Description | Notes
|
|
49
49
|
------------- | ------------- | ------------- | -------------
|
|
50
|
-
**data** | [**
|
|
50
|
+
**data** | [**DebInstallerFileIndex**](DebInstallerFileIndex.md)| |
|
|
51
51
|
|
|
52
52
|
### Return type
|
|
53
53
|
|
|
54
|
-
[**
|
|
54
|
+
[**DebInstallerFileIndex**](DebInstallerFileIndex.md)
|
|
55
55
|
|
|
56
56
|
### Authorization
|
|
57
57
|
|
|
@@ -85,12 +85,17 @@ end
|
|
|
85
85
|
|
|
86
86
|
api_instance = PulpDebClient::ContentInstallerFileIndexApi.new
|
|
87
87
|
opts = {
|
|
88
|
+
component: 'component_example', # String | Filter results where component matches value
|
|
89
|
+
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
90
|
+
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
91
|
+
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
88
92
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
89
93
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
90
94
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
91
95
|
limit: 56, # Integer | Number of results to return per page.
|
|
92
96
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
93
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
97
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
98
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
94
99
|
}
|
|
95
100
|
|
|
96
101
|
begin
|
|
@@ -107,12 +112,17 @@ end
|
|
|
107
112
|
|
|
108
113
|
Name | Type | Description | Notes
|
|
109
114
|
------------- | ------------- | ------------- | -------------
|
|
115
|
+
**component** | **String**| Filter results where component matches value | [optional]
|
|
116
|
+
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
117
|
+
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
118
|
+
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
110
119
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
111
120
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
112
121
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
113
122
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
114
123
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
115
124
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
125
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
116
126
|
|
|
117
127
|
### Return type
|
|
118
128
|
|
|
@@ -130,7 +140,7 @@ Name | Type | Description | Notes
|
|
|
130
140
|
|
|
131
141
|
## read
|
|
132
142
|
|
|
133
|
-
>
|
|
143
|
+
> DebInstallerFileIndex read(installer_file_index_href, opts)
|
|
134
144
|
|
|
135
145
|
Inspect an installer file index
|
|
136
146
|
|
|
@@ -151,7 +161,8 @@ end
|
|
|
151
161
|
api_instance = PulpDebClient::ContentInstallerFileIndexApi.new
|
|
152
162
|
installer_file_index_href = 'installer_file_index_href_example' # String | URI of Installer File Index. e.g.: /pulp/api/v3/content/deb/installer_file_index/1/
|
|
153
163
|
opts = {
|
|
154
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
164
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
165
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
155
166
|
}
|
|
156
167
|
|
|
157
168
|
begin
|
|
@@ -170,10 +181,11 @@ Name | Type | Description | Notes
|
|
|
170
181
|
------------- | ------------- | ------------- | -------------
|
|
171
182
|
**installer_file_index_href** | **String**| URI of Installer File Index. e.g.: /pulp/api/v3/content/deb/installer_file_index/1/ |
|
|
172
183
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
184
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
173
185
|
|
|
174
186
|
### Return type
|
|
175
187
|
|
|
176
|
-
[**
|
|
188
|
+
[**DebInstallerFileIndex**](DebInstallerFileIndex.md)
|
|
177
189
|
|
|
178
190
|
### Authorization
|
|
179
191
|
|
|
@@ -93,12 +93,30 @@ end
|
|
|
93
93
|
|
|
94
94
|
api_instance = PulpDebClient::ContentInstallerPackagesApi.new
|
|
95
95
|
opts = {
|
|
96
|
+
package: 'package_example', # String | Filter results where package matches value
|
|
97
|
+
source: 'source_example', # String | Filter results where source matches value
|
|
98
|
+
version: 'version_example', # String | Filter results where version matches value
|
|
99
|
+
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
100
|
+
section: 'section_example', # String | Filter results where section matches value
|
|
101
|
+
priority: 'priority_example', # String | Filter results where priority matches value
|
|
102
|
+
origin: 'origin_example', # String | Filter results where origin matches value
|
|
103
|
+
tag: 'tag_example', # String | Filter results where tag matches value
|
|
104
|
+
essential: 'essential_example', # String | Filter results where essential matches value
|
|
105
|
+
build_essential: 'build_essential_example', # String | Filter results where build_essential matches value
|
|
106
|
+
installed_size: 3.4, # Float | Filter results where installed_size matches value
|
|
107
|
+
maintainer: 'maintainer_example', # String | Filter results where maintainer matches value
|
|
108
|
+
original_maintainer: 'original_maintainer_example', # String | Filter results where original_maintainer matches value
|
|
109
|
+
built_using: 'built_using_example', # String | Filter results where built_using matches value
|
|
110
|
+
auto_built_package: 'auto_built_package_example', # String | Filter results where auto_built_package matches value
|
|
111
|
+
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value
|
|
112
|
+
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
96
113
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
97
114
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
98
115
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
99
116
|
limit: 56, # Integer | Number of results to return per page.
|
|
100
117
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
101
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
118
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
119
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
102
120
|
}
|
|
103
121
|
|
|
104
122
|
begin
|
|
@@ -115,12 +133,30 @@ end
|
|
|
115
133
|
|
|
116
134
|
Name | Type | Description | Notes
|
|
117
135
|
------------- | ------------- | ------------- | -------------
|
|
136
|
+
**package** | **String**| Filter results where package matches value | [optional]
|
|
137
|
+
**source** | **String**| Filter results where source matches value | [optional]
|
|
138
|
+
**version** | **String**| Filter results where version matches value | [optional]
|
|
139
|
+
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
140
|
+
**section** | **String**| Filter results where section matches value | [optional]
|
|
141
|
+
**priority** | **String**| Filter results where priority matches value | [optional]
|
|
142
|
+
**origin** | **String**| Filter results where origin matches value | [optional]
|
|
143
|
+
**tag** | **String**| Filter results where tag matches value | [optional]
|
|
144
|
+
**essential** | **String**| Filter results where essential matches value | [optional]
|
|
145
|
+
**build_essential** | **String**| Filter results where build_essential matches value | [optional]
|
|
146
|
+
**installed_size** | **Float**| Filter results where installed_size matches value | [optional]
|
|
147
|
+
**maintainer** | **String**| Filter results where maintainer matches value | [optional]
|
|
148
|
+
**original_maintainer** | **String**| Filter results where original_maintainer matches value | [optional]
|
|
149
|
+
**built_using** | **String**| Filter results where built_using matches value | [optional]
|
|
150
|
+
**auto_built_package** | **String**| Filter results where auto_built_package matches value | [optional]
|
|
151
|
+
**multi_arch** | **String**| Filter results where multi_arch matches value | [optional]
|
|
152
|
+
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
118
153
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
119
154
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
120
155
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
121
156
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
122
157
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
123
158
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
159
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
124
160
|
|
|
125
161
|
### Return type
|
|
126
162
|
|
|
@@ -138,7 +174,7 @@ Name | Type | Description | Notes
|
|
|
138
174
|
|
|
139
175
|
## read
|
|
140
176
|
|
|
141
|
-
>
|
|
177
|
+
> DebBasePackage read(installer_package_href, opts)
|
|
142
178
|
|
|
143
179
|
Inspect an installer package
|
|
144
180
|
|
|
@@ -159,7 +195,8 @@ end
|
|
|
159
195
|
api_instance = PulpDebClient::ContentInstallerPackagesApi.new
|
|
160
196
|
installer_package_href = 'installer_package_href_example' # String | URI of Installer Package. e.g.: /pulp/api/v3/content/deb/installer_packages/1/
|
|
161
197
|
opts = {
|
|
162
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
198
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
199
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
163
200
|
}
|
|
164
201
|
|
|
165
202
|
begin
|
|
@@ -178,10 +215,11 @@ Name | Type | Description | Notes
|
|
|
178
215
|
------------- | ------------- | ------------- | -------------
|
|
179
216
|
**installer_package_href** | **String**| URI of Installer Package. e.g.: /pulp/api/v3/content/deb/installer_packages/1/ |
|
|
180
217
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
218
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
181
219
|
|
|
182
220
|
### Return type
|
|
183
221
|
|
|
184
|
-
[**
|
|
222
|
+
[**DebBasePackage**](DebBasePackage.md)
|
|
185
223
|
|
|
186
224
|
### Authorization
|
|
187
225
|
|
|
@@ -12,7 +12,7 @@ Method | HTTP request | Description
|
|
|
12
12
|
|
|
13
13
|
## create
|
|
14
14
|
|
|
15
|
-
>
|
|
15
|
+
> DebPackageIndex create(data)
|
|
16
16
|
|
|
17
17
|
Create a package index
|
|
18
18
|
|
|
@@ -31,7 +31,7 @@ PulpDebClient.configure do |config|
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
api_instance = PulpDebClient::ContentPackageIndexApi.new
|
|
34
|
-
data = PulpDebClient::
|
|
34
|
+
data = PulpDebClient::DebPackageIndex.new # DebPackageIndex |
|
|
35
35
|
|
|
36
36
|
begin
|
|
37
37
|
#Create a package index
|
|
@@ -47,11 +47,11 @@ end
|
|
|
47
47
|
|
|
48
48
|
Name | Type | Description | Notes
|
|
49
49
|
------------- | ------------- | ------------- | -------------
|
|
50
|
-
**data** | [**
|
|
50
|
+
**data** | [**DebPackageIndex**](DebPackageIndex.md)| |
|
|
51
51
|
|
|
52
52
|
### Return type
|
|
53
53
|
|
|
54
|
-
[**
|
|
54
|
+
[**DebPackageIndex**](DebPackageIndex.md)
|
|
55
55
|
|
|
56
56
|
### Authorization
|
|
57
57
|
|
|
@@ -85,12 +85,17 @@ end
|
|
|
85
85
|
|
|
86
86
|
api_instance = PulpDebClient::ContentPackageIndexApi.new
|
|
87
87
|
opts = {
|
|
88
|
+
component: 'component_example', # String | Filter results where component matches value
|
|
89
|
+
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
90
|
+
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
91
|
+
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
88
92
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
89
93
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
90
94
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
91
95
|
limit: 56, # Integer | Number of results to return per page.
|
|
92
96
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
93
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
97
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
98
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
94
99
|
}
|
|
95
100
|
|
|
96
101
|
begin
|
|
@@ -107,12 +112,17 @@ end
|
|
|
107
112
|
|
|
108
113
|
Name | Type | Description | Notes
|
|
109
114
|
------------- | ------------- | ------------- | -------------
|
|
115
|
+
**component** | **String**| Filter results where component matches value | [optional]
|
|
116
|
+
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
117
|
+
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
118
|
+
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
110
119
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
111
120
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
112
121
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
113
122
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
114
123
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
115
124
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
125
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
116
126
|
|
|
117
127
|
### Return type
|
|
118
128
|
|
|
@@ -130,7 +140,7 @@ Name | Type | Description | Notes
|
|
|
130
140
|
|
|
131
141
|
## read
|
|
132
142
|
|
|
133
|
-
>
|
|
143
|
+
> DebPackageIndex read(package_index_href, opts)
|
|
134
144
|
|
|
135
145
|
Inspect a package index
|
|
136
146
|
|
|
@@ -151,7 +161,8 @@ end
|
|
|
151
161
|
api_instance = PulpDebClient::ContentPackageIndexApi.new
|
|
152
162
|
package_index_href = 'package_index_href_example' # String | URI of Package Index. e.g.: /pulp/api/v3/content/deb/package_index/1/
|
|
153
163
|
opts = {
|
|
154
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
164
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
165
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
155
166
|
}
|
|
156
167
|
|
|
157
168
|
begin
|
|
@@ -170,10 +181,11 @@ Name | Type | Description | Notes
|
|
|
170
181
|
------------- | ------------- | ------------- | -------------
|
|
171
182
|
**package_index_href** | **String**| URI of Package Index. e.g.: /pulp/api/v3/content/deb/package_index/1/ |
|
|
172
183
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
184
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
173
185
|
|
|
174
186
|
### Return type
|
|
175
187
|
|
|
176
|
-
[**
|
|
188
|
+
[**DebPackageIndex**](DebPackageIndex.md)
|
|
177
189
|
|
|
178
190
|
### Authorization
|
|
179
191
|
|
data/docs/ContentPackagesApi.md
CHANGED
|
@@ -73,7 +73,7 @@ Name | Type | Description | Notes
|
|
|
73
73
|
|
|
74
74
|
## list
|
|
75
75
|
|
|
76
|
-
>
|
|
76
|
+
> InlineResponse2002 list(opts)
|
|
77
77
|
|
|
78
78
|
List packages
|
|
79
79
|
|
|
@@ -93,12 +93,31 @@ end
|
|
|
93
93
|
|
|
94
94
|
api_instance = PulpDebClient::ContentPackagesApi.new
|
|
95
95
|
opts = {
|
|
96
|
+
package: 'package_example', # String | Filter results where package matches value
|
|
97
|
+
source: 'source_example', # String | Filter results where source matches value
|
|
98
|
+
version: 'version_example', # String | Filter results where version matches value
|
|
99
|
+
architecture: 'architecture_example', # String | Filter results where architecture matches value
|
|
100
|
+
section: 'section_example', # String | Filter results where section matches value
|
|
101
|
+
priority: 'priority_example', # String | Filter results where priority matches value
|
|
102
|
+
origin: 'origin_example', # String | Filter results where origin matches value
|
|
103
|
+
tag: 'tag_example', # String | Filter results where tag matches value
|
|
104
|
+
essential: 'essential_example', # String | Filter results where essential matches value
|
|
105
|
+
build_essential: 'build_essential_example', # String | Filter results where build_essential matches value
|
|
106
|
+
installed_size: 3.4, # Float | Filter results where installed_size matches value
|
|
107
|
+
maintainer: 'maintainer_example', # String | Filter results where maintainer matches value
|
|
108
|
+
original_maintainer: 'original_maintainer_example', # String | Filter results where original_maintainer matches value
|
|
109
|
+
built_using: 'built_using_example', # String | Filter results where built_using matches value
|
|
110
|
+
auto_built_package: 'auto_built_package_example', # String | Filter results where auto_built_package matches value
|
|
111
|
+
multi_arch: 'multi_arch_example', # String | Filter results where multi_arch matches value
|
|
112
|
+
sha256: 'sha256_example', # String | Filter results where sha256 matches value
|
|
113
|
+
relative_path: 'relative_path_example', # String | Filter results where relative_path matches value
|
|
96
114
|
repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
|
|
97
115
|
repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF
|
|
98
116
|
repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF
|
|
99
117
|
limit: 56, # Integer | Number of results to return per page.
|
|
100
118
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
101
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
119
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
120
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
102
121
|
}
|
|
103
122
|
|
|
104
123
|
begin
|
|
@@ -115,16 +134,35 @@ end
|
|
|
115
134
|
|
|
116
135
|
Name | Type | Description | Notes
|
|
117
136
|
------------- | ------------- | ------------- | -------------
|
|
137
|
+
**package** | **String**| Filter results where package matches value | [optional]
|
|
138
|
+
**source** | **String**| Filter results where source matches value | [optional]
|
|
139
|
+
**version** | **String**| Filter results where version matches value | [optional]
|
|
140
|
+
**architecture** | **String**| Filter results where architecture matches value | [optional]
|
|
141
|
+
**section** | **String**| Filter results where section matches value | [optional]
|
|
142
|
+
**priority** | **String**| Filter results where priority matches value | [optional]
|
|
143
|
+
**origin** | **String**| Filter results where origin matches value | [optional]
|
|
144
|
+
**tag** | **String**| Filter results where tag matches value | [optional]
|
|
145
|
+
**essential** | **String**| Filter results where essential matches value | [optional]
|
|
146
|
+
**build_essential** | **String**| Filter results where build_essential matches value | [optional]
|
|
147
|
+
**installed_size** | **Float**| Filter results where installed_size matches value | [optional]
|
|
148
|
+
**maintainer** | **String**| Filter results where maintainer matches value | [optional]
|
|
149
|
+
**original_maintainer** | **String**| Filter results where original_maintainer matches value | [optional]
|
|
150
|
+
**built_using** | **String**| Filter results where built_using matches value | [optional]
|
|
151
|
+
**auto_built_package** | **String**| Filter results where auto_built_package matches value | [optional]
|
|
152
|
+
**multi_arch** | **String**| Filter results where multi_arch matches value | [optional]
|
|
153
|
+
**sha256** | **String**| Filter results where sha256 matches value | [optional]
|
|
154
|
+
**relative_path** | **String**| Filter results where relative_path matches value | [optional]
|
|
118
155
|
**repository_version** | **String**| Repository Version referenced by HREF | [optional]
|
|
119
156
|
**repository_version_added** | **String**| Repository Version referenced by HREF | [optional]
|
|
120
157
|
**repository_version_removed** | **String**| Repository Version referenced by HREF | [optional]
|
|
121
158
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
122
159
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
123
160
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
161
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
124
162
|
|
|
125
163
|
### Return type
|
|
126
164
|
|
|
127
|
-
[**
|
|
165
|
+
[**InlineResponse2002**](InlineResponse2002.md)
|
|
128
166
|
|
|
129
167
|
### Authorization
|
|
130
168
|
|
|
@@ -138,7 +176,7 @@ Name | Type | Description | Notes
|
|
|
138
176
|
|
|
139
177
|
## read
|
|
140
178
|
|
|
141
|
-
>
|
|
179
|
+
> DebBasePackage read(package_href, opts)
|
|
142
180
|
|
|
143
181
|
Inspect a package
|
|
144
182
|
|
|
@@ -159,7 +197,8 @@ end
|
|
|
159
197
|
api_instance = PulpDebClient::ContentPackagesApi.new
|
|
160
198
|
package_href = 'package_href_example' # String | URI of Package. e.g.: /pulp/api/v3/content/deb/packages/1/
|
|
161
199
|
opts = {
|
|
162
|
-
fields: 'fields_example' # String | A list of fields to include in the response.
|
|
200
|
+
fields: 'fields_example', # String | A list of fields to include in the response.
|
|
201
|
+
exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
|
|
163
202
|
}
|
|
164
203
|
|
|
165
204
|
begin
|
|
@@ -178,10 +217,11 @@ Name | Type | Description | Notes
|
|
|
178
217
|
------------- | ------------- | ------------- | -------------
|
|
179
218
|
**package_href** | **String**| URI of Package. e.g.: /pulp/api/v3/content/deb/packages/1/ |
|
|
180
219
|
**fields** | **String**| A list of fields to include in the response. | [optional]
|
|
220
|
+
**exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
|
|
181
221
|
|
|
182
222
|
### Return type
|
|
183
223
|
|
|
184
|
-
[**
|
|
224
|
+
[**DebBasePackage**](DebBasePackage.md)
|
|
185
225
|
|
|
186
226
|
### Authorization
|
|
187
227
|
|