cloudflare
Version:
The official TypeScript library for the Cloudflare API
62 lines (50 loc) • 1.48 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 DomainHistoryResource extends APIResource {
/**
* Gets historical security threat and content categories currently and previously
* assigned to a domain.
*/
get(
params: DomainHistoryGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<DomainHistoryGetResponse | null> {
const { account_id, ...query } = params;
return (
this._client.get(`/accounts/${account_id}/intel/domain-history`, {
query,
...options,
}) as Core.APIPromise<{ result: DomainHistoryGetResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
}
export interface DomainHistory {
categorizations?: Array<DomainHistory.Categorization>;
domain?: string;
}
export namespace DomainHistory {
export interface Categorization {
categories?: Array<unknown>;
end?: string;
start?: string;
}
}
export type DomainHistoryGetResponse = Array<DomainHistory>;
export interface DomainHistoryGetParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Query param:
*/
domain?: string;
}
export declare namespace DomainHistoryResource {
export {
type DomainHistory as DomainHistory,
type DomainHistoryGetResponse as DomainHistoryGetResponse,
type DomainHistoryGetParams as DomainHistoryGetParams,
};
}