/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { GetWorkspaceByIdResponse, GetWorkspacesResponse } from '../models/index'; export interface GetWorkspaceByIdRequest { organizationId: string; workspaceId: string; } export interface GetWorkspacesRequest { organizationId: string; limit?: number; nextToken?: string; } /** * */ export declare class WorkspacesApi extends runtime.BaseAPI { /** * Returns details of a specific workspace within the organization * Get a specific workspace by ID */ getWorkspaceByIdRaw(requestParameters: GetWorkspaceByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns details of a specific workspace within the organization * Get a specific workspace by ID */ getWorkspaceById(requestParameters: GetWorkspaceByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Returns all workspaces that belong to the specified organization with pagination support * Get all workspaces in an organization */ getWorkspacesRaw(requestParameters: GetWorkspacesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Returns all workspaces that belong to the specified organization with pagination support * Get all workspaces in an organization */ getWorkspaces(requestParameters: GetWorkspacesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }