cloudflare
Version:
The official TypeScript library for the Cloudflare API
60 lines (51 loc) • 1.33 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../resource';
import * as Core from '../../../core';
export class Snapshots extends APIResource {
/**
* Update indicator feed data
*/
update(
feedId: number,
params: SnapshotUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<SnapshotUpdateResponse> {
const { account_id, ...body } = params;
return (
this._client.put(
`/accounts/${account_id}/intel/indicator-feeds/${feedId}/snapshot`,
Core.multipartFormRequestOptions({ body, ...options }),
) as Core.APIPromise<{ result: SnapshotUpdateResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export interface SnapshotUpdateResponse {
/**
* Feed id
*/
file_id?: number;
/**
* Name of the file unified in our system
*/
filename?: string;
/**
* Current status of upload, should be unified
*/
status?: string;
}
export interface SnapshotUpdateParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Body param: The file to upload
*/
source?: string;
}
export declare namespace Snapshots {
export {
type SnapshotUpdateResponse as SnapshotUpdateResponse,
type SnapshotUpdateParams as SnapshotUpdateParams,
};
}