Package io.camunda.client.api.command
Interface TenantScopedClusterVariableDeletionCommandStep1
- All Superinterfaces:
FinalCommandStep<DeleteClusterVariableResponse>
- All Known Implementing Classes:
TenantScopedDeleteClusterVariableImpl
public interface TenantScopedClusterVariableDeletionCommandStep1
extends FinalCommandStep<DeleteClusterVariableResponse>
Represents a request to delete a tenant-scoped cluster variable.
Usage example:
camundaClient
.newTenantScopedClusterVariableDeleteRequest("my-tenant-id")
.delete("myVariable")
.send()
.join();
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies the name of the cluster variable to delete.Methods inherited from interface io.camunda.client.api.command.FinalCommandStep
execute, requestTimeout, send
-
Method Details
-
delete
Specifies the name of the cluster variable to delete.The variable will be deleted only if it exists with the specified name and scope. If the variable does not exist, a 404 error will be returned.
camundaClient .newTenantScopedClusterVariableDeleteRequest("my-tenant-id") .delete("myVariable") .send() .join();- Parameters:
name- the name of the variable to delete. Must not be null or empty.- Returns:
- this builder for method chaining
-