cloudflare/cloudflare-typescript

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v4.0.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/resources/acm/acm.ts

29lines · modecode

1// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
3import { APIResource } from '../../resource';
4import * as TotalTLSAPI from './total-tls';
5import {
6 CertificateAuthority,
7 TotalTLS,
8 TotalTLSCreateParams,
9 TotalTLSCreateResponse,
10 TotalTLSGetParams,
11 TotalTLSGetResponse,
12} from './total-tls';
13
14export class ACM extends APIResource {
15 totalTLS: TotalTLSAPI.TotalTLS = new TotalTLSAPI.TotalTLS(this._client);
16}
17
18ACM.TotalTLS = TotalTLS;
19
20export 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