import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Describes Protection Rules * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const protectionRules = nutanix.getProtectionRules({}); * ``` * */ export declare function getProtectionRules(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getProtectionRules. */ export interface GetProtectionRulesResult { /** * version of the API */ readonly apiVersion: string; /** * List of Protection Rules */ readonly entities: outputs.GetProtectionRulesEntity[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * Describes Protection Rules * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const protectionRules = nutanix.getProtectionRules({}); * ``` * */ export declare function getProtectionRulesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getProtectionRules.d.ts.map