import * as pulumi from "@pulumi/pulumi"; /** * Provides a Cloudflare Zone DNSSEC resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as pulumi_cloudflare from "@mapped/pulumi-cloudflare"; * * const exampleZone = new cloudflare.Zone("exampleZone", {zone: "example.com"}); * const exampleZoneDnssec = new cloudflare.ZoneDnssec("exampleZoneDnssec", {zoneId: exampleZone.id}); * ``` * * ## Import * * Zone DNSSEC resource can be imported using a zone ID, e.g. * * ```sh * $ pulumi import cloudflare:index/zoneDnssec:ZoneDnssec example d41d8cd98f00b204e9800998ecf8427e * ``` * * where* `d41d8cd98f00b204e9800998ecf8427e` - zone ID, as returned from [API](https://api.cloudflare.com/#zone-list-zones) */ export declare class ZoneDnssec extends pulumi.CustomResource { /** * Get an existing ZoneDnssec 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?: ZoneDnssecState, opts?: pulumi.CustomResourceOptions): ZoneDnssec; /** * Returns true if the given object is an instance of ZoneDnssec. 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 ZoneDnssec; /** * Zone DNSSEC algorithm. */ readonly algorithm: pulumi.Output; /** * Zone DNSSEC digest. */ readonly digest: pulumi.Output; /** * Digest algorithm use for Zone DNSSEC. */ readonly digestAlgorithm: pulumi.Output; /** * Digest Type for Zone DNSSEC. */ readonly digestType: pulumi.Output; /** * DS for the Zone DNSSEC. */ readonly ds: pulumi.Output; /** * Zone DNSSEC flags. */ readonly flags: pulumi.Output; /** * Key Tag for the Zone DNSSEC. */ readonly keyTag: pulumi.Output; /** * Key type used for Zone DNSSEC. */ readonly keyType: pulumi.Output; /** * Zone DNSSEC updated time. */ readonly modifiedOn: pulumi.Output; /** * Public Key for the Zone DNSSEC. */ readonly publicKey: pulumi.Output; /** * The status of the Zone DNSSEC. */ readonly status: pulumi.Output; /** * The zone id for the zone. */ readonly zoneId: pulumi.Output; /** * Create a ZoneDnssec 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: ZoneDnssecArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZoneDnssec resources. */ export interface ZoneDnssecState { /** * Zone DNSSEC algorithm. */ algorithm?: pulumi.Input; /** * Zone DNSSEC digest. */ digest?: pulumi.Input; /** * Digest algorithm use for Zone DNSSEC. */ digestAlgorithm?: pulumi.Input; /** * Digest Type for Zone DNSSEC. */ digestType?: pulumi.Input; /** * DS for the Zone DNSSEC. */ ds?: pulumi.Input; /** * Zone DNSSEC flags. */ flags?: pulumi.Input; /** * Key Tag for the Zone DNSSEC. */ keyTag?: pulumi.Input; /** * Key type used for Zone DNSSEC. */ keyType?: pulumi.Input; /** * Zone DNSSEC updated time. */ modifiedOn?: pulumi.Input; /** * Public Key for the Zone DNSSEC. */ publicKey?: pulumi.Input; /** * The status of the Zone DNSSEC. */ status?: pulumi.Input; /** * The zone id for the zone. */ zoneId?: pulumi.Input; } /** * The set of arguments for constructing a ZoneDnssec resource. */ export interface ZoneDnssecArgs { /** * Zone DNSSEC updated time. */ modifiedOn?: pulumi.Input; /** * The zone id for the zone. */ zoneId: pulumi.Input; }