/
home
/
infinitibizsol
/
.trash
/
node_modules.3
/
googleapis
/
build
/
src
/
apis
/
workflowexecutions
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/node_modules.3/googleapis/build/src/apis/workflowexecutions/v1beta.d.ts
/// <reference types="node" /> import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosPromise, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; import { Readable } from 'stream'; export declare namespace workflowexecutions_v1beta { export interface Options extends GlobalOptions { version: 'v1beta'; } interface StandardParameters { /** * Auth client or API Key for the request */ auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient | BaseExternalAccountClient | GoogleAuth; /** * V1 error format. */ '$.xgafv'?: string; /** * OAuth access token. */ access_token?: string; /** * Data format for response. */ alt?: string; /** * JSONP */ callback?: string; /** * Selector specifying which fields to include in a partial response. */ fields?: string; /** * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */ key?: string; /** * OAuth 2.0 token for the current user. */ oauth_token?: string; /** * Returns response with indentations and line breaks. */ prettyPrint?: boolean; /** * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */ quotaUser?: string; /** * Legacy upload protocol for media (e.g. "media", "multipart"). */ uploadType?: string; /** * Upload protocol for media (e.g. "raw", "multipart"). */ upload_protocol?: string; } /** * Workflow Executions API * * Execute workflows created with Workflows API. * * @example * ```js * const {google} = require('googleapis'); * const workflowexecutions = google.workflowexecutions('v1beta'); * ``` */ export class Workflowexecutions { context: APIRequestContext; projects: Resource$Projects; constructor(options: GlobalOptions, google?: GoogleConfigurable); } /** * Request for the CancelExecution method. */ export interface Schema$CancelExecutionRequest { } /** * Error describes why the execution was abnormally terminated. */ export interface Schema$Error { /** * Human-readable stack trace string. */ context?: string | null; /** * Error message and data returned represented as a JSON string. */ payload?: string | null; /** * Stack trace with detailed information of where error was generated. */ stackTrace?: Schema$StackTrace; } /** * A running instance of a [Workflow](/workflows/docs/reference/rest/v1beta/projects.locations.workflows). */ export interface Schema$Execution { /** * Input parameters of the execution represented as a JSON string. The size limit is 32KB. *Note*: If you are using the REST API directly to run your workflow, you must escape any JSON string value of `argument`. Example: `'{"argument":"{\"firstName\":\"FIRST\",\"lastName\":\"LAST\"\}"\}'` */ argument?: string | null; /** * The call logging level associated to this execution. */ callLogLevel?: string | null; /** * Output only. Marks the end of execution, successful or not. */ endTime?: string | null; /** * Output only. The error which caused the execution to finish prematurely. The value is only present if the execution's state is `FAILED` or `CANCELLED`. */ error?: Schema$Error; /** * Output only. The resource name of the execution. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\} */ name?: string | null; /** * Output only. Output of the execution represented as a JSON string. The value can only be present if the execution's state is `SUCCEEDED`. */ result?: string | null; /** * Output only. Marks the beginning of execution. */ startTime?: string | null; /** * Output only. Current state of the execution. */ state?: string | null; /** * Output only. Status tracks the current steps and progress data of this execution. */ status?: Schema$Status; /** * Output only. Revision of the workflow this execution is using. */ workflowRevisionId?: string | null; } /** * Response for the ListExecutions method. */ export interface Schema$ListExecutionsResponse { /** * The executions which match the request. */ executions?: Schema$Execution[]; /** * A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */ nextPageToken?: string | null; } /** * Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes. */ export interface Schema$Position { /** * The source code column position (of the line) the current instruction was generated from. */ column?: string | null; /** * The number of bytes of source code making up this stack trace element. */ length?: string | null; /** * The source code line number the current instruction was generated from. */ line?: string | null; } /** * A collection of stack elements (frames) where an error occurred. */ export interface Schema$StackTrace { /** * An array of stack elements. */ elements?: Schema$StackTraceElement[]; } /** * A single stack element (frame) where an error occurred. */ export interface Schema$StackTraceElement { /** * The source position information of the stack trace element. */ position?: Schema$Position; /** * The routine where the error occurred. */ routine?: string | null; /** * The step the error occurred at. */ step?: string | null; } /** * Represents the current status of this execution. */ export interface Schema$Status { /** * A list of currently executing or last executed step names for the workflow execution currently running. If the workflow has succeeded or failed, this is the last attempted or executed step. Presently, if the current step is inside a subworkflow, the list only includes that step. In the future, the list will contain items for each step in the call stack, starting with the outermost step in the `main` subworkflow, and ending with the most deeply nested step. */ currentSteps?: Schema$Step[]; } /** * Represents a step of the workflow this execution is running. */ export interface Schema$Step { /** * Name of a routine within the workflow. */ routine?: string | null; /** * Name of a step within the routine. */ step?: string | null; } export class Resource$Projects { context: APIRequestContext; locations: Resource$Projects$Locations; constructor(context: APIRequestContext); } export class Resource$Projects$Locations { context: APIRequestContext; workflows: Resource$Projects$Locations$Workflows; constructor(context: APIRequestContext); } export class Resource$Projects$Locations$Workflows { context: APIRequestContext; executions: Resource$Projects$Locations$Workflows$Executions; constructor(context: APIRequestContext); } export class Resource$Projects$Locations$Workflows$Executions { context: APIRequestContext; constructor(context: APIRequestContext); /** * Cancels an execution of the given name. * * @param params - Parameters for request * @param options - Optionally override request options, such as `url`, `method`, and `encoding`. * @param callback - Optional callback that handles the response. * @returns A promise if used with async/await, or void if used with a callback. */ cancel(params: Params$Resource$Projects$Locations$Workflows$Executions$Cancel, options: StreamMethodOptions): GaxiosPromise<Readable>; cancel(params?: Params$Resource$Projects$Locations$Workflows$Executions$Cancel, options?: MethodOptions): GaxiosPromise<Schema$Execution>; cancel(params: Params$Resource$Projects$Locations$Workflows$Executions$Cancel, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; cancel(params: Params$Resource$Projects$Locations$Workflows$Executions$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Execution>, callback: BodyResponseCallback<Schema$Execution>): void; cancel(params: Params$Resource$Projects$Locations$Workflows$Executions$Cancel, callback: BodyResponseCallback<Schema$Execution>): void; cancel(callback: BodyResponseCallback<Schema$Execution>): void; /** * Creates a new execution using the latest revision of the given workflow. * * @param params - Parameters for request * @param options - Optionally override request options, such as `url`, `method`, and `encoding`. * @param callback - Optional callback that handles the response. * @returns A promise if used with async/await, or void if used with a callback. */ create(params: Params$Resource$Projects$Locations$Workflows$Executions$Create, options: StreamMethodOptions): GaxiosPromise<Readable>; create(params?: Params$Resource$Projects$Locations$Workflows$Executions$Create, options?: MethodOptions): GaxiosPromise<Schema$Execution>; create(params: Params$Resource$Projects$Locations$Workflows$Executions$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; create(params: Params$Resource$Projects$Locations$Workflows$Executions$Create, options: MethodOptions | BodyResponseCallback<Schema$Execution>, callback: BodyResponseCallback<Schema$Execution>): void; create(params: Params$Resource$Projects$Locations$Workflows$Executions$Create, callback: BodyResponseCallback<Schema$Execution>): void; create(callback: BodyResponseCallback<Schema$Execution>): void; /** * Returns an execution of the given name. * * @param params - Parameters for request * @param options - Optionally override request options, such as `url`, `method`, and `encoding`. * @param callback - Optional callback that handles the response. * @returns A promise if used with async/await, or void if used with a callback. */ get(params: Params$Resource$Projects$Locations$Workflows$Executions$Get, options: StreamMethodOptions): GaxiosPromise<Readable>; get(params?: Params$Resource$Projects$Locations$Workflows$Executions$Get, options?: MethodOptions): GaxiosPromise<Schema$Execution>; get(params: Params$Resource$Projects$Locations$Workflows$Executions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; get(params: Params$Resource$Projects$Locations$Workflows$Executions$Get, options: MethodOptions | BodyResponseCallback<Schema$Execution>, callback: BodyResponseCallback<Schema$Execution>): void; get(params: Params$Resource$Projects$Locations$Workflows$Executions$Get, callback: BodyResponseCallback<Schema$Execution>): void; get(callback: BodyResponseCallback<Schema$Execution>): void; /** * Returns a list of executions which belong to the workflow with the given name. The method returns executions of all workflow revisions. Returned executions are ordered by their start time (newest first). * * @param params - Parameters for request * @param options - Optionally override request options, such as `url`, `method`, and `encoding`. * @param callback - Optional callback that handles the response. * @returns A promise if used with async/await, or void if used with a callback. */ list(params: Params$Resource$Projects$Locations$Workflows$Executions$List, options: StreamMethodOptions): GaxiosPromise<Readable>; list(params?: Params$Resource$Projects$Locations$Workflows$Executions$List, options?: MethodOptions): GaxiosPromise<Schema$ListExecutionsResponse>; list(params: Params$Resource$Projects$Locations$Workflows$Executions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void; list(params: Params$Resource$Projects$Locations$Workflows$Executions$List, options: MethodOptions | BodyResponseCallback<Schema$ListExecutionsResponse>, callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void; list(params: Params$Resource$Projects$Locations$Workflows$Executions$List, callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void; list(callback: BodyResponseCallback<Schema$ListExecutionsResponse>): void; } export interface Params$Resource$Projects$Locations$Workflows$Executions$Cancel extends StandardParameters { /** * Required. Name of the execution to be cancelled. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\} */ name?: string; /** * Request body metadata */ requestBody?: Schema$CancelExecutionRequest; } export interface Params$Resource$Projects$Locations$Workflows$Executions$Create extends StandardParameters { /** * Required. Name of the workflow for which an execution should be created. Format: projects/{project\}/locations/{location\}/workflows/{workflow\} The latest revision of the workflow will be used. */ parent?: string; /** * Request body metadata */ requestBody?: Schema$Execution; } export interface Params$Resource$Projects$Locations$Workflows$Executions$Get extends StandardParameters { /** * Required. Name of the execution to be retrieved. Format: projects/{project\}/locations/{location\}/workflows/{workflow\}/executions/{execution\} */ name?: string; /** * Optional. A view defining which fields should be filled in the returned execution. The API will default to the FULL view. */ view?: string; } export interface Params$Resource$Projects$Locations$Workflows$Executions$List extends StandardParameters { /** * Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 10000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it. */ pageSize?: number; /** * A page token, received from a previous `ListExecutions` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListExecutions` must match the call that provided the page token. */ pageToken?: string; /** * Required. Name of the workflow for which the executions should be listed. Format: projects/{project\}/locations/{location\}/workflows/{workflow\} */ parent?: string; /** * Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view. */ view?: string; } export {}; }
Copyright ©2k19 -
Hexid
|
Tex7ure