mirror of https://github.com/apache/nifi.git
NIFI-8473 Added Parameter Contexts section to REST API documentation
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #5030.
This commit is contained in:
parent
835f50c83a
commit
f9d3bb7f69
|
@ -59,7 +59,7 @@
|
|||
<plugin>
|
||||
<groupId>com.github.kongchen</groupId>
|
||||
<artifactId>swagger-maven-plugin</artifactId>
|
||||
<version>3.1.5</version>
|
||||
<version>3.1.7</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>compile</phase>
|
||||
|
@ -78,10 +78,10 @@
|
|||
</schemes>
|
||||
<basePath>/nifi-api</basePath>
|
||||
<info>
|
||||
<title>NiFi Rest Api</title>
|
||||
<title>NiFi Rest API</title>
|
||||
<version>${project.version}</version>
|
||||
<description>
|
||||
The Rest Api provides programmatic access to command and control a NiFi instance in real time. Start and
|
||||
The Rest API provides programmatic access to command and control a NiFi instance in real time. Start and
|
||||
stop processors, monitor queues, query provenance data, and more. Each endpoint below includes a description,
|
||||
definitions of the expected input and output, potential response codes, and the authorizations required
|
||||
to invoke each service.
|
||||
|
|
|
@ -447,6 +447,7 @@
|
|||
organizeEndpoints('/labels', $('#label-endpoints'));
|
||||
organizeEndpoints('/access', $('#access-endpoints'));
|
||||
organizeEndpoints('/flow', $('#flow-endpoints'));
|
||||
organizeEndpoints('/parameter-contexts', $('#parameter-context-endpoints'));
|
||||
organizeEndpoints('/provenance-events', $('#provenance-event-endpoints'));
|
||||
organizeEndpoints('/provenance', $('#provenance-endpoints'));
|
||||
organizeEndpoints('/tenants', $('#tenant-endpoints'));
|
||||
|
@ -524,6 +525,14 @@
|
|||
</div>
|
||||
<div id="flow-endpoints" class="section-endpoints hidden"></div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="section-header">
|
||||
<div class="title link">Parameter Contexts</div>
|
||||
<div class="sub-title section-description">Manage Parameter Contexts and associated validation</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<div id="parameter-context-endpoints" class="section-endpoints hidden"></div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<div class="section-header">
|
||||
<div class="title link">Process Groups</div>
|
||||
|
|
Loading…
Reference in New Issue