cloudflare/cloudflare-typescript
Publicmirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/botnet-feed/botnet-feed.ts
19lines · 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 * as ConfigsAPI from './configs/configs'; |
| 6 | |
| 7 | export class BotnetFeed extends APIResource { |
| 8 | asn: ASNAPI.ASN = new ASNAPI.ASN(this._client); |
| 9 | configs: ConfigsAPI.Configs = new ConfigsAPI.Configs(this._client); |
| 10 | } |
| 11 | |
| 12 | export 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 | |