1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApmSynthetics
  5. DedicatedVantagePoint
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.ApmSynthetics.DedicatedVantagePoint

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    This resource provides the Dedicated Vantage Point resource in Oracle Cloud Infrastructure 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("testDedicatedVantagePoint", {
        apmDomainId: oci_apm_apm_domain.test_apm_domain.id,
        displayName: _var.dedicated_vantage_point_display_name,
        dvpStackDetails: {
            dvpStackId: oci_resourcemanager_stack.test_stack.id,
            dvpStackType: _var.dedicated_vantage_point_dvp_stack_details_dvp_stack_type,
            dvpStreamId: oci_streaming_stream.test_stream.id,
            dvpVersion: _var.dedicated_vantage_point_dvp_stack_details_dvp_version,
        },
        region: _var.dedicated_vantage_point_region,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        status: _var.dedicated_vantage_point_status,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_dedicated_vantage_point = oci.apm_synthetics.DedicatedVantagePoint("testDedicatedVantagePoint",
        apm_domain_id=oci_apm_apm_domain["test_apm_domain"]["id"],
        display_name=var["dedicated_vantage_point_display_name"],
        dvp_stack_details=oci.apm_synthetics.DedicatedVantagePointDvpStackDetailsArgs(
            dvp_stack_id=oci_resourcemanager_stack["test_stack"]["id"],
            dvp_stack_type=var["dedicated_vantage_point_dvp_stack_details_dvp_stack_type"],
            dvp_stream_id=oci_streaming_stream["test_stream"]["id"],
            dvp_version=var["dedicated_vantage_point_dvp_stack_details_dvp_version"],
        ),
        region=var["dedicated_vantage_point_region"],
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        status=var["dedicated_vantage_point_status"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/ApmSynthetics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ApmSynthetics.NewDedicatedVantagePoint(ctx, "testDedicatedVantagePoint", &ApmSynthetics.DedicatedVantagePointArgs{
    			ApmDomainId: pulumi.Any(oci_apm_apm_domain.Test_apm_domain.Id),
    			DisplayName: pulumi.Any(_var.Dedicated_vantage_point_display_name),
    			DvpStackDetails: &apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs{
    				DvpStackId:   pulumi.Any(oci_resourcemanager_stack.Test_stack.Id),
    				DvpStackType: pulumi.Any(_var.Dedicated_vantage_point_dvp_stack_details_dvp_stack_type),
    				DvpStreamId:  pulumi.Any(oci_streaming_stream.Test_stream.Id),
    				DvpVersion:   pulumi.Any(_var.Dedicated_vantage_point_dvp_stack_details_dvp_version),
    			},
    			Region: pulumi.Any(_var.Dedicated_vantage_point_region),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			Status: pulumi.Any(_var.Dedicated_vantage_point_status),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testDedicatedVantagePoint = new Oci.ApmSynthetics.DedicatedVantagePoint("testDedicatedVantagePoint", new()
        {
            ApmDomainId = oci_apm_apm_domain.Test_apm_domain.Id,
            DisplayName = @var.Dedicated_vantage_point_display_name,
            DvpStackDetails = new Oci.ApmSynthetics.Inputs.DedicatedVantagePointDvpStackDetailsArgs
            {
                DvpStackId = oci_resourcemanager_stack.Test_stack.Id,
                DvpStackType = @var.Dedicated_vantage_point_dvp_stack_details_dvp_stack_type,
                DvpStreamId = oci_streaming_stream.Test_stream.Id,
                DvpVersion = @var.Dedicated_vantage_point_dvp_stack_details_dvp_version,
            },
            Region = @var.Dedicated_vantage_point_region,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            Status = @var.Dedicated_vantage_point_status,
        });
    
    });
    
    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(oci_apm_apm_domain.test_apm_domain().id())
                .displayName(var_.dedicated_vantage_point_display_name())
                .dvpStackDetails(DedicatedVantagePointDvpStackDetailsArgs.builder()
                    .dvpStackId(oci_resourcemanager_stack.test_stack().id())
                    .dvpStackType(var_.dedicated_vantage_point_dvp_stack_details_dvp_stack_type())
                    .dvpStreamId(oci_streaming_stream.test_stream().id())
                    .dvpVersion(var_.dedicated_vantage_point_dvp_stack_details_dvp_version())
                    .build())
                .region(var_.dedicated_vantage_point_region())
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .status(var_.dedicated_vantage_point_status())
                .build());
    
        }
    }
    
    resources:
      testDedicatedVantagePoint:
        type: oci:ApmSynthetics:DedicatedVantagePoint
        properties:
          #Required
          apmDomainId: ${oci_apm_apm_domain.test_apm_domain.id}
          displayName: ${var.dedicated_vantage_point_display_name}
          dvpStackDetails:
            dvpStackId: ${oci_resourcemanager_stack.test_stack.id}
            dvpStackType: ${var.dedicated_vantage_point_dvp_stack_details_dvp_stack_type}
            dvpStreamId: ${oci_streaming_stream.test_stream.id}
            dvpVersion: ${var.dedicated_vantage_point_dvp_stack_details_dvp_version}
          region: ${var.dedicated_vantage_point_region}
          #Optional
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          status: ${var.dedicated_vantage_point_status}
    

    Create DedicatedVantagePoint Resource

    new DedicatedVantagePoint(name: string, args: DedicatedVantagePointArgs, opts?: CustomResourceOptions);
    @overload
    def DedicatedVantagePoint(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              apm_domain_id: Optional[str] = None,
                              defined_tags: Optional[Mapping[str, Any]] = None,
                              display_name: Optional[str] = None,
                              dvp_stack_details: Optional[_apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs] = None,
                              freeform_tags: Optional[Mapping[str, Any]] = None,
                              region: Optional[str] = None,
                              status: Optional[str] = None)
    @overload
    def DedicatedVantagePoint(resource_name: str,
                              args: DedicatedVantagePointArgs,
                              opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args DedicatedVantagePointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DedicatedVantagePointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DedicatedVantagePointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DedicatedVantagePointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The DedicatedVantagePoint resource accepts the following input properties:

    ApmDomainId string
    (Updatable) The APM domain ID the request is intended for.
    DisplayName 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.
    Region string
    (Updatable) Name of the region.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>
    (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 string
    (Updatable) The APM domain ID the request is intended for.
    DisplayName 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.
    Region string
    (Updatable) Name of the region.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}
    (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 String
    (Updatable) The APM domain ID the request is intended for.
    displayName 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.
    region String
    (Updatable) Name of the region.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>
    (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 string
    (Updatable) The APM domain ID the request is intended for.
    displayName 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.
    region string
    (Updatable) Name of the region.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}
    (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 str
    (Updatable) The APM domain ID the request is intended for.
    display_name str
    Unique dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
    dvp_stack_details DedicatedVantagePointDvpStackDetailsArgs
    (Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
    region str
    (Updatable) Name of the region.
    defined_tags Mapping[str, Any]
    (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, Any]
    (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 String
    (Updatable) The APM domain ID the request is intended for.
    displayName 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.
    region String
    (Updatable) Name of the region.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>
    (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 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, Any]] = None,
            display_name: Optional[str] = None,
            dvp_stack_details: Optional[_apmsynthetics.DedicatedVantagePointDvpStackDetailsArgs] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName 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, object>
    (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]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName 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]interface{}
    (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,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName 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,Object>
    (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]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName 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]: any}
    (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, Any]
    (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 dedicated vantage point name that cannot be edited. The name should not contain any confidential information.
    dvp_stack_details DedicatedVantagePointDvpStackDetailsArgs
    (Updatable) Details of a Dedicated Vantage Point (DVP) stack in Resource Manager.
    freeform_tags Mapping[str, Any]
    (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 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<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName 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<Any>
    (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 string
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    DvpStackType string
    (Updatable) Type of stack.
    DvpStreamId string
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    DvpVersion string
    (Updatable) Version of the dedicated vantage point.
    DvpStackId string
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    DvpStackType string
    (Updatable) Type of stack.
    DvpStreamId string
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    DvpVersion string
    (Updatable) Version of the dedicated vantage point.
    dvpStackId String
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    dvpStackType String
    (Updatable) Type of stack.
    dvpStreamId String
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    dvpVersion String
    (Updatable) Version of the dedicated vantage point.
    dvpStackId string
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    dvpStackType string
    (Updatable) Type of stack.
    dvpStreamId string
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    dvpVersion string
    (Updatable) Version of the dedicated vantage point.
    dvp_stack_id str
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    dvp_stack_type str
    (Updatable) Type of stack.
    dvp_stream_id str
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    dvp_version str
    (Updatable) Version of the dedicated vantage point.
    dvpStackId String
    (Updatable) Stack OCID of the Resource Manager stack for dedicated vantage point.
    dvpStackType String
    (Updatable) Type of stack.
    dvpStreamId String
    (Updatable) Stream OCID of the Resource Manager stack for dedicated vantage point.
    dvpVersion 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}"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi