Sha256: 49bbb489b49bffe44b49556e304cec3b0f851b6a711c95b4532d6888c94d2692
Contents?: true
Size: 1.61 KB
Versions: 11
Compression:
Stored size: 1.61 KB
Contents
# PulpcoreClient::StatusApi All URIs are relative to *http://localhost:24817* Method | HTTP request | Description ------------- | ------------- | ------------- [**status_read**](StatusApi.md#status_read) | **GET** /pulp/api/v3/status/ | Inspect status of Pulp ## status_read > Status status_read(opts) Inspect status of Pulp Returns app information including the version of pulpcore and loaded pulp plugins, known workers, database connection status, and messaging connection status ### Example ```ruby # load the gem require 'pulpcore_client' # setup authorization PulpcoreClient.configure do |config| # Configure HTTP basic authorization: Basic config.username = 'YOUR USERNAME' config.password = 'YOUR PASSWORD' end api_instance = PulpcoreClient::StatusApi.new 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 status of Pulp result = api_instance.status_read(opts) p result rescue PulpcoreClient::ApiError => e puts "Exception when calling StatusApi->status_read: #{e}" end ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **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 [**Status**](Status.md) ### Authorization [Basic](../README.md#Basic) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json
Version data entries
11 entries across 11 versions & 1 rubygems