cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
src/resources/acm/acm.ts
57lines · modecode
| 1 | // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. |
| 2 | |
| 3 | import { APIResource } from '../../resource'; |
| 4 | import * as CustomTrustStoreAPI from './custom-trust-store'; |
| 5 | import { |
| 6 | CustomTrustStore, |
| 7 | CustomTrustStoreCreateParams, |
| 8 | CustomTrustStoreDeleteParams, |
| 9 | CustomTrustStoreDeleteResponse, |
| 10 | CustomTrustStoreGetParams, |
| 11 | CustomTrustStoreListParams, |
| 12 | CustomTrustStoresV4PagePaginationArray, |
| 13 | } from './custom-trust-store'; |
| 14 | import * as TotalTLSAPI from './total-tls'; |
| 15 | import { |
| 16 | CertificateAuthority, |
| 17 | TotalTLS, |
| 18 | TotalTLSEditParams, |
| 19 | TotalTLSEditResponse, |
| 20 | TotalTLSGetParams, |
| 21 | TotalTLSGetResponse, |
| 22 | TotalTLSUpdateParams, |
| 23 | TotalTLSUpdateResponse, |
| 24 | } from './total-tls'; |
| 25 | |
| 26 | export class ACM extends APIResource { |
| 27 | totalTLS: TotalTLSAPI.TotalTLS = new TotalTLSAPI.TotalTLS(this._client); |
| 28 | customTrustStore: CustomTrustStoreAPI.CustomTrustStore = new CustomTrustStoreAPI.CustomTrustStore( |
| 29 | this._client, |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | ACM.TotalTLS = TotalTLS; |
| 34 | ACM.CustomTrustStoresV4PagePaginationArray = CustomTrustStoresV4PagePaginationArray; |
| 35 | |
| 36 | export declare namespace ACM { |
| 37 | export { |
| 38 | TotalTLS as TotalTLS, |
| 39 | type CertificateAuthority as CertificateAuthority, |
| 40 | type TotalTLSUpdateResponse as TotalTLSUpdateResponse, |
| 41 | type TotalTLSEditResponse as TotalTLSEditResponse, |
| 42 | type TotalTLSGetResponse as TotalTLSGetResponse, |
| 43 | type TotalTLSUpdateParams as TotalTLSUpdateParams, |
| 44 | type TotalTLSEditParams as TotalTLSEditParams, |
| 45 | type TotalTLSGetParams as TotalTLSGetParams, |
| 46 | }; |
| 47 | |
| 48 | export { |
| 49 | type CustomTrustStore as CustomTrustStore, |
| 50 | type CustomTrustStoreDeleteResponse as CustomTrustStoreDeleteResponse, |
| 51 | CustomTrustStoresV4PagePaginationArray as CustomTrustStoresV4PagePaginationArray, |
| 52 | type CustomTrustStoreCreateParams as CustomTrustStoreCreateParams, |
| 53 | type CustomTrustStoreListParams as CustomTrustStoreListParams, |
| 54 | type CustomTrustStoreDeleteParams as CustomTrustStoreDeleteParams, |
| 55 | type CustomTrustStoreGetParams as CustomTrustStoreGetParams, |
| 56 | }; |
| 57 | } |
| 58 | |