Sha256: 3da621597d9d0df4b2be9fdd36a37bd6e77a22e18b8356c809986ec058fd856e
Contents?: true
Size: 1.41 KB
Versions: 2
Compression:
Stored size: 1.41 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. } 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] ### Return type [**Status**](Status.md) ### Authorization [Basic](../README.md#Basic) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pulpcore_client-3.0.0rc6 | docs/StatusApi.md |
pulpcore_client-3.0.0rc5 | docs/StatusApi.md |