Interface TenantScopedClusterVariableGetRequest

All Superinterfaces:
FinalCommandStep<ClusterVariable>
All Known Implementing Classes:
TenantScopedClusterVariableGetRequestImpl

public interface TenantScopedClusterVariableGetRequest extends FinalCommandStep<ClusterVariable>
Represents a request to fetch a tenant-scoped cluster variable by name.

Usage example:

   ClusterVariable response = camundaClient
       .newTenantScopedClusterVariableGetRequest("my-tenant-id")
       .withName("myVariable")
       .send()
       .join();
 
  • Method Details

    • withName

      Specifies the name of the cluster variable to fetch.

      The variable will be fetched only if it exists with the specified name and tenant ID. If the variable does not exist, a 404 error will be returned.

      Parameters:
      name - the name of the variable to fetch. Must not be null or empty.
      Returns:
      this builder for method chaining