delete-flink-statements
Remove specific Flink statements by sending requests to the Flink REST API, using organization, environment, and statement identifiers.
Instructions
Make a request to delete a statement.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Flink REST API. | |
environmentId | No | The unique identifier for the environment. | |
organizationId | No | The unique identifier for the organization. | |
statementName | Yes | The user provided name of the resource, unique within this environment. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Flink REST API.",
"format": "uri",
"type": "string"
},
"environmentId": {
"description": "The unique identifier for the environment.",
"type": "string"
},
"organizationId": {
"description": "The unique identifier for the organization.",
"type": "string"
},
"statementName": {
"description": "The user provided name of the resource, unique within this environment.",
"maxLength": 100,
"minLength": 1,
"pattern": "[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*",
"type": "string"
}
},
"required": [
"statementName"
],
"type": "object"
}