This is an automated email from the ASF dual-hosted git repository.

panyuepeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 89e84127f27 [FLINK-39041][docs] Rebuild REST API docs pages to 
supplement the missing content.
89e84127f27 is described below

commit 89e84127f27adaef637faa60397fb3068d40e8d4
Author: Yuepeng Pan <[email protected]>
AuthorDate: Fri Feb 27 14:24:18 2026 +0800

    [FLINK-39041][docs] Rebuild REST API docs pages to supplement the missing 
content.
---
 .../shortcodes/generated/rest_v1_dispatcher.html   | 56 ++++++++++++++++++++++
 docs/static/generated/rest_v1_dispatcher.yml       | 22 +++++++++
 2 files changed, 78 insertions(+)

diff --git a/docs/layouts/shortcodes/generated/rest_v1_dispatcher.html 
b/docs/layouts/shortcodes/generated/rest_v1_dispatcher.html
index f7528c81261..4bcf44204db 100644
--- a/docs/layouts/shortcodes/generated/rest_v1_dispatcher.html
+++ b/docs/layouts/shortcodes/generated/rest_v1_dispatcher.html
@@ -221,6 +221,62 @@
     </tr>
   </tbody>
 </table>
+<table class="rest-api table table-bordered">
+  <tbody>
+    <tr>
+      <td class="text-left" 
colspan="2"><h5><strong>/applications/:applicationid/jobmanager/config</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 jobmanager's configuration of a specific 
application.</td>
+    </tr>
+    <tr>
+      <td colspan="2">Path parameters</td>
+    </tr>
+    <tr>
+      <td colspan="2">
+        <ul>
+<li><code>applicationid</code> - 32-character hexadecimal string value that 
identifies an application.</li>
+        </ul>
+      </td>
+    </tr>
+    <tr>
+      <td colspan="2">
+        <label>
+          <details>
+          <summary>Request</summary>
+          <pre><code>{}</code></pre>
+        </label>
+      </td>
+    </tr>
+    <tr>
+      <td colspan="2">
+        <label>
+          <details>
+          <summary>Response</summary>
+          <pre><code>{
+  "type" : "array",
+  "items" : {
+    "type" : "object",
+    "id" : 
"urn:jsonschema:org:apache:flink:runtime:rest:messages:ConfigurationInfoEntry",
+    "properties" : {
+      "key" : {
+        "type" : "string"
+      },
+      "value" : {
+        "type" : "string"
+      }
+    }
+  }
+}</code></pre>
+        </label>
+      </td>
+    </tr>
+  </tbody>
+</table>
 <table class="rest-api table table-bordered">
   <tbody>
     <tr>
diff --git a/docs/static/generated/rest_v1_dispatcher.yml 
b/docs/static/generated/rest_v1_dispatcher.yml
index 1737d17dbd1..33c6b292c19 100644
--- a/docs/static/generated/rest_v1_dispatcher.yml
+++ b/docs/static/generated/rest_v1_dispatcher.yml
@@ -51,6 +51,26 @@ paths:
       responses:
         "202":
           description: The request was successful.
+  /applications/{applicationid}/jobmanager/config:
+    get:
+      description: Returns the jobmanager's configuration of a specific 
application.
+      operationId: getJobManagerApplicationConfiguration
+      parameters:
+      - name: applicationid
+        in: path
+        description: 32-character hexadecimal string value that identifies an 
application.
+        required: true
+        schema:
+          $ref: "#/components/schemas/ApplicationID"
+      responses:
+        "200":
+          description: The request was successful.
+          content:
+            application/json:
+              schema:
+                type: array
+                items:
+                  $ref: "#/components/schemas/ConfigurationInfoEntry"
   /cluster:
     delete:
       description: Shuts down the cluster
@@ -2672,6 +2692,8 @@ components:
             $ref: "#/components/schemas/SerializedValueOptionalFailureObject"
         jobId:
           $ref: "#/components/schemas/JobID"
+        jobName:
+          type: string
         jobStatus:
           $ref: "#/components/schemas/JobStatus"
         netRuntime:

Reply via email to