import * as pulumi from "@pulumi/pulumi"; export declare class DnsZoneTransfersIncoming extends pulumi.CustomResource { /** * Get an existing DnsZoneTransfersIncoming 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?: DnsZoneTransfersIncomingState, opts?: pulumi.CustomResourceOptions): DnsZoneTransfersIncoming; /** * Returns true if the given object is an instance of DnsZoneTransfersIncoming. 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 DnsZoneTransfersIncoming; /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. * Not applicable for primary zones. */ readonly autoRefreshSeconds: pulumi.Output; /** * 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 modifiedTime: 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 DnsZoneTransfersIncoming 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: DnsZoneTransfersIncomingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DnsZoneTransfersIncoming resources. */ export interface DnsZoneTransfersIncomingState { /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. * Not applicable for primary zones. */ autoRefreshSeconds?: pulumi.Input; /** * The time for a specific event. */ checkedTime?: pulumi.Input; /** * The time for a specific event. */ createdTime?: pulumi.Input; /** * The time for a specific event. */ modifiedTime?: 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 DnsZoneTransfersIncoming resource. */ export interface DnsZoneTransfersIncomingArgs { /** * How often should a secondary zone auto refresh regardless of DNS NOTIFY. * Not applicable for primary zones. */ autoRefreshSeconds?: pulumi.Input; /** * Zone name. */ name?: pulumi.Input; /** * A list of peer tags. */ peers: pulumi.Input[]>; zoneId: pulumi.Input; } //# sourceMappingURL=dnsZoneTransfersIncoming.d.ts.map