All URIs are relative to http://localhost/nifi-api
Method | HTTP request | Description |
---|---|---|
GetResources | GET /resources | Gets the available resources that support access/authorization policies |
ResourcesEntity GetResources ()
Gets the available resources that support access/authorization policies
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class GetResourcesExample
{
public void main()
{
var apiInstance = new ResourcesApi();
try
{
// Gets the available resources that support access/authorization policies
ResourcesEntity result = apiInstance.GetResources();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ResourcesApi.GetResources: " + e.Message );
}
}
}
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: /
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]