import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class ServiceGroups extends ClientSDK { /** * List all service groups * * @remarks * Returns a list of service group objects. */ list(request: operations.ListServiceGroupsRequest, options?: RequestOptions): Promise>; /** * Create a new service group * * @remarks * Creates a new service group. */ create(request: components.ServiceGroupCreateRequest, options?: RequestOptions): Promise; /** * Update an existing service group * * @remarks * Updates an existing service group object.
The object_id cannot be updated as it is the unique identifier for the object. */ update(request?: components.ServiceGroupUpdateRequest | undefined, options?: RequestOptions): Promise; /** * Delete a service group * * @remarks * Deletes an existing service group using an object ID. */ delete(serviceGroupId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=servicegroups.d.ts.map