cloudflare/cloudflare-typescript

Public

mirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dc2c35e0eaee6169f220ff4de53afa8ecffd409d

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

19lines · 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 * as ConfigsAPI from './configs/configs';
6
7export class BotnetFeed extends APIResource {
8 asn: ASNAPI.ASN = new ASNAPI.ASN(this._client);
9 configs: ConfigsAPI.Configs = new ConfigsAPI.Configs(this._client);
10}
11
12export namespace BotnetFeed {
13 export import ASN = ASNAPI.ASN;
14 export import ASNDayReportResponse = ASNAPI.ASNDayReportResponse;
15 export import ASNFullReportResponse = ASNAPI.ASNFullReportResponse;
16 export import ASNDayReportParams = ASNAPI.ASNDayReportParams;
17 export import ASNFullReportParams = ASNAPI.ASNFullReportParams;
18 export import Configs = ConfigsAPI.Configs;
19}
20