Globus SDK for JavaScript
    Preparing search index...
    next: {
        info: (
            configuration: GCSConfiguration,
            params?: { request?: { data?: undefined; query?: undefined } } & ServiceMethodPayload,
        ) => Promise<
            JSONFetchResponse<
                {
                    code?: "success";
                    data?: (
                        | {
                            DATA_TYPE: "connector#1.0.0";
                            display_name: string;
                            id: string;
                            version?: (...)
                            | (...);
                        }
                        | {
                            DATA_TYPE: "connector#1.1.0";
                            display_name: string;
                            id: string;
                            is_baa?: (...)
                            | (...)
                            | (...);
                            is_ha?: (...) | (...) | (...);
                            version?: (...) | (...);
                        }
                        | {
                            api_version?: (...)
                            | (...);
                            client_id?: (...) | (...);
                            DATA_TYPE: "info#1.0.0";
                            domain_name?: (...) | (...);
                            endpoint_id?: (...) | (...);
                            manager_version?: (...) | (...);
                        }
                    )[];
                } & (
                    | {
                        code: string;
                        data?: Record<string, unknown>[];
                        DATA_TYPE: "result#1.0.0";
                        detail?: unknown;
                        has_next_page: boolean;
                        http_response_code: number;
                        marker?: string | null;
                        message?: string;
                    }
                    | {
                        authorization_parameters?: { [key: string]: unknown }
                        | null;
                        code: string;
                        data?: Record<string, unknown>[];
                        DATA_TYPE: "result#1.1.0";
                        detail?: unknown;
                        has_next_page: boolean;
                        http_response_code: number;
                        marker?: string | null;
                        message?: string;
                    }
                ),
            >,
        >;
    } = ...

    Type Declaration

    • info: (
          configuration: GCSConfiguration,
          params?: { request?: { data?: undefined; query?: undefined } } & ServiceMethodPayload,
      ) => Promise<
          JSONFetchResponse<
              {
                  code?: "success";
                  data?: (
                      | {
                          DATA_TYPE: "connector#1.0.0";
                          display_name: string;
                          id: string;
                          version?: (...)
                          | (...);
                      }
                      | {
                          DATA_TYPE: "connector#1.1.0";
                          display_name: string;
                          id: string;
                          is_baa?: (...)
                          | (...)
                          | (...);
                          is_ha?: (...) | (...) | (...);
                          version?: (...) | (...);
                      }
                      | {
                          api_version?: (...)
                          | (...);
                          client_id?: (...) | (...);
                          DATA_TYPE: "info#1.0.0";
                          domain_name?: (...) | (...);
                          endpoint_id?: (...) | (...);
                          manager_version?: (...) | (...);
                      }
                  )[];
              } & (
                  | {
                      code: string;
                      data?: Record<string, unknown>[];
                      DATA_TYPE: "result#1.0.0";
                      detail?: unknown;
                      has_next_page: boolean;
                      http_response_code: number;
                      marker?: string | null;
                      message?: string;
                  }
                  | {
                      authorization_parameters?: { [key: string]: unknown }
                      | null;
                      code: string;
                      data?: Record<string, unknown>[];
                      DATA_TYPE: "result#1.1.0";
                      detail?: unknown;
                      has_next_page: boolean;
                      http_response_code: number;
                      marker?: string | null;
                      message?: string;
                  }
              ),
          >,
      >