cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/acm/acm.ts
29lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. |
| 2 | |
| 3 | import { APIResource } from '../../resource'; |
| 4 | import * as TotalTLSAPI from './total-tls'; |
| 5 | import { |
| 6 | CertificateAuthority, |
| 7 | TotalTLS, |
| 8 | TotalTLSCreateParams, |
| 9 | TotalTLSCreateResponse, |
| 10 | TotalTLSGetParams, |
| 11 | TotalTLSGetResponse, |
| 12 | } from './total-tls'; |
| 13 | |
| 14 | export class ACM extends APIResource { |
| 15 | totalTLS: TotalTLSAPI.TotalTLS = new TotalTLSAPI.TotalTLS(this._client); |
| 16 | } |
| 17 | |
| 18 | ACM.TotalTLS = TotalTLS; |
| 19 | |
| 20 | export declare namespace ACM { |
| 21 | export { |
| 22 | TotalTLS as TotalTLS, |
| 23 | type CertificateAuthority as CertificateAuthority, |
| 24 | type TotalTLSCreateResponse as TotalTLSCreateResponse, |
| 25 | type TotalTLSGetResponse as TotalTLSGetResponse, |
| 26 | type TotalTLSCreateParams as TotalTLSCreateParams, |
| 27 | type TotalTLSGetParams as TotalTLSGetParams, |
| 28 | }; |
| 29 | } |
| 30 | |