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 Public Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of public vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicVantagePoints = oci.apmsynthetics.getVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: publicVantagePointDisplayName, * name: publicVantagePointName, * }); * ``` */ export declare function getVantagePoints(args: GetVantagePointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVantagePoints. */ export interface GetVantagePointsArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: string; /** * A filter to return only the resources that match the entire display name. */ displayName?: string; filters?: inputs.ApmSynthetics.GetVantagePointsFilter[]; /** * A filter to return only the resources that match the entire name. */ name?: string; } /** * A collection of values returned by getVantagePoints. */ export interface GetVantagePointsResult { readonly apmDomainId: string; /** * Unique name that can be edited. The name should not contain any confidential information. */ readonly displayName?: string; readonly filters?: outputs.ApmSynthetics.GetVantagePointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique permanent name of the vantage point. */ readonly name?: string; /** * The list of public_vantage_point_collection. */ readonly publicVantagePointCollections: outputs.ApmSynthetics.GetVantagePointsPublicVantagePointCollection[]; } /** * This data source provides the list of Public Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of public vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPublicVantagePoints = oci.apmsynthetics.getVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: publicVantagePointDisplayName, * name: publicVantagePointName, * }); * ``` */ export declare function getVantagePointsOutput(args: GetVantagePointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVantagePoints. */ export interface GetVantagePointsOutputArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * A filter to return only the resources that match the entire display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only the resources that match the entire name. */ name?: pulumi.Input; } //# sourceMappingURL=getVantagePoints.d.ts.map