interface AnalysisCreateInfo {
    active?: true;
    description?: string;
    file_name?: string;
    interval?: string;
    name: string;
    profile?: string;
    run_on?: "external" | "tago";
    runtime?: RunTypeOptions;
    tags?: TagsObj[];
    variables?: {
        key: string;
        value: string | number | boolean;
    };
}

Hierarchy (view full)

Properties

active?: true
description?: string
file_name?: string
interval?: string
name: string
profile?: string
run_on?: "external" | "tago"
runtime?: RunTypeOptions
tags?: TagsObj[]
variables?: {
    key: string;
    value: string | number | boolean;
}

Type declaration

  • key: string
  • value: string | number | boolean