Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest

import type { GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest } from "https://googleapis.deno.dev/v1/integrations:v1.ts";

LINT.IfChange Use this request to post all workflows associated with a given trigger id. Next available id: 13

interface GoogleInternalCloudCrmEventbusV3PostToQueueWithTriggerIdRequest {
clientId?: string;
ignoreErrorIfNoActiveWorkflow?: boolean;
priority?:
| "UNSPCIFIED"
| "SHEDDABLE"
| "SHEDDABLE_PLUS"
| "CRITICAL"
| "CRITICAL_PLUS";
quotaRetryCount?: number;
requestId?: string;
resourceName?: string;
scheduledTime?: bigint;
testMode?: boolean;
triggerId?: string;
userGeneratedExecutionId?: string;
workflowName?: string;
}

§Properties

§
clientId?: string
[src]

Optional. If the client id is provided, then the combination of trigger id and client id is matched across all the workflows. If the client id is not provided, then workflows with matching trigger id are executed for each client id in the {@link TriggerConfig}. For Api Trigger, the client id is required and will be validated against the allowed clients.

§
ignoreErrorIfNoActiveWorkflow?: boolean
[src]

Optional. Flag to determine whether clients would suppress a warning when no ACTIVE workflows are not found. If this flag is set to be true, an error will not be thrown if the requested trigger_id or client_id is not found in any ACTIVE workflow. Otherwise, the error is always thrown. The flag is set to be false by default.

§

Passed in as parameters to each workflow execution. Optional.

§
priority?: "UNSPCIFIED" | "SHEDDABLE" | "SHEDDABLE_PLUS" | "CRITICAL" | "CRITICAL_PLUS"
[src]

The request priority this request should be processed at. For internal users:

§
quotaRetryCount?: number
[src]

Optional. This is a field to see the quota retry count for integration execution

§
requestId?: string
[src]

Optional. This is used to de-dup incoming request: if the duplicate request was detected, the response from the previous execution is returned. Must have no more than 36 characters and contain only alphanumeric characters and hyphens.

§
resourceName?: string
[src]

This field is only required when using Admin Access. The resource name of target, or the parent resource name. For example: "projects//locations//integrations/*"

§
scheduledTime?: bigint
[src]

Optional. Time in milliseconds since epoch when the given event would be scheduled.

§
testMode?: boolean
[src]

Optional. Sets test mode in {@link enterprise/crm/eventbus/event_message.proto}.

§
triggerId?: string
[src]

Matched against all {@link TriggerConfig}s across all workflows. i.e. TriggerConfig.trigger_id.equals(trigger_id) Required.

§
userGeneratedExecutionId?: string
[src]

This is a unique id provided by the method caller. If provided this will be used as the execution_id when a new execution info is created. This is a string representation of a UUID. Must have no more than 36 characters and contain only alphanumeric characters and hyphens.

§
workflowName?: string
[src]

Optional. If provided, the workflow_name is used to filter all the matched workflows having same trigger_id+client_id. A combination of trigger_id, client_id and workflow_name identifies a unique workflow.