1. Packages
  2. Azure Classic
  3. API Docs
  4. dynatrace
  5. Monitor

We recommend using Azure Native.

Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi

azure.dynatrace.Monitor

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi

    Manages Dynatrace monitors.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleMonitor:
        type: azure:dynatrace:Monitor
        name: example
        properties:
          name: exmpledynatracemonitor
          resourceGroupName: ${example.name}
          location: ${test.location}
          monitoringEnabled: true
          marketplaceSubscriptionStatus: Active
          identity:
            type: SystemAssigned
          user:
            firstName: Alice
            lastName: Bobab
            email: alice@microsoft.com
            phoneNumber: '123456'
            country: westus
          plan:
            usageType: COMMITTED
            billingCycle: MONTHLY
            plan: azureportalintegration_privatepreview@TIDhjdtn7tfnxcy
            effectiveDate: 2019-08-30T15:14:33Z
    

    Create Monitor Resource

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

    Constructor syntax

    new Monitor(name: string, args: MonitorArgs, opts?: CustomResourceOptions);
    @overload
    def Monitor(resource_name: str,
                args: MonitorArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Monitor(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                identity: Optional[MonitorIdentityArgs] = None,
                marketplace_subscription: Optional[str] = None,
                plan: Optional[MonitorPlanArgs] = None,
                resource_group_name: Optional[str] = None,
                user: Optional[MonitorUserArgs] = None,
                location: Optional[str] = None,
                monitoring_enabled: Optional[bool] = None,
                name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewMonitor(ctx *Context, name string, args MonitorArgs, opts ...ResourceOption) (*Monitor, error)
    public Monitor(string name, MonitorArgs args, CustomResourceOptions? opts = null)
    public Monitor(String name, MonitorArgs args)
    public Monitor(String name, MonitorArgs args, CustomResourceOptions options)
    
    type: azure:dynatrace:Monitor
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MonitorArgs
    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 MonitorArgs
    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 MonitorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MonitorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MonitorArgs
    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 azureMonitorResource = new Azure.Dynatrace.Monitor("azureMonitorResource", new()
    {
        Identity = new Azure.Dynatrace.Inputs.MonitorIdentityArgs
        {
            Type = "string",
            PrincipalId = "string",
            TenantId = "string",
        },
        MarketplaceSubscription = "string",
        Plan = new Azure.Dynatrace.Inputs.MonitorPlanArgs
        {
            Plan = "string",
            BillingCycle = "string",
            EffectiveDate = "string",
            UsageType = "string",
        },
        ResourceGroupName = "string",
        User = new Azure.Dynatrace.Inputs.MonitorUserArgs
        {
            Country = "string",
            Email = "string",
            FirstName = "string",
            LastName = "string",
            PhoneNumber = "string",
        },
        Location = "string",
        MonitoringEnabled = false,
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := dynatrace.NewMonitor(ctx, "azureMonitorResource", &dynatrace.MonitorArgs{
    	Identity: &dynatrace.MonitorIdentityArgs{
    		Type:        pulumi.String("string"),
    		PrincipalId: pulumi.String("string"),
    		TenantId:    pulumi.String("string"),
    	},
    	MarketplaceSubscription: pulumi.String("string"),
    	Plan: &dynatrace.MonitorPlanArgs{
    		Plan:          pulumi.String("string"),
    		BillingCycle:  pulumi.String("string"),
    		EffectiveDate: pulumi.String("string"),
    		UsageType:     pulumi.String("string"),
    	},
    	ResourceGroupName: pulumi.String("string"),
    	User: &dynatrace.MonitorUserArgs{
    		Country:     pulumi.String("string"),
    		Email:       pulumi.String("string"),
    		FirstName:   pulumi.String("string"),
    		LastName:    pulumi.String("string"),
    		PhoneNumber: pulumi.String("string"),
    	},
    	Location:          pulumi.String("string"),
    	MonitoringEnabled: pulumi.Bool(false),
    	Name:              pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureMonitorResource = new Monitor("azureMonitorResource", MonitorArgs.builder()
        .identity(MonitorIdentityArgs.builder()
            .type("string")
            .principalId("string")
            .tenantId("string")
            .build())
        .marketplaceSubscription("string")
        .plan(MonitorPlanArgs.builder()
            .plan("string")
            .billingCycle("string")
            .effectiveDate("string")
            .usageType("string")
            .build())
        .resourceGroupName("string")
        .user(MonitorUserArgs.builder()
            .country("string")
            .email("string")
            .firstName("string")
            .lastName("string")
            .phoneNumber("string")
            .build())
        .location("string")
        .monitoringEnabled(false)
        .name("string")
        .tags(Map.of("string", "string"))
        .build());
    
    azure_monitor_resource = azure.dynatrace.Monitor("azureMonitorResource",
        identity={
            "type": "string",
            "principal_id": "string",
            "tenant_id": "string",
        },
        marketplace_subscription="string",
        plan={
            "plan": "string",
            "billing_cycle": "string",
            "effective_date": "string",
            "usage_type": "string",
        },
        resource_group_name="string",
        user={
            "country": "string",
            "email": "string",
            "first_name": "string",
            "last_name": "string",
            "phone_number": "string",
        },
        location="string",
        monitoring_enabled=False,
        name="string",
        tags={
            "string": "string",
        })
    
    const azureMonitorResource = new azure.dynatrace.Monitor("azureMonitorResource", {
        identity: {
            type: "string",
            principalId: "string",
            tenantId: "string",
        },
        marketplaceSubscription: "string",
        plan: {
            plan: "string",
            billingCycle: "string",
            effectiveDate: "string",
            usageType: "string",
        },
        resourceGroupName: "string",
        user: {
            country: "string",
            email: "string",
            firstName: "string",
            lastName: "string",
            phoneNumber: "string",
        },
        location: "string",
        monitoringEnabled: false,
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:dynatrace:Monitor
    properties:
        identity:
            principalId: string
            tenantId: string
            type: string
        location: string
        marketplaceSubscription: string
        monitoringEnabled: false
        name: string
        plan:
            billingCycle: string
            effectiveDate: string
            plan: string
            usageType: string
        resourceGroupName: string
        tags:
            string: string
        user:
            country: string
            email: string
            firstName: string
            lastName: string
            phoneNumber: string
    

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

    Identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    MarketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    Plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    User MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    Location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    MonitoringEnabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    Name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Identity MonitorIdentityArgs
    The kind of managed identity assigned to this resource. A identity block as defined below.
    MarketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    Plan MonitorPlanArgs
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    User MonitorUserArgs
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    Location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    MonitoringEnabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    Name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    marketplaceSubscription String
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    user MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    location String
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    monitoringEnabled Boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name String
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    marketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    user MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    monitoringEnabled boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    identity MonitorIdentityArgs
    The kind of managed identity assigned to this resource. A identity block as defined below.
    marketplace_subscription str
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    plan MonitorPlanArgs
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    user MonitorUserArgs
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    location str
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    monitoring_enabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name str
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    identity Property Map
    The kind of managed identity assigned to this resource. A identity block as defined below.
    marketplaceSubscription String
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    plan Property Map
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    user Property Map
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    location String
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    monitoringEnabled Boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name String
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Monitor Resource

    Get an existing Monitor 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?: MonitorState, opts?: CustomResourceOptions): Monitor
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            identity: Optional[MonitorIdentityArgs] = None,
            location: Optional[str] = None,
            marketplace_subscription: Optional[str] = None,
            monitoring_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            plan: Optional[MonitorPlanArgs] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            user: Optional[MonitorUserArgs] = None) -> Monitor
    func GetMonitor(ctx *Context, name string, id IDInput, state *MonitorState, opts ...ResourceOption) (*Monitor, error)
    public static Monitor Get(string name, Input<string> id, MonitorState? state, CustomResourceOptions? opts = null)
    public static Monitor get(String name, Output<String> id, MonitorState 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:
    Identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    Location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    MarketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    MonitoringEnabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    Name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    Plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    User MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    Identity MonitorIdentityArgs
    The kind of managed identity assigned to this resource. A identity block as defined below.
    Location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    MarketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    MonitoringEnabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    Name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    Plan MonitorPlanArgs
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    User MonitorUserArgs
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    location String
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    marketplaceSubscription String
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    monitoringEnabled Boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name String
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    user MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    identity MonitorIdentity
    The kind of managed identity assigned to this resource. A identity block as defined below.
    location string
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    marketplaceSubscription string
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    monitoringEnabled boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name string
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    plan MonitorPlan
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    user MonitorUser
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    identity MonitorIdentityArgs
    The kind of managed identity assigned to this resource. A identity block as defined below.
    location str
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    marketplace_subscription str
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    monitoring_enabled bool
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name str
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    plan MonitorPlanArgs
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    user MonitorUserArgs
    User's information. A user block as defined below. Chainging this forces a new resource to be created.
    identity Property Map
    The kind of managed identity assigned to this resource. A identity block as defined below.
    location String
    The Azure Region where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    marketplaceSubscription String
    Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state. Possible values are Active and Suspended.
    monitoringEnabled Boolean
    Flag specifying if the resource monitoring is enabled or disabled. Default is true.
    name String
    Name of the Dynatrace monitor. Changing this forces a new resource to be created.
    plan Property Map
    Billing plan information. A plan block as defined below. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the Resource Group where the Dynatrace monitor should exist. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    user Property Map
    User's information. A user block as defined below. Chainging this forces a new resource to be created.

    Supporting Types

    MonitorIdentity, MonitorIdentityArgs

    Type string
    The type of identity used for the resource. Only possible value is SystemAssigned.
    PrincipalId string
    TenantId string
    Type string
    The type of identity used for the resource. Only possible value is SystemAssigned.
    PrincipalId string
    TenantId string
    type String
    The type of identity used for the resource. Only possible value is SystemAssigned.
    principalId String
    tenantId String
    type string
    The type of identity used for the resource. Only possible value is SystemAssigned.
    principalId string
    tenantId string
    type str
    The type of identity used for the resource. Only possible value is SystemAssigned.
    principal_id str
    tenant_id str
    type String
    The type of identity used for the resource. Only possible value is SystemAssigned.
    principalId String
    tenantId String

    MonitorPlan, MonitorPlanArgs

    Plan string
    Plan id as published by Dynatrace.
    BillingCycle string
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    EffectiveDate string
    Date when plan was applied.
    UsageType string
    Different usage type. Possible values are PAYG and COMMITTED.
    Plan string
    Plan id as published by Dynatrace.
    BillingCycle string
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    EffectiveDate string
    Date when plan was applied.
    UsageType string
    Different usage type. Possible values are PAYG and COMMITTED.
    plan String
    Plan id as published by Dynatrace.
    billingCycle String
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    effectiveDate String
    Date when plan was applied.
    usageType String
    Different usage type. Possible values are PAYG and COMMITTED.
    plan string
    Plan id as published by Dynatrace.
    billingCycle string
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    effectiveDate string
    Date when plan was applied.
    usageType string
    Different usage type. Possible values are PAYG and COMMITTED.
    plan str
    Plan id as published by Dynatrace.
    billing_cycle str
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    effective_date str
    Date when plan was applied.
    usage_type str
    Different usage type. Possible values are PAYG and COMMITTED.
    plan String
    Plan id as published by Dynatrace.
    billingCycle String
    Different billing cycles. Possible values are MONTHLY and WEEKLY.
    effectiveDate String
    Date when plan was applied.
    usageType String
    Different usage type. Possible values are PAYG and COMMITTED.

    MonitorUser, MonitorUserArgs

    Country string
    Country of the user.
    Email string
    Email of the user used by Dynatrace for contacting them if needed.
    FirstName string
    First name of the user.
    LastName string
    Last name of the user.
    PhoneNumber string
    phone number of the user by Dynatrace for contacting them if needed.
    Country string
    Country of the user.
    Email string
    Email of the user used by Dynatrace for contacting them if needed.
    FirstName string
    First name of the user.
    LastName string
    Last name of the user.
    PhoneNumber string
    phone number of the user by Dynatrace for contacting them if needed.
    country String
    Country of the user.
    email String
    Email of the user used by Dynatrace for contacting them if needed.
    firstName String
    First name of the user.
    lastName String
    Last name of the user.
    phoneNumber String
    phone number of the user by Dynatrace for contacting them if needed.
    country string
    Country of the user.
    email string
    Email of the user used by Dynatrace for contacting them if needed.
    firstName string
    First name of the user.
    lastName string
    Last name of the user.
    phoneNumber string
    phone number of the user by Dynatrace for contacting them if needed.
    country str
    Country of the user.
    email str
    Email of the user used by Dynatrace for contacting them if needed.
    first_name str
    First name of the user.
    last_name str
    Last name of the user.
    phone_number str
    phone number of the user by Dynatrace for contacting them if needed.
    country String
    Country of the user.
    email String
    Email of the user used by Dynatrace for contacting them if needed.
    firstName String
    First name of the user.
    lastName String
    Last name of the user.
    phoneNumber String
    phone number of the user by Dynatrace for contacting them if needed.

    Import

    Dynatrace monitor can be imported using the resource id, e.g.

    $ pulumi import azure:dynatrace/monitor:Monitor example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Dynatrace.Observability/monitors/monitor1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi