import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Vantage Points in Oracle Cloud Infrastructure Health Checks service. * * Gets information about all vantage points available to the user. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVantagePoints = oci.healthchecks.getVantagePoints({ * displayName: vantagePointDisplayName, * name: vantagePointName, * }); * ``` */ export declare function getVantagePoints(args?: GetVantagePointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVantagePoints. */ export interface GetVantagePointsArgs { /** * Filters results that exactly match the `displayName` field. */ displayName?: string; filters?: inputs.HealthChecks.GetVantagePointsFilter[]; /** * Filters results that exactly match the `name` field. */ name?: string; } /** * A collection of values returned by getVantagePoints. */ export interface GetVantagePointsResult { /** * The display name for the vantage point. Display names are determined by the best information available and may change over time. */ readonly displayName?: string; readonly filters?: outputs.HealthChecks.GetVantagePointsFilter[]; /** * The list of health_checks_vantage_points. */ readonly healthChecksVantagePoints: outputs.HealthChecks.GetVantagePointsHealthChecksVantagePoint[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The unique, permanent name for the vantage point. */ readonly name?: string; } /** * This data source provides the list of Vantage Points in Oracle Cloud Infrastructure Health Checks service. * * Gets information about all vantage points available to the user. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVantagePoints = oci.healthchecks.getVantagePoints({ * displayName: vantagePointDisplayName, * name: vantagePointName, * }); * ``` */ export declare function getVantagePointsOutput(args?: GetVantagePointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVantagePoints. */ export interface GetVantagePointsOutputArgs { /** * Filters results that exactly match the `displayName` field. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Filters results that exactly match the `name` field. */ name?: pulumi.Input; } //# sourceMappingURL=getVantagePoints.d.ts.map