import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getFirewallAddress(args: GetFirewallAddressArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallAddress. */ export interface GetFirewallAddressArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallAddress. */ export interface GetFirewallAddressResult { readonly allowRouting: string; readonly associatedInterface: string; readonly cacheTtl: number; readonly clearpassSpt: string; readonly color: number; readonly comment: string; readonly country: string; readonly endIp: string; readonly endMac: string; readonly epgName: string; readonly fabricObject: string; readonly filter: string; readonly fqdn: string; readonly fssoGroups: outputs.GetFirewallAddressFssoGroup[]; readonly hwModel: string; readonly hwVendor: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly interface: string; readonly lists: outputs.GetFirewallAddressList[]; readonly macaddrs: outputs.GetFirewallAddressMacaddr[]; readonly name: string; readonly nodeIpOnly: string; readonly objId: string; readonly objTag: string; readonly objType: string; readonly organization: string; readonly os: string; readonly policyGroup: string; readonly routeTag: number; readonly sdn: string; readonly sdnAddrType: string; readonly sdnTag: string; readonly startIp: string; readonly startMac: string; readonly subType: string; readonly subnet: string; readonly subnetName: string; readonly swVersion: string; readonly tagDetectionLevel: string; readonly tagType: string; readonly taggings: outputs.GetFirewallAddressTagging[]; readonly tenant: string; readonly type: string; readonly uuid: string; readonly vdomparam?: string; readonly visibility: string; readonly wildcard: string; readonly wildcardFqdn: string; } export declare function getFirewallAddressOutput(args: GetFirewallAddressOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallAddress. */ export interface GetFirewallAddressOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }