import * as $dara from '@darabonba/typescript'; import { FlowEndpointRoutingConfig } from "./FlowEndpointRoutingConfig"; export declare class CreateFlowEndpointInput extends $dara.Model { /** * @remarks * The description of the flow endpoint. * * @example * Production endpoint for flow */ description?: string; /** * @remarks * Whether to disable public network access for the endpoint. If unspecified, the endpoint inherits this setting from its parent workflow. */ disablePublicNetworkAccess?: boolean; /** * @remarks * The unique name of the flow endpoint. * * This parameter is required. * * @example * my-flow-endpoint */ flowEndpointName?: string; /** * @remarks * The routing configuration that defines traffic distribution across different flow versions. * * @example * [] */ routingConfiguration?: FlowEndpointRoutingConfig[]; /** * @remarks * The target version for the flow endpoint. * * @example * 1 */ targetVersion?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }