// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../../../resource'; import * as Core from '../../../../../core'; import * as EntriesAPI from './entries'; import { Entries, EntryCreateParams, EntryCreateResponse } from './entries'; import { SinglePage } from '../../../../../pagination'; export class Versions extends APIResource { entries: EntriesAPI.Entries = new EntriesAPI.Entries(this._client); /** * This is used for multi-column EDMv2 datasets. The EDMv2 format can only be * created in the Cloudflare dashboard. The columns in the response appear in the * same order as in the request. */ create( datasetId: string, version: number, params: VersionCreateParams, options?: Core.RequestOptions, ): Core.PagePromise { const { account_id, body } = params; return this._client.getAPIList( `/accounts/${account_id}/dlp/datasets/${datasetId}/versions/${version}`, VersionCreateResponsesSinglePage, { body: body, method: 'post', ...options }, ); } } export class VersionCreateResponsesSinglePage extends SinglePage {} export interface VersionCreateResponse { entry_id: string; header_name: string; num_cells: number; upload_status: 'empty' | 'uploading' | 'processing' | 'failed' | 'complete'; } export interface VersionCreateParams { /** * Path param: */ account_id: string; /** * Body param: */ body: Array; } export namespace VersionCreateParams { export interface ExistingColumn { entry_id: string; header_name?: string; num_cells?: number; } export interface NewColumn { entry_name: string; header_name?: string; num_cells?: number; } } Versions.VersionCreateResponsesSinglePage = VersionCreateResponsesSinglePage; Versions.Entries = Entries; export declare namespace Versions { export { type VersionCreateResponse as VersionCreateResponse, VersionCreateResponsesSinglePage as VersionCreateResponsesSinglePage, type VersionCreateParams as VersionCreateParams, }; export { Entries as Entries, type EntryCreateResponse as EntryCreateResponse, type EntryCreateParams as EntryCreateParams, }; }