cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
next

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/resources/acm/acm.ts

57lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import { APIResource } from '../../resource';
4import * as CustomTrustStoreAPI from './custom-trust-store';
5import {
6 CustomTrustStore,
7 CustomTrustStoreCreateParams,
8 CustomTrustStoreDeleteParams,
9 CustomTrustStoreDeleteResponse,
10 CustomTrustStoreGetParams,
11 CustomTrustStoreListParams,
12 CustomTrustStoresV4PagePaginationArray,
13} from './custom-trust-store';
14import * as TotalTLSAPI from './total-tls';
15import {
16 CertificateAuthority,
17 TotalTLS,
18 TotalTLSEditParams,
19 TotalTLSEditResponse,
20 TotalTLSGetParams,
21 TotalTLSGetResponse,
22 TotalTLSUpdateParams,
23 TotalTLSUpdateResponse,
24} from './total-tls';
25
26export 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
33ACM.TotalTLS = TotalTLS;
34ACM.CustomTrustStoresV4PagePaginationArray = CustomTrustStoresV4PagePaginationArray;
35
36export 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