import { APIResource } from "../../core/resource.mjs"; import { PagePromise, SinglePage } from "../../core/pagination.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class BaseAssociations extends APIResource { static readonly _key: readonly ['mtlsCertificates', 'associations']; /** * Lists all active associations between the certificate and Cloudflare services. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const certificateAsssociation of client.mtlsCertificates.associations.get( * '023e105f4ecef8ad9ca31a8372d0c353', * { account_id: '023e105f4ecef8ad9ca31a8372d0c353' }, * )) { * // ... * } * ``` */ get(mtlsCertificateID: string, params: AssociationGetParams, options?: RequestOptions): PagePromise; } export declare class Associations extends BaseAssociations { } export type CertificateAsssociationsSinglePage = SinglePage; export interface CertificateAsssociation { /** * The service using the certificate. */ service?: string; /** * Certificate deployment status for the given service. */ status?: string; } export interface AssociationGetParams { /** * Identifier. */ account_id: string; } export declare namespace Associations { export { type CertificateAsssociation as CertificateAsssociation, type CertificateAsssociationsSinglePage as CertificateAsssociationsSinglePage, type AssociationGetParams as AssociationGetParams, }; } //# sourceMappingURL=associations.d.mts.map