import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleDnsZoneTransfersOutgoing = new cloudflare.DnsZoneTransfersOutgoing("example_dns_zone_transfers_outgoing", { * zoneId: "269d8f4853475ca241c4e730be286b20", * name: "www.example.com.", * peers: [ * "23ff594956f20c2a721606e94745a8aa", * "00920f38ce07c2e2f4df50b1f61d4194", * ], * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/dnsZoneTransfersOutgoing:DnsZoneTransfersOutgoing example '' * ``` */ export declare class DnsZoneTransfersOutgoing extends pulumi.CustomResource { /** * Get an existing DnsZoneTransfersOutgoing 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?: DnsZoneTransfersOutgoingState, opts?: pulumi.CustomResourceOptions): DnsZoneTransfersOutgoing; /** * Returns true if the given object is an instance of DnsZoneTransfersOutgoing. 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 DnsZoneTransfersOutgoing; /** * The time for a specific event. */ readonly checkedTime: pulumi.Output; /** * The time for a specific event. */ readonly createdTime: pulumi.Output; /** * The time for a specific event. */ readonly lastTransferredTime: pulumi.Output; /** * Zone name. */ readonly name: pulumi.Output; /** * A list of peer tags. */ readonly peers: pulumi.Output; /** * The serial number of the SOA for the given zone. */ readonly soaSerial: pulumi.Output; readonly zoneId: pulumi.Output; /** * Create a DnsZoneTransfersOutgoing 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: DnsZoneTransfersOutgoingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DnsZoneTransfersOutgoing resources. */ export interface DnsZoneTransfersOutgoingState { /** * The time for a specific event. */ checkedTime?: pulumi.Input; /** * The time for a specific event. */ createdTime?: pulumi.Input; /** * The time for a specific event. */ lastTransferredTime?: pulumi.Input; /** * Zone name. */ name?: pulumi.Input; /** * A list of peer tags. */ peers?: pulumi.Input[]>; /** * The serial number of the SOA for the given zone. */ soaSerial?: pulumi.Input; zoneId?: pulumi.Input; } /** * The set of arguments for constructing a DnsZoneTransfersOutgoing resource. */ export interface DnsZoneTransfersOutgoingArgs { /** * Zone name. */ name: pulumi.Input; /** * A list of peer tags. */ peers: pulumi.Input[]>; zoneId: pulumi.Input; }