cloudflare
Version:
The official TypeScript library for the Cloudflare API
74 lines (65 loc) • 2.11 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Core from '../../core';
import * as CustomCertificatesAPI from './custom-certificates';
import { CustomCertificatesSinglePage } from './custom-certificates';
export class Prioritize extends APIResource {
/**
* If a zone has multiple SSL certificates, you can set the order in which they
* should be used during a request. The higher priority will break ties across
* overlapping 'legacy_custom' certificates.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const customCertificate of client.customCertificates.prioritize.update(
* {
* zone_id: '023e105f4ecef8ad9ca31a8372d0c353',
* certificates: [{}, {}],
* },
* )) {
* // ...
* }
* ```
*/
update(
params: PrioritizeUpdateParams,
options?: Core.RequestOptions,
): Core.PagePromise<CustomCertificatesSinglePage, CustomCertificatesAPI.CustomCertificate> {
const { zone_id, ...body } = params;
return this._client.getAPIList(
`/zones/${zone_id}/custom_certificates/prioritize`,
CustomCertificatesSinglePage,
{ body, method: 'put', ...options },
);
}
}
export interface PrioritizeUpdateParams {
/**
* Path param: Identifier.
*/
zone_id: string;
/**
* Body param: Array of ordered certificates.
*/
certificates: Array<PrioritizeUpdateParams.Certificate>;
}
export namespace PrioritizeUpdateParams {
export interface Certificate {
/**
* Identifier.
*/
id?: string;
/**
* The order/priority in which the certificate will be used in a request. The
* higher priority will break ties across overlapping 'legacy_custom' certificates,
* but 'legacy_custom' certificates will always supercede 'sni_custom'
* certificates.
*/
priority?: number;
}
}
export declare namespace Prioritize {
export { type PrioritizeUpdateParams as PrioritizeUpdateParams };
}
export { CustomCertificatesSinglePage };