@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias DeploymentDecisionResult

    A deployed decision.

    type DeploymentDecisionResult = {
        decisionDefinitionId: DecisionDefinitionId;
        decisionDefinitionKey: DecisionDefinitionKey;
        decisionRequirementsId: string;
        decisionRequirementsKey: DecisionRequirementsKey;
        name: string;
        tenantId: TenantId;
        version: number;
    }
    Index

    Properties

    decisionDefinitionId: DecisionDefinitionId

    The dmn decision ID, as parsed during deployment, together with the version forms a unique identifier for a specific decision.

    decisionDefinitionKey: DecisionDefinitionKey

    The assigned decision key, which acts as a unique identifier for this decision.

    decisionRequirementsId: string

    The dmn ID of the decision requirements graph that this decision is part of, as parsed during deployment.

    decisionRequirementsKey: DecisionRequirementsKey

    The assigned key of the decision requirements graph that this decision is part of.

    name: string

    The DMN name of the decision, as parsed during deployment.

    tenantId: TenantId

    The tenant ID of the deployed decision.

    version: number

    The assigned decision version.