Type alias RawScript

RawScript: {
    concurrency_time_window_s?: number;
    concurrent_limit?: number;
    content: string;
    custom_concurrency_key?: string;
    input_transforms: {
        [key: string]: InputTransform;
    };
    language: "deno" | "bun" | "python3" | "go" | "bash" | "powershell" | "postgresql" | "mysql" | "bigquery" | "snowflake" | "mssql" | "graphql" | "nativets" | "php";
    lock?: string;
    path?: string;
    tag?: string;
    type: "rawscript";
}

Type declaration

  • Optional concurrency_time_window_s?: number
  • Optional concurrent_limit?: number
  • content: string
  • Optional custom_concurrency_key?: string
  • input_transforms: {
        [key: string]: InputTransform;
    }
  • language: "deno" | "bun" | "python3" | "go" | "bash" | "powershell" | "postgresql" | "mysql" | "bigquery" | "snowflake" | "mssql" | "graphql" | "nativets" | "php"
  • Optional lock?: string
  • Optional path?: string
  • Optional tag?: string
  • type: "rawscript"