cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/botnet-feed/botnet-feed.ts
33lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. |
| 2 | |
| 3 | import { APIResource } from '../../resource'; |
| 4 | import * as ASNAPI from './asn'; |
| 5 | import { |
| 6 | ASN, |
| 7 | ASNDayReportParams, |
| 8 | ASNDayReportResponse, |
| 9 | ASNFullReportParams, |
| 10 | ASNFullReportResponse, |
| 11 | } from './asn'; |
| 12 | import * as ConfigsAPI from './configs/configs'; |
| 13 | import { Configs } from './configs/configs'; |
| 14 | |
| 15 | export class BotnetFeed extends APIResource { |
| 16 | asn: ASNAPI.ASN = new ASNAPI.ASN(this._client); |
| 17 | configs: ConfigsAPI.Configs = new ConfigsAPI.Configs(this._client); |
| 18 | } |
| 19 | |
| 20 | BotnetFeed.ASN = ASN; |
| 21 | BotnetFeed.Configs = Configs; |
| 22 | |
| 23 | export 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 | |