Globus SDK for JavaScript
    Preparing search index...
    • Fetch a stream-access-point by its UUID.

      Parameters

      • stream_access_point_uuid: string
      • Optionaloptions: { payload?: undefined; query?: undefined } & {
            headers?: Headers;
            query?: {
                [key: string]:
                    | string
                    | number
                    | boolean
                    | (string | number | null | undefined)[]
                    | null
                    | undefined;
            };
        }
      • OptionalsdkOptions: SDKOptions

      Returns Promise<
          JSONFetchResponse<
              {
                  data: {
                      attributes: {
                          advertised_owner?: string
                          | null;
                          contact_email?: string | null;
                          contact_info?: string | null;
                          department?: string | null;
                          description?: string | null;
                          display_name: string;
                          info_link?: string | null;
                          keywords?: string | null;
                          organization?: string | null;
                          tlsftp_server: string;
                      };
                      id?: string;
                      relationships: {
                          host_endpoint: {
                              data?: { id?: string | null; type: string }
                              | null;
                          };
                      };
                      type: "StreamAccessPoint";
                  };
                  meta: { request_id: string };
              },
          >,
      >