# PulpcoreClient::SigningServicesApi All URIs are relative to *https://pulp* Method | HTTP request | Description ------------- | ------------- | ------------- [**list**](SigningServicesApi.md#list) | **GET** /pulp/api/v3/signing-services/ | List signing services [**read**](SigningServicesApi.md#read) | **GET** {signing_service_href} | Inspect a signing service ## list > PaginatedSigningServiceResponseList list(opts) List signing services A ViewSet that supports browsing of existing signing services. ### 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::SigningServicesApi.new opts = { limit: 56, # Integer | Number of results to return per page. name: 'name_example', # String | offset: 56, # Integer | The initial index from which to return the results. ordering: 'ordering_example', # String | Which field to use when ordering the results. fields: 'fields_example', # String | A list of fields to include in the response. exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response. } begin #List signing services result = api_instance.list(opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling SigningServicesApi->list: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **limit** | **Integer**| Number of results to return per page. | [optional] **name** | **String**| | [optional] **offset** | **Integer**| The initial index from which to return the results. | [optional] **ordering** | **String**| Which field to use when ordering the results. | [optional] **fields** | **String**| A list of fields to include in the response. | [optional] **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional] ### Return type [**PaginatedSigningServiceResponseList**](PaginatedSigningServiceResponseList.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ## read > SigningServiceResponse read(signing_service_href, opts) Inspect a signing service A ViewSet that supports browsing of existing signing services. ### 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::SigningServicesApi.new signing_service_href = 'signing_service_href_example' # String | opts = { fields: 'fields_example', # String | A list of fields to include in the response. exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response. } begin #Inspect a signing service result = api_instance.read(signing_service_href, opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling SigningServicesApi->read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **signing_service_href** | **String**| | **fields** | **String**| A list of fields to include in the response. | [optional] **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional] ### Return type [**SigningServiceResponse**](SigningServiceResponse.md) ### Authorization [basicAuth](../README.md#basicAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json