import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the On-premise vantage point identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePoint = oci.apmsynthetics.getOnPremiseVantagePoint({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePointOciApmSyntheticsOnPremiseVantagePoint.id, * }); * ``` */ export declare function getOnPremiseVantagePoint(args: GetOnPremiseVantagePointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnPremiseVantagePoint. */ export interface GetOnPremiseVantagePointArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: string; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: string; } /** * A collection of values returned by getOnPremiseVantagePoint. */ export interface GetOnPremiseVantagePointResult { readonly apmDomainId: 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; }; /** * A short description about the On-premise vantage point. */ readonly description: string; /** * Unique permanent name of the On-premise vantage point. */ readonly displayName: string; /** * 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 On-premise vantage point. */ readonly id: string; /** * Unique On-premise vantage point name that cannot be edited. The name should not contain any confidential information. */ readonly name: string; readonly onPremiseVantagePointId: 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; /** * Type of On-premise vantage point. */ readonly type: string; /** * Details of the workers in a specific On-premise vantage point. */ readonly workersSummaries: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkersSummary[]; } /** * This data source provides details about a specific On Premise Vantage Point resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the On-premise vantage point identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePoint = oci.apmsynthetics.getOnPremiseVantagePoint({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePointOciApmSyntheticsOnPremiseVantagePoint.id, * }); * ``` */ export declare function getOnPremiseVantagePointOutput(args: GetOnPremiseVantagePointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnPremiseVantagePoint. */ export interface GetOnPremiseVantagePointOutputArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: pulumi.Input; } //# sourceMappingURL=getOnPremiseVantagePoint.d.ts.map