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

Action

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

Configuration of an Action for the tool to use. Note: This can be either an Action or an Operation. See https://cloud.google.com/integration-connectors/docs/entities-operation-action for details.

interface Action {
connectionActionId?: string;
entityOperation?: ActionEntityOperation;
inputFields?: string[];
outputFields?: string[];
}

§Properties

§
connectionActionId?: string
[src]

ID of a Connection action for the tool to use.

§
entityOperation?: ActionEntityOperation
[src]

Entity operation configuration for the tool to use.

§
inputFields?: string[]
[src]

Optional. Entity fields to use as inputs for the operation. If no fields are specified, all fields of the Entity will be used.

§
outputFields?: string[]
[src]

Optional. Entity fields to return from the operation. If no fields are specified, all fields of the Entity will be returned.