// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as AnalyzeAPI from 'cloudflare/resources/ssl/analyze'; export class Analyze extends APIResource { /** * Returns the set of hostnames, the signature algorithm, and the expiration date * of the certificate. */ create(params: AnalyzeCreateParams, options?: Core.RequestOptions): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.post(`/zones/${zone_id}/ssl/analyze`, { body, ...options }) as Core.APIPromise<{ result: AnalyzeCreateResponse; }> )._thenUnwrap((obj) => obj.result); } } export type AnalyzeCreateResponse = unknown | string; export interface AnalyzeCreateParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: A ubiquitous bundle has the highest probability of being verified * everywhere, even by clients using outdated or unusual trust stores. An optimal * bundle uses the shortest chain and newest intermediates. And the force bundle * verifies the chain, but does not otherwise modify it. */ bundle_method?: 'ubiquitous' | 'optimal' | 'force'; /** * Body param: The zone's SSL certificate or certificate and the intermediate(s). */ certificate?: string; } export namespace Analyze { export import AnalyzeCreateResponse = AnalyzeAPI.AnalyzeCreateResponse; export import AnalyzeCreateParams = AnalyzeAPI.AnalyzeCreateParams; }