Globus SDK for JavaScript
    Preparing search index...
    • Create a new tunnel.

      Parameters

      • options: {
            payload: {
                data: {
                    attributes: {
                        label?: string | null;
                        lifetime_mins: number;
                        listener_ip_address?: string | null;
                        listener_port?: number | null;
                        restartable: boolean;
                        submission_id: string;
                    };
                    relationships: {
                        initiator: {
                            data?: { id?: string; type: "StreamAccessPoint" }
                            | null;
                        };
                        listener: { data?: { id?: string; type: "StreamAccessPoint" }
                        | null };
                    };
                    type: "Tunnel";
                };
            };
            query?: undefined;
        } & BaseServiceMethodOptions
      • OptionalsdkOptions: SDKOptions

      Returns Promise<
          JSONFetchResponse<
              {
                  data: {
                      attributes: {
                          created_time?: string
                          | null;
                          initiator_ip_address?: string | null;
                          initiator_port?: number | null;
                          label?: string | null;
                          lifetime_mins: number;
                          listener_ip_address?: string | null;
                          listener_port?: number | null;
                          restartable: boolean;
                          state: string;
                          status: string;
                          submission_id: string;
                      };
                      id?: string;
                      relationships?: {
                          initiator: {
                              data?: { id?: string; type: "StreamAccessPoint" }
                              | null;
                          };
                          listener: { data?: { id?: string; type: "StreamAccessPoint" }
                          | null };
                          owner?:
                              | { data?: { id?: (...) | (...) | (...); type: string }
                              | null }
                              | null;
                      };
                      type: "Tunnel";
                  };
                  meta: { request_id: string };
              },
          >,
      >