1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApmSynthetics
  5. DedicatedVantagePoint
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.ApmSynthetics.DedicatedVantagePoint

Explore with Pulumi AI

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

Registers a new dedicated vantage point.

Example Usage

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

const testDedicatedVantagePoint = new oci.apmsynthetics.DedicatedVantagePoint("test_dedicated_vantage_point", {
    apmDomainId: testApmDomain.id,
    displayName: dedicatedVantagePointDisplayName,
    dvpStackDetails: {
        dvpStackId: testStack.id,
        dvpStackType: dedicatedVantagePointDvpStackDetailsDvpStackType,
        dvpStreamId: testStream.id,
        dvpVersion: dedicatedVantagePointDvpStackDetailsDvpVersion,
    },
    region: dedicatedVantagePointRegion,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    status: dedicatedVantagePointStatus,
});
Copy
import pulumi
import pulumi_oci as oci

test_dedicated_vantage_point = oci.apm_synthetics.DedicatedVantagePoint("test_dedicated_vantage_point",
    apm_domain_id=test_apm_domain["id"],
    display_name=dedicated_vantage_point_display_name,
    dvp_stack_details={
        "dvp_stack_id": test_stack["id"],
        "dvp_stack_type": dedicated_vantage_point_dvp_stack_details_dvp_stack_type,
        "dvp_stream_id": test_stream["id"],
        "dvp_version": dedicated_vantage_point_dvp_stack_details_dvp_version,
    },
    region=dedicated_vantage_point_region,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    status=dedicated_vantage_point_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.NewDedicatedVantagePoint(ctx, "test_dedicated_vantage_point", &apmsynthetics.DedicatedVantagePointArgs{
			ApmDomainId: pulumi.Any(testApmDomain.Id),
			DisplayName: pulumi.Any(dedicatedVantagePointDisplayName),
			DvpStackDetails: &apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs{
				DvpStackId:   pulumi.Any(testStack.Id),
				DvpStackType: pulumi.Any(dedicatedVantagePointDvpStackDetailsDvpStackType),
				DvpStreamId:  pulumi.Any(testStream.Id),
				DvpVersion:   pulumi.Any(dedicatedVantagePointDvpStackDetailsDvpVersion),
			},
			Region: pulumi.Any(dedicatedVantagePointRegion),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
			Status: pulumi.Any(dedicatedVantagePointStatus),
		})
		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 testDedicatedVantagePoint = new Oci.ApmSynthetics.DedicatedVantagePoint("test_dedicated_vantage_point", new()
    {
        ApmDomainId = testApmDomain.Id,
        DisplayName = dedicatedVantagePointDisplayName,
        DvpStackDetails = new Oci.ApmSynthetics.Inputs.DedicatedVantagePointDvpStackDetailsArgs
        {
            DvpStackId = testStack.Id,
            DvpStackType = dedicatedVantagePointDvpStackDetailsDvpStackType,
            DvpStreamId = testStream.Id,
            DvpVersion = dedicatedVantagePointDvpStackDetailsDvpVersion,
        },
        Region = dedicatedVantagePointRegion,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        Status = dedicatedVantagePointStatus,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.DedicatedVantagePoint;
import com.pulumi.oci.ApmSynthetics.DedicatedVantagePointArgs;
import com.pulumi.oci.ApmSynthetics.inputs.DedicatedVantagePointDvpStackDetailsArgs;
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 testDedicatedVantagePoint = new DedicatedVantagePoint("testDedicatedVantagePoint", DedicatedVantagePointArgs.builder()
            .apmDomainId(testApmDomain.id())
            .displayName(dedicatedVantagePointDisplayName)
            .dvpStackDetails(DedicatedVantagePointDvpStackDetailsArgs.builder()
                .dvpStackId(testStack.id())
                .dvpStackType(dedicatedVantagePointDvpStackDetailsDvpStackType)
                .dvpStreamId(testStream.id())
                .dvpVersion(dedicatedVantagePointDvpStackDetailsDvpVersion)
                .build())
            .region(dedicatedVantagePointRegion)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .status(dedicatedVantagePointStatus)
            .build());

    }
}
Copy
resources:
  testDedicatedVantagePoint:
    type: oci:ApmSynthetics:DedicatedVantagePoint
    name: test_dedicated_vantage_point
    properties:
      apmDomainId: ${testApmDomain.id}
      displayName: ${dedicatedVantagePointDisplayName}
      dvpStackDetails:
        dvpStackId: ${testStack.id}
        dvpStackType: ${dedicatedVantagePointDvpStackDetailsDvpStackType}
        dvpStreamId: ${testStream.id}
        dvpVersion: ${dedicatedVantagePointDvpStackDetailsDvpVersion}
      region: ${dedicatedVantagePointRegion}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      status: ${dedicatedVantagePointStatus}
Copy

Create DedicatedVantagePoint Resource

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

Constructor syntax

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

@overload
def DedicatedVantagePoint(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          apm_domain_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          dvp_stack_details: Optional[_apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs] = None,
                          region: Optional[str] = None,
                          defined_tags: Optional[Mapping[str, str]] = None,
                          freeform_tags: Optional[Mapping[str, str]] = None,
                          status: Optional[str] = None)
func NewDedicatedVantagePoint(ctx *Context, name string, args DedicatedVantagePointArgs, opts ...ResourceOption) (*DedicatedVantagePoint, error)
public DedicatedVantagePoint(string name, DedicatedVantagePointArgs args, CustomResourceOptions? opts = null)
public DedicatedVantagePoint(String name, DedicatedVantagePointArgs args)
public DedicatedVantagePoint(String name, DedicatedVantagePointArgs args, CustomResourceOptions options)
type: oci:ApmSynthetics:DedicatedVantagePoint
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. DedicatedVantagePointArgs
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. DedicatedVantagePointArgs
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. DedicatedVantagePointArgs
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. DedicatedVantagePointArgs
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. DedicatedVantagePointArgs
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 dedicatedVantagePointResource = new Oci.ApmSynthetics.DedicatedVantagePoint("dedicatedVantagePointResource", new()
{
    ApmDomainId = "string",
    DisplayName = "string",
    DvpStackDetails = new Oci.ApmSynthetics.Inputs.DedicatedVantagePointDvpStackDetailsArgs
    {
        DvpStackId = "string",
        DvpStackType = "string",
        DvpStreamId = "string",
        DvpVersion = "string",
    },
    Region = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    Status = "string",
});
Copy
example, err := ApmSynthetics.NewDedicatedVantagePoint(ctx, "dedicatedVantagePointResource", &ApmSynthetics.DedicatedVantagePointArgs{
	ApmDomainId: pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	DvpStackDetails: &apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs{
		DvpStackId:   pulumi.String("string"),
		DvpStackType: pulumi.String("string"),
		DvpStreamId:  pulumi.String("string"),
		DvpVersion:   pulumi.String("string"),
	},
	Region: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Status: pulumi.String("string"),
})
Copy
var dedicatedVantagePointResource = new DedicatedVantagePoint("dedicatedVantagePointResource", DedicatedVantagePointArgs.builder()
    .apmDomainId("string")
    .displayName("string")
    .dvpStackDetails(DedicatedVantagePointDvpStackDetailsArgs.builder()
        .dvpStackId("string")
        .dvpStackType("string")
        .dvpStreamId("string")
        .dvpVersion("string")
        .build())
    .region("string")
    .definedTags(Map.of("string", "string"))
    .freeformTags(Map.of("string", "string"))
    .status("string")
    .build());
Copy
dedicated_vantage_point_resource = oci.apm_synthetics.DedicatedVantagePoint("dedicatedVantagePointResource",
    apm_domain_id="string",
    display_name="string",
    dvp_stack_details={
        "dvp_stack_id": "string",
        "dvp_stack_type": "string",
        "dvp_stream_id": "string",
        "dvp_version": "string",
    },
    region="string",
    defined_tags={
        "string": "string",
    },
    freeform_tags={
        "string": "string",
    },
    status="string")
Copy
const dedicatedVantagePointResource = new oci.apmsynthetics.DedicatedVantagePoint("dedicatedVantagePointResource", {
    apmDomainId: "string",
    displayName: "string",
    dvpStackDetails: {
        dvpStackId: "string",
        dvpStackType: "string",
        dvpStreamId: "string",
        dvpVersion: "string",
    },
    region: "string",
    definedTags: {
        string: "string",
    },
    freeformTags: {
        string: "string",
    },
    status: "string",
});
Copy
type: oci:ApmSynthetics:DedicatedVantagePoint
properties:
    apmDomainId: string
    definedTags:
        string: string
    displayName: string
    dvpStackDetails:
        dvpStackId: string
        dvpStackType: string
        dvpStreamId: string
        dvpVersion: string
    freeformTags:
        string: string
    region: string
    status: string
Copy

DedicatedVantagePoint 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 DedicatedVantagePoint resource accepts the following input properties:

ApmDomainId This property is required. string
(Updatable) The APM domain ID the request is intended for.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
DvpStackDetails This property is required. DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
Region This property is required. string
(Updatable) Name of the region.
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"}
Status string

(Updatable) Status of the dedicated vantage point.

** 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.
DisplayName
This property is required.
Changes to this property will trigger replacement.
string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
DvpStackDetails This property is required. DedicatedVantagePointDvpStackDetailsArgs
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
Region This property is required. string
(Updatable) Name of the region.
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"}
Status string

(Updatable) Status of the dedicated vantage point.

** 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.
displayName
This property is required.
Changes to this property will trigger replacement.
String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails This property is required. DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
region This property is required. String
(Updatable) Name of the region.
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"}
status String

(Updatable) Status of the dedicated vantage point.

** 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.
displayName
This property is required.
Changes to this property will trigger replacement.
string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails This property is required. DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
region This property is required. string
(Updatable) Name of the region.
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"}
status string

(Updatable) Status of the dedicated vantage point.

** 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.
display_name
This property is required.
Changes to this property will trigger replacement.
str
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvp_stack_details This property is required. apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
region This property is required. str
(Updatable) Name of the region.
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"}
status str

(Updatable) Status of the dedicated vantage point.

** 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.
displayName
This property is required.
Changes to this property will trigger replacement.
String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails This property is required. Property Map
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
region This property is required. String
(Updatable) Name of the region.
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"}
status String

(Updatable) Status of the dedicated vantage point.

** 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 DedicatedVantagePoint resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
MonitorStatusCountMaps List<DedicatedVantagePointMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
TimeCreated string
The time the resource was created, 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
Id string
The provider-assigned unique ID for this managed resource.
MonitorStatusCountMaps []DedicatedVantagePointMonitorStatusCountMap
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
TimeCreated string
The time the resource was created, 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
id String
The provider-assigned unique ID for this managed resource.
monitorStatusCountMaps List<DedicatedVantagePointMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
timeCreated String
The time the resource was created, 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
id string
The provider-assigned unique ID for this managed resource.
monitorStatusCountMaps DedicatedVantagePointMonitorStatusCountMap[]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
timeCreated string
The time the resource was created, 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
id str
The provider-assigned unique ID for this managed resource.
monitor_status_count_maps Sequence[apmsynthetics.DedicatedVantagePointMonitorStatusCountMap]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name str
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
time_created str
The time the resource was created, 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
id String
The provider-assigned unique ID for this managed resource.
monitorStatusCountMaps List<Property Map>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
timeCreated String
The time the resource was created, 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

Look up Existing DedicatedVantagePoint Resource

Get an existing DedicatedVantagePoint 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?: DedicatedVantagePointState, opts?: CustomResourceOptions): DedicatedVantagePoint
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        apm_domain_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        dvp_stack_details: Optional[_apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        monitor_status_count_maps: Optional[Sequence[_apmsynthetics.DedicatedVantagePointMonitorStatusCountMapArgs]] = None,
        name: Optional[str] = None,
        region: Optional[str] = None,
        status: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> DedicatedVantagePoint
func GetDedicatedVantagePoint(ctx *Context, name string, id IDInput, state *DedicatedVantagePointState, opts ...ResourceOption) (*DedicatedVantagePoint, error)
public static DedicatedVantagePoint Get(string name, Input<string> id, DedicatedVantagePointState? state, CustomResourceOptions? opts = null)
public static DedicatedVantagePoint get(String name, Output<String> id, DedicatedVantagePointState state, CustomResourceOptions options)
resources:  _:    type: oci:ApmSynthetics:DedicatedVantagePoint    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.
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 Changes to this property will trigger replacement. string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
DvpStackDetails DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
MonitorStatusCountMaps List<DedicatedVantagePointMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
Region string
(Updatable) Name of the region.
Status string

(Updatable) Status of the dedicated vantage point.

** 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

TimeCreated string
The time the resource was created, 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
ApmDomainId string
(Updatable) The APM domain ID the request is intended for.
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 Changes to this property will trigger replacement. string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
DvpStackDetails DedicatedVantagePointDvpStackDetailsArgs
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
MonitorStatusCountMaps []DedicatedVantagePointMonitorStatusCountMapArgs
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
Region string
(Updatable) Name of the region.
Status string

(Updatable) Status of the dedicated vantage point.

** 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

TimeCreated string
The time the resource was created, 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
apmDomainId String
(Updatable) The APM domain ID the request is intended for.
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 Changes to this property will trigger replacement. String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
monitorStatusCountMaps List<DedicatedVantagePointMonitorStatusCountMap>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
region String
(Updatable) Name of the region.
status String

(Updatable) Status of the dedicated vantage point.

** 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

timeCreated String
The time the resource was created, 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
apmDomainId string
(Updatable) The APM domain ID the request is intended for.
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 Changes to this property will trigger replacement. string
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails DedicatedVantagePointDvpStackDetails
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
monitorStatusCountMaps DedicatedVantagePointMonitorStatusCountMap[]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name string
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
region string
(Updatable) Name of the region.
status string

(Updatable) Status of the dedicated vantage point.

** 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

timeCreated string
The time the resource was created, 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
apm_domain_id str
(Updatable) The APM domain ID the request is intended for.
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 Changes to this property will trigger replacement. str
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvp_stack_details apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
monitor_status_count_maps Sequence[apmsynthetics.DedicatedVantagePointMonitorStatusCountMapArgs]
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name str
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
region str
(Updatable) Name of the region.
status str

(Updatable) Status of the dedicated vantage point.

** 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

time_created str
The time the resource was created, 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
apmDomainId String
(Updatable) The APM domain ID the request is intended for.
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 Changes to this property will trigger replacement. String
Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
dvpStackDetails Property Map
(Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
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"}
monitorStatusCountMaps List<Property Map>
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
name String
Unique permanent name of the dedicated vantage point. This is the same as the displayName.
region String
(Updatable) Name of the region.
status String

(Updatable) Status of the dedicated vantage point.

** 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

timeCreated String
The time the resource was created, 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

Supporting Types

DedicatedVantagePointDvpStackDetails
, DedicatedVantagePointDvpStackDetailsArgs

DvpStackId This property is required. string
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
DvpStackType This property is required. string
(Updatable) Type of stack.
DvpStreamId This property is required. string
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
DvpVersion This property is required. string
(Updatable) Version of the dedicated vantage point.
DvpStackId This property is required. string
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
DvpStackType This property is required. string
(Updatable) Type of stack.
DvpStreamId This property is required. string
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
DvpVersion This property is required. string
(Updatable) Version of the dedicated vantage point.
dvpStackId This property is required. String
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. String
(Updatable) Type of stack.
dvpStreamId This property is required. String
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. String
(Updatable) Version of the dedicated vantage point.
dvpStackId This property is required. string
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. string
(Updatable) Type of stack.
dvpStreamId This property is required. string
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. string
(Updatable) Version of the dedicated vantage point.
dvp_stack_id This property is required. str
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
dvp_stack_type This property is required. str
(Updatable) Type of stack.
dvp_stream_id This property is required. str
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
dvp_version This property is required. str
(Updatable) Version of the dedicated vantage point.
dvpStackId This property is required. String
(Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
dvpStackType This property is required. String
(Updatable) Type of stack.
dvpStreamId This property is required. String
(Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
dvpVersion This property is required. String
(Updatable) Version of the dedicated vantage point.

DedicatedVantagePointMonitorStatusCountMap
, DedicatedVantagePointMonitorStatusCountMapArgs

Disabled int
Number of disabled monitors using the script.
Enabled int
Number of enabled monitors using the script.
Invalid int
Number of invalid monitors using the script.
Total int
Total number of monitors using the script.
Disabled int
Number of disabled monitors using the script.
Enabled int
Number of enabled monitors using the script.
Invalid int
Number of invalid monitors using the script.
Total int
Total number of monitors using the script.
disabled Integer
Number of disabled monitors using the script.
enabled Integer
Number of enabled monitors using the script.
invalid Integer
Number of invalid monitors using the script.
total Integer
Total number of monitors using the script.
disabled number
Number of disabled monitors using the script.
enabled number
Number of enabled monitors using the script.
invalid number
Number of invalid monitors using the script.
total number
Total number of monitors using the script.
disabled int
Number of disabled monitors using the script.
enabled int
Number of enabled monitors using the script.
invalid int
Number of invalid monitors using the script.
total int
Total number of monitors using the script.
disabled Number
Number of disabled monitors using the script.
enabled Number
Number of enabled monitors using the script.
invalid Number
Number of invalid monitors using the script.
total Number
Total number of monitors using the script.

Import

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

$ pulumi import oci:ApmSynthetics/dedicatedVantagePoint:DedicatedVantagePoint test_dedicated_vantage_point "dedicatedVantagePoints/{dedicatedVantagePointId}/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.