Globus SDK for JavaScript
    Preparing search index...
    • Update the policies for the group.

      Parameters

      • group_id: string
      • options:
            | undefined
            | {
                payload: {
                    authentication_assurance_timeout?: null
                    | number;
                    group_members_visibility?: null | "members" | "managers";
                    group_visibility?: null | "authenticated" | "private";
                    is_high_assurance?: null | boolean;
                    join_requests?: null | boolean;
                    signup_fields?:
                        | null
                        | (
                            | "state"
                            | "department"
                            | "institution"
                            | "current_project_name"
                            | "address"
                            | "city"
                            | "country"
                            | "address1"
                            | "address2"
                            | "zip"
                            | "phone"
                            | "field_of_science"
                        )[];
                };
                query?: undefined;
            } & {
                headers?: Headers;
                query?: {
                    [key: string]: | undefined
                    | null
                    | string
                    | number
                    | boolean
                    | (undefined | null | string | number)[];
                };
            }
      • OptionalsdkOptions: SDKOptions

      Returns Promise<
          JSONFetchResponse<
              {
                  authentication_assurance_timeout?: null
                  | number;
                  group_members_visibility: "members" | "managers";
                  group_visibility: "authenticated" | "private";
                  is_high_assurance: boolean;
                  join_requests?: boolean;
                  signup_fields: (
                      | "state"
                      | "department"
                      | "institution"
                      | "current_project_name"
                      | "address"
                      | "city"
                      | "country"
                      | "address1"
                      | "address2"
                      | "zip"
                      | "phone"
                      | "field_of_science"
                  )[];
              },
          >,
      >