cloudflare
Version:
The official TypeScript library for the Cloudflare API
25 lines • 901 B
TypeScript
import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as ASNAPI from 'cloudflare/resources/intel/asn/asn';
import * as Shared from 'cloudflare/resources/shared';
import * as SubnetsAPI from 'cloudflare/resources/intel/asn/subnets';
export declare class ASN extends APIResource {
subnets: SubnetsAPI.Subnets;
/**
* Get ASN Overview
*/
get(asn: Shared.ASN, params: ASNGetParams, options?: Core.RequestOptions): Core.APIPromise<Shared.ASN>;
}
export interface ASNGetParams {
/**
* Identifier
*/
account_id: string;
}
export declare namespace ASN {
export import ASNGetParams = ASNAPI.ASNGetParams;
export import Subnets = SubnetsAPI.Subnets;
export import SubnetGetResponse = SubnetsAPI.SubnetGetResponse;
export import SubnetGetParams = SubnetsAPI.SubnetGetParams;
}
//# sourceMappingURL=asn.d.ts.map