@pulumi/wavefront
Version:
A Pulumi package for creating and managing wavefront cloud resources.
18 lines (17 loc) • 694 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
export declare function getMetricsPolicy(opts?: pulumi.InvokeOptions): Promise<GetMetricsPolicyResult>;
/**
* A collection of values returned by getMetricsPolicy.
*/
export interface GetMetricsPolicyResult {
readonly customer: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly policyRules: outputs.GetMetricsPolicyPolicyRule[];
readonly updatedEpochMillis: number;
readonly updaterId: string;
}
export declare function getMetricsPolicyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMetricsPolicyResult>;