cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v5.2.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/resources/botnet-feed/botnet-feed.ts

33lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import { APIResource } from '../../resource';
4import * as ASNAPI from './asn';
5import {
6 ASN,
7 ASNDayReportParams,
8 ASNDayReportResponse,
9 ASNFullReportParams,
10 ASNFullReportResponse,
11} from './asn';
12import * as ConfigsAPI from './configs/configs';
13import { Configs } from './configs/configs';
14
15export class BotnetFeed extends APIResource {
16 asn: ASNAPI.ASN = new ASNAPI.ASN(this._client);
17 configs: ConfigsAPI.Configs = new ConfigsAPI.Configs(this._client);
18}
19
20BotnetFeed.ASN = ASN;
21BotnetFeed.Configs = Configs;
22
23export declare namespace BotnetFeed {
24 export {
25 ASN as ASN,
26 type ASNDayReportResponse as ASNDayReportResponse,
27 type ASNFullReportResponse as ASNFullReportResponse,
28 type ASNDayReportParams as ASNDayReportParams,
29 type ASNFullReportParams as ASNFullReportParams,
30 };
31
32 export { Configs as Configs };
33}
34