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

GoogleCloudIntegrationsV1alphaTestIntegrationsRequest

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

The request for testing an integration.

interface GoogleCloudIntegrationsV1alphaTestIntegrationsRequest {
clientId?: string;
configParameters?: {
[key: string]: any;
}
;
deadlineSecondsTime?: Date;
inputParameters?: {};
testMode?: boolean;
triggerId?: string;
}

§Properties

§
clientId?: string
[src]

Required. This is used to identify the client on whose behalf the event will be executed.

§
configParameters?: {
[key: string]: any;
}
[src]

Optional. Config parameters used during integration execution.

§
deadlineSecondsTime?: Date
[src]

Optional. custom deadline of the rpc

§
inputParameters?: {}
[src]

Optional. Input parameters used during integration execution.

§

Required. integration config to execute the workflow

§

Optional. Passed in as parameters to each integration execution.

§
testMode?: boolean
[src]

Optional. Can be specified in the event request, otherwise false (default). If true, enables tasks with condition "test_mode = true". If false, disables tasks with condition "test_mode = true" if global test mode (set by platform) is also false {@link EventBusConfig}.

§
triggerId?: string
[src]

Required. The trigger id of the integration trigger config. If both trigger_id and client_id is present, the integration is executed from the start tasks provided by the matching trigger config otherwise it is executed from the default start tasks.