cloudflare
Version:
The official TypeScript library for the Cloudflare API
158 lines (121 loc) • 3.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';
import * as BulksAPI from './bulks';
import { BulkGetParams, BulkGetResponse, Bulks } from './bulks';
export class Domains extends APIResource {
bulks: BulksAPI.Bulks = new BulksAPI.Bulks(this._client);
/**
* Gets security details and statistics about a domain.
*/
get(params: DomainGetParams, options?: Core.RequestOptions): Core.APIPromise<Domain> {
const { account_id, ...query } = params;
return (
this._client.get(`/accounts/${account_id}/intel/domain`, { query, ...options }) as Core.APIPromise<{
result: Domain;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface Domain {
/**
* Additional information related to the host name.
*/
additional_information?: Domain.AdditionalInformation;
/**
* Application that the hostname belongs to.
*/
application?: Domain.Application;
content_categories?: Array<Domain.ContentCategory>;
domain?: string;
inherited_content_categories?: Array<Domain.InheritedContentCategory>;
/**
* Domain from which `inherited_content_categories` and `inherited_risk_types` are
* inherited, if applicable.
*/
inherited_from?: string;
inherited_risk_types?: Array<Domain.InheritedRiskType>;
/**
* Global Cloudflare 100k ranking for the last 30 days, if available for the
* hostname. The top ranked domain is 1, the lowest ranked domain is 100,000.
*/
popularity_rank?: number;
/**
* Specifies a list of references to one or more IP addresses or domain names that
* the domain name currently resolves to.
*/
resolves_to_refs?: Array<Domain.ResolvesToRef>;
/**
* Hostname risk score, which is a value between 0 (lowest risk) to 1 (highest
* risk).
*/
risk_score?: number;
risk_types?: Array<Domain.RiskType>;
}
export namespace Domain {
/**
* Additional information related to the host name.
*/
export interface AdditionalInformation {
/**
* Suspected DGA malware family.
*/
suspected_malware_family?: string;
}
/**
* Application that the hostname belongs to.
*/
export interface Application {
id?: number;
name?: string;
}
/**
* Current content categories.
*/
export interface ContentCategory {
id?: number;
name?: string;
super_category_id?: number;
}
export interface InheritedContentCategory {
id?: number;
name?: string;
super_category_id?: number;
}
export interface InheritedRiskType {
id?: number;
name?: string;
super_category_id?: number;
}
export interface ResolvesToRef {
/**
* STIX 2.1 identifier:
* https://docs.oasis-open.org/cti/stix/v2.1/cs02/stix-v2.1-cs02.html#_64yvzeku5a5c
*/
id?: string;
/**
* IP address or domain name.
*/
value?: string;
}
export interface RiskType {
id?: number;
name?: string;
super_category_id?: number;
}
}
export interface DomainGetParams {
/**
* Path param: Identifier
*/
account_id: string;
/**
* Query param:
*/
domain?: string;
}
Domains.Bulks = Bulks;
export declare namespace Domains {
export { type Domain as Domain, type DomainGetParams as DomainGetParams };
export { Bulks as Bulks, type BulkGetResponse as BulkGetResponse, type BulkGetParams as BulkGetParams };
}