diff --git a/packages/clients/src/api/account/v2/api.gen.ts b/packages/clients/src/api/account/v2/api.gen.ts index 42b712231..16c4f03a4 100644 --- a/packages/clients/src/api/account/v2/api.gen.ts +++ b/packages/clients/src/api/account/v2/api.gen.ts @@ -33,9 +33,11 @@ const jsonContentHeaders = { */ export class API extends ParentAPI { /** - * Create a new Project for an Organization. Generate a new Project for an - * Organization, specifying its configuration including name and description. + * Create a new Project for an Organization. Deprecated in favor of Account + * API v3. Generate a new Project for an Organization, specifying its + * configuration including name and description. * + * @deprecated * @param request - The request {@link CreateProjectRequest} * @returns A Promise of Project */ @@ -79,11 +81,13 @@ export class API extends ParentAPI { ) /** - * List all Projects of an Organization. List all Projects of an Organization. - * The response will include the total number of Projects as well as their - * associated Organizations, names and IDs. Other information include the - * creation and update date of the Project. + * List all Projects of an Organization. Deprecated in favor of Account API + * v3. List all Projects of an Organization. The response will include the + * total number of Projects as well as their associated Organizations, names + * and IDs. Other information include the creation and update date of the + * Project. * + * @deprecated * @param request - The request {@link ListProjectsRequest} * @returns A Promise of ListProjectsResponse */ @@ -91,10 +95,12 @@ export class API extends ParentAPI { enrichForPagination('projects', this.pageOfListProjects, request) /** - * Get an existing Project. Retrieve information about an existing Project, - * specified by its Project ID. Its full details, including ID, name and - * description, are returned in the response object. + * Get an existing Project. Deprecated in favor of Account API v3. Retrieve + * information about an existing Project, specified by its Project ID. Its + * full details, including ID, name and description, are returned in the + * response object. * + * @deprecated * @param request - The request {@link GetProjectRequest} * @returns A Promise of Project */ @@ -111,11 +117,13 @@ export class API extends ParentAPI { ) /** - * Delete an existing Project. Delete an existing Project, specified by its - * Project ID. The Project needs to be empty (meaning there are no resources - * left in it) to be deleted effectively. Note that deleting a Project is - * permanent, and cannot be undone. + * Delete an existing Project. Deprecated in favor of Account API v3. Delete + * an existing Project, specified by its Project ID. The Project needs to be + * empty (meaning there are no resources left in it) to be deleted + * effectively. Note that deleting a Project is permanent, and cannot be + * undone. * + * @deprecated * @param request - The request {@link DeleteProjectRequest} */ deleteProject = (request: Readonly = {}) => @@ -128,9 +136,11 @@ export class API extends ParentAPI { }) /** - * Update Project. Update the parameters of an existing Project, specified by - * its Project ID. These parameters include the name and description. + * Update Project. Deprecated in favor of Account API v3. Update the + * parameters of an existing Project, specified by its Project ID. These + * parameters include the name and description. * + * @deprecated * @param request - The request {@link UpdateProjectRequest} * @returns A Promise of Project */