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 Point Workers in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of workers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePointWorkers = oci.apmsynthetics.getOnPremiseVantagePointWorkers({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePoint.id, * capability: onPremiseVantagePointWorkerCapability, * displayName: onPremiseVantagePointWorkerDisplayName, * name: onPremiseVantagePointWorkerName, * status: onPremiseVantagePointWorkerStatus, * }); * ``` */ export declare function getOnPremiseVantagePointWorkers(args: GetOnPremiseVantagePointWorkersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnPremiseVantagePointWorkers. */ export interface GetOnPremiseVantagePointWorkersArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: string; /** * A filter to return only On-premise VP workers that match the capability given. */ capability?: string; /** * A filter to return only the resources that match the entire display name. */ displayName?: string; filters?: inputs.ApmSynthetics.GetOnPremiseVantagePointWorkersFilter[]; /** * A filter to return only the resources that match the entire name. */ name?: string; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: string; /** * A filter to return only On-premise VP workers that match the status given. */ status?: string; } /** * A collection of values returned by getOnPremiseVantagePointWorkers. */ export interface GetOnPremiseVantagePointWorkersResult { readonly apmDomainId: string; readonly capability?: string; /** * Unique name that can be edited. The name should not contain any confidential information. */ readonly displayName?: string; readonly filters?: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique permanent name of the On-premise VP worker. This is the same as the displayName. */ readonly name?: string; readonly onPremiseVantagePointId: string; /** * Enables or disables the On-premise VP worker. */ readonly status?: string; /** * The list of worker_collection. */ readonly workerCollections: outputs.ApmSynthetics.GetOnPremiseVantagePointWorkersWorkerCollection[]; } /** * This data source provides the list of On Premise Vantage Point Workers in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service). * * Returns a list of workers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremiseVantagePointWorkers = oci.apmsynthetics.getOnPremiseVantagePointWorkers({ * apmDomainId: testApmDomain.id, * onPremiseVantagePointId: testOnPremiseVantagePoint.id, * capability: onPremiseVantagePointWorkerCapability, * displayName: onPremiseVantagePointWorkerDisplayName, * name: onPremiseVantagePointWorkerName, * status: onPremiseVantagePointWorkerStatus, * }); * ``` */ export declare function getOnPremiseVantagePointWorkersOutput(args: GetOnPremiseVantagePointWorkersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnPremiseVantagePointWorkers. */ export interface GetOnPremiseVantagePointWorkersOutputArgs { /** * The APM domain ID the request is intended for. */ apmDomainId: pulumi.Input; /** * A filter to return only On-premise VP workers that match the capability given. */ capability?: 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; /** * The OCID of the On-premise vantage point. */ onPremiseVantagePointId: pulumi.Input; /** * A filter to return only On-premise VP workers that match the status given. */ status?: pulumi.Input; } //# sourceMappingURL=getOnPremiseVantagePointWorkers.d.ts.map