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 On Premise Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of On-premise vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePoints = oci.apmsynthetics.getOnPremiseVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: onPremiseVantagePointDisplayName, * name: onPremiseVantagePointName, * }); * ``` */ export declare function getOnPremiseVantagePoints(args: GetOnPremiseVantagePointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnPremiseVantagePoints. */ export interface GetOnPremiseVantagePointsArgs { /** * 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.GetOnPremiseVantagePointsFilter[]; /** * A filter to return only the resources that match the entire name. */ name?: string; } /** * A collection of values returned by getOnPremiseVantagePoints. */ export interface GetOnPremiseVantagePointsResult { readonly apmDomainId: string; /** * Unique permanent name of the On-premise vantage point. */ readonly displayName?: string; readonly filters?: outputs.ApmSynthetics.GetOnPremiseVantagePointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique On-premise vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly name?: string; /** * The list of on_premise_vantage_point_collection. */ readonly onPremiseVantagePointCollections: outputs.ApmSynthetics.GetOnPremiseVantagePointsOnPremiseVantagePointCollection[]; } /** * This data source provides the list of On Premise Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of On-premise vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePoints = oci.apmsynthetics.getOnPremiseVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: onPremiseVantagePointDisplayName, * name: onPremiseVantagePointName, * }); * ``` */ export declare function getOnPremiseVantagePointsOutput(args: GetOnPremiseVantagePointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnPremiseVantagePoints. */ export interface GetOnPremiseVantagePointsOutputArgs { /** * 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=getOnPremiseVantagePoints.d.ts.map