1. Packages
  2. Azure Native
  3. API Docs
  4. datadog
  5. Monitor
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.datadog.Monitor

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

Uses Azure REST API version 2023-10-20. In version 2.x of the Azure Native provider, it used API version 2022-06-01.

Other available API versions: 2022-06-01, 2022-08-01, 2023-01-01, 2023-07-07. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native datadog [ApiVersion]. See the version guide for details.

Example Usage

Monitors_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var monitor = new AzureNative.Datadog.Monitor("monitor", new()
    {
        Location = "West US",
        MonitorName = "myMonitor",
        Properties = new AzureNative.Datadog.Inputs.MonitorPropertiesArgs
        {
            DatadogOrganizationProperties = new AzureNative.Datadog.Inputs.DatadogOrganizationPropertiesArgs
            {
                Cspm = false,
                EnterpriseAppId = "00000000-0000-0000-0000-000000000000",
                Id = "myOrg123",
                LinkingAuthCode = "someAuthCode",
                LinkingClientId = "00000000-0000-0000-0000-000000000000",
                Name = "myOrg",
            },
            MonitoringStatus = AzureNative.Datadog.MonitoringStatus.Enabled,
            UserInfo = new AzureNative.Datadog.Inputs.UserInfoArgs
            {
                EmailAddress = "alice@microsoft.com",
                Name = "Alice",
                PhoneNumber = "123-456-7890",
            },
        },
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.Datadog.Inputs.ResourceSkuArgs
        {
            Name = "free_Monthly",
        },
        Tags = 
        {
            { "Environment", "Dev" },
        },
    });

});
Copy
package main

import (
	datadog "github.com/pulumi/pulumi-azure-native-sdk/datadog/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datadog.NewMonitor(ctx, "monitor", &datadog.MonitorArgs{
			Location:    pulumi.String("West US"),
			MonitorName: pulumi.String("myMonitor"),
			Properties: &datadog.MonitorPropertiesArgs{
				DatadogOrganizationProperties: &datadog.DatadogOrganizationPropertiesArgs{
					Cspm:            pulumi.Bool(false),
					EnterpriseAppId: pulumi.String("00000000-0000-0000-0000-000000000000"),
					Id:              pulumi.String("myOrg123"),
					LinkingAuthCode: pulumi.String("someAuthCode"),
					LinkingClientId: pulumi.String("00000000-0000-0000-0000-000000000000"),
					Name:            pulumi.String("myOrg"),
				},
				MonitoringStatus: pulumi.String(datadog.MonitoringStatusEnabled),
				UserInfo: &datadog.UserInfoArgs{
					EmailAddress: pulumi.String("alice@microsoft.com"),
					Name:         pulumi.String("Alice"),
					PhoneNumber:  pulumi.String("123-456-7890"),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &datadog.ResourceSkuArgs{
				Name: pulumi.String("free_Monthly"),
			},
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Dev"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datadog.Monitor;
import com.pulumi.azurenative.datadog.MonitorArgs;
import com.pulumi.azurenative.datadog.inputs.MonitorPropertiesArgs;
import com.pulumi.azurenative.datadog.inputs.DatadogOrganizationPropertiesArgs;
import com.pulumi.azurenative.datadog.inputs.UserInfoArgs;
import com.pulumi.azurenative.datadog.inputs.ResourceSkuArgs;
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 monitor = new Monitor("monitor", MonitorArgs.builder()
            .location("West US")
            .monitorName("myMonitor")
            .properties(MonitorPropertiesArgs.builder()
                .datadogOrganizationProperties(DatadogOrganizationPropertiesArgs.builder()
                    .cspm(false)
                    .enterpriseAppId("00000000-0000-0000-0000-000000000000")
                    .id("myOrg123")
                    .linkingAuthCode("someAuthCode")
                    .linkingClientId("00000000-0000-0000-0000-000000000000")
                    .name("myOrg")
                    .build())
                .monitoringStatus("Enabled")
                .userInfo(UserInfoArgs.builder()
                    .emailAddress("alice@microsoft.com")
                    .name("Alice")
                    .phoneNumber("123-456-7890")
                    .build())
                .build())
            .resourceGroupName("myResourceGroup")
            .sku(ResourceSkuArgs.builder()
                .name("free_Monthly")
                .build())
            .tags(Map.of("Environment", "Dev"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const monitor = new azure_native.datadog.Monitor("monitor", {
    location: "West US",
    monitorName: "myMonitor",
    properties: {
        datadogOrganizationProperties: {
            cspm: false,
            enterpriseAppId: "00000000-0000-0000-0000-000000000000",
            id: "myOrg123",
            linkingAuthCode: "someAuthCode",
            linkingClientId: "00000000-0000-0000-0000-000000000000",
            name: "myOrg",
        },
        monitoringStatus: azure_native.datadog.MonitoringStatus.Enabled,
        userInfo: {
            emailAddress: "alice@microsoft.com",
            name: "Alice",
            phoneNumber: "123-456-7890",
        },
    },
    resourceGroupName: "myResourceGroup",
    sku: {
        name: "free_Monthly",
    },
    tags: {
        Environment: "Dev",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

monitor = azure_native.datadog.Monitor("monitor",
    location="West US",
    monitor_name="myMonitor",
    properties={
        "datadog_organization_properties": {
            "cspm": False,
            "enterprise_app_id": "00000000-0000-0000-0000-000000000000",
            "id": "myOrg123",
            "linking_auth_code": "someAuthCode",
            "linking_client_id": "00000000-0000-0000-0000-000000000000",
            "name": "myOrg",
        },
        "monitoring_status": azure_native.datadog.MonitoringStatus.ENABLED,
        "user_info": {
            "email_address": "alice@microsoft.com",
            "name": "Alice",
            "phone_number": "123-456-7890",
        },
    },
    resource_group_name="myResourceGroup",
    sku={
        "name": "free_Monthly",
    },
    tags={
        "Environment": "Dev",
    })
Copy
resources:
  monitor:
    type: azure-native:datadog:Monitor
    properties:
      location: West US
      monitorName: myMonitor
      properties:
        datadogOrganizationProperties:
          cspm: false
          enterpriseAppId: 00000000-0000-0000-0000-000000000000
          id: myOrg123
          linkingAuthCode: someAuthCode
          linkingClientId: 00000000-0000-0000-0000-000000000000
          name: myOrg
        monitoringStatus: Enabled
        userInfo:
          emailAddress: alice@microsoft.com
          name: Alice
          phoneNumber: 123-456-7890
      resourceGroupName: myResourceGroup
      sku:
        name: free_Monthly
      tags:
        Environment: Dev
Copy

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,
            resource_group_name: Optional[str] = None,
            identity: Optional[IdentityPropertiesArgs] = None,
            location: Optional[str] = None,
            monitor_name: Optional[str] = None,
            properties: Optional[MonitorPropertiesArgs] = None,
            sku: Optional[ResourceSkuArgs] = 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-native:datadog:Monitor
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. MonitorArgs
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. 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 This property is required. string
The unique name of the resource.
args This property is required. MonitorArgs
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. MonitorArgs
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. 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 monitorResource = new AzureNative.Datadog.Monitor("monitorResource", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.Datadog.Inputs.IdentityPropertiesArgs
    {
        Type = "string",
    },
    Location = "string",
    MonitorName = "string",
    Properties = new AzureNative.Datadog.Inputs.MonitorPropertiesArgs
    {
        DatadogOrganizationProperties = new AzureNative.Datadog.Inputs.DatadogOrganizationPropertiesArgs
        {
            ApiKey = "string",
            ApplicationKey = "string",
            Cspm = false,
            EnterpriseAppId = "string",
            Id = "string",
            LinkingAuthCode = "string",
            LinkingClientId = "string",
            Name = "string",
            RedirectUri = "string",
        },
        MonitoringStatus = "string",
        UserInfo = new AzureNative.Datadog.Inputs.UserInfoArgs
        {
            EmailAddress = "string",
            Name = "string",
            PhoneNumber = "string",
        },
    },
    Sku = new AzureNative.Datadog.Inputs.ResourceSkuArgs
    {
        Name = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := datadog.NewMonitor(ctx, "monitorResource", &datadog.MonitorArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &datadog.IdentityPropertiesArgs{
		Type: pulumi.String("string"),
	},
	Location:    pulumi.String("string"),
	MonitorName: pulumi.String("string"),
	Properties: &datadog.MonitorPropertiesArgs{
		DatadogOrganizationProperties: &datadog.DatadogOrganizationPropertiesArgs{
			ApiKey:          pulumi.String("string"),
			ApplicationKey:  pulumi.String("string"),
			Cspm:            pulumi.Bool(false),
			EnterpriseAppId: pulumi.String("string"),
			Id:              pulumi.String("string"),
			LinkingAuthCode: pulumi.String("string"),
			LinkingClientId: pulumi.String("string"),
			Name:            pulumi.String("string"),
			RedirectUri:     pulumi.String("string"),
		},
		MonitoringStatus: pulumi.String("string"),
		UserInfo: &datadog.UserInfoArgs{
			EmailAddress: pulumi.String("string"),
			Name:         pulumi.String("string"),
			PhoneNumber:  pulumi.String("string"),
		},
	},
	Sku: &datadog.ResourceSkuArgs{
		Name: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var monitorResource = new Monitor("monitorResource", MonitorArgs.builder()
    .resourceGroupName("string")
    .identity(IdentityPropertiesArgs.builder()
        .type("string")
        .build())
    .location("string")
    .monitorName("string")
    .properties(MonitorPropertiesArgs.builder()
        .datadogOrganizationProperties(DatadogOrganizationPropertiesArgs.builder()
            .apiKey("string")
            .applicationKey("string")
            .cspm(false)
            .enterpriseAppId("string")
            .id("string")
            .linkingAuthCode("string")
            .linkingClientId("string")
            .name("string")
            .redirectUri("string")
            .build())
        .monitoringStatus("string")
        .userInfo(UserInfoArgs.builder()
            .emailAddress("string")
            .name("string")
            .phoneNumber("string")
            .build())
        .build())
    .sku(ResourceSkuArgs.builder()
        .name("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
monitor_resource = azure_native.datadog.Monitor("monitorResource",
    resource_group_name="string",
    identity={
        "type": "string",
    },
    location="string",
    monitor_name="string",
    properties={
        "datadog_organization_properties": {
            "api_key": "string",
            "application_key": "string",
            "cspm": False,
            "enterprise_app_id": "string",
            "id": "string",
            "linking_auth_code": "string",
            "linking_client_id": "string",
            "name": "string",
            "redirect_uri": "string",
        },
        "monitoring_status": "string",
        "user_info": {
            "email_address": "string",
            "name": "string",
            "phone_number": "string",
        },
    },
    sku={
        "name": "string",
    },
    tags={
        "string": "string",
    })
Copy
const monitorResource = new azure_native.datadog.Monitor("monitorResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
    },
    location: "string",
    monitorName: "string",
    properties: {
        datadogOrganizationProperties: {
            apiKey: "string",
            applicationKey: "string",
            cspm: false,
            enterpriseAppId: "string",
            id: "string",
            linkingAuthCode: "string",
            linkingClientId: "string",
            name: "string",
            redirectUri: "string",
        },
        monitoringStatus: "string",
        userInfo: {
            emailAddress: "string",
            name: "string",
            phoneNumber: "string",
        },
    },
    sku: {
        name: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:datadog:Monitor
properties:
    identity:
        type: string
    location: string
    monitorName: string
    properties:
        datadogOrganizationProperties:
            apiKey: string
            applicationKey: string
            cspm: false
            enterpriseAppId: string
            id: string
            linkingAuthCode: string
            linkingClientId: string
            name: string
            redirectUri: string
        monitoringStatus: string
        userInfo:
            emailAddress: string
            name: string
            phoneNumber: string
    resourceGroupName: string
    sku:
        name: string
    tags:
        string: string
Copy

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:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity Pulumi.AzureNative.Datadog.Inputs.IdentityProperties
Location string
MonitorName Changes to this property will trigger replacement. string
Monitor resource name
Properties Pulumi.AzureNative.Datadog.Inputs.MonitorProperties
Properties specific to the monitor resource.
Sku Pulumi.AzureNative.Datadog.Inputs.ResourceSku
Tags Dictionary<string, string>
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity IdentityPropertiesArgs
Location string
MonitorName Changes to this property will trigger replacement. string
Monitor resource name
Properties MonitorPropertiesArgs
Properties specific to the monitor resource.
Sku ResourceSkuArgs
Tags map[string]string
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity IdentityProperties
location String
monitorName Changes to this property will trigger replacement. String
Monitor resource name
properties MonitorProperties
Properties specific to the monitor resource.
sku ResourceSku
tags Map<String,String>
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
identity IdentityProperties
location string
monitorName Changes to this property will trigger replacement. string
Monitor resource name
properties MonitorProperties
Properties specific to the monitor resource.
sku ResourceSku
tags {[key: string]: string}
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
identity IdentityPropertiesArgs
location str
monitor_name Changes to this property will trigger replacement. str
Monitor resource name
properties MonitorPropertiesArgs
Properties specific to the monitor resource.
sku ResourceSkuArgs
tags Mapping[str, str]
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity Property Map
location String
monitorName Changes to this property will trigger replacement. String
Monitor resource name
properties Property Map
Properties specific to the monitor resource.
sku Property Map
tags Map<String>

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the monitor resource.
SystemData Pulumi.AzureNative.Datadog.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the monitor resource.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the monitor resource.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the monitor resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Name of the monitor resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the monitor resource.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Name of the monitor resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the monitor resource.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Name of the monitor resource.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the monitor resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Name of the monitor resource.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the monitor resource.

Supporting Types

DatadogOrganizationProperties
, DatadogOrganizationPropertiesArgs

ApiKey string
Api key associated to the Datadog organization.
ApplicationKey string
Application key associated to the Datadog organization.
Cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
Id string
Id of the Datadog organization.
LinkingAuthCode string
The auth code used to linking to an existing Datadog organization.
LinkingClientId string
The client_id from an existing in exchange for an auth token to link organization.
Name string
Name of the Datadog organization.
RedirectUri string
The redirect URI for linking.
ApiKey string
Api key associated to the Datadog organization.
ApplicationKey string
Application key associated to the Datadog organization.
Cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
Id string
Id of the Datadog organization.
LinkingAuthCode string
The auth code used to linking to an existing Datadog organization.
LinkingClientId string
The client_id from an existing in exchange for an auth token to link organization.
Name string
Name of the Datadog organization.
RedirectUri string
The redirect URI for linking.
apiKey String
Api key associated to the Datadog organization.
applicationKey String
Application key associated to the Datadog organization.
cspm Boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
id String
Id of the Datadog organization.
linkingAuthCode String
The auth code used to linking to an existing Datadog organization.
linkingClientId String
The client_id from an existing in exchange for an auth token to link organization.
name String
Name of the Datadog organization.
redirectUri String
The redirect URI for linking.
apiKey string
Api key associated to the Datadog organization.
applicationKey string
Application key associated to the Datadog organization.
cspm boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
enterpriseAppId string
The Id of the Enterprise App used for Single sign on.
id string
Id of the Datadog organization.
linkingAuthCode string
The auth code used to linking to an existing Datadog organization.
linkingClientId string
The client_id from an existing in exchange for an auth token to link organization.
name string
Name of the Datadog organization.
redirectUri string
The redirect URI for linking.
api_key str
Api key associated to the Datadog organization.
application_key str
Application key associated to the Datadog organization.
cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
enterprise_app_id str
The Id of the Enterprise App used for Single sign on.
id str
Id of the Datadog organization.
linking_auth_code str
The auth code used to linking to an existing Datadog organization.
linking_client_id str
The client_id from an existing in exchange for an auth token to link organization.
name str
Name of the Datadog organization.
redirect_uri str
The redirect URI for linking.
apiKey String
Api key associated to the Datadog organization.
applicationKey String
Application key associated to the Datadog organization.
cspm Boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
id String
Id of the Datadog organization.
linkingAuthCode String
The auth code used to linking to an existing Datadog organization.
linkingClientId String
The client_id from an existing in exchange for an auth token to link organization.
name String
Name of the Datadog organization.
redirectUri String
The redirect URI for linking.

DatadogOrganizationPropertiesResponse
, DatadogOrganizationPropertiesResponseArgs

Cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
Id string
Id of the Datadog organization.
Name string
Name of the Datadog organization.
Cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
Id string
Id of the Datadog organization.
Name string
Name of the Datadog organization.
cspm Boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
id String
Id of the Datadog organization.
name String
Name of the Datadog organization.
cspm boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
id string
Id of the Datadog organization.
name string
Name of the Datadog organization.
cspm bool
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
id str
Id of the Datadog organization.
name str
Name of the Datadog organization.
cspm Boolean
The configuration which describes the state of cloud security posture management. This collects configuration information for all resources in a subscription and track conformance to industry benchmarks.
id String
Id of the Datadog organization.
name String
Name of the Datadog organization.

IdentityProperties
, IdentityPropertiesArgs

Type string | Pulumi.AzureNative.Datadog.ManagedIdentityTypes
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
Type string | ManagedIdentityTypes
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
type String | ManagedIdentityTypes
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
type string | ManagedIdentityTypes
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
type str | ManagedIdentityTypes
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
type String | "SystemAssigned" | "UserAssigned"
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.

IdentityPropertiesResponse
, IdentityPropertiesResponseArgs

PrincipalId This property is required. string
The identity ID.
TenantId This property is required. string
The tenant ID of resource.
Type string
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
PrincipalId This property is required. string
The identity ID.
TenantId This property is required. string
The tenant ID of resource.
Type string
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
principalId This property is required. String
The identity ID.
tenantId This property is required. String
The tenant ID of resource.
type String
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
principalId This property is required. string
The identity ID.
tenantId This property is required. string
The tenant ID of resource.
type string
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
principal_id This property is required. str
The identity ID.
tenant_id This property is required. str
The tenant ID of resource.
type str
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.
principalId This property is required. String
The identity ID.
tenantId This property is required. String
The tenant ID of resource.
type String
Specifies the identity type of the Datadog Monitor. At this time the only allowed value is 'SystemAssigned'.

ManagedIdentityTypes
, ManagedIdentityTypesArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
ManagedIdentityTypesSystemAssigned
SystemAssigned
ManagedIdentityTypesUserAssigned
UserAssigned
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned

MonitorProperties
, MonitorPropertiesArgs

DatadogOrganizationProperties Pulumi.AzureNative.Datadog.Inputs.DatadogOrganizationProperties
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
MonitoringStatus string | Pulumi.AzureNative.Datadog.MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
UserInfo Pulumi.AzureNative.Datadog.Inputs.UserInfo
Includes name, email and optionally, phone number. User Information can't be null.
DatadogOrganizationProperties DatadogOrganizationProperties
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
MonitoringStatus string | MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
UserInfo UserInfo
Includes name, email and optionally, phone number. User Information can't be null.
datadogOrganizationProperties DatadogOrganizationProperties
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus String | MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
userInfo UserInfo
Includes name, email and optionally, phone number. User Information can't be null.
datadogOrganizationProperties DatadogOrganizationProperties
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus string | MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
userInfo UserInfo
Includes name, email and optionally, phone number. User Information can't be null.
datadog_organization_properties DatadogOrganizationProperties
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoring_status str | MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
user_info UserInfo
Includes name, email and optionally, phone number. User Information can't be null.
datadogOrganizationProperties Property Map
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus String | "Enabled" | "Disabled"
Flag specifying if the resource monitoring is enabled or disabled.
userInfo Property Map
Includes name, email and optionally, phone number. User Information can't be null.

MonitorPropertiesResponse
, MonitorPropertiesResponseArgs

LiftrResourceCategory This property is required. string
LiftrResourcePreference This property is required. int
The priority of the resource.
MarketplaceSubscriptionStatus This property is required. string
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
ProvisioningState This property is required. string
DatadogOrganizationProperties Pulumi.AzureNative.Datadog.Inputs.DatadogOrganizationPropertiesResponse
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
MonitoringStatus string
Flag specifying if the resource monitoring is enabled or disabled.
UserInfo Pulumi.AzureNative.Datadog.Inputs.UserInfoResponse
Includes name, email and optionally, phone number. User Information can't be null.
LiftrResourceCategory This property is required. string
LiftrResourcePreference This property is required. int
The priority of the resource.
MarketplaceSubscriptionStatus This property is required. string
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
ProvisioningState This property is required. string
DatadogOrganizationProperties DatadogOrganizationPropertiesResponse
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
MonitoringStatus string
Flag specifying if the resource monitoring is enabled or disabled.
UserInfo UserInfoResponse
Includes name, email and optionally, phone number. User Information can't be null.
liftrResourceCategory This property is required. String
liftrResourcePreference This property is required. Integer
The priority of the resource.
marketplaceSubscriptionStatus This property is required. String
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
provisioningState This property is required. String
datadogOrganizationProperties DatadogOrganizationPropertiesResponse
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus String
Flag specifying if the resource monitoring is enabled or disabled.
userInfo UserInfoResponse
Includes name, email and optionally, phone number. User Information can't be null.
liftrResourceCategory This property is required. string
liftrResourcePreference This property is required. number
The priority of the resource.
marketplaceSubscriptionStatus This property is required. string
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
provisioningState This property is required. string
datadogOrganizationProperties DatadogOrganizationPropertiesResponse
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus string
Flag specifying if the resource monitoring is enabled or disabled.
userInfo UserInfoResponse
Includes name, email and optionally, phone number. User Information can't be null.
liftr_resource_category This property is required. str
liftr_resource_preference This property is required. int
The priority of the resource.
marketplace_subscription_status This property is required. str
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
provisioning_state This property is required. str
datadog_organization_properties DatadogOrganizationPropertiesResponse
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoring_status str
Flag specifying if the resource monitoring is enabled or disabled.
user_info UserInfoResponse
Includes name, email and optionally, phone number. User Information can't be null.
liftrResourceCategory This property is required. String
liftrResourcePreference This property is required. Number
The priority of the resource.
marketplaceSubscriptionStatus This property is required. String
Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
provisioningState This property is required. String
datadogOrganizationProperties Property Map
Specify the Datadog organization name. In the case of linking to existing organizations, Id, ApiKey, and Applicationkey is required as well.
monitoringStatus String
Flag specifying if the resource monitoring is enabled or disabled.
userInfo Property Map
Includes name, email and optionally, phone number. User Information can't be null.

MonitoringStatus
, MonitoringStatusArgs

Enabled
Enabled
Disabled
Disabled
MonitoringStatusEnabled
Enabled
MonitoringStatusDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

ResourceSku
, ResourceSkuArgs

Name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
Name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. String
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. str
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. String
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.

ResourceSkuResponse
, ResourceSkuResponseArgs

Name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
Name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. String
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. string
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. str
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.
name This property is required. String
Name of the SKU in {PlanId} format. For Terraform, the only allowed value is 'Linked'.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserInfo
, UserInfoArgs

EmailAddress string
Email of the user used by Datadog for contacting them if needed
Name string
Name of the user
PhoneNumber string
Phone number of the user used by Datadog for contacting them if needed
EmailAddress string
Email of the user used by Datadog for contacting them if needed
Name string
Name of the user
PhoneNumber string
Phone number of the user used by Datadog for contacting them if needed
emailAddress String
Email of the user used by Datadog for contacting them if needed
name String
Name of the user
phoneNumber String
Phone number of the user used by Datadog for contacting them if needed
emailAddress string
Email of the user used by Datadog for contacting them if needed
name string
Name of the user
phoneNumber string
Phone number of the user used by Datadog for contacting them if needed
email_address str
Email of the user used by Datadog for contacting them if needed
name str
Name of the user
phone_number str
Phone number of the user used by Datadog for contacting them if needed
emailAddress String
Email of the user used by Datadog for contacting them if needed
name String
Name of the user
phoneNumber String
Phone number of the user used by Datadog for contacting them if needed

UserInfoResponse
, UserInfoResponseArgs

EmailAddress string
Email of the user used by Datadog for contacting them if needed
Name string
Name of the user
PhoneNumber string
Phone number of the user used by Datadog for contacting them if needed
EmailAddress string
Email of the user used by Datadog for contacting them if needed
Name string
Name of the user
PhoneNumber string
Phone number of the user used by Datadog for contacting them if needed
emailAddress String
Email of the user used by Datadog for contacting them if needed
name String
Name of the user
phoneNumber String
Phone number of the user used by Datadog for contacting them if needed
emailAddress string
Email of the user used by Datadog for contacting them if needed
name string
Name of the user
phoneNumber string
Phone number of the user used by Datadog for contacting them if needed
email_address str
Email of the user used by Datadog for contacting them if needed
name str
Name of the user
phone_number str
Phone number of the user used by Datadog for contacting them if needed
emailAddress String
Email of the user used by Datadog for contacting them if needed
name String
Name of the user
phoneNumber String
Phone number of the user used by Datadog for contacting them if needed

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:datadog:Monitor myMonitor /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Datadog/monitors/{monitorName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi