import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the worker identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePointWorker = oci.apmsynthetics.getOnPremiseVantagePointWorker({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePoint.id, * workerId: testWorker.id, * }); * ``` */ export declare function getOnPremiseVantagePointWorker(args: GetOnPremiseVantagePointWorkerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnPremiseVantagePointWorker. */ export interface GetOnPremiseVantagePointWorkerArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: string; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: string; /** * The OCID of the On-premise vantage point worker. */ workerId: string; } /** * A collection of values returned by getOnPremiseVantagePointWorker. */ export interface GetOnPremiseVantagePointWorkerResult { readonly apmDomainId: string; /** * Configuration details of the On-premise VP worker. */ readonly configurationDetails: 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 name that can be edited. The name should not contain any confidential information. */ 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; }; /** * Geographical information of the On-premise VP worker. */ readonly geoInfo: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the monitor. */ readonly id: string; /** * Domain details of the On-premise VP worker. */ readonly identityInfos: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkerIdentityInfo[]; /** * Monitors list assigned to the On-premise VP worker. */ readonly monitorLists: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkerMonitorList[]; /** * Unique permanent name of the On-premise VP worker. This is the same as the displayName. */ readonly name: string; readonly onPremiseVantagePointId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the On-premise vantage point. */ readonly opvpId: string; /** * On-premise vantage point name. */ readonly opvpName: string; /** * Priority of the On-premise VP worker to schedule monitors. */ readonly priority: number; readonly resourcePrincipalTokenPublicKey: string; /** * The runtime assigned id of the On-premise VP worker. */ readonly runtimeId: string; /** * Enables or disables the On-premise VP worker. */ 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 last synced, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-12T22:47:12.613Z` */ readonly timeLastSyncUp: 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; /** * Current image version of the On-premise VP worker. */ readonly version: string; /** * Image version details of the On-premise VP worker. */ readonly versionDetails: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkerVersionDetail[]; readonly workerId: string; /** * Type of the On-premise VP worker. */ readonly workerType: string; } /** * This data source provides details about a specific On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Gets the details of the worker identified by the OCID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePointWorker = oci.apmsynthetics.getOnPremiseVantagePointWorker({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePoint.id, * workerId: testWorker.id, * }); * ``` */ export declare function getOnPremiseVantagePointWorkerOutput(args: GetOnPremiseVantagePointWorkerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnPremiseVantagePointWorker. */ export interface GetOnPremiseVantagePointWorkerOutputArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: pulumi.Input; /** * The OCID of the On-premise vantage point worker. */ workerId: pulumi.Input; } //# sourceMappingURL=getOnPremiseVantagePointWorker.d.ts.map