Globus SDK for JavaScript
    Preparing search index...
    • Parameters

      • Optionaloptions: {
            query?: {
                filter_description?: string[];
                filter_fulltext?: string[];
                filter_keywords?: string[];
                filter_role?:
                    | "flow_owner"
                    | "flow_viewer"
                    | "flow_starter"
                    | "flow_administrator"
                    | "run_manager"
                    | "run_monitor";
                filter_roles?: (
                    | "flow_owner"
                    | "flow_viewers"
                    | "flow_starters"
                    | "flow_administrators"
                    | "run_managers"
                    | "run_monitors"
                )[];
                filter_scope_string?: string[];
                filter_subtitle?: string[];
                filter_title?: string[];
                marker?: string;
                orderby?: string[];
                page?: number;
                per_page?: number;
            };
        } & BaseServiceMethodOptions
      • OptionalsdkOptions: SDKOptions

      Returns Promise<
          JSONFetchResponse<
              {
                  flows?: {
                      api_version?: "1.0";
                      created_at?: string;
                      definition?: {
                          Comment?: string;
                          StartAt: string;
                          States: {
                              [key: string]: | (...) & (...) & (...) & (...) & (...)
                              | (...) & (...) & (...) & (...) & (...) & (...)
                              | {
                                  Comment?: ...;
                                  Next?: ...;
                                  Seconds?: ...;
                                  SecondsPath?: ...;
                                  Timestamp?: ...;
                                  TimestampPath?: ...;
                                  Type?: ...;
                              }
                              | { Choices: ...; Comment?: ...; Default?: ...; Type?: ... }
                              | (...) & (...) & (...)
                              | { Cause?: ...; Comment?: ...; Error?: ...; Type?: ... };
                          };
                      };
                      description?: string;
                      flow_administrators?: string[];
                      flow_owner?: string;
                      flow_starters?: string[];
                      flow_url?: string;
                      flow_viewers?: string[];
                      globus_auth_scope?: string;
                      globus_auth_scopes_by_RunAs?: string[];
                      globus_auth_username?: string;
                      id?: string;
                      input_schema?: Record<string, unknown>;
                      keywords?: string[];
                      log_supported?: boolean;
                      principal_urn?: string;
                      subscription_id?: string;
                      subtitle?: string;
                      synchronous?: boolean;
                      title?: string;
                      types?: ("Action" | "Event")[];
                      updated_at?: string;
                      user_role?:
                          | "flow_owner"
                          | "flow_viewer"
                          | "flow_starter"
                          | "flow_administrator";
                  }[];
                  has_next_page?: boolean;
                  limit?: number;
                  marker?: string;
              },
          >,
      >