import * as pulumi from "@pulumi/pulumi"; export declare class DnsRecord extends pulumi.CustomResource { /** * Get an existing DnsRecord 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?: DnsRecordState, opts?: pulumi.CustomResourceOptions): DnsRecord; /** * Returns true if the given object is an instance of DnsRecord. 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 DnsRecord; /** * Indicates whether the DNS record should utilize bunny.net’s acceleration services. */ readonly accelerated: pulumi.Output; /** * The ID of the accelerated pull zone. */ readonly acceleratedPullzone: pulumi.Output; /** * This property allows users to add descriptive notes for documentation and management purposes. */ readonly comment: pulumi.Output; /** * The unique identifier for the DNS record. */ readonly dnsRecordId: pulumi.Output; /** * Indicates whether the DNS record is enabled. */ readonly enabled: pulumi.Output; /** * Flags for advanced DNS settings. */ readonly flags: pulumi.Output; /** * The latitude for geolocation-based routing. */ readonly geolocationLat: pulumi.Output; /** * The longitude for geolocation-based routing. */ readonly geolocationLong: pulumi.Output; /** * The latency zone for latency-based routing. */ readonly latencyZone: pulumi.Output; /** * The name of the linked resource. */ readonly linkName: pulumi.Output; /** * Options: `Http`, `Monitor`, `None`, `Ping` */ readonly monitorType: pulumi.Output; /** * The name of the DNS record. Use name = "" for apex domain records. */ readonly name: pulumi.Output; /** * The port number for services that require a specific port. */ readonly port: pulumi.Output; /** * The priority of the DNS record. */ readonly priority: pulumi.Output; /** * The ID of the linked pullzone. */ readonly pullzoneId: pulumi.Output; /** * Options: `Geolocation`, `Latency`, `None` */ readonly smartRoutingType: pulumi.Output; /** * A tag for the DNS record. */ readonly tag: pulumi.Output; /** * The time-to-live value for the DNS record. */ readonly ttl: pulumi.Output; /** * Options: `A`, `AAAA`, `CAA`, `CNAME`, `Flatten`, `HTTPS`, `MX`, `NS`, `PTR`, `PullZone`, `Redirect`, `SRV`, `SVCB`, `Script`, `TLSA`, `TXT` */ readonly type: pulumi.Output; /** * The value of the DNS record. */ readonly value: pulumi.Output; /** * The weight of the DNS record. It is used in load balancing scenarios to distribute traffic based on the specified weight. */ readonly weight: pulumi.Output; /** * ID of the related DNS zone. */ readonly zone: pulumi.Output; /** * Create a DnsRecord 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: DnsRecordArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DnsRecord resources. */ export interface DnsRecordState { /** * Indicates whether the DNS record should utilize bunny.net’s acceleration services. */ accelerated?: pulumi.Input; /** * The ID of the accelerated pull zone. */ acceleratedPullzone?: pulumi.Input; /** * This property allows users to add descriptive notes for documentation and management purposes. */ comment?: pulumi.Input; /** * The unique identifier for the DNS record. */ dnsRecordId?: pulumi.Input; /** * Indicates whether the DNS record is enabled. */ enabled?: pulumi.Input; /** * Flags for advanced DNS settings. */ flags?: pulumi.Input; /** * The latitude for geolocation-based routing. */ geolocationLat?: pulumi.Input; /** * The longitude for geolocation-based routing. */ geolocationLong?: pulumi.Input; /** * The latency zone for latency-based routing. */ latencyZone?: pulumi.Input; /** * The name of the linked resource. */ linkName?: pulumi.Input; /** * Options: `Http`, `Monitor`, `None`, `Ping` */ monitorType?: pulumi.Input; /** * The name of the DNS record. Use name = "" for apex domain records. */ name?: pulumi.Input; /** * The port number for services that require a specific port. */ port?: pulumi.Input; /** * The priority of the DNS record. */ priority?: pulumi.Input; /** * The ID of the linked pullzone. */ pullzoneId?: pulumi.Input; /** * Options: `Geolocation`, `Latency`, `None` */ smartRoutingType?: pulumi.Input; /** * A tag for the DNS record. */ tag?: pulumi.Input; /** * The time-to-live value for the DNS record. */ ttl?: pulumi.Input; /** * Options: `A`, `AAAA`, `CAA`, `CNAME`, `Flatten`, `HTTPS`, `MX`, `NS`, `PTR`, `PullZone`, `Redirect`, `SRV`, `SVCB`, `Script`, `TLSA`, `TXT` */ type?: pulumi.Input; /** * The value of the DNS record. */ value?: pulumi.Input; /** * The weight of the DNS record. It is used in load balancing scenarios to distribute traffic based on the specified weight. */ weight?: pulumi.Input; /** * ID of the related DNS zone. */ zone?: pulumi.Input; } /** * The set of arguments for constructing a DnsRecord resource. */ export interface DnsRecordArgs { /** * Indicates whether the DNS record should utilize bunny.net’s acceleration services. */ accelerated?: pulumi.Input; /** * This property allows users to add descriptive notes for documentation and management purposes. */ comment?: pulumi.Input; /** * Indicates whether the DNS record is enabled. */ enabled?: pulumi.Input; /** * Flags for advanced DNS settings. */ flags?: pulumi.Input; /** * The latitude for geolocation-based routing. */ geolocationLat?: pulumi.Input; /** * The longitude for geolocation-based routing. */ geolocationLong?: pulumi.Input; /** * The latency zone for latency-based routing. */ latencyZone?: pulumi.Input; /** * Options: `Http`, `Monitor`, `None`, `Ping` */ monitorType?: pulumi.Input; /** * The name of the DNS record. Use name = "" for apex domain records. */ name?: pulumi.Input; /** * The port number for services that require a specific port. */ port?: pulumi.Input; /** * The priority of the DNS record. */ priority?: pulumi.Input; /** * The ID of the linked pullzone. */ pullzoneId?: pulumi.Input; /** * Options: `Geolocation`, `Latency`, `None` */ smartRoutingType?: pulumi.Input; /** * A tag for the DNS record. */ tag?: pulumi.Input; /** * The time-to-live value for the DNS record. */ ttl?: pulumi.Input; /** * Options: `A`, `AAAA`, `CAA`, `CNAME`, `Flatten`, `HTTPS`, `MX`, `NS`, `PTR`, `PullZone`, `Redirect`, `SRV`, `SVCB`, `Script`, `TLSA`, `TXT` */ type: pulumi.Input; /** * The value of the DNS record. */ value: pulumi.Input; /** * The weight of the DNS record. It is used in load balancing scenarios to distribute traffic based on the specified weight. */ weight?: pulumi.Input; /** * ID of the related DNS zone. */ zone: pulumi.Input; }