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 Dedicated Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of dedicated vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVantagePoints = oci.apmsynthetics.getDedicatedVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: dedicatedVantagePointDisplayName, * name: dedicatedVantagePointName, * status: dedicatedVantagePointStatus, * }); * ``` */ export declare function getDedicatedVantagePoints(args: GetDedicatedVantagePointsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedVantagePoints. */ export interface GetDedicatedVantagePointsArgs { /** * 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.GetDedicatedVantagePointsFilter[]; /** * A filter to return only the resources that match the entire name. */ name?: string; /** * A filter to return only the dedicated vantage points that match a given status. */ status?: string; } /** * A collection of values returned by getDedicatedVantagePoints. */ export interface GetDedicatedVantagePointsResult { readonly apmDomainId: string; /** * The list of dedicated_vantage_point_collection. */ readonly dedicatedVantagePointCollections: outputs.ApmSynthetics.GetDedicatedVantagePointsDedicatedVantagePointCollection[]; /** * Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly displayName?: string; readonly filters?: outputs.ApmSynthetics.GetDedicatedVantagePointsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique permanent name of the dedicated vantage point. This is the same as the displayName. */ readonly name?: string; /** * Status of the dedicated vantage point. */ readonly status?: string; } /** * This data source provides the list of Dedicated Vantage Points in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of dedicated vantage points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVantagePoints = oci.apmsynthetics.getDedicatedVantagePoints({ * apmDomainId: testApmDomain.id, * displayName: dedicatedVantagePointDisplayName, * name: dedicatedVantagePointName, * status: dedicatedVantagePointStatus, * }); * ``` */ export declare function getDedicatedVantagePointsOutput(args: GetDedicatedVantagePointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedVantagePoints. */ export interface GetDedicatedVantagePointsOutputArgs { /** * 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; /** * A filter to return only the dedicated vantage points that match a given status. */ status?: pulumi.Input; } //# sourceMappingURL=getDedicatedVantagePoints.d.ts.map