import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getFirewallAddress6(args: GetFirewallAddress6Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetFirewallAddress6. */ export interface GetFirewallAddress6Args { name: string; vdomparam?: string; } /** * A collection of values returned by GetFirewallAddress6. */ export interface GetFirewallAddress6Result { readonly cacheTtl: number; readonly color: number; readonly comment: string; readonly country: string; readonly endIp: string; readonly endMac: string; readonly epgName: string; readonly fabricObject: string; readonly fqdn: string; readonly host: string; readonly hostType: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly ip6: string; readonly lists: outputs.GetFirewallAddress6List[]; readonly macaddrs: outputs.GetFirewallAddress6Macaddr[]; readonly name: string; readonly objId: string; readonly routeTag: number; readonly sdn: string; readonly sdnTag: string; readonly startIp: string; readonly startMac: string; readonly subnetSegments: outputs.GetFirewallAddress6SubnetSegment[]; readonly taggings: outputs.GetFirewallAddress6Tagging[]; readonly template: string; readonly tenant: string; readonly type: string; readonly uuid: string; readonly vdomparam?: string; readonly visibility: string; } export declare function getFirewallAddress6Output(args: GetFirewallAddress6OutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetFirewallAddress6. */ export interface GetFirewallAddress6OutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }