Options
All
  • Public
  • Public/Protected
  • All
Menu

@hauptmedia/zeebe-gateway-types

Index

Enumerations

Interfaces

Type aliases

Variables

Functions

Object literals

Type aliases

Builtin

Builtin: Date | Function | Uint8Array | string | number | boolean | undefined

DeepPartial

DeepPartial<T>: T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {} : Partial<T>

Type parameters

  • T

Exact

Exact<P, I>: P extends Builtin ? P : P & {} & {}

Type parameters

  • P

  • I: P

GatewayService

GatewayService: typeof GatewayService

JsonSchemaRegistryTypes

JsonSchemaRegistryTypes: keyof typeof JsonSchemaRegistry

KeysOfUnion

KeysOfUnion<T>: T extends T ? keyof T : never

Type parameters

  • T

Variables

Const GatewayClient

GatewayClient: { constructor: any; service: typeof GatewayService } = makeGenericClientConstructor(GatewayService, "gateway_protocol.Gateway") as unknown as {new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): GatewayClient;service: typeof GatewayService;}

Type declaration

Const GatewayService

GatewayService: { activateJobs: object; cancelProcessInstance: object; completeJob: object; createProcessInstance: object; createProcessInstanceWithResult: object; deployProcess: object; deployResource: object; failJob: object; modifyProcessInstance: object; publishMessage: object; resolveIncident: object; setVariables: object; throwError: object; topology: object; updateJobRetries: object } = {/*** Iterates through all known partitions round-robin and activates up to the requested* maximum and streams them back to the client as they are activated.** Errors:* INVALID_ARGUMENT:* - type is blank (empty string, null)* - worker is blank (empty string, null)* - timeout less than 1* - maxJobsToActivate is less than 1*/activateJobs: {path: "/gateway_protocol.Gateway/ActivateJobs",requestStream: false,responseStream: true,requestSerialize: (value: ActivateJobsRequest) => Buffer.from(ActivateJobsRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => ActivateJobsRequest.decode(value),responseSerialize: (value: ActivateJobsResponse) => Buffer.from(ActivateJobsResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => ActivateJobsResponse.decode(value),},/*** Cancels a running process instance** Errors:* NOT_FOUND:* - no process instance exists with the given key*/cancelProcessInstance: {path: "/gateway_protocol.Gateway/CancelProcessInstance",requestStream: false,responseStream: false,requestSerialize: (value: CancelProcessInstanceRequest) =>Buffer.from(CancelProcessInstanceRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => CancelProcessInstanceRequest.decode(value),responseSerialize: (value: CancelProcessInstanceResponse) =>Buffer.from(CancelProcessInstanceResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => CancelProcessInstanceResponse.decode(value),},/*** Completes a job with the given variables, which allows completing the associated service task.** Errors:* NOT_FOUND:* - no job exists with the given job key. Note that since jobs are removed once completed,* it could be that this job did exist at some point.** FAILED_PRECONDITION:* - the job was marked as failed. In that case, the related incident must be resolved before* the job can be activated again and completed.*/completeJob: {path: "/gateway_protocol.Gateway/CompleteJob",requestStream: false,responseStream: false,requestSerialize: (value: CompleteJobRequest) => Buffer.from(CompleteJobRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => CompleteJobRequest.decode(value),responseSerialize: (value: CompleteJobResponse) => Buffer.from(CompleteJobResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => CompleteJobResponse.decode(value),},/*** Creates and starts an instance of the specified process. The process definition to use to* create the instance can be specified either using its unique key (as returned by* DeployProcess), or using the BPMN process ID and a version. Pass -1 as the version to use the* latest deployed version. Note that only processes with none start events can be started through* this command.** Errors:* NOT_FOUND:* - no process with the given key exists (if processDefinitionKey was given)* - no process with the given process ID exists (if bpmnProcessId was given but version was -1)* - no process with the given process ID and version exists (if both bpmnProcessId and version were given)** FAILED_PRECONDITION:* - the process definition does not contain a none start event; only processes with none* start event can be started manually.** INVALID_ARGUMENT:* - the given variables argument is not a valid JSON document; it is expected to be a valid* JSON document where the root node is an object.*/createProcessInstance: {path: "/gateway_protocol.Gateway/CreateProcessInstance",requestStream: false,responseStream: false,requestSerialize: (value: CreateProcessInstanceRequest) =>Buffer.from(CreateProcessInstanceRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => CreateProcessInstanceRequest.decode(value),responseSerialize: (value: CreateProcessInstanceResponse) =>Buffer.from(CreateProcessInstanceResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => CreateProcessInstanceResponse.decode(value),},/** Behaves similarly to `rpc CreateProcessInstance`, except that a successful response is received when the process completes successfully. */createProcessInstanceWithResult: {path: "/gateway_protocol.Gateway/CreateProcessInstanceWithResult",requestStream: false,responseStream: false,requestSerialize: (value: CreateProcessInstanceWithResultRequest) =>Buffer.from(CreateProcessInstanceWithResultRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => CreateProcessInstanceWithResultRequest.decode(value),responseSerialize: (value: CreateProcessInstanceWithResultResponse) =>Buffer.from(CreateProcessInstanceWithResultResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => CreateProcessInstanceWithResultResponse.decode(value),},/*** Deploys one or more processes to Zeebe. Note that this is an atomic call,* i.e. either all processes are deployed, or none of them are.** Errors:* INVALID_ARGUMENT:* - no resources given.* - if at least one resource is invalid. A resource is considered invalid if:* - the resource data is not deserializable (e.g. detected as BPMN, but it's broken XML)* - the process is invalid (e.g. an event-based gateway has an outgoing sequence flow to a task)** @deprecated*/deployProcess: {path: "/gateway_protocol.Gateway/DeployProcess",requestStream: false,responseStream: false,requestSerialize: (value: DeployProcessRequest) => Buffer.from(DeployProcessRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => DeployProcessRequest.decode(value),responseSerialize: (value: DeployProcessResponse) => Buffer.from(DeployProcessResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => DeployProcessResponse.decode(value),},/*** Deploys one or more resources (e.g. processes or decision models) to Zeebe.* Note that this is an atomic call, i.e. either all resources are deployed, or none of them are.** Errors:* INVALID_ARGUMENT:* - no resources given.* - if at least one resource is invalid. A resource is considered invalid if:* - the content is not deserializable (e.g. detected as BPMN, but it's broken XML)* - the content is invalid (e.g. an event-based gateway has an outgoing sequence flow to a task)*/deployResource: {path: "/gateway_protocol.Gateway/DeployResource",requestStream: false,responseStream: false,requestSerialize: (value: DeployResourceRequest) => Buffer.from(DeployResourceRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => DeployResourceRequest.decode(value),responseSerialize: (value: DeployResourceResponse) => Buffer.from(DeployResourceResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => DeployResourceResponse.decode(value),},/*** Marks the job as failed; if the retries argument is positive, then the job will be immediately* activatable again, and a worker could try again to process it. If it is zero or negative however,* an incident will be raised, tagged with the given errorMessage, and the job will not be* activatable until the incident is resolved.** Errors:* NOT_FOUND:* - no job was found with the given key** FAILED_PRECONDITION:* - the job was not activated* - the job is already in a failed state, i.e. ran out of retries*/failJob: {path: "/gateway_protocol.Gateway/FailJob",requestStream: false,responseStream: false,requestSerialize: (value: FailJobRequest) => Buffer.from(FailJobRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => FailJobRequest.decode(value),responseSerialize: (value: FailJobResponse) => Buffer.from(FailJobResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => FailJobResponse.decode(value),},/*** Reports a business error (i.e. non-technical) that occurs while processing a job. The error is handled in the process by an error catch event. If there is no error catch event with the specified errorCode then an incident will be raised instead.** Errors:* NOT_FOUND:* - no job was found with the given key** FAILED_PRECONDITION:* - the job is not in an activated state*/throwError: {path: "/gateway_protocol.Gateway/ThrowError",requestStream: false,responseStream: false,requestSerialize: (value: ThrowErrorRequest) => Buffer.from(ThrowErrorRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => ThrowErrorRequest.decode(value),responseSerialize: (value: ThrowErrorResponse) => Buffer.from(ThrowErrorResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => ThrowErrorResponse.decode(value),},/*** Publishes a single message. Messages are published to specific partitions computed from their* correlation keys.** Errors:* ALREADY_EXISTS:* - a message with the same ID was previously published (and is still alive)*/publishMessage: {path: "/gateway_protocol.Gateway/PublishMessage",requestStream: false,responseStream: false,requestSerialize: (value: PublishMessageRequest) => Buffer.from(PublishMessageRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => PublishMessageRequest.decode(value),responseSerialize: (value: PublishMessageResponse) => Buffer.from(PublishMessageResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => PublishMessageResponse.decode(value),},/*** Resolves a given incident. This simply marks the incident as resolved; most likely a call to* UpdateJobRetries or SetVariables will be necessary to actually resolve the* problem, following by this call.** Errors:* NOT_FOUND:* - no incident with the given key exists*/resolveIncident: {path: "/gateway_protocol.Gateway/ResolveIncident",requestStream: false,responseStream: false,requestSerialize: (value: ResolveIncidentRequest) => Buffer.from(ResolveIncidentRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => ResolveIncidentRequest.decode(value),responseSerialize: (value: ResolveIncidentResponse) => Buffer.from(ResolveIncidentResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => ResolveIncidentResponse.decode(value),},/*** Updates all the variables of a particular scope (e.g. process instance, flow element instance)* from the given JSON document.** Errors:* NOT_FOUND:* - no element with the given elementInstanceKey exists* INVALID_ARGUMENT:* - the given variables document is not a valid JSON document; valid documents are expected to* be JSON documents where the root node is an object.*/setVariables: {path: "/gateway_protocol.Gateway/SetVariables",requestStream: false,responseStream: false,requestSerialize: (value: SetVariablesRequest) => Buffer.from(SetVariablesRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => SetVariablesRequest.decode(value),responseSerialize: (value: SetVariablesResponse) => Buffer.from(SetVariablesResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => SetVariablesResponse.decode(value),},/** Obtains the current topology of the cluster the gateway is part of. */topology: {path: "/gateway_protocol.Gateway/Topology",requestStream: false,responseStream: false,requestSerialize: (value: TopologyRequest) => Buffer.from(TopologyRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => TopologyRequest.decode(value),responseSerialize: (value: TopologyResponse) => Buffer.from(TopologyResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => TopologyResponse.decode(value),},/*** Updates the number of retries a job has left. This is mostly useful for jobs that have run out of* retries, should the underlying problem be solved.** Errors:* NOT_FOUND:* - no job exists with the given key** INVALID_ARGUMENT:* - retries is not greater than 0*/updateJobRetries: {path: "/gateway_protocol.Gateway/UpdateJobRetries",requestStream: false,responseStream: false,requestSerialize: (value: UpdateJobRetriesRequest) => Buffer.from(UpdateJobRetriesRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => UpdateJobRetriesRequest.decode(value),responseSerialize: (value: UpdateJobRetriesResponse) =>Buffer.from(UpdateJobRetriesResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => UpdateJobRetriesResponse.decode(value),},/*** Modifies the process instance. This is done by activating and/or terminating specific elements of the instance.** Errors:* NOT_FOUND:* - no process instance exists with the given key** FAILED_PRECONDITION:* - trying to activate element inside of a multi-instance** INVALID_ARGUMENT:* - activating or terminating unknown element* - ancestor of element for activation doesn't exist* - scope of variable is unknown*/modifyProcessInstance: {path: "/gateway_protocol.Gateway/ModifyProcessInstance",requestStream: false,responseStream: false,requestSerialize: (value: ModifyProcessInstanceRequest) =>Buffer.from(ModifyProcessInstanceRequest.encode(value).finish()),requestDeserialize: (value: Buffer) => ModifyProcessInstanceRequest.decode(value),responseSerialize: (value: ModifyProcessInstanceResponse) =>Buffer.from(ModifyProcessInstanceResponse.encode(value).finish()),responseDeserialize: (value: Buffer) => ModifyProcessInstanceResponse.decode(value),},} as const

Type declaration

global

global: any | undefined

globalThis

globalThis: any = (() => {if (typeof globalThis !== "undefined") {return globalThis;}if (typeof self !== "undefined") {return self;}if (typeof window !== "undefined") {return window;}if (typeof global !== "undefined") {return global;}throw "Unable to locate global object";})()

Const protobufPackage

protobufPackage: "gateway_protocol" = "gateway_protocol"

self

self: any | undefined

window

window: any | undefined

Functions

base64FromBytes

  • base64FromBytes(arr: Uint8Array): string

bytesFromBase64

  • bytesFromBase64(b64: string): Uint8Array

createBaseActivateJobsRequest

createBaseActivateJobsResponse

createBaseActivatedJob

createBaseBrokerInfo

createBaseCancelProcessInstanceRequest

createBaseCancelProcessInstanceResponse

createBaseCompleteJobRequest

createBaseCompleteJobResponse

createBaseCreateProcessInstanceRequest

createBaseCreateProcessInstanceResponse

createBaseCreateProcessInstanceWithResultRequest

createBaseCreateProcessInstanceWithResultResponse

createBaseDecisionMetadata

createBaseDecisionRequirementsMetadata

createBaseDeployProcessRequest

createBaseDeployProcessResponse

createBaseDeployResourceRequest

createBaseDeployResourceResponse

createBaseDeployment

createBaseFailJobRequest

createBaseFailJobResponse

createBaseModifyProcessInstanceRequest

createBaseModifyProcessInstanceRequest_ActivateInstruction

createBaseModifyProcessInstanceRequest_TerminateInstruction

createBaseModifyProcessInstanceRequest_VariableInstruction

createBaseModifyProcessInstanceResponse

createBasePartition

createBaseProcessInstanceCreationStartInstruction

createBaseProcessMetadata

createBaseProcessRequestObject

createBasePublishMessageRequest

createBasePublishMessageResponse

createBaseResolveIncidentRequest

createBaseResolveIncidentResponse

createBaseResource

createBaseSetVariablesRequest

createBaseSetVariablesResponse

createBaseThrowErrorRequest

createBaseThrowErrorResponse

createBaseTopologyRequest

createBaseTopologyResponse

createBaseUpdateJobRetriesRequest

createBaseUpdateJobRetriesResponse

isSet

  • isSet(value: any): boolean

longToNumber

  • longToNumber(long: Long): number

partition_PartitionBrokerHealthFromJSON

partition_PartitionBrokerHealthToJSON

partition_PartitionBrokerHealthToNumber

partition_PartitionBrokerRoleFromJSON

partition_PartitionBrokerRoleToJSON

partition_PartitionBrokerRoleToNumber

Object literals

Const ActivateJobsRequest

ActivateJobsRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const ActivateJobsResponse

ActivateJobsResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const ActivatedJob

ActivatedJob: object

decode

  • decode(input: Reader | Uint8Array, length?: number): ActivatedJob

encode

fromJSON

fromPartial

toJSON

Const BrokerInfo

BrokerInfo: object

decode

  • decode(input: Reader | Uint8Array, length?: number): BrokerInfo

encode

  • encode(message: BrokerInfo, writer?: Writer): Writer

fromJSON

fromPartial

toJSON

Const CancelProcessInstanceRequest

CancelProcessInstanceRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const CancelProcessInstanceResponse

CancelProcessInstanceResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const CompleteJobRequest

CompleteJobRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const CompleteJobResponse

CompleteJobResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const CreateProcessInstanceRequest

CreateProcessInstanceRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const CreateProcessInstanceResponse

CreateProcessInstanceResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const CreateProcessInstanceWithResultRequest

CreateProcessInstanceWithResultRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const CreateProcessInstanceWithResultResponse

CreateProcessInstanceWithResultResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const DecisionMetadata

DecisionMetadata: object

decode

encode

fromJSON

fromPartial

toJSON

Const DecisionRequirementsMetadata

DecisionRequirementsMetadata: object

decode

encode

fromJSON

fromPartial

toJSON

Const DeployProcessRequest

DeployProcessRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const DeployProcessResponse

DeployProcessResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const DeployResourceRequest

DeployResourceRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const DeployResourceResponse

DeployResourceResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const Deployment

Deployment: object

decode

  • decode(input: Reader | Uint8Array, length?: number): Deployment

encode

  • encode(message: Deployment, writer?: Writer): Writer

fromJSON

fromPartial

toJSON

Const FailJobRequest

FailJobRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const FailJobResponse

FailJobResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const JsonSchemaRegistry

JsonSchemaRegistry: object

ActivateJobsRequest

ActivateJobsRequest: { $schema: string; type: string; properties: object } = ActivateJobsRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • fetchVariable: object
      • description: string
      • type: string
      • items: object
        • type: string
    • maxJobsToActivate: object
      • description: string
      • type: string
    • requestTimeout: object
      • description: string
      • type: string
    • timeout: object
      • description: string
      • type: string
    • type: object
      • description: string
      • type: string
    • worker: object
      • description: string
      • type: string

ActivateJobsResponse

ActivateJobsResponse: { $schema: string; type: string; definitions: object; properties: object } = ActivateJobsResponse

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • ActivatedJob: object
      • type: string
      • properties: object
        • bpmnProcessId: object
          • description: string
          • type: string
        • customHeaders: object
          • description: string
          • type: string
        • deadline: object
          • description: string
          • type: string
        • elementId: object
          • description: string
          • type: string
        • elementInstanceKey: object
          • description: string
          • type: string
        • key: object
          • description: string
          • type: string
        • processDefinitionKey: object
          • description: string
          • type: string
        • processDefinitionVersion: object
          • description: string
          • type: string
        • processInstanceKey: object
          • description: string
          • type: string
        • retries: object
          • description: string
          • type: string
        • type: object
          • description: string
          • type: string
        • variables: object
          • description: string
          • type: string
        • worker: object
          • description: string
          • type: string
  • properties: object
    • jobs: object
      • description: string
      • type: string
      • items: object
        • $ref: string

CancelProcessInstanceRequest

CancelProcessInstanceRequest: { $schema: string; type: string; properties: object } = CancelProcessInstanceRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • processInstanceKey: object
      • description: string
      • type: string

CancelProcessInstanceResponse

CancelProcessInstanceResponse: { $schema: string; type: string } = CancelProcessInstanceResponse

Type declaration

  • $schema: string
  • type: string

CompleteJobRequest

CompleteJobRequest: { $schema: string; type: string; properties: object } = CompleteJobRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • jobKey: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string

CompleteJobResponse

CompleteJobResponse: { $schema: string; type: string } = CompleteJobResponse

Type declaration

  • $schema: string
  • type: string

CreateProcessInstanceRequest

CreateProcessInstanceRequest: { $schema: string; type: string; definitions: object; properties: object } = CreateProcessInstanceRequest

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • ProcessInstanceCreationStartInstruction: object
      • type: string
      • properties: object
        • elementId: object
          • description: string
          • type: string
  • properties: object
    • bpmnProcessId: object
      • description: string
      • type: string
    • processDefinitionKey: object
      • description: string
      • type: string
    • startInstructions: object
      • description: string
      • type: string
      • items: object
        • $ref: string
    • variables: object
      • description: string
      • type: string
    • version: object
      • description: string
      • type: string

CreateProcessInstanceResponse

CreateProcessInstanceResponse: { $schema: string; type: string; properties: object } = CreateProcessInstanceResponse

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • bpmnProcessId: object
      • description: string
      • type: string
    • processDefinitionKey: object
      • description: string
      • type: string
    • processInstanceKey: object
      • description: string
      • type: string
    • version: object
      • description: string
      • type: string

CreateProcessInstanceWithResultRequest

CreateProcessInstanceWithResultRequest: { $schema: string; type: string; definitions: object; properties: object } = CreateProcessInstanceWithResultRequest

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • CreateProcessInstanceRequest: object
      • type: string
      • properties: object
        • bpmnProcessId: object
          • description: string
          • type: string
        • processDefinitionKey: object
          • description: string
          • type: string
        • startInstructions: object
          • description: string
          • type: string
          • items: object
            • $ref: string
        • variables: object
          • description: string
          • type: string
        • version: object
          • description: string
          • type: string
    • ProcessInstanceCreationStartInstruction: object
      • type: string
      • properties: object
        • elementId: object
          • description: string
          • type: string
  • properties: object
    • fetchVariables: object
      • description: string
      • type: string
      • items: object
        • type: string
    • request: object
      • $ref: string
    • requestTimeout: object
      • description: string
      • type: string

CreateProcessInstanceWithResultResponse

CreateProcessInstanceWithResultResponse: { $schema: string; type: string; properties: object } = CreateProcessInstanceWithResultResponse

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • bpmnProcessId: object
      • description: string
      • type: string
    • processDefinitionKey: object
      • description: string
      • type: string
    • processInstanceKey: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string
    • version: object
      • description: string
      • type: string

DeployResourceRequest

DeployResourceRequest: { $schema: string; type: string; definitions: object; properties: object } = DeployResourceRequest

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • Resource: object
      • type: string
      • properties: object
        • content: object
          • description: string
          • type: string
        • name: object
          • description: string
          • type: string
  • properties: object
    • resources: object
      • description: string
      • type: string
      • items: object
        • $ref: string

DeployResourceResponse

DeployResourceResponse: { $schema: string; type: string; definitions: object; properties: object } = DeployResourceResponse

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • DecisionMetadata: object
      • type: string
      • properties: object
        • decisionKey: object
          • description: string
          • type: string
        • decisionRequirementsKey: object
          • description: string
          • type: string
        • dmnDecisionId: object
          • description: string
          • type: string
        • dmnDecisionName: object
          • description: string
          • type: string
        • dmnDecisionRequirementsId: object
          • description: string
          • type: string
        • version: object
          • description: string
          • type: string
    • DecisionRequirementsMetadata: object
      • type: string
      • properties: object
        • decisionRequirementsKey: object
          • description: string
          • type: string
        • dmnDecisionRequirementsId: object
          • description: string
          • type: string
        • dmnDecisionRequirementsName: object
          • description: string
          • type: string
        • resourceName: object
          • description: string
          • type: string
        • version: object
          • description: string
          • type: string
    • Deployment: object
      • type: string
      • properties: object
        • decision: object
          • $ref: string
          • description: string
        • decisionRequirements: object
          • $ref: string
          • description: string
        • process: object
          • $ref: string
          • description: string
    • ProcessMetadata: object
      • type: string
      • properties: object
        • bpmnProcessId: object
          • description: string
          • type: string
        • processDefinitionKey: object
          • description: string
          • type: string
        • resourceName: object
          • description: string
          • type: string
        • version: object
          • description: string
          • type: string
  • properties: object
    • deployments: object
      • description: string
      • type: string
      • items: object
        • $ref: string
    • key: object
      • description: string
      • type: string

FailJobRequest

FailJobRequest: { $schema: string; type: string; properties: object } = FailJobRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • errorMessage: object
      • description: string
      • type: string
    • jobKey: object
      • description: string
      • type: string
    • retries: object
      • description: string
      • type: string
    • retryBackOff: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string

FailJobResponse

FailJobResponse: { $schema: string; type: string } = FailJobResponse

Type declaration

  • $schema: string
  • type: string

ModifyProcessInstanceRequest

ModifyProcessInstanceRequest: { $schema: string; type: string; definitions: object; properties: object } = ModifyProcessInstanceRequest

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • ModifyProcessInstanceRequest_ActivateInstruction: object
      • type: string
      • properties: object
        • ancestorElementInstanceKey: object
          • description: string
          • type: string
        • elementId: object
          • description: string
          • type: string
        • variableInstructions: object
          • description: string
          • type: string
          • items: object
            • $ref: string
    • ModifyProcessInstanceRequest_TerminateInstruction: object
      • type: string
      • properties: object
        • elementInstanceKey: object
          • description: string
          • type: string
    • ModifyProcessInstanceRequest_VariableInstruction: object
      • type: string
      • properties: object
        • scopeId: object
          • description: string
          • type: string
        • variables: object
          • description: string
          • type: string
  • properties: object
    • activateInstructions: object
      • description: string
      • type: string
      • items: object
        • $ref: string
    • processInstanceKey: object
      • description: string
      • type: string
    • terminateInstructions: object
      • description: string
      • type: string
      • items: object
        • $ref: string

ModifyProcessInstanceResponse

ModifyProcessInstanceResponse: { $schema: string; type: string } = ModifyProcessInstanceResponse

Type declaration

  • $schema: string
  • type: string

PublishMessageRequest

PublishMessageRequest: { $schema: string; type: string; properties: object } = PublishMessageRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • correlationKey: object
      • description: string
      • type: string
    • messageId: object
      • description: string
      • type: string
    • name: object
      • description: string
      • type: string
    • timeToLive: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string

PublishMessageResponse

PublishMessageResponse: { $schema: string; type: string; properties: object } = PublishMessageResponse

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • key: object
      • description: string
      • type: string

ResolveIncidentRequest

ResolveIncidentRequest: { $schema: string; type: string; properties: object } = ResolveIncidentRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • incidentKey: object
      • description: string
      • type: string

ResolveIncidentResponse

ResolveIncidentResponse: { $schema: string; type: string } = ResolveIncidentResponse

Type declaration

  • $schema: string
  • type: string

ServiceError

ServiceError: { $schema: string; allOf: { $ref: string }[]; description: string; definitions: object } = ServiceError

Type declaration

  • $schema: string
  • allOf: { $ref: string }[]
  • description: string
  • definitions: object
    • Error: object
      • type: string
      • properties: object
        • message: object
          • type: string
        • name: object
          • type: string
        • stack: object
          • type: string
    • Metadata: object
      • description: string
      • type: string
      • properties: object
        • _getCoreRepresentation: {}
        • options: {}
        • internalRepr: object
          • $ref: string
    • MetadataObject: object
      • type: string
      • properties: object
        • __@toStringTag@23: object
          • type: string
        • size: object
          • type: string
    • Status: object
      • enum: number[]
      • type: string
    • StatusObject: object
      • type: string
      • properties: object
        • code: object
          • $ref: string
        • details: object
          • type: string
        • metadata: object
          • $ref: string

SetVariablesRequest

SetVariablesRequest: { $schema: string; type: string; properties: object } = SetVariablesRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • elementInstanceKey: object
      • description: string
      • type: string
    • local: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string

SetVariablesResponse

SetVariablesResponse: { $schema: string; type: string; properties: object } = SetVariablesResponse

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • key: object
      • description: string
      • type: string

ThrowErrorRequest

ThrowErrorRequest: { $schema: string; type: string; properties: object } = ThrowErrorRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • errorCode: object
      • description: string
      • type: string
    • errorMessage: object
      • description: string
      • type: string
    • jobKey: object
      • description: string
      • type: string
    • variables: object
      • description: string
      • type: string

ThrowErrorResponse

ThrowErrorResponse: { $schema: string; type: string } = ThrowErrorResponse

Type declaration

  • $schema: string
  • type: string

TopologyRequest

TopologyRequest: { $schema: string; type: string } = TopologyRequest

Type declaration

  • $schema: string
  • type: string

TopologyResponse

TopologyResponse: { $schema: string; type: string; definitions: object; properties: object } = TopologyResponse

Type declaration

  • $schema: string
  • type: string
  • definitions: object
    • BrokerInfo: object
      • type: string
      • properties: object
        • host: object
          • description: string
          • type: string
        • nodeId: object
          • description: string
          • type: string
        • partitions: object
          • description: string
          • type: string
          • items: object
            • $ref: string
        • port: object
          • description: string
          • type: string
        • version: object
          • description: string
          • type: string
    • Partition: object
      • type: string
      • properties: object
        • health: object
          • $ref: string
          • description: string
        • partitionId: object
          • description: string
          • type: string
        • role: object
          • $ref: string
          • description: string
    • Partition_PartitionBrokerHealth: object
      • description: string
      • enum: string[]
      • type: string
    • Partition_PartitionBrokerRole: object
      • description: string
      • enum: string[]
      • type: string
  • properties: object
    • brokers: object
      • description: string
      • type: string
      • items: object
        • $ref: string
    • clusterSize: object
      • description: string
      • type: string
    • gatewayVersion: object
      • description: string
      • type: string
    • partitionsCount: object
      • description: string
      • type: string
    • replicationFactor: object
      • description: string
      • type: string

UpdateJobRetriesRequest

UpdateJobRetriesRequest: { $schema: string; type: string; properties: object } = UpdateJobRetriesRequest

Type declaration

  • $schema: string
  • type: string
  • properties: object
    • jobKey: object
      • description: string
      • type: string
    • retries: object
      • description: string
      • type: string

UpdateJobRetriesResponse

UpdateJobRetriesResponse: { $schema: string; type: string } = UpdateJobRetriesResponse

Type declaration

  • $schema: string
  • type: string

Const ModifyProcessInstanceRequest

ModifyProcessInstanceRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const ModifyProcessInstanceRequest_ActivateInstruction

ModifyProcessInstanceRequest_ActivateInstruction: object

decode

encode

fromJSON

fromPartial

toJSON

Const ModifyProcessInstanceRequest_TerminateInstruction

ModifyProcessInstanceRequest_TerminateInstruction: object

decode

encode

fromJSON

fromPartial

toJSON

Const ModifyProcessInstanceRequest_VariableInstruction

ModifyProcessInstanceRequest_VariableInstruction: object

decode

encode

fromJSON

fromPartial

toJSON

Const ModifyProcessInstanceResponse

ModifyProcessInstanceResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const Partition

Partition: object

decode

  • decode(input: Reader | Uint8Array, length?: number): Partition

encode

  • encode(message: Partition, writer?: Writer): Writer

fromJSON

fromPartial

toJSON

Const ProcessInstanceCreationStartInstruction

ProcessInstanceCreationStartInstruction: object

decode

encode

fromJSON

fromPartial

toJSON

Const ProcessMetadata

ProcessMetadata: object

decode

encode

fromJSON

fromPartial

toJSON

Const ProcessRequestObject

ProcessRequestObject: object

decode

encode

fromJSON

fromPartial

toJSON

Const PublishMessageRequest

PublishMessageRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const PublishMessageResponse

PublishMessageResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const ResolveIncidentRequest

ResolveIncidentRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const ResolveIncidentResponse

ResolveIncidentResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const Resource

Resource: object

decode

  • decode(input: Reader | Uint8Array, length?: number): Resource

encode

  • encode(message: Resource, writer?: Writer): Writer

fromJSON

fromPartial

toJSON

Const SetVariablesRequest

SetVariablesRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const SetVariablesResponse

SetVariablesResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const ThrowErrorRequest

ThrowErrorRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const ThrowErrorResponse

ThrowErrorResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const TopologyRequest

TopologyRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const TopologyResponse

TopologyResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Const UpdateJobRetriesRequest

UpdateJobRetriesRequest: object

decode

encode

fromJSON

fromPartial

toJSON

Const UpdateJobRetriesResponse

UpdateJobRetriesResponse: object

decode

encode

fromJSON

fromPartial

toJSON

Generated using TypeDoc