openai
Version:
The official TypeScript library for the OpenAI API
104 lines • 3.75 kB
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../../../../../core/resource.mjs";
import * as APIKeysAPI from "./api-keys.mjs";
import { APIKeys } from "./api-keys.mjs";
import { ConversationCursorPage, } from "../../../../../core/pagination.mjs";
import { path } from "../../../../../internal/utils/path.mjs";
export class ServiceAccounts extends APIResource {
constructor() {
super(...arguments);
this.apiKeys = new APIKeysAPI.APIKeys(this._client);
}
/**
* Creates a new service account in the project. By default, this also returns an
* unredacted API key for the service account.
*
* @example
* ```ts
* const serviceAccount =
* await client.admin.organization.projects.serviceAccounts.create(
* 'project_id',
* { name: 'name' },
* );
* ```
*/
create(projectID, body, options) {
return this._client.post(path `/organization/projects/${projectID}/service_accounts`, {
body,
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Retrieves a service account in the project.
*
* @example
* ```ts
* const projectServiceAccount =
* await client.admin.organization.projects.serviceAccounts.retrieve(
* 'service_account_id',
* { project_id: 'project_id' },
* );
* ```
*/
retrieve(serviceAccountID, params, options) {
const { project_id } = params;
return this._client.get(path `/organization/projects/${project_id}/service_accounts/${serviceAccountID}`, {
...options,
__security: { adminAPIKeyAuth: true },
});
}
/**
* Updates a service account in the project.
*
* @example
* ```ts
* const projectServiceAccount =
* await client.admin.organization.projects.serviceAccounts.update(
* 'service_account_id',
* { project_id: 'project_id' },
* );
* ```
*/
update(serviceAccountID, params, options) {
const { project_id, ...body } = params;
return this._client.post(path `/organization/projects/${project_id}/service_accounts/${serviceAccountID}`, { body, ...options, __security: { adminAPIKeyAuth: true } });
}
/**
* Returns a list of service accounts in the project.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const projectServiceAccount of client.admin.organization.projects.serviceAccounts.list(
* 'project_id',
* )) {
* // ...
* }
* ```
*/
list(projectID, query = {}, options) {
return this._client.getAPIList(path `/organization/projects/${projectID}/service_accounts`, (ConversationCursorPage), { query, ...options, __security: { adminAPIKeyAuth: true } });
}
/**
* Deletes a service account from the project.
*
* Returns confirmation of service account deletion, or an error if the project is
* archived (archived projects have no service accounts).
*
* @example
* ```ts
* const serviceAccount =
* await client.admin.organization.projects.serviceAccounts.delete(
* 'service_account_id',
* { project_id: 'project_id' },
* );
* ```
*/
delete(serviceAccountID, params, options) {
const { project_id } = params;
return this._client.delete(path `/organization/projects/${project_id}/service_accounts/${serviceAccountID}`, { ...options, __security: { adminAPIKeyAuth: true } });
}
}
ServiceAccounts.APIKeys = APIKeys;
//# sourceMappingURL=service-accounts.mjs.map