# PulpcoreClient::ContentOpenpgpPublickeyApi All URIs are relative to *http://localhost:24817* Method | HTTP request | Description ------------- | ------------- | ------------- [**create**](ContentOpenpgpPublickeyApi.md#create) | **POST** /pulp/api/v3/content/core/openpgp_publickey/ | Create an open pgp public key [**list**](ContentOpenpgpPublickeyApi.md#list) | **GET** /pulp/api/v3/content/core/openpgp_publickey/ | List open pgp public keys [**read**](ContentOpenpgpPublickeyApi.md#read) | **GET** {open_p_g_p_public_key_href} | Inspect an open pgp public key ## create > AsyncOperationResponse create(opts) Create an open pgp public key Trigger an asynchronous task to create content,optionally create new repository version. ### Example ```ruby # load the gem require 'pulpcore_client' # setup authorization PulpcoreClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpcoreClient::ContentOpenpgpPublickeyApi.new opts = { repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with. file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the content unit. upload: 'upload_example', # String | An uncommitted upload that may be turned into the content unit. file_url: 'file_url_example' # String | A url that Pulp can download and turn into the content unit. } begin #Create an open pgp public key result = api_instance.create(opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling ContentOpenpgpPublickeyApi->create: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional] **file** | **File**| An uploaded file that may be turned into the content unit. | [optional] **upload** | **String**| An uncommitted upload that may be turned into the content unit. | [optional] **file_url** | **String**| A url that Pulp can download and turn into the content unit. | [optional] ### Return type [**AsyncOperationResponse**](AsyncOperationResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: multipart/form-data, application/x-www-form-urlencoded - **Accept**: application/json ## list > PaginatedOpenPGPPublicKeyResponseList list(opts) List open pgp public keys A ViewSet for uploads that do not require to store an uploaded content as an Artifact. ### Example ```ruby # load the gem require 'pulpcore_client' # setup authorization PulpcoreClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpcoreClient::ContentOpenpgpPublickeyApi.new opts = { fingerprint: 'fingerprint_example', # String | Filter results where fingerprint matches value limit: 56, # Integer | Number of results to return per page. offset: 56, # Integer | The initial index from which to return the results. ordering: ['ordering_example'], # Array | 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) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending) orphaned_for: 3.4, # Float | Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. prn__in: ['prn__in_example'], # Array | Multiple values may be separated by commas. pulp_href__in: ['pulp_href__in_example'], # Array | Multiple values may be separated by commas. pulp_id__in: ['pulp_id__in_example'], # Array | Multiple values may be separated by commas. q: 'q_example', # String | Filter results by using NOT, AND and OR operations on other filters repository_version: 'repository_version_example', # String | Repository Version referenced by HREF/PRN repository_version_added: 'repository_version_added_example', # String | Repository Version referenced by HREF/PRN repository_version_removed: 'repository_version_removed_example', # String | Repository Version referenced by HREF/PRN fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #List open pgp public keys result = api_instance.list(opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling ContentOpenpgpPublickeyApi->list: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **fingerprint** | **String**| Filter results where fingerprint matches value | [optional] **limit** | **Integer**| Number of results to return per page. | [optional] **offset** | **Integer**| The initial index from which to return the results. | [optional] **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) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional] **orphaned_for** | **Float**| Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME. | [optional] **prn__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional] **pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional] **pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional] **q** | **String**| Filter results by using NOT, AND and OR operations on other filters | [optional] **repository_version** | **String**| Repository Version referenced by HREF/PRN | [optional] **repository_version_added** | **String**| Repository Version referenced by HREF/PRN | [optional] **repository_version_removed** | **String**| Repository Version referenced by HREF/PRN | [optional] **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**PaginatedOpenPGPPublicKeyResponseList**](PaginatedOpenPGPPublicKeyResponseList.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## read > OpenPGPPublicKeyResponse read(open_p_g_p_public_key_href, opts) Inspect an open pgp public key A ViewSet for uploads that do not require to store an uploaded content as an Artifact. ### Example ```ruby # load the gem require 'pulpcore_client' # setup authorization PulpcoreClient.configure do |config| # Configure HTTP basic authorization: basicAuth config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpcoreClient::ContentOpenpgpPublickeyApi.new open_p_g_p_public_key_href = 'open_p_g_p_public_key_href_example' # String | opts = { fields: ['fields_example'], # Array | A list of fields to include in the response. exclude_fields: ['exclude_fields_example'] # Array | A list of fields to exclude from the response. } begin #Inspect an open pgp public key result = api_instance.read(open_p_g_p_public_key_href, opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling ContentOpenpgpPublickeyApi->read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **open_p_g_p_public_key_href** | **String**| | **fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional] **exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional] ### Return type [**OpenPGPPublicKeyResponse**](OpenPGPPublicKeyResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json