1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApmSynthetics
  5. OnPremiseVantagePointWorker
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.ApmSynthetics.OnPremiseVantagePointWorker

Explore with Pulumi AI

This resource provides the On Premise Vantage Point Worker resource in Oracle Cloud Infrastructure APM Availability Monitoring service (aka APM Synthetics Service).

Registers a new worker.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testOnPremiseVantagePointWorker = new oci.apmsynthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker", {
    apmDomainId: testApmDomain.id,
    name: onPremiseVantagePointWorkerName,
    onPremiseVantagePointId: testOnPremiseVantagePoint.id,
    resourcePrincipalTokenPublicKey: onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey,
    version: onPremiseVantagePointWorkerVersion,
    configurationDetails: onPremiseVantagePointWorkerConfigurationDetails,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    priority: onPremiseVantagePointWorkerPriority,
    status: onPremiseVantagePointWorkerStatus,
    workerType: onPremiseVantagePointWorkerWorkerType,
});
Copy
import pulumi
import pulumi_oci as oci

test_on_premise_vantage_point_worker = oci.apm_synthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker",
    apm_domain_id=test_apm_domain["id"],
    name=on_premise_vantage_point_worker_name,
    on_premise_vantage_point_id=test_on_premise_vantage_point["id"],
    resource_principal_token_public_key=on_premise_vantage_point_worker_resource_principal_token_public_key,
    version=on_premise_vantage_point_worker_version,
    configuration_details=on_premise_vantage_point_worker_configuration_details,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    priority=on_premise_vantage_point_worker_priority,
    status=on_premise_vantage_point_worker_status,
    worker_type=on_premise_vantage_point_worker_worker_type)
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.NewOnPremiseVantagePointWorker(ctx, "test_on_premise_vantage_point_worker", &apmsynthetics.OnPremiseVantagePointWorkerArgs{
			ApmDomainId:                     pulumi.Any(testApmDomain.Id),
			Name:                            pulumi.Any(onPremiseVantagePointWorkerName),
			OnPremiseVantagePointId:         pulumi.Any(testOnPremiseVantagePoint.Id),
			ResourcePrincipalTokenPublicKey: pulumi.Any(onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey),
			Version:                         pulumi.Any(onPremiseVantagePointWorkerVersion),
			ConfigurationDetails:            pulumi.Any(onPremiseVantagePointWorkerConfigurationDetails),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			Priority:   pulumi.Any(onPremiseVantagePointWorkerPriority),
			Status:     pulumi.Any(onPremiseVantagePointWorkerStatus),
			WorkerType: pulumi.Any(onPremiseVantagePointWorkerWorkerType),
		})
		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 testOnPremiseVantagePointWorker = new Oci.ApmSynthetics.OnPremiseVantagePointWorker("test_on_premise_vantage_point_worker", new()
    {
        ApmDomainId = testApmDomain.Id,
        Name = onPremiseVantagePointWorkerName,
        OnPremiseVantagePointId = testOnPremiseVantagePoint.Id,
        ResourcePrincipalTokenPublicKey = onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey,
        Version = onPremiseVantagePointWorkerVersion,
        ConfigurationDetails = onPremiseVantagePointWorkerConfigurationDetails,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        Priority = onPremiseVantagePointWorkerPriority,
        Status = onPremiseVantagePointWorkerStatus,
        WorkerType = onPremiseVantagePointWorkerWorkerType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.OnPremiseVantagePointWorker;
import com.pulumi.oci.ApmSynthetics.OnPremiseVantagePointWorkerArgs;
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) {
        var testOnPremiseVantagePointWorker = new OnPremiseVantagePointWorker("testOnPremiseVantagePointWorker", OnPremiseVantagePointWorkerArgs.builder()
            .apmDomainId(testApmDomain.id())
            .name(onPremiseVantagePointWorkerName)
            .onPremiseVantagePointId(testOnPremiseVantagePoint.id())
            .resourcePrincipalTokenPublicKey(onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey)
            .version(onPremiseVantagePointWorkerVersion)
            .configurationDetails(onPremiseVantagePointWorkerConfigurationDetails)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .priority(onPremiseVantagePointWorkerPriority)
            .status(onPremiseVantagePointWorkerStatus)
            .workerType(onPremiseVantagePointWorkerWorkerType)
            .build());

    }
}
Copy
resources:
  testOnPremiseVantagePointWorker:
    type: oci:ApmSynthetics:OnPremiseVantagePointWorker
    name: test_on_premise_vantage_point_worker
    properties:
      apmDomainId: ${testApmDomain.id}
      name: ${onPremiseVantagePointWorkerName}
      onPremiseVantagePointId: ${testOnPremiseVantagePoint.id}
      resourcePrincipalTokenPublicKey: ${onPremiseVantagePointWorkerResourcePrincipalTokenPublicKey}
      version: ${onPremiseVantagePointWorkerVersion}
      configurationDetails: ${onPremiseVantagePointWorkerConfigurationDetails}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      priority: ${onPremiseVantagePointWorkerPriority}
      status: ${onPremiseVantagePointWorkerStatus}
      workerType: ${onPremiseVantagePointWorkerWorkerType}
Copy

Create OnPremiseVantagePointWorker Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OnPremiseVantagePointWorker(name: string, args: OnPremiseVantagePointWorkerArgs, opts?: CustomResourceOptions);
@overload
def OnPremiseVantagePointWorker(resource_name: str,
                                args: OnPremiseVantagePointWorkerArgs,
                                opts: Optional[ResourceOptions] = None)

@overload
def OnPremiseVantagePointWorker(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                apm_domain_id: Optional[str] = None,
                                on_premise_vantage_point_id: Optional[str] = None,
                                resource_principal_token_public_key: Optional[str] = None,
                                version: Optional[str] = None,
                                configuration_details: Optional[str] = None,
                                defined_tags: Optional[Mapping[str, str]] = None,
                                freeform_tags: Optional[Mapping[str, str]] = None,
                                name: Optional[str] = None,
                                priority: Optional[int] = None,
                                status: Optional[str] = None,
                                worker_type: Optional[str] = None)
func NewOnPremiseVantagePointWorker(ctx *Context, name string, args OnPremiseVantagePointWorkerArgs, opts ...ResourceOption) (*OnPremiseVantagePointWorker, error)
public OnPremiseVantagePointWorker(string name, OnPremiseVantagePointWorkerArgs args, CustomResourceOptions? opts = null)
public OnPremiseVantagePointWorker(String name, OnPremiseVantagePointWorkerArgs args)
public OnPremiseVantagePointWorker(String name, OnPremiseVantagePointWorkerArgs args, CustomResourceOptions options)
type: oci:ApmSynthetics:OnPremiseVantagePointWorker
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OnPremiseVantagePointWorkerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OnPremiseVantagePointWorkerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OnPremiseVantagePointWorkerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OnPremiseVantagePointWorkerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OnPremiseVantagePointWorkerArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var onPremiseVantagePointWorkerResource = new Oci.ApmSynthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", new()
{
    ApmDomainId = "string",
    OnPremiseVantagePointId = "string",
    ResourcePrincipalTokenPublicKey = "string",
    Version = "string",
    ConfigurationDetails = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    Name = "string",
    Priority = 0,
    Status = "string",
    WorkerType = "string",
});
Copy
example, err := ApmSynthetics.NewOnPremiseVantagePointWorker(ctx, "onPremiseVantagePointWorkerResource", &ApmSynthetics.OnPremiseVantagePointWorkerArgs{
	ApmDomainId:                     pulumi.String("string"),
	OnPremiseVantagePointId:         pulumi.String("string"),
	ResourcePrincipalTokenPublicKey: pulumi.String("string"),
	Version:                         pulumi.String("string"),
	ConfigurationDetails:            pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name:       pulumi.String("string"),
	Priority:   pulumi.Int(0),
	Status:     pulumi.String("string"),
	WorkerType: pulumi.String("string"),
})
Copy
var onPremiseVantagePointWorkerResource = new OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", OnPremiseVantagePointWorkerArgs.builder()
    .apmDomainId("string")
    .onPremiseVantagePointId("string")
    .resourcePrincipalTokenPublicKey("string")
    .version("string")
    .configurationDetails("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .name("string")
    .priority(0)
    .status("string")
    .workerType("string")
    .build());
Copy
on_premise_vantage_point_worker_resource = oci.apm_synthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource",
    apm_domain_id="string",
    on_premise_vantage_point_id="string",
    resource_principal_token_public_key="string",
    version="string",
    configuration_details="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    name="string",
    priority=0,
    status="string",
    worker_type="string")
Copy
const onPremiseVantagePointWorkerResource = new oci.apmsynthetics.OnPremiseVantagePointWorker("onPremiseVantagePointWorkerResource", {
    apmDomainId: "string",
    onPremiseVantagePointId: "string",
    resourcePrincipalTokenPublicKey: "string",
    version: "string",
    configurationDetails: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    name: "string",
    priority: 0,
    status: "string",
    workerType: "string",
});
Copy
type: oci:ApmSynthetics:OnPremiseVantagePointWorker
properties:
    apmDomainId: string
    configurationDetails: string
    definedTags:
        string: string
    freeformTags:
        string: string
    name: string
    onPremiseVantagePointId: string
    priority: 0
    resourcePrincipalTokenPublicKey: string
    status: string
    version: string
    workerType: string
Copy

OnPremiseVantagePointWorker Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The OnPremiseVantagePointWorker resource accepts the following input properties:

ApmDomainId This property is required. string
(Updatable) The APM domain ID the request is intended for.
OnPremiseVantagePointId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the On-premise vantage point.
ResourcePrincipalTokenPublicKey
This property is required.
Changes to this property will trigger replacement.
string
public key for resource Principal Token based validation to be used in further calls.
Version
This property is required.
Changes to this property will trigger replacement.
string
Image version of the On-premise VP worker.
ConfigurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
Priority int
(Updatable) Priority of the On-premise VP worker to schedule monitors.
Status string
(Updatable) Enables or disables the On-premise VP worker.
WorkerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ApmDomainId This property is required. string
(Updatable) The APM domain ID the request is intended for.
OnPremiseVantagePointId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the On-premise vantage point.
ResourcePrincipalTokenPublicKey
This property is required.
Changes to this property will trigger replacement.
string
public key for resource Principal Token based validation to be used in further calls.
Version
This property is required.
Changes to this property will trigger replacement.
string
Image version of the On-premise VP worker.
ConfigurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
Priority int
(Updatable) Priority of the On-premise VP worker to schedule monitors.
Status string
(Updatable) Enables or disables the On-premise VP worker.
WorkerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId This property is required. String
(Updatable) The APM domain ID the request is intended for.
onPremiseVantagePointId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the On-premise vantage point.
resourcePrincipalTokenPublicKey
This property is required.
Changes to this property will trigger replacement.
String
public key for resource Principal Token based validation to be used in further calls.
version
This property is required.
Changes to this property will trigger replacement.
String
Image version of the On-premise VP worker.
configurationDetails String
(Updatable) Configuration details of the On-premise VP worker.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
name Changes to this property will trigger replacement. String
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
priority Integer
(Updatable) Priority of the On-premise VP worker to schedule monitors.
status String
(Updatable) Enables or disables the On-premise VP worker.
workerType Changes to this property will trigger replacement. String

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId This property is required. string
(Updatable) The APM domain ID the request is intended for.
onPremiseVantagePointId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the On-premise vantage point.
resourcePrincipalTokenPublicKey
This property is required.
Changes to this property will trigger replacement.
string
public key for resource Principal Token based validation to be used in further calls.
version
This property is required.
Changes to this property will trigger replacement.
string
Image version of the On-premise VP worker.
configurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
priority number
(Updatable) Priority of the On-premise VP worker to schedule monitors.
status string
(Updatable) Enables or disables the On-premise VP worker.
workerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apm_domain_id This property is required. str
(Updatable) The APM domain ID the request is intended for.
on_premise_vantage_point_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the On-premise vantage point.
resource_principal_token_public_key
This property is required.
Changes to this property will trigger replacement.
str
public key for resource Principal Token based validation to be used in further calls.
version
This property is required.
Changes to this property will trigger replacement.
str
Image version of the On-premise VP worker.
configuration_details str
(Updatable) Configuration details of the On-premise VP worker.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
name Changes to this property will trigger replacement. str
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
priority int
(Updatable) Priority of the On-premise VP worker to schedule monitors.
status str
(Updatable) Enables or disables the On-premise VP worker.
worker_type Changes to this property will trigger replacement. str

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId This property is required. String
(Updatable) The APM domain ID the request is intended for.
onPremiseVantagePointId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the On-premise vantage point.
resourcePrincipalTokenPublicKey
This property is required.
Changes to this property will trigger replacement.
String
public key for resource Principal Token based validation to be used in further calls.
version
This property is required.
Changes to this property will trigger replacement.
String
Image version of the On-premise VP worker.
configurationDetails String
(Updatable) Configuration details of the On-premise VP worker.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
name Changes to this property will trigger replacement. String
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
priority Number
(Updatable) Priority of the On-premise VP worker to schedule monitors.
status String
(Updatable) Enables or disables the On-premise VP worker.
workerType Changes to this property will trigger replacement. String

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the OnPremiseVantagePointWorker resource produces the following output properties:

DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
GeoInfo string
Geographical information of the On-premise VP worker.
Id string
The provider-assigned unique ID for this managed resource.
IdentityInfos List<OnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
MonitorLists List<OnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
OpvpId string
The OCID of the On-premise vantage point.
OpvpName string
On-premise vantage point name.
RuntimeId string
The runtime assigned id of the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
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
VersionDetails List<OnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
GeoInfo string
Geographical information of the On-premise VP worker.
Id string
The provider-assigned unique ID for this managed resource.
IdentityInfos []OnPremiseVantagePointWorkerIdentityInfo
Domain details of the On-premise VP worker.
MonitorLists []OnPremiseVantagePointWorkerMonitorList
Monitors list assigned to the On-premise VP worker.
OpvpId string
The OCID of the On-premise vantage point.
OpvpName string
On-premise vantage point name.
RuntimeId string
The runtime assigned id of the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
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
VersionDetails []OnPremiseVantagePointWorkerVersionDetail
Image version details of the On-premise VP worker.
displayName String
Unique name that can be edited. The name should not contain any confidential information.
geoInfo String
Geographical information of the On-premise VP worker.
id String
The provider-assigned unique ID for this managed resource.
identityInfos List<OnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
monitorLists List<OnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
opvpId String
The OCID of the On-premise vantage point.
opvpName String
On-premise vantage point name.
runtimeId String
The runtime assigned id of the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
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
versionDetails List<OnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
displayName string
Unique name that can be edited. The name should not contain any confidential information.
geoInfo string
Geographical information of the On-premise VP worker.
id string
The provider-assigned unique ID for this managed resource.
identityInfos OnPremiseVantagePointWorkerIdentityInfo[]
Domain details of the On-premise VP worker.
monitorLists OnPremiseVantagePointWorkerMonitorList[]
Monitors list assigned to the On-premise VP worker.
opvpId string
The OCID of the On-premise vantage point.
opvpName string
On-premise vantage point name.
runtimeId string
The runtime assigned id of the On-premise VP worker.
timeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp string
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
versionDetails OnPremiseVantagePointWorkerVersionDetail[]
Image version details of the On-premise VP worker.
display_name str
Unique name that can be edited. The name should not contain any confidential information.
geo_info str
Geographical information of the On-premise VP worker.
id str
The provider-assigned unique ID for this managed resource.
identity_infos Sequence[apmsynthetics.OnPremiseVantagePointWorkerIdentityInfo]
Domain details of the On-premise VP worker.
monitor_lists Sequence[apmsynthetics.OnPremiseVantagePointWorkerMonitorList]
Monitors list assigned to the On-premise VP worker.
opvp_id str
The OCID of the On-premise vantage point.
opvp_name str
On-premise vantage point name.
runtime_id str
The runtime assigned id of the On-premise VP worker.
time_created str
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_last_sync_up str
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_details Sequence[apmsynthetics.OnPremiseVantagePointWorkerVersionDetail]
Image version details of the On-premise VP worker.
displayName String
Unique name that can be edited. The name should not contain any confidential information.
geoInfo String
Geographical information of the On-premise VP worker.
id String
The provider-assigned unique ID for this managed resource.
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.
opvpId String
The OCID of the On-premise vantage point.
opvpName String
On-premise vantage point name.
runtimeId String
The runtime assigned id of the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
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
versionDetails List<Property Map>
Image version details of the On-premise VP worker.

Look up Existing OnPremiseVantagePointWorker Resource

Get an existing OnPremiseVantagePointWorker resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: OnPremiseVantagePointWorkerState, opts?: CustomResourceOptions): OnPremiseVantagePointWorker
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        apm_domain_id: Optional[str] = None,
        configuration_details: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        geo_info: Optional[str] = None,
        identity_infos: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerIdentityInfoArgs]] = None,
        monitor_lists: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerMonitorListArgs]] = None,
        name: Optional[str] = None,
        on_premise_vantage_point_id: Optional[str] = None,
        opvp_id: Optional[str] = None,
        opvp_name: Optional[str] = None,
        priority: Optional[int] = None,
        resource_principal_token_public_key: Optional[str] = None,
        runtime_id: Optional[str] = None,
        status: Optional[str] = None,
        time_created: Optional[str] = None,
        time_last_sync_up: Optional[str] = None,
        time_updated: Optional[str] = None,
        version: Optional[str] = None,
        version_details: Optional[Sequence[_apmsynthetics.OnPremiseVantagePointWorkerVersionDetailArgs]] = None,
        worker_type: Optional[str] = None) -> OnPremiseVantagePointWorker
func GetOnPremiseVantagePointWorker(ctx *Context, name string, id IDInput, state *OnPremiseVantagePointWorkerState, opts ...ResourceOption) (*OnPremiseVantagePointWorker, error)
public static OnPremiseVantagePointWorker Get(string name, Input<string> id, OnPremiseVantagePointWorkerState? state, CustomResourceOptions? opts = null)
public static OnPremiseVantagePointWorker get(String name, Output<String> id, OnPremiseVantagePointWorkerState state, CustomResourceOptions options)
resources:  _:    type: oci:ApmSynthetics:OnPremiseVantagePointWorker    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApmDomainId string
(Updatable) The APM domain ID the request is intended for.
ConfigurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
FreeformTags Dictionary<string, string>
(Updatable) 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.
IdentityInfos List<OnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
MonitorLists List<OnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
Name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
OnPremiseVantagePointId Changes to this property will trigger replacement. string
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey Changes to this property will trigger replacement. string
public key for resource Principal Token based validation to be used in further calls.
RuntimeId string
The runtime assigned id of the On-premise VP worker.
Status string
(Updatable) Enables or disables the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
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 Changes to this property will trigger replacement. string
Image version of the On-premise VP worker.
VersionDetails List<OnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
WorkerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ApmDomainId string
(Updatable) The APM domain ID the request is intended for.
ConfigurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
FreeformTags map[string]string
(Updatable) 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.
IdentityInfos []OnPremiseVantagePointWorkerIdentityInfoArgs
Domain details of the On-premise VP worker.
MonitorLists []OnPremiseVantagePointWorkerMonitorListArgs
Monitors list assigned to the On-premise VP worker.
Name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
OnPremiseVantagePointId Changes to this property will trigger replacement. string
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
ResourcePrincipalTokenPublicKey Changes to this property will trigger replacement. string
public key for resource Principal Token based validation to be used in further calls.
RuntimeId string
The runtime assigned id of the On-premise VP worker.
Status string
(Updatable) Enables or disables the On-premise VP worker.
TimeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
TimeLastSyncUp string
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 Changes to this property will trigger replacement. string
Image version of the On-premise VP worker.
VersionDetails []OnPremiseVantagePointWorkerVersionDetailArgs
Image version details of the On-premise VP worker.
WorkerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId String
(Updatable) The APM domain ID the request is intended for.
configurationDetails String
(Updatable) Configuration details of the On-premise VP worker.
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Unique name that can be edited. The name should not contain any confidential information.
freeformTags Map<String,String>
(Updatable) 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.
identityInfos List<OnPremiseVantagePointWorkerIdentityInfo>
Domain details of the On-premise VP worker.
monitorLists List<OnPremiseVantagePointWorkerMonitorList>
Monitors list assigned to the On-premise VP worker.
name Changes to this property will trigger replacement. String
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
onPremiseVantagePointId Changes to this property will trigger replacement. String
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey Changes to this property will trigger replacement. String
public key for resource Principal Token based validation to be used in further calls.
runtimeId String
The runtime assigned id of the On-premise VP worker.
status String
(Updatable) Enables or disables the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
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 Changes to this property will trigger replacement. String
Image version of the On-premise VP worker.
versionDetails List<OnPremiseVantagePointWorkerVersionDetail>
Image version details of the On-premise VP worker.
workerType Changes to this property will trigger replacement. String

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId string
(Updatable) The APM domain ID the request is intended for.
configurationDetails string
(Updatable) Configuration details of the On-premise VP worker.
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName string
Unique name that can be edited. The name should not contain any confidential information.
freeformTags {[key: string]: string}
(Updatable) 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.
identityInfos OnPremiseVantagePointWorkerIdentityInfo[]
Domain details of the On-premise VP worker.
monitorLists OnPremiseVantagePointWorkerMonitorList[]
Monitors list assigned to the On-premise VP worker.
name Changes to this property will trigger replacement. string
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
onPremiseVantagePointId Changes to this property will trigger replacement. string
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey Changes to this property will trigger replacement. string
public key for resource Principal Token based validation to be used in further calls.
runtimeId string
The runtime assigned id of the On-premise VP worker.
status string
(Updatable) Enables or disables the On-premise VP worker.
timeCreated string
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp string
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 Changes to this property will trigger replacement. string
Image version of the On-premise VP worker.
versionDetails OnPremiseVantagePointWorkerVersionDetail[]
Image version details of the On-premise VP worker.
workerType Changes to this property will trigger replacement. string

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apm_domain_id str
(Updatable) The APM domain ID the request is intended for.
configuration_details str
(Updatable) Configuration details of the On-premise VP worker.
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
display_name str
Unique name that can be edited. The name should not contain any confidential information.
freeform_tags Mapping[str, str]
(Updatable) 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.
identity_infos Sequence[apmsynthetics.OnPremiseVantagePointWorkerIdentityInfoArgs]
Domain details of the On-premise VP worker.
monitor_lists Sequence[apmsynthetics.OnPremiseVantagePointWorkerMonitorListArgs]
Monitors list assigned to the On-premise VP worker.
name Changes to this property will trigger replacement. str
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
on_premise_vantage_point_id Changes to this property will trigger replacement. str
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
resource_principal_token_public_key Changes to this property will trigger replacement. str
public key for resource Principal Token based validation to be used in further calls.
runtime_id str
The runtime assigned id of the On-premise VP worker.
status str
(Updatable) Enables or disables the On-premise VP worker.
time_created str
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
time_last_sync_up str
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 Changes to this property will trigger replacement. str
Image version of the On-premise VP worker.
version_details Sequence[apmsynthetics.OnPremiseVantagePointWorkerVersionDetailArgs]
Image version details of the On-premise VP worker.
worker_type Changes to this property will trigger replacement. str

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId String
(Updatable) The APM domain ID the request is intended for.
configurationDetails String
(Updatable) Configuration details of the On-premise VP worker.
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
displayName String
Unique name that can be edited. The name should not contain any confidential information.
freeformTags Map<String>
(Updatable) 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.
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 Changes to this property will trigger replacement. String
Unique On-premise VP worker name that cannot be edited. The name should not contain any confidential information.
onPremiseVantagePointId Changes to this property will trigger replacement. String
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
(Updatable) Priority of the On-premise VP worker to schedule monitors.
resourcePrincipalTokenPublicKey Changes to this property will trigger replacement. String
public key for resource Principal Token based validation to be used in further calls.
runtimeId String
The runtime assigned id of the On-premise VP worker.
status String
(Updatable) Enables or disables the On-premise VP worker.
timeCreated String
The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
timeLastSyncUp String
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 Changes to this property will trigger replacement. String
Image version of the On-premise VP worker.
versionDetails List<Property Map>
Image version details of the On-premise VP worker.
workerType Changes to this property will trigger replacement. String

Type of the On-premise VP worker.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Supporting Types

OnPremiseVantagePointWorkerIdentityInfo
, OnPremiseVantagePointWorkerIdentityInfoArgs

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

OnPremiseVantagePointWorkerMonitorList
, OnPremiseVantagePointWorkerMonitorListArgs

DisplayName string
Unique name that can be edited. The name should not contain any confidential information.
Id string
The OCID of the monitor.
IsRunNow bool
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
Unique name that can be edited. The name should not contain any confidential information.
Id string
The OCID of the monitor.
IsRunNow bool
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
Unique name that can be edited. The name should not contain any confidential information.
id String
The OCID of the monitor.
isRunNow Boolean
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
Unique name that can be edited. The name should not contain any confidential information.
id string
The OCID of the monitor.
isRunNow boolean
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
Unique name that can be edited. The name should not contain any confidential information.
id str
The OCID of the monitor.
is_run_now bool
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
Unique name that can be edited. The name should not contain any confidential information.
id String
The OCID of the monitor.
isRunNow Boolean
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

OnPremiseVantagePointWorkerVersionDetail
, OnPremiseVantagePointWorkerVersionDetailArgs

LatestVersion string
Latest image version of the On-premise VP worker.
MinSupportedVersion string
Minimum supported image version of the On-premise VP worker.
Version string
Image version of the On-premise VP worker.
LatestVersion string
Latest image version of the On-premise VP worker.
MinSupportedVersion string
Minimum supported image version of the On-premise VP worker.
Version string
Image version of the On-premise VP worker.
latestVersion String
Latest image version of the On-premise VP worker.
minSupportedVersion String
Minimum supported image version of the On-premise VP worker.
version String
Image version of the On-premise VP worker.
latestVersion string
Latest image version of the On-premise VP worker.
minSupportedVersion string
Minimum supported image version of the On-premise VP worker.
version string
Image version of the On-premise VP worker.
latest_version str
Latest image version of the On-premise VP worker.
min_supported_version str
Minimum supported image version of the On-premise VP worker.
version str
Image version of the On-premise VP worker.
latestVersion String
Latest image version of the On-premise VP worker.
minSupportedVersion String
Minimum supported image version of the On-premise VP worker.
version String
Image version of the On-premise VP worker.

Import

OnPremiseVantagePointWorkers can be imported using the id, e.g.

$ pulumi import oci:ApmSynthetics/onPremiseVantagePointWorker:OnPremiseVantagePointWorker test_on_premise_vantage_point_worker "onPremiseVantagePoints/{onPremiseVantagePointId}/workers/{workerId}/apmDomainId/{apmDomainId}"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.