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

GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse

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

The response for executing an integration.

interface GoogleCloudIntegrationsV1alphaExecuteIntegrationsResponse {
executionFailed?: boolean;
executionId?: string;
outputParameters?: {
[key: string]: any;
}
;
}

§Properties

§

Details for the integration that were executed.

§
executionFailed?: boolean
[src]

Is true if any execution in the integration failed. False otherwise.

§
executionId?: string
[src]

The id of the execution corresponding to this run of integration.

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

OUTPUT parameters in format of Map. Where Key is the name of the parameter. Note: Name of the system generated parameters are wrapped by backtick(`) to distinguish them from the user defined parameters.

§

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