| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
- import { APIResource } from "../../../core/resource.mjs";
- import * as ContentAPI from "./content.mjs";
- import { Content } from "./content.mjs";
- import { CursorPage } from "../../../core/pagination.mjs";
- import { buildHeaders } from "../../../internal/headers.mjs";
- import { multipartFormRequestOptions } from "../../../internal/uploads.mjs";
- import { path } from "../../../internal/utils/path.mjs";
- export class Files extends APIResource {
- constructor() {
- super(...arguments);
- this.content = new ContentAPI.Content(this._client);
- }
- /**
- * Create a Container File
- *
- * You can send either a multipart/form-data request with the raw file content, or
- * a JSON request with a file ID.
- */
- create(containerID, body, options) {
- return this._client.post(path `/containers/${containerID}/files`, multipartFormRequestOptions({ body, ...options }, this._client));
- }
- /**
- * Retrieve Container File
- */
- retrieve(fileID, params, options) {
- const { container_id } = params;
- return this._client.get(path `/containers/${container_id}/files/${fileID}`, options);
- }
- /**
- * List Container files
- */
- list(containerID, query = {}, options) {
- return this._client.getAPIList(path `/containers/${containerID}/files`, (CursorPage), {
- query,
- ...options,
- });
- }
- /**
- * Delete Container File
- */
- delete(fileID, params, options) {
- const { container_id } = params;
- return this._client.delete(path `/containers/${container_id}/files/${fileID}`, {
- ...options,
- headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
- });
- }
- }
- Files.Content = Content;
- //# sourceMappingURL=files.mjs.map
|