cloudflare/cloudflare-typescript
Publicmirrored from https://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/acm/acm.ts
15lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. |
| 2 | |
| 3 | import { APIResource } from 'cloudflare/resource'; |
| 4 | import * as TotalTLSAPI from 'cloudflare/resources/acm/total-tls'; |
| 5 | |
| 6 | export class Acm extends APIResource { |
| 7 | totalTLS: TotalTLSAPI.TotalTLS = new TotalTLSAPI.TotalTLS(this._client); |
| 8 | } |
| 9 | |
| 10 | export namespace Acm { |
| 11 | export import TotalTLS = TotalTLSAPI.TotalTLS; |
| 12 | export import TotalTLSCreateResponse = TotalTLSAPI.TotalTLSCreateResponse; |
| 13 | export import TotalTLSGetResponse = TotalTLSAPI.TotalTLSGetResponse; |
| 14 | export import TotalTLSCreateParams = TotalTLSAPI.TotalTLSCreateParams; |
| 15 | } |
| 16 | |