Class DataSetController
java.lang.Object
cn.sliew.flinkful.rest.client.controller.DataSetController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCompletableFuture<org.apache.flink.runtime.rest.messages.dataset.ClusterDataSetListResponseBody>datasets()https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasetsCompletableFuture<org.apache.flink.runtime.rest.handler.async.TriggerResponse>https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasets-datasetidCompletableFuture<org.apache.flink.runtime.rest.handler.async.AsynchronousOperationResult<org.apache.flink.runtime.rest.handler.async.AsynchronousOperationInfo>>deleteStatus(String triggerId) https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasets-delete-triggerid
-
Constructor Details
-
DataSetController
public DataSetController()
-
-
Method Details
-
datasets
@GetMapping public CompletableFuture<org.apache.flink.runtime.rest.messages.dataset.ClusterDataSetListResponseBody> datasets() throws IOExceptionhttps://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasets- Throws:
IOException
-
delete
@DeleteMapping("/{dataSetId}") public CompletableFuture<org.apache.flink.runtime.rest.handler.async.TriggerResponse> delete(@PathVariable("dataSetId") String dataSetId) throws IOException https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasets-datasetid- Throws:
IOException
-
deleteStatus
@GetMapping("/delete/{triggerId}") public CompletableFuture<org.apache.flink.runtime.rest.handler.async.AsynchronousOperationResult<org.apache.flink.runtime.rest.handler.async.AsynchronousOperationInfo>> deleteStatus(@PathVariable("triggerId") String triggerId) throws IOException https://nightlies.apache.org/flink/flink-docs-release-1.19/docs/ops/rest_api/#datasets-delete-triggerid- Throws:
IOException
-