import { APIResource } from "../../../../resource.js"; import * as Core from "../../../../core.js"; import * as SettingsAPI from "./settings.js"; import { CertificateSettings, CertificateSettingsSinglePage, SettingGetParams, SettingUpdateParams, Settings } from "./settings.js"; import { V4PagePaginationArray, type V4PagePaginationArrayParams } from "../../../../pagination.js"; export declare class Certificates extends APIResource { settings: SettingsAPI.Settings; /** * Adds a new mTLS root certificate to Access. * * @example * ```ts * const certificate = * await client.zeroTrust.access.certificates.create({ * certificate: * '-----BEGIN CERTIFICATE-----\nMIIGAjCCA+qgAwIBAgIJAI7kymlF7CWT...N4RI7KKB7nikiuUf8vhULKy5IX10\nDrUtmu/B\n-----END CERTIFICATE-----', * name: 'Allow devs', * account_id: 'account_id', * }); * ``` */ create(params: CertificateCreateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Updates a configured mTLS certificate. * * @example * ```ts * const certificate = * await client.zeroTrust.access.certificates.update( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { * associated_hostnames: ['admin.example.com'], * account_id: 'account_id', * }, * ); * ``` */ update(certificateId: string, params: CertificateUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Lists all mTLS root certificates. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const certificate of client.zeroTrust.access.certificates.list( * { account_id: 'account_id' }, * )) { * // ... * } * ``` */ list(params?: CertificateListParams, options?: Core.RequestOptions): Core.PagePromise; list(options?: Core.RequestOptions): Core.PagePromise; /** * Deletes an mTLS certificate. * * @example * ```ts * const certificate = * await client.zeroTrust.access.certificates.delete( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { account_id: 'account_id' }, * ); * ``` */ delete(certificateId: string, params?: CertificateDeleteParams, options?: Core.RequestOptions): Core.APIPromise; delete(certificateId: string, options?: Core.RequestOptions): Core.APIPromise; /** * Fetches a single mTLS certificate. * * @example * ```ts * const certificate = * await client.zeroTrust.access.certificates.get( * 'f174e90a-fafe-4643-bbbc-4a0ed4fc8415', * { account_id: 'account_id' }, * ); * ``` */ get(certificateId: string, params?: CertificateGetParams, options?: Core.RequestOptions): Core.APIPromise; get(certificateId: string, options?: Core.RequestOptions): Core.APIPromise; } export declare class CertificatesV4PagePaginationArray extends V4PagePaginationArray { } /** * A fully-qualified domain name (FQDN). */ export type AssociatedHostnames = string; /** * A fully-qualified domain name (FQDN). */ export type AssociatedHostnamesParam = string; export interface Certificate { /** * The ID of the application that will use this certificate. */ id?: string; /** * The hostnames of the applications that will use this certificate. */ associated_hostnames?: Array; expires_on?: string; /** * The MD5 fingerprint of the certificate. */ fingerprint?: string; /** * The name of the certificate. */ name?: string; } export interface CertificateDeleteResponse { /** * UUID. */ id?: string; } export interface CertificateCreateParams { /** * Body param: The certificate content. */ certificate: string; /** * Body param: The name of the certificate. */ name: string; /** * Path param: The Account ID to use for this endpoint. Mutually exclusive with the * Zone ID. */ account_id?: string; /** * Path param: The Zone ID to use for this endpoint. Mutually exclusive with the * Account ID. */ zone_id?: string; /** * Body param: The hostnames of the applications that will use this certificate. */ associated_hostnames?: Array; } export interface CertificateUpdateParams { /** * Body param: The hostnames of the applications that will use this certificate. */ associated_hostnames: Array; /** * Path param: The Account ID to use for this endpoint. Mutually exclusive with the * Zone ID. */ account_id?: string; /** * Path param: The Zone ID to use for this endpoint. Mutually exclusive with the * Account ID. */ zone_id?: string; /** * Body param: The name of the certificate. */ name?: string; } export interface CertificateListParams extends V4PagePaginationArrayParams { /** * Path param: The Account ID to use for this endpoint. Mutually exclusive with the * Zone ID. */ account_id?: string; /** * Path param: The Zone ID to use for this endpoint. Mutually exclusive with the * Account ID. */ zone_id?: string; } export interface CertificateDeleteParams { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ account_id?: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zone_id?: string; } export interface CertificateGetParams { /** * The Account ID to use for this endpoint. Mutually exclusive with the Zone ID. */ account_id?: string; /** * The Zone ID to use for this endpoint. Mutually exclusive with the Account ID. */ zone_id?: string; } export declare namespace Certificates { export { type AssociatedHostnames as AssociatedHostnames, type Certificate as Certificate, type CertificateDeleteResponse as CertificateDeleteResponse, CertificatesV4PagePaginationArray as CertificatesV4PagePaginationArray, type CertificateCreateParams as CertificateCreateParams, type CertificateUpdateParams as CertificateUpdateParams, type CertificateListParams as CertificateListParams, type CertificateDeleteParams as CertificateDeleteParams, type CertificateGetParams as CertificateGetParams, }; export { Settings as Settings, type CertificateSettings as CertificateSettings, CertificateSettingsSinglePage as CertificateSettingsSinglePage, type SettingUpdateParams as SettingUpdateParams, type SettingGetParams as SettingGetParams, }; } //# sourceMappingURL=certificates.d.ts.map