import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the dedicated vantage point identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVantagePoint = oci.apmsynthetics.getDedicatedVantagePoint({ * apmDomainId: testApmDomain.id, * dedicatedVantagePointId: testDedicatedVantagePointOciApmSyntheticsDedicatedVantagePoint.id, * }); * ``` */ export declare function getDedicatedVantagePoint(args: GetDedicatedVantagePointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedVantagePoint. */ export interface GetDedicatedVantagePointArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: string; /** * The OCID of the dedicated vantage point. */ dedicatedVantagePointId: string; } /** * A collection of values returned by getDedicatedVantagePoint. */ export interface GetDedicatedVantagePointResult { readonly apmDomainId: string; readonly dedicatedVantagePointId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly displayName: string; /** * Details of a Dedicated Vantage Point (DVP) stack in Resource Manager. */ readonly dvpStackDetails: outputs.ApmSynthetics.GetDedicatedVantagePointDvpStackDetail[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated vantage point. */ readonly id: string; /** * Details of the monitor count per state. Example: `{ "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }` */ readonly monitorStatusCountMaps: outputs.ApmSynthetics.GetDedicatedVantagePointMonitorStatusCountMap[]; /** * Unique permanent name of the dedicated vantage point. This is the same as the displayName. */ readonly name: string; /** * Name of the region. */ readonly region: string; /** * Status of the dedicated vantage point. */ readonly status: string; /** * The time the resource was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z` */ readonly timeCreated: string; /** * The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Dedicated Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the dedicated vantage point identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedVantagePoint = oci.apmsynthetics.getDedicatedVantagePoint({ * apmDomainId: testApmDomain.id, * dedicatedVantagePointId: testDedicatedVantagePointOciApmSyntheticsDedicatedVantagePoint.id, * }); * ``` */ export declare function getDedicatedVantagePointOutput(args: GetDedicatedVantagePointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedVantagePoint. */ export interface GetDedicatedVantagePointOutputArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * The OCID of the dedicated vantage point. */ dedicatedVantagePointId: pulumi.Input; } //# sourceMappingURL=getDedicatedVantagePoint.d.ts.map