import * as pulumi from "@pulumi/pulumi"; /** * Provides a Cloudflare device policy certificates resource. Device policy certificate resources enable client device certificate generation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const example = new cloudflare.DevicePolicyCertificates("example", { * enabled: true, * zoneId: "1d5fdc9e88c8a8c4518b068cd94331fe", * }); * ``` * * ## Import * * Device policy certificate settings can be imported using the zone ID. * * ```sh * $ pulumi import cloudflare:index/devicePolicyCertificates:DevicePolicyCertificates example cb029e245cfdd66dc8d2e570d5dd3322 * ``` */ export declare class DevicePolicyCertificates extends pulumi.CustomResource { /** * Get an existing DevicePolicyCertificates resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DevicePolicyCertificatesState, opts?: pulumi.CustomResourceOptions): DevicePolicyCertificates; /** * Returns true if the given object is an instance of DevicePolicyCertificates. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DevicePolicyCertificates; /** * True if certificate generation is enabled. */ readonly enabled: pulumi.Output; /** * The zone ID where certificate generation is allowed. */ readonly zoneId: pulumi.Output; /** * Create a DevicePolicyCertificates resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DevicePolicyCertificatesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DevicePolicyCertificates resources. */ export interface DevicePolicyCertificatesState { /** * True if certificate generation is enabled. */ enabled?: pulumi.Input; /** * The zone ID where certificate generation is allowed. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a DevicePolicyCertificates resource. */ export interface DevicePolicyCertificatesArgs { /** * True if certificate generation is enabled. */ enabled: pulumi.Input; /** * The zone ID where certificate generation is allowed. */ zoneId: pulumi.Input; }