Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.ApmSynthetics.getOnPremiseVantagePointWorkers
Explore with Pulumi AI
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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
variables:
  testOnPremiseVantagePointWorkers:
    fn::invoke:
      function: oci:ApmSynthetics:getOnPremiseVantagePointWorkers
      arguments:
        apmDomainId: ${testApmDomain.id}
        onPremiseVantagePointId: ${testOnPremiseVantagePoint.id}
        capability: ${onPremiseVantagePointWorkerCapability}
        displayName: ${onPremiseVantagePointWorkerDisplayName}
        name: ${onPremiseVantagePointWorkerName}
        status: ${onPremiseVantagePointWorkerStatus}
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>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]func GetOnPremiseVantagePointWorkers(ctx *Context, args *GetOnPremiseVantagePointWorkersArgs, opts ...InvokeOption) (*GetOnPremiseVantagePointWorkersResult, error)
func GetOnPremiseVantagePointWorkersOutput(ctx *Context, args *GetOnPremiseVantagePointWorkersOutputArgs, opts ...InvokeOption) GetOnPremiseVantagePointWorkersResultOutput> 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)
}public static CompletableFuture<GetOnPremiseVantagePointWorkersResult> getOnPremiseVantagePointWorkers(GetOnPremiseVantagePointWorkersArgs args, InvokeOptions options)
public static Output<GetOnPremiseVantagePointWorkersResult> getOnPremiseVantagePointWorkers(GetOnPremiseVantagePointWorkersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:ApmSynthetics/getOnPremiseVantagePointWorkers:getOnPremiseVantagePointWorkers
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ApmDomain stringId 
- The APM domain ID the request is intended for.
- OnPremise stringVantage Point Id 
- 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
List<GetOn Premise Vantage Point Workers Filter> 
- 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.
- ApmDomain stringId 
- The APM domain ID the request is intended for.
- OnPremise stringVantage Point Id 
- 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
[]GetOn Premise Vantage Point Workers Filter 
- 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.
- apmDomain StringId 
- The APM domain ID the request is intended for.
- onPremise StringVantage Point Id 
- 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
List<GetOn Premise Vantage Point Workers Filter> 
- 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.
- apmDomain stringId 
- The APM domain ID the request is intended for.
- onPremise stringVantage Point Id 
- 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
GetOn Premise Vantage Point Workers Filter[] 
- 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_ strid 
- The APM domain ID the request is intended for.
- on_premise_ strvantage_ point_ id 
- 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
Sequence[apmsynthetics.Get On Premise Vantage Point Workers Filter] 
- 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.
- apmDomain StringId 
- The APM domain ID the request is intended for.
- onPremise StringVantage Point Id 
- 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 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:
- ApmDomain stringId 
- Id string
- The provider-assigned unique ID for this managed resource.
- OnPremise stringVantage Point Id 
- WorkerCollections List<GetOn Premise Vantage Point Workers Worker Collection> 
- 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<GetOn Premise Vantage Point Workers Filter> 
- 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.
- ApmDomain stringId 
- Id string
- The provider-assigned unique ID for this managed resource.
- OnPremise stringVantage Point Id 
- WorkerCollections []GetOn Premise Vantage Point Workers Worker Collection 
- The list of worker_collection.
- Capability string
- DisplayName string
- Unique name that can be edited. The name should not contain any confidential information.
- Filters
[]GetOn Premise Vantage Point Workers Filter 
- 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.
- apmDomain StringId 
- id String
- The provider-assigned unique ID for this managed resource.
- onPremise StringVantage Point Id 
- workerCollections List<GetOn Premise Vantage Point Workers Worker Collection> 
- 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<GetOn Premise Vantage Point Workers Filter> 
- 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.
- apmDomain stringId 
- id string
- The provider-assigned unique ID for this managed resource.
- onPremise stringVantage Point Id 
- workerCollections GetOn Premise Vantage Point Workers Worker Collection[] 
- The list of worker_collection.
- capability string
- displayName string
- Unique name that can be edited. The name should not contain any confidential information.
- filters
GetOn Premise Vantage Point Workers Filter[] 
- 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_ strid 
- id str
- The provider-assigned unique ID for this managed resource.
- on_premise_ strvantage_ point_ id 
- worker_collections Sequence[apmsynthetics.Get On Premise Vantage Point Workers Worker Collection] 
- 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.Get On Premise Vantage Point Workers Filter] 
- 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.
- apmDomain StringId 
- id String
- The provider-assigned unique ID for this managed resource.
- onPremise StringVantage Point Id 
- 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      
GetOnPremiseVantagePointWorkersWorkerCollection       
GetOnPremiseVantagePointWorkersWorkerCollectionItem        
- ApmDomain stringId 
- The APM domain ID the request is intended for.
- ConfigurationDetails string
- Configuration details of the On-premise VP worker.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only the resources that match the entire display name.
- 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 string
- Geographical information of the On-premise VP worker.
- Id string
- The OCID of the monitor.
- IdentityInfos List<GetOn Premise Vantage Point Workers Worker Collection Item Identity Info> 
- Domain details of the On-premise VP worker.
- MonitorLists List<GetOn Premise Vantage Point Workers Worker Collection Item Monitor List> 
- Monitors list assigned to the On-premise VP worker.
- Name string
- A filter to return only the resources that match the entire name.
- OnPremise stringVantage Point Id 
- The OCID of the On-premise vantage point.
- OpvpId string
- The OCID of the On-premise vantage point.
- OpvpName string
- On-premise vantage point name.
- Priority int
- Priority of the On-premise VP worker to schedule monitors.
- ResourcePrincipal stringToken Public Key 
- RuntimeId string
- The runtime assigned id of the On-premise VP worker.
- Status string
- A filter to return only On-premise VP workers that match the status given.
- TimeCreated string
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- TimeLast stringSync Up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- TimeUpdated string
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- Version string
- Current image version of the On-premise VP worker.
- VersionDetails List<GetOn Premise Vantage Point Workers Worker Collection Item Version Detail> 
- Image version details of the On-premise VP worker.
- WorkerType string
- Type of the On-premise VP worker.
- ApmDomain stringId 
- The APM domain ID the request is intended for.
- ConfigurationDetails string
- Configuration details of the On-premise VP worker.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only the resources that match the entire display name.
- 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 string
- Geographical information of the On-premise VP worker.
- Id string
- The OCID of the monitor.
- IdentityInfos []GetOn Premise Vantage Point Workers Worker Collection Item Identity Info 
- Domain details of the On-premise VP worker.
- MonitorLists []GetOn Premise Vantage Point Workers Worker Collection Item Monitor List 
- Monitors list assigned to the On-premise VP worker.
- Name string
- A filter to return only the resources that match the entire name.
- OnPremise stringVantage Point Id 
- The OCID of the On-premise vantage point.
- OpvpId string
- The OCID of the On-premise vantage point.
- OpvpName string
- On-premise vantage point name.
- Priority int
- Priority of the On-premise VP worker to schedule monitors.
- ResourcePrincipal stringToken Public Key 
- RuntimeId string
- The runtime assigned id of the On-premise VP worker.
- Status string
- A filter to return only On-premise VP workers that match the status given.
- TimeCreated string
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- TimeLast stringSync Up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- TimeUpdated string
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- Version string
- Current image version of the On-premise VP worker.
- VersionDetails []GetOn Premise Vantage Point Workers Worker Collection Item Version Detail 
- Image version details of the On-premise VP worker.
- WorkerType string
- Type of the On-premise VP worker.
- apmDomain StringId 
- The APM domain ID the request is intended for.
- configurationDetails String
- Configuration details of the On-premise VP worker.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only the resources that match the entire display name.
- 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 String
- Geographical information of the On-premise VP worker.
- id String
- The OCID of the monitor.
- identityInfos List<GetOn Premise Vantage Point Workers Worker Collection Item Identity Info> 
- Domain details of the On-premise VP worker.
- monitorLists List<GetOn Premise Vantage Point Workers Worker Collection Item Monitor List> 
- Monitors list assigned to the On-premise VP worker.
- name String
- A filter to return only the resources that match the entire name.
- onPremise StringVantage Point Id 
- The OCID of the On-premise vantage point.
- opvpId String
- The OCID of the On-premise vantage point.
- opvpName String
- On-premise vantage point name.
- priority Integer
- Priority of the On-premise VP worker to schedule monitors.
- resourcePrincipal StringToken Public Key 
- runtimeId String
- The runtime assigned id of the On-premise VP worker.
- status String
- A filter to return only On-premise VP workers that match the status given.
- timeCreated String
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeLast StringSync Up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeUpdated String
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- version String
- Current image version of the On-premise VP worker.
- versionDetails List<GetOn Premise Vantage Point Workers Worker Collection Item Version Detail> 
- Image version details of the On-premise VP worker.
- workerType String
- Type of the On-premise VP worker.
- apmDomain stringId 
- The APM domain ID the request is intended for.
- configurationDetails string
- Configuration details of the On-premise VP worker.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- A filter to return only the resources that match the entire display name.
- {[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 string
- Geographical information of the On-premise VP worker.
- id string
- The OCID of the monitor.
- identityInfos GetOn Premise Vantage Point Workers Worker Collection Item Identity Info[] 
- Domain details of the On-premise VP worker.
- monitorLists GetOn Premise Vantage Point Workers Worker Collection Item Monitor List[] 
- Monitors list assigned to the On-premise VP worker.
- name string
- A filter to return only the resources that match the entire name.
- onPremise stringVantage Point Id 
- The OCID of the On-premise vantage point.
- opvpId string
- The OCID of the On-premise vantage point.
- opvpName string
- On-premise vantage point name.
- priority number
- Priority of the On-premise VP worker to schedule monitors.
- resourcePrincipal stringToken Public Key 
- runtimeId string
- The runtime assigned id of the On-premise VP worker.
- status string
- A filter to return only On-premise VP workers that match the status given.
- timeCreated string
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeLast stringSync Up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeUpdated string
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- version string
- Current image version of the On-premise VP worker.
- versionDetails GetOn Premise Vantage Point Workers Worker Collection Item Version Detail[] 
- Image version details of the On-premise VP worker.
- workerType string
- Type of the On-premise VP worker.
- apm_domain_ strid 
- The APM domain ID the request is intended for.
- configuration_details str
- Configuration details of the On-premise VP worker.
- 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 str
- A filter to return only the resources that match the entire display name.
- 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 str
- Geographical information of the On-premise VP worker.
- id str
- The OCID of the monitor.
- identity_infos Sequence[apmsynthetics.Get On Premise Vantage Point Workers Worker Collection Item Identity Info] 
- Domain details of the On-premise VP worker.
- monitor_lists Sequence[apmsynthetics.Get On Premise Vantage Point Workers Worker Collection Item Monitor List] 
- Monitors list assigned to the On-premise VP worker.
- name str
- A filter to return only the resources that match the entire name.
- on_premise_ strvantage_ point_ id 
- The OCID of the On-premise vantage point.
- opvp_id str
- The OCID of the On-premise vantage point.
- opvp_name str
- On-premise vantage point name.
- priority int
- Priority of the On-premise VP worker to schedule monitors.
- resource_principal_ strtoken_ public_ key 
- runtime_id str
- The runtime assigned id of the On-premise VP worker.
- status str
- A filter to return only On-premise VP workers that match the status given.
- time_created str
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- time_last_ strsync_ up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- time_updated str
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- version str
- Current image version of the On-premise VP worker.
- version_details Sequence[apmsynthetics.Get On Premise Vantage Point Workers Worker Collection Item Version Detail] 
- Image version details of the On-premise VP worker.
- worker_type str
- Type of the On-premise VP worker.
- apmDomain StringId 
- The APM domain ID the request is intended for.
- configurationDetails String
- Configuration details of the On-premise VP worker.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only the resources that match the entire display name.
- 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 String
- Geographical information of the On-premise VP worker.
- id String
- The OCID of the monitor.
- identityInfos List<Property Map>
- Domain details of the On-premise VP worker.
- monitorLists List<Property Map>
- Monitors list assigned to the On-premise VP worker.
- name String
- A filter to return only the resources that match the entire name.
- onPremise StringVantage Point Id 
- The OCID of the On-premise vantage point.
- opvpId String
- The OCID of the On-premise vantage point.
- opvpName String
- On-premise vantage point name.
- priority Number
- Priority of the On-premise VP worker to schedule monitors.
- resourcePrincipal StringToken Public Key 
- runtimeId String
- The runtime assigned id of the On-premise VP worker.
- status String
- A filter to return only On-premise VP workers that match the status given.
- timeCreated String
- The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeLast StringSync Up 
- The time the resource was last synced, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
- timeUpdated String
- The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z
- version String
- Current image version of the On-premise VP worker.
- versionDetails List<Property Map>
- Image version details of the On-premise VP worker.
- workerType String
- Type of the On-premise VP worker.
GetOnPremiseVantagePointWorkersWorkerCollectionItemIdentityInfo          
- ApmShort stringId 
- Domain short id of the On-premise VP worker.
- CollectorEnd stringPoint 
- Collector endpoint of the On-premise VP worker.
- RegionName string
- Domain region of the On-premise VP worker.
- ApmShort stringId 
- Domain short id of the On-premise VP worker.
- CollectorEnd stringPoint 
- Collector endpoint of the On-premise VP worker.
- RegionName string
- Domain region of the On-premise VP worker.
- apmShort StringId 
- Domain short id of the On-premise VP worker.
- collectorEnd StringPoint 
- Collector endpoint of the On-premise VP worker.
- regionName String
- Domain region of the On-premise VP worker.
- apmShort stringId 
- Domain short id of the On-premise VP worker.
- collectorEnd stringPoint 
- Collector endpoint of the On-premise VP worker.
- regionName string
- Domain region of the On-premise VP worker.
- apm_short_ strid 
- Domain short id of the On-premise VP worker.
- collector_end_ strpoint 
- Collector endpoint of the On-premise VP worker.
- region_name str
- Domain region of the On-premise VP worker.
- apmShort StringId 
- Domain short id of the On-premise VP worker.
- collectorEnd StringPoint 
- Collector endpoint of the On-premise VP worker.
- regionName String
- Domain region of the On-premise VP worker.
GetOnPremiseVantagePointWorkersWorkerCollectionItemMonitorList          
- DisplayName string
- A filter to return only the resources that match the entire display name.
- Id string
- The OCID of the monitor.
- IsRun boolNow 
- If isRunNow is enabled, then the monitor will run immediately.
- MonitorType string
- Type of monitor.
- TimeAssigned 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 string
- A filter to return only the resources that match the entire display name.
- Id string
- The OCID of the monitor.
- IsRun boolNow 
- If isRunNow is enabled, then the monitor will run immediately.
- MonitorType string
- Type of monitor.
- TimeAssigned 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 String
- A filter to return only the resources that match the entire display name.
- id String
- The OCID of the monitor.
- isRun BooleanNow 
- If isRunNow is enabled, then the monitor will run immediately.
- monitorType String
- Type of monitor.
- timeAssigned 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 string
- A filter to return only the resources that match the entire display name.
- id string
- The OCID of the monitor.
- isRun booleanNow 
- If isRunNow is enabled, then the monitor will run immediately.
- monitorType string
- Type of monitor.
- timeAssigned 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 str
- A filter to return only the resources that match the entire display name.
- id str
- The OCID of the monitor.
- is_run_ boolnow 
- If isRunNow is enabled, then the monitor will run immediately.
- monitor_type str
- Type of monitor.
- time_assigned 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 String
- A filter to return only the resources that match the entire display name.
- id String
- The OCID of the monitor.
- isRun BooleanNow 
- If isRunNow is enabled, then the monitor will run immediately.
- monitorType String
- Type of monitor.
- timeAssigned 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 string
- Latest image version of the On-premise VP worker.
- MinSupported stringVersion 
- Minimum supported image version of the On-premise VP worker.
- Version string
- Current image version of the On-premise VP worker.
- LatestVersion string
- Latest image version of the On-premise VP worker.
- MinSupported stringVersion 
- Minimum supported image version of the On-premise VP worker.
- Version string
- Current image version of the On-premise VP worker.
- latestVersion String
- Latest image version of the On-premise VP worker.
- minSupported StringVersion 
- Minimum supported image version of the On-premise VP worker.
- version String
- Current image version of the On-premise VP worker.
- latestVersion string
- Latest image version of the On-premise VP worker.
- minSupported stringVersion 
- Minimum supported image version of the On-premise VP worker.
- version string
- Current image version of the On-premise VP worker.
- latest_version str
- Latest image version of the On-premise VP worker.
- min_supported_ strversion 
- Minimum supported image version of the On-premise VP worker.
- version str
- Current image version of the On-premise VP worker.
- latestVersion String
- Latest image version of the On-premise VP worker.
- minSupported StringVersion 
- Minimum supported image version of the On-premise VP worker.
- version 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 ociTerraform Provider.