import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new ResourceRecordSet. */ export declare class ResourceRecordSet extends pulumi.CustomResource { /** * Get an existing ResourceRecordSet 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): ResourceRecordSet; /** * Returns true if the given object is an instance of ResourceRecordSet. 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 ResourceRecordSet; /** * For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */ readonly clientOperationId: pulumi.Output; readonly kind: pulumi.Output; readonly managedZone: pulumi.Output; /** * For example, www.example.com. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Configures dynamic query responses based on either the geo location of the querying user or a weighted round robin based routing policy. A valid ResourceRecordSet contains only rrdata (for static resolution) or a routing_policy (for dynamic resolution). */ readonly routingPolicy: pulumi.Output; /** * As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. */ readonly rrdatas: pulumi.Output; /** * As defined in RFC 4034 (section 3.2). */ readonly signatureRrdatas: pulumi.Output; /** * Number of seconds that this ResourceRecordSet can be cached by resolvers. */ readonly ttl: pulumi.Output; /** * The identifier of a supported record type. See the list of Supported DNS record types. */ readonly type: pulumi.Output; /** * Create a ResourceRecordSet 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: ResourceRecordSetArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ResourceRecordSet resource. */ export interface ResourceRecordSetArgs { /** * For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */ clientOperationId?: pulumi.Input; kind?: pulumi.Input; managedZone: pulumi.Input; /** * For example, www.example.com. */ name?: pulumi.Input; project?: pulumi.Input; /** * Configures dynamic query responses based on either the geo location of the querying user or a weighted round robin based routing policy. A valid ResourceRecordSet contains only rrdata (for static resolution) or a routing_policy (for dynamic resolution). */ routingPolicy?: pulumi.Input; /** * As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples. */ rrdatas?: pulumi.Input[]>; /** * As defined in RFC 4034 (section 3.2). */ signatureRrdatas?: pulumi.Input[]>; /** * Number of seconds that this ResourceRecordSet can be cached by resolvers. */ ttl?: pulumi.Input; /** * The identifier of a supported record type. See the list of Supported DNS record types. */ type?: pulumi.Input; }