1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApmSynthetics
  5. getOnPremiseVantagePointWorkers
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.ApmSynthetics.getOnPremiseVantagePointWorkers

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

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

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,
});
Copy
import pulumi
import pulumi_oci as oci

test_on_premise_vantage_point_workers = oci.ApmSynthetics.get_on_premise_vantage_point_workers(apm_domain_id=test_apm_domain["id"],
    on_premise_vantage_point_id=test_on_premise_vantage_point["id"],
    capability=on_premise_vantage_point_worker_capability,
    display_name=on_premise_vantage_point_worker_display_name,
    name=on_premise_vantage_point_worker_name,
    status=on_premise_vantage_point_worker_status)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/apmsynthetics"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apmsynthetics.GetOnPremiseVantagePointWorkers(ctx, &apmsynthetics.GetOnPremiseVantagePointWorkersArgs{
			ApmDomainId:             testApmDomain.Id,
			OnPremiseVantagePointId: testOnPremiseVantagePoint.Id,
			Capability:              pulumi.StringRef(onPremiseVantagePointWorkerCapability),
			DisplayName:             pulumi.StringRef(onPremiseVantagePointWorkerDisplayName),
			Name:                    pulumi.StringRef(onPremiseVantagePointWorkerName),
			Status:                  pulumi.StringRef(onPremiseVantagePointWorkerStatus),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testOnPremiseVantagePointWorkers = Oci.ApmSynthetics.GetOnPremiseVantagePointWorkers.Invoke(new()
    {
        ApmDomainId = testApmDomain.Id,
        OnPremiseVantagePointId = testOnPremiseVantagePoint.Id,
        Capability = onPremiseVantagePointWorkerCapability,
        DisplayName = onPremiseVantagePointWorkerDisplayName,
        Name = onPremiseVantagePointWorkerName,
        Status = onPremiseVantagePointWorkerStatus,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.ApmSyntheticsFunctions;
import com.pulumi.oci.ApmSynthetics.inputs.GetOnPremiseVantagePointWorkersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testOnPremiseVantagePointWorkers = ApmSyntheticsFunctions.getOnPremiseVantagePointWorkers(GetOnPremiseVantagePointWorkersArgs.builder()
            .apmDomainId(testApmDomain.id())
            .onPremiseVantagePointId(testOnPremiseVantagePoint.id())
            .capability(onPremiseVantagePointWorkerCapability)
            .displayName(onPremiseVantagePointWorkerDisplayName)
            .name(onPremiseVantagePointWorkerName)
            .status(onPremiseVantagePointWorkerStatus)
            .build());

    }
}
Copy
variables:
  testOnPremiseVantagePointWorkers:
    fn::invoke:
      function: oci:ApmSynthetics:getOnPremiseVantagePointWorkers
      arguments:
        apmDomainId: ${testApmDomain.id}
        onPremiseVantagePointId: ${testOnPremiseVantagePoint.id}
        capability: ${onPremiseVantagePointWorkerCapability}
        displayName: ${onPremiseVantagePointWorkerDisplayName}
        name: ${onPremiseVantagePointWorkerName}
        status: ${onPremiseVantagePointWorkerStatus}
Copy

Using getOnPremiseVantagePointWorkers

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getOnPremiseVantagePointWorkers(args: GetOnPremiseVantagePointWorkersArgs, opts?: InvokeOptions): Promise<GetOnPremiseVantagePointWorkersResult>
function getOnPremiseVantagePointWorkersOutput(args: GetOnPremiseVantagePointWorkersOutputArgs, opts?: InvokeOptions): Output<GetOnPremiseVantagePointWorkersResult>
Copy
def get_on_premise_vantage_point_workers(apm_domain_id: Optional[str] = None,
                                         capability: Optional[str] = None,
                                         display_name: Optional[str] = None,
                                         filters: Optional[Sequence[_apmsynthetics.GetOnPremiseVantagePointWorkersFilter]] = None,
                                         name: Optional[str] = None,
                                         on_premise_vantage_point_id: Optional[str] = None,
                                         status: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetOnPremiseVantagePointWorkersResult
def get_on_premise_vantage_point_workers_output(apm_domain_id: Optional[pulumi.Input[str]] = None,
                                         capability: Optional[pulumi.Input[str]] = None,
                                         display_name: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_apmsynthetics.GetOnPremiseVantagePointWorkersFilterArgs]]]] = None,
                                         name: Optional[pulumi.Input[str]] = None,
                                         on_premise_vantage_point_id: Optional[pulumi.Input[str]] = None,
                                         status: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetOnPremiseVantagePointWorkersResult]
Copy
func GetOnPremiseVantagePointWorkers(ctx *Context, args *GetOnPremiseVantagePointWorkersArgs, opts ...InvokeOption) (*GetOnPremiseVantagePointWorkersResult, error)
func GetOnPremiseVantagePointWorkersOutput(ctx *Context, args *GetOnPremiseVantagePointWorkersOutputArgs, opts ...InvokeOption) GetOnPremiseVantagePointWorkersResultOutput
Copy

> Note: This function is named GetOnPremiseVantagePointWorkers in the Go SDK.

public static class GetOnPremiseVantagePointWorkers 
{
    public static Task<GetOnPremiseVantagePointWorkersResult> InvokeAsync(GetOnPremiseVantagePointWorkersArgs args, InvokeOptions? opts = null)
    public static Output<GetOnPremiseVantagePointWorkersResult> Invoke(GetOnPremiseVantagePointWorkersInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetOnPremiseVantagePointWorkersResult> getOnPremiseVantagePointWorkers(GetOnPremiseVantagePointWorkersArgs args, InvokeOptions options)
public static Output<GetOnPremiseVantagePointWorkersResult> getOnPremiseVantagePointWorkers(GetOnPremiseVantagePointWorkersArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:ApmSynthetics/getOnPremiseVantagePointWorkers:getOnPremiseVantagePointWorkers
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ApmDomainId This property is required. string
The APM domain ID the request is intended for.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
Capability string
A filter to return only On-premise VP workers that match the capability given.
DisplayName string
A filter to return only the resources that match the entire display name.
Filters Changes to this property will trigger replacement. List<GetOnPremiseVantagePointWorkersFilter>
Name string
A filter to return only the resources that match the entire name.
Status string
A filter to return only On-premise VP workers that match the status given.
ApmDomainId This property is required. string
The APM domain ID the request is intended for.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
Capability string
A filter to return only On-premise VP workers that match the capability given.
DisplayName string
A filter to return only the resources that match the entire display name.
Filters Changes to this property will trigger replacement. []GetOnPremiseVantagePointWorkersFilter
Name string
A filter to return only the resources that match the entire name.
Status string
A filter to return only On-premise VP workers that match the status given.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
capability String
A filter to return only On-premise VP workers that match the capability given.
displayName String
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<GetOnPremiseVantagePointWorkersFilter>
name String
A filter to return only the resources that match the entire name.
status String
A filter to return only On-premise VP workers that match the status given.
apmDomainId This property is required. string
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
capability string
A filter to return only On-premise VP workers that match the capability given.
displayName string
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. GetOnPremiseVantagePointWorkersFilter[]
name string
A filter to return only the resources that match the entire name.
status string
A filter to return only On-premise VP workers that match the status given.
apm_domain_id This property is required. str
The APM domain ID the request is intended for.
on_premise_vantage_point_id This property is required. str
The OCID of the On-premise vantage point.
capability str
A filter to return only On-premise VP workers that match the capability given.
display_name str
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersFilter]
name str
A filter to return only the resources that match the entire name.
status str
A filter to return only On-premise VP workers that match the status given.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
capability String
A filter to return only On-premise VP workers that match the capability given.
displayName String
A filter to return only the resources that match the entire display name.
filters Changes to this property will trigger replacement. List<Property Map>
name String
A filter to return only the resources that match the entire name.
status String
A filter to return only On-premise VP workers that match the status given.

getOnPremiseVantagePointWorkers Result

The following output properties are available:

ApmDomainId string
Id string
The provider-assigned unique ID for this managed resource.
OnPremiseVantagePointId string
WorkerCollections List<GetOnPremiseVantagePointWorkersWorkerCollection>
The list of worker_collection.
Capability string
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
Filters List<GetOnPremiseVantagePointWorkersFilter>
Name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
Status string
Enables or disables the On-premise VP worker.
ApmDomainId string
Id string
The provider-assigned unique ID for this managed resource.
OnPremiseVantagePointId string
WorkerCollections []GetOnPremiseVantagePointWorkersWorkerCollection
The list of worker_collection.
Capability string
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
Filters []GetOnPremiseVantagePointWorkersFilter
Name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
Status string
Enables or disables the On-premise VP worker.
apmDomainId String
id String
The provider-assigned unique ID for this managed resource.
onPremiseVantagePointId String
workerCollections List<GetOnPremiseVantagePointWorkersWorkerCollection>
The list of worker_collection.
capability String
displayName String
Unique name that can be edited. The name should not contain any confidential information.
filters List<GetOnPremiseVantagePointWorkersFilter>
name String
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
status String
Enables or disables the On-premise VP worker.
apmDomainId string
id string
The provider-assigned unique ID for this managed resource.
onPremiseVantagePointId string
workerCollections GetOnPremiseVantagePointWorkersWorkerCollection[]
The list of worker_collection.
capability string
displayName string
Unique name that can be edited. The name should not contain any confidential information.
filters GetOnPremiseVantagePointWorkersFilter[]
name string
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
status string
Enables or disables the On-premise VP worker.
apm_domain_id str
id str
The provider-assigned unique ID for this managed resource.
on_premise_vantage_point_id str
worker_collections Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersWorkerCollection]
The list of worker_collection.
capability str
display_name str
Unique name that can be edited. The name should not contain any confidential information.
filters Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersFilter]
name str
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
status str
Enables or disables the On-premise VP worker.
apmDomainId String
id String
The provider-assigned unique ID for this managed resource.
onPremiseVantagePointId String
workerCollections List<Property Map>
The list of worker_collection.
capability String
displayName String
Unique name that can be edited. The name should not contain any confidential information.
filters List<Property Map>
name String
Unique permanent name of the On-premise VP worker. This is the same as the displayName.
status String
Enables or disables the On-premise VP worker.

Supporting Types

GetOnPremiseVantagePointWorkersFilter

Name This property is required. string
A filter to return only the resources that match the entire name.
Values This property is required. List<string>
Regex bool
Name This property is required. string
A filter to return only the resources that match the entire name.
Values This property is required. []string
Regex bool
name This property is required. String
A filter to return only the resources that match the entire name.
values This property is required. List<String>
regex Boolean
name This property is required. string
A filter to return only the resources that match the entire name.
values This property is required. string[]
regex boolean
name This property is required. str
A filter to return only the resources that match the entire name.
values This property is required. Sequence[str]
regex bool
name This property is required. String
A filter to return only the resources that match the entire name.
values This property is required. List<String>
regex Boolean

GetOnPremiseVantagePointWorkersWorkerCollection

items This property is required. List<Property Map>

GetOnPremiseVantagePointWorkersWorkerCollectionItem

ApmDomainId This property is required. string
The APM domain ID the request is intended for.
ConfigurationDetails This property is required. string
Configuration details of the On-premise VP worker.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
GeoInfo This property is required. string
Geographical information of the On-premise VP worker.
Id This property is required. string
The OCID of the monitor.
IdentityInfos This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo>
Domain details of the On-premise VP worker.
MonitorLists This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList>
Monitors list assigned to the On-premise VP worker.
Name This property is required. string
A filter to return only the resources that match the entire name.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
OpvpId This property is required. string
The OCID of the On-premise vantage point.
OpvpName This property is required. string
On-premise vantage point name.
Priority This property is required. int
Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey This property is required. string
RuntimeId This property is required. string
The runtime assigned id of the On-premise VP worker.
Status This property is required. string
A filter to return only On-premise VP workers that match the status given.
TimeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp This property is required. string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
Version This property is required. string
Current image version of the On-premise VP worker.
VersionDetails This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail>
Image version details of the On-premise VP worker.
WorkerType This property is required. string
Type of the On-premise VP worker.
ApmDomainId This property is required. string
The APM domain ID the request is intended for.
ConfigurationDetails This property is required. string
Configuration details of the On-premise VP worker.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
GeoInfo This property is required. string
Geographical information of the On-premise VP worker.
Id This property is required. string
The OCID of the monitor.
IdentityInfos This property is required. []GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo
Domain details of the On-premise VP worker.
MonitorLists This property is required. []GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList
Monitors list assigned to the On-premise VP worker.
Name This property is required. string
A filter to return only the resources that match the entire name.
OnPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
OpvpId This property is required. string
The OCID of the On-premise vantage point.
OpvpName This property is required. string
On-premise vantage point name.
Priority This property is required. int
Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey This property is required. string
RuntimeId This property is required. string
The runtime assigned id of the On-premise VP worker.
Status This property is required. string
A filter to return only On-premise VP workers that match the status given.
TimeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp This property is required. string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
Version This property is required. string
Current image version of the On-premise VP worker.
VersionDetails This property is required. []GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail
Image version details of the On-premise VP worker.
WorkerType This property is required. string
Type of the On-premise VP worker.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
configurationDetails This property is required. String
Configuration details of the On-premise VP worker.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only the resources that match the entire display name.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
geoInfo This property is required. String
Geographical information of the On-premise VP worker.
id This property is required. String
The OCID of the monitor.
identityInfos This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo>
Domain details of the On-premise VP worker.
monitorLists This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList>
Monitors list assigned to the On-premise VP worker.
name This property is required. String
A filter to return only the resources that match the entire name.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
opvpId This property is required. String
The OCID of the On-premise vantage point.
opvpName This property is required. String
On-premise vantage point name.
priority This property is required. Integer
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey This property is required. String
runtimeId This property is required. String
The runtime assigned id of the On-premise VP worker.
status This property is required. String
A filter to return only On-premise VP workers that match the status given.
timeCreated This property is required. String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp This property is required. String
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version This property is required. String
Current image version of the On-premise VP worker.
versionDetails This property is required. List<GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail>
Image version details of the On-premise VP worker.
workerType This property is required. String
Type of the On-premise VP worker.
apmDomainId This property is required. string
The APM domain ID the request is intended for.
configurationDetails This property is required. string
Configuration details of the On-premise VP worker.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. string
A filter to return only the resources that match the entire display name.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
geoInfo This property is required. string
Geographical information of the On-premise VP worker.
id This property is required. string
The OCID of the monitor.
identityInfos This property is required. GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo[]
Domain details of the On-premise VP worker.
monitorLists This property is required. GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList[]
Monitors list assigned to the On-premise VP worker.
name This property is required. string
A filter to return only the resources that match the entire name.
onPremiseVantagePointId This property is required. string
The OCID of the On-premise vantage point.
opvpId This property is required. string
The OCID of the On-premise vantage point.
opvpName This property is required. string
On-premise vantage point name.
priority This property is required. number
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey This property is required. string
runtimeId This property is required. string
The runtime assigned id of the On-premise VP worker.
status This property is required. string
A filter to return only On-premise VP workers that match the status given.
timeCreated This property is required. string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp This property is required. string
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. string
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version This property is required. string
Current image version of the On-premise VP worker.
versionDetails This property is required. GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail[]
Image version details of the On-premise VP worker.
workerType This property is required. string
Type of the On-premise VP worker.
apm_domain_id This property is required. str
The APM domain ID the request is intended for.
configuration_details This property is required. str
Configuration details of the On-premise VP worker.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name This property is required. str
A filter to return only the resources that match the entire display name.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
geo_info This property is required. str
Geographical information of the On-premise VP worker.
id This property is required. str
The OCID of the monitor.
identity_infos This property is required. Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo]
Domain details of the On-premise VP worker.
monitor_lists This property is required. Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList]
Monitors list assigned to the On-premise VP worker.
name This property is required. str
A filter to return only the resources that match the entire name.
on_premise_vantage_point_id This property is required. str
The OCID of the On-premise vantage point.
opvp_id This property is required. str
The OCID of the On-premise vantage point.
opvp_name This property is required. str
On-premise vantage point name.
priority This property is required. int
Priority of the On-premise VP worker to schedule monitors.
resource_principal_token_public_key This property is required. str
runtime_id This property is required. str
The runtime assigned id of the On-premise VP worker.
status This property is required. str
A filter to return only On-premise VP workers that match the status given.
time_created This property is required. str
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_last_sync_up This property is required. str
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_updated This property is required. str
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version This property is required. str
Current image version of the On-premise VP worker.
version_details This property is required. Sequence[apmsynthetics.GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail]
Image version details of the On-premise VP worker.
worker_type This property is required. str
Type of the On-premise VP worker.
apmDomainId This property is required. String
The APM domain ID the request is intended for.
configurationDetails This property is required. String
Configuration details of the On-premise VP worker.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName This property is required. String
A filter to return only the resources that match the entire display name.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
geoInfo This property is required. String
Geographical information of the On-premise VP worker.
id This property is required. String
The OCID of the monitor.
identityInfos This property is required. List<Property Map>
Domain details of the On-premise VP worker.
monitorLists This property is required. List<Property Map>
Monitors list assigned to the On-premise VP worker.
name This property is required. String
A filter to return only the resources that match the entire name.
onPremiseVantagePointId This property is required. String
The OCID of the On-premise vantage point.
opvpId This property is required. String
The OCID of the On-premise vantage point.
opvpName This property is required. String
On-premise vantage point name.
priority This property is required. Number
Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey This property is required. String
runtimeId This property is required. String
The runtime assigned id of the On-premise VP worker.
status This property is required. String
A filter to return only On-premise VP workers that match the status given.
timeCreated This property is required. String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp This property is required. String
The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeUpdated This property is required. String
The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
version This property is required. String
Current image version of the On-premise VP worker.
versionDetails This property is required. List<Property Map>
Image version details of the On-premise VP worker.
workerType This property is required. String
Type of the On-premise VP worker.

GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo

ApmShortId This property is required. string
Domain short id of the On-premise VP worker.
CollectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
RegionName This property is required. string
Domain region of the On-premise VP worker.
ApmShortId This property is required. string
Domain short id of the On-premise VP worker.
CollectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
RegionName This property is required. string
Domain region of the On-premise VP worker.
apmShortId This property is required. String
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. String
Collector endpoint of the On-premise VP worker.
regionName This property is required. String
Domain region of the On-premise VP worker.
apmShortId This property is required. string
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. string
Collector endpoint of the On-premise VP worker.
regionName This property is required. string
Domain region of the On-premise VP worker.
apm_short_id This property is required. str
Domain short id of the On-premise VP worker.
collector_end_point This property is required. str
Collector endpoint of the On-premise VP worker.
region_name This property is required. str
Domain region of the On-premise VP worker.
apmShortId This property is required. String
Domain short id of the On-premise VP worker.
collectorEndPoint This property is required. String
Collector endpoint of the On-premise VP worker.
regionName This property is required. String
Domain region of the On-premise VP worker.

GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList

DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
Id This property is required. string
The OCID of the monitor.
IsRunNow This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
MonitorType This property is required. string
Type of monitor.
TimeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
DisplayName This property is required. string
A filter to return only the resources that match the entire display name.
Id This property is required. string
The OCID of the monitor.
IsRunNow This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
MonitorType This property is required. string
Type of monitor.
TimeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. String
A filter to return only the resources that match the entire display name.
id This property is required. String
The OCID of the monitor.
isRunNow This property is required. Boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. String
Type of monitor.
timeAssigned This property is required. String
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. string
A filter to return only the resources that match the entire display name.
id This property is required. string
The OCID of the monitor.
isRunNow This property is required. boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. string
Type of monitor.
timeAssigned This property is required. string
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
display_name This property is required. str
A filter to return only the resources that match the entire display name.
id This property is required. str
The OCID of the monitor.
is_run_now This property is required. bool
If isRunNow is enabled, then the monitor will run immediately.
monitor_type This property is required. str
Type of monitor.
time_assigned This property is required. str
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
displayName This property is required. String
A filter to return only the resources that match the entire display name.
id This property is required. String
The OCID of the monitor.
isRunNow This property is required. Boolean
If isRunNow is enabled, then the monitor will run immediately.
monitorType This property is required. String
Type of monitor.
timeAssigned This property is required. String
The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

GetOnPremiseVantagePointWorkersWorkerCollectionItemVersionDetail

LatestVersion This property is required. string
Latest image version of the On-premise VP worker.
MinSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
Version This property is required. string
Current image version of the On-premise VP worker.
LatestVersion This property is required. string
Latest image version of the On-premise VP worker.
MinSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
Version This property is required. string
Current image version of the On-premise VP worker.
latestVersion This property is required. String
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. String
Minimum supported image version of the On-premise VP worker.
version This property is required. String
Current image version of the On-premise VP worker.
latestVersion This property is required. string
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. string
Minimum supported image version of the On-premise VP worker.
version This property is required. string
Current image version of the On-premise VP worker.
latest_version This property is required. str
Latest image version of the On-premise VP worker.
min_supported_version This property is required. str
Minimum supported image version of the On-premise VP worker.
version This property is required. str
Current image version of the On-premise VP worker.
latestVersion This property is required. String
Latest image version of the On-premise VP worker.
minSupportedVersion This property is required. String
Minimum supported image version of the On-premise VP worker.
version This property is required. String
Current image version of the On-premise VP worker.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi