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

GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest

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

The request for scheduling an integration. Next available id: 11

interface GoogleCloudIntegrationsV1alphaScheduleIntegrationsRequest {
inputParameters?: {};
requestId?: string;
scheduleTime?: Date;
triggerId?: string;
userGeneratedExecutionId?: string;
}

§Properties

§
inputParameters?: {}
[src]

Optional. Input parameters used by integration execution.

§

Parameters are a part of Event and can be used to communicate between different tasks that are part of the same integration execution.

§

Passed in as parameters to each integration execution.

§
requestId?: string
[src]

This is used to de-dup incoming request: if the duplicate request was detected, the response from the previous execution is returned.

§
scheduleTime?: Date
[src]

The time that the integration should be executed. If the time is less or equal to the current time, the integration is executed immediately.

§
triggerId?: string
[src]

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

§
userGeneratedExecutionId?: string
[src]

Optional. 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.