import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Atomically updates the ResourceRecordSet collection. * Auto-naming is currently not supported for this resource. * Note - this resource's API doesn't support deletion. When deleted, the resource will persist * on Google Cloud even though it will be deleted from Pulumi state. */ export declare class Change extends pulumi.CustomResource { /** * Get an existing Change 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): Change; /** * Returns true if the given object is an instance of Change. 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 Change; /** * Which ResourceRecordSets to add? */ readonly additions: pulumi.Output; /** * 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; /** * Which ResourceRecordSets to remove? Must match existing data exactly. */ readonly deletions: pulumi.Output; /** * If the DNS queries for the zone will be served. */ readonly isServing: pulumi.Output; readonly kind: pulumi.Output; readonly managedZone: pulumi.Output; readonly project: pulumi.Output; /** * The time that this operation was started by the server (output only). This is in RFC3339 text format. */ readonly startTime: pulumi.Output; /** * Status of the operation (output only). A status of "done" means that the request to update the authoritative servers has been sent, but the servers might not be updated yet. */ readonly status: pulumi.Output; /** * Create a Change 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: ChangeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Change resource. */ export interface ChangeArgs { /** * Which ResourceRecordSets to add? */ additions?: pulumi.Input[]>; /** * 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; /** * Which ResourceRecordSets to remove? Must match existing data exactly. */ deletions?: pulumi.Input[]>; /** * If the DNS queries for the zone will be served. */ isServing?: pulumi.Input; kind?: pulumi.Input; managedZone: pulumi.Input; project?: pulumi.Input; }