import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Public Vantage Point resource 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 testPublicVantagePoint = oci.apmsynthetics.getVantagePoint({ * apmDomainId: testApmDomain.id, * displayName: publicVantagePointDisplayName, * name: publicVantagePointName, * }); * ``` */ export declare function getVantagePoint(args: GetVantagePointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVantagePoint. */ export interface GetVantagePointArgs { /** * 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; /** * A filter to return only the resources that match the entire name. */ name?: string; } /** * A collection of values returned by getVantagePoint. */ export interface GetVantagePointResult { readonly apmDomainId: string; /** * Unique name that can be edited. The name should not contain any confidential information. */ readonly displayName?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of PublicVantagePointSummary items. */ readonly items: outputs.ApmSynthetics.GetVantagePointItem[]; /** * Unique permanent name of the vantage point. */ readonly name?: string; } /** * This data source provides details about a specific Public Vantage Point resource 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 testPublicVantagePoint = oci.apmsynthetics.getVantagePoint({ * apmDomainId: testApmDomain.id, * displayName: publicVantagePointDisplayName, * name: publicVantagePointName, * }); * ``` */ export declare function getVantagePointOutput(args: GetVantagePointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVantagePoint. */ export interface GetVantagePointOutputArgs { /** * 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; /** * A filter to return only the resources that match the entire name. */ name?: pulumi.Input; } //# sourceMappingURL=getVantagePoint.d.ts.map