Skip to content

Commit

Permalink
[hotfix][rest] Remove the stale items in rest_v1_dispatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
KarmaGYZ committed Jul 1, 2022
1 parent 202eacb commit 6b8230c
Showing 1 changed file with 0 additions and 106 deletions.
106 changes: 0 additions & 106 deletions docs/layouts/shortcodes/generated/rest_v1_dispatcher.html
Original file line number Diff line number Diff line change
Expand Up @@ -583,112 +583,6 @@
</tr>
</tbody>
</table>
<table class="rest-api table table-bordered">
<tbody>
<tr>
<td class="text-left" colspan="2"><h5><strong>/jars/:jarid/plan</strong></h5></td>
</tr>
<tr>
<td class="text-left" style="width: 20%">Verb: <code>GET</code></td>
<td class="text-left">Response code: <code>200 OK</code></td>
</tr>
<tr>
<td colspan="2">Returns the dataflow plan of a job contained in a jar previously uploaded via '/jars/upload'. Program arguments can be passed both via the JSON request (recommended) or query parameters.</td>
</tr>
<tr>
<td colspan="2">Path parameters</td>
</tr>
<tr>
<td colspan="2">
<ul>
<li><code>jarid</code> - String value that identifies a jar. When uploading the jar a path is returned, where the filename is the ID. This value is equivalent to the `id` field in the list of uploaded jars (/jars).</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">Query parameters</td>
</tr>
<tr>
<td colspan="2">
<ul>
<li><code>program-args</code> (optional): Deprecated, please use 'programArg' instead. String value that specifies the arguments for the program or plan</li>
<li><code>programArg</code> (optional): Comma-separated list of program arguments.</li>
<li><code>entry-class</code> (optional): String value that specifies the fully qualified name of the entry point class. Overrides the class defined in the jar file manifest.</li>
<li><code>parallelism</code> (optional): Positive integer value that specifies the desired parallelism for the job.</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
<div class="book-expand">
<label>
<div class="book-expand-head flex justify-between">
<span>Request</span>
&nbsp; <span></span>
</div>
<input type="checkbox" class="hidden">
<div class="book-expand-content markdown-inner">
<pre>
<code>
{
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:webmonitor:handlers:JarPlanRequestBody",
"properties" : {
"entryClass" : {
"type" : "string"
},
"jobId" : {
"type" : "any"
},
"parallelism" : {
"type" : "integer"
},
"programArgs" : {
"type" : "string"
},
"programArgsList" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
} </code>
</pre>
</div>
</label>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div class="book-expand">
<label>
<div class="book-expand-head flex justify-between">
<span>Response</span>
&nbsp; <span></span>
</div>
<input type="checkbox" class="hidden">
<div class="book-expand-content markdown-inner">
<pre>
<code>
{
"type" : "object",
"id" : "urn:jsonschema:org:apache:flink:runtime:rest:messages:JobPlanInfo",
"properties" : {
"plan" : {
"type" : "any"
}
}
} </code>
</pre>
</div>
</label>
</div>
</td>
</tr>
</tbody>
</table>
<table class="rest-api table table-bordered">
<tbody>
<tr>
Expand Down

0 comments on commit 6b8230c

Please sign in to comment.