class GroupServiceimport { GroupService } from "https://dotland.deno.dev/x/windmill@v1.415.1/windmill-api/services/GroupService.ts"; Static MethodsaddUserToGroup(unnamed 0: { workspace: string; name: string; requestBody: { username?: string; }; }): CancelablePromise<string>add user to group addUserToInstanceGroup(unnamed 0: { name: string; requestBody: { email: string; }; }): CancelablePromise<string>add user to instance group createGroup(unnamed 0: { workspace: string; requestBody: { name: string; summary?: string; }; }): CancelablePromise<string>create group createInstanceGroup(unnamed 0: { requestBody: { name: string; summary?: string; }; }): CancelablePromise<string>create instance group deleteGroup(unnamed 0: { workspace: string; name: string; }): CancelablePromise<string>delete group deleteInstanceGroup(unnamed 0: { name: string; }): CancelablePromise<string>delete instance group exportInstanceGroups(): CancelablePromise<Array<ExportedInstanceGroup>>export instance groups getGroup(unnamed 0: { workspace: string; name: string; }): CancelablePromise<Group>get group getInstanceGroup(unnamed 0: { name: string; }): CancelablePromise<InstanceGroup>get instance group listGroupNames(unnamed 0: { workspace: string; onlyMemberOf?: boolean; }): CancelablePromise<Array<string>>list group names listGroups(unnamed 0: { workspace: string; page?: number; perPage?: number; }): CancelablePromise<Array<Group>>list groups listInstanceGroups(): CancelablePromise<Array<InstanceGroup>>list instance groups overwriteInstanceGroups(unnamed 0: { requestBody: Array<ExportedInstanceGroup>; }): CancelablePromise<string>overwrite instance groups removeUserFromInstanceGroup(unnamed 0: { name: string; requestBody: { email: string; }; }): CancelablePromise<string>remove user from instance group removeUserToGroup(unnamed 0: { workspace: string; name: string; requestBody: { username?: string; }; }): CancelablePromise<string>remove user to group updateGroup(unnamed 0: { workspace: string; name: string; requestBody: { summary?: string; }; }): CancelablePromise<string>update group updateInstanceGroup(unnamed 0: { name: string; requestBody: { new_summary: string; }; }): CancelablePromise<string>update instance group