import * as $dara from '@darabonba/typescript'; import { EnvironmentConfiguration } from "./EnvironmentConfiguration"; import { LoggingConfiguration } from "./LoggingConfiguration"; import { TracingConfiguration } from "./TracingConfiguration"; export declare class CreateFlowInput extends $dara.Model { /** * @remarks * The definition of the workflow in JSON or YAML format. * * @example * {} */ definition?: string; /** * @remarks * The description of the workflow, which explains the purpose and functionality of the workflow. * * @example * Customer service automation flow */ description?: string; /** * @remarks * Specifies whether to disable public network access for the workflow. This value serves as the default policy at the workflow level. If FlowEndpoint is not specified, this value is inherited. */ disablePublicNetworkAccess?: boolean; /** * @remarks * The environment variable configuration of the workflow, which contains a list of named variables. */ environmentConfiguration?: EnvironmentConfiguration; /** * @remarks * The Alibaba Cloud Resource Name (ARN) of the execution role that grants the workflow permissions to access cloud services. * * @example * acs:ram::123456789012:role/FlowExecutionRole */ executionRoleArn?: string; /** * @remarks * The external storage location of the workflow, such as an OSS path. * * @example * oss://bucket/path */ externalStorageLocation?: string; /** * @remarks * The unique name of the workflow, which is used to distinguish different workflow instances. * * This parameter is required. * * @example * my-flow */ flowName?: string; /** * @remarks * The logging configuration of the workflow. */ loggingConfiguration?: LoggingConfiguration; /** * @remarks * The ID of the resource group to which the workflow belongs. * * @example * rg-acfmxsn4m4a4b4a */ resourceGroupId?: string; /** * @remarks * The Tracing Analysis configuration of the workflow. */ tracingConfiguration?: TracingConfiguration; /** * @remarks * The ID of the workspace to which the workflow belongs. This parameter is used for resource isolation and permission management. * * @example * ws-1234567890abcdef */ workspaceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }