import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List of networks in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const nw = nutanix.getNdbNetworks({}); * ``` * */ export declare function getNdbNetworks(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getNdbNetworks. */ export interface GetNdbNetworksResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of networks in NDB */ readonly networks: outputs.GetNdbNetworksNetwork[]; } /** * List of networks in Nutanix Database Service * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const nw = nutanix.getNdbNetworks({}); * ``` * */ export declare function getNdbNetworksOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getNdbNetworks.d.ts.map