1. Packages
  2. Azure Classic
  3. API Docs
  4. monitoring
  5. LogzMonitor

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a logz Monitor.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleLogzMonitor = new Azure.Monitoring.LogzMonitor("exampleLogzMonitor", new Azure.Monitoring.LogzMonitorArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                Plan = new Azure.Monitoring.Inputs.LogzMonitorPlanArgs
                {
                    BillingCycle = "Monthly",
                    EffectiveDate = "2022-06-06T00:00:00Z",
                    PlanId = "100gb14days",
                    UsageType = "Committed",
                },
                User = new Azure.Monitoring.Inputs.LogzMonitorUserArgs
                {
                    Email = "user@example.com",
                    FirstName = "Example",
                    LastName = "User",
                    PhoneNumber = "+12313803556",
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/monitoring"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = monitoring.NewLogzMonitor(ctx, "exampleLogzMonitor", &monitoring.LogzMonitorArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			Plan: &monitoring.LogzMonitorPlanArgs{
    				BillingCycle:  pulumi.String("Monthly"),
    				EffectiveDate: pulumi.String("2022-06-06T00:00:00Z"),
    				PlanId:        pulumi.String("100gb14days"),
    				UsageType:     pulumi.String("Committed"),
    			},
    			User: &monitoring.LogzMonitorUserArgs{
    				Email:       pulumi.String("user@example.com"),
    				FirstName:   pulumi.String("Example"),
    				LastName:    pulumi.String("User"),
    				PhoneNumber: pulumi.String("+12313803556"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleLogzMonitor = new azure.monitoring.LogzMonitor("exampleLogzMonitor", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        plan: {
            billingCycle: "Monthly",
            effectiveDate: "2022-06-06T00:00:00Z",
            planId: "100gb14days",
            usageType: "Committed",
        },
        user: {
            email: "user@example.com",
            firstName: "Example",
            lastName: "User",
            phoneNumber: "+12313803556",
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_logz_monitor = azure.monitoring.LogzMonitor("exampleLogzMonitor",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        plan=azure.monitoring.LogzMonitorPlanArgs(
            billing_cycle="Monthly",
            effective_date="2022-06-06T00:00:00Z",
            plan_id="100gb14days",
            usage_type="Committed",
        ),
        user=azure.monitoring.LogzMonitorUserArgs(
            email="user@example.com",
            first_name="Example",
            last_name="User",
            phone_number="+12313803556",
        ))
    

    Example coming soon!

    Create LogzMonitor Resource

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

    Constructor syntax

    new LogzMonitor(name: string, args: LogzMonitorArgs, opts?: CustomResourceOptions);
    @overload
    def LogzMonitor(resource_name: str,
                    args: LogzMonitorArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def LogzMonitor(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    plan: Optional[LogzMonitorPlanArgs] = None,
                    resource_group_name: Optional[str] = None,
                    user: Optional[LogzMonitorUserArgs] = None,
                    company_name: Optional[str] = None,
                    enabled: Optional[bool] = None,
                    enterprise_app_id: Optional[str] = None,
                    location: Optional[str] = None,
                    name: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None)
    func NewLogzMonitor(ctx *Context, name string, args LogzMonitorArgs, opts ...ResourceOption) (*LogzMonitor, error)
    public LogzMonitor(string name, LogzMonitorArgs args, CustomResourceOptions? opts = null)
    public LogzMonitor(String name, LogzMonitorArgs args)
    public LogzMonitor(String name, LogzMonitorArgs args, CustomResourceOptions options)
    
    type: azure:monitoring:LogzMonitor
    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 LogzMonitorArgs
    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 LogzMonitorArgs
    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 LogzMonitorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LogzMonitorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LogzMonitorArgs
    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 logzMonitorResource = new Azure.Monitoring.LogzMonitor("logzMonitorResource", new()
    {
        Plan = new Azure.Monitoring.Inputs.LogzMonitorPlanArgs
        {
            BillingCycle = "string",
            EffectiveDate = "string",
            PlanId = "string",
            UsageType = "string",
        },
        ResourceGroupName = "string",
        User = new Azure.Monitoring.Inputs.LogzMonitorUserArgs
        {
            Email = "string",
            FirstName = "string",
            LastName = "string",
            PhoneNumber = "string",
        },
        CompanyName = "string",
        Enabled = false,
        EnterpriseAppId = "string",
        Location = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := monitoring.NewLogzMonitor(ctx, "logzMonitorResource", &monitoring.LogzMonitorArgs{
    	Plan: &monitoring.LogzMonitorPlanArgs{
    		BillingCycle:  pulumi.String("string"),
    		EffectiveDate: pulumi.String("string"),
    		PlanId:        pulumi.String("string"),
    		UsageType:     pulumi.String("string"),
    	},
    	ResourceGroupName: pulumi.String("string"),
    	User: &monitoring.LogzMonitorUserArgs{
    		Email:       pulumi.String("string"),
    		FirstName:   pulumi.String("string"),
    		LastName:    pulumi.String("string"),
    		PhoneNumber: pulumi.String("string"),
    	},
    	CompanyName:     pulumi.String("string"),
    	Enabled:         pulumi.Bool(false),
    	EnterpriseAppId: pulumi.String("string"),
    	Location:        pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var logzMonitorResource = new LogzMonitor("logzMonitorResource", LogzMonitorArgs.builder()
        .plan(LogzMonitorPlanArgs.builder()
            .billingCycle("string")
            .effectiveDate("string")
            .planId("string")
            .usageType("string")
            .build())
        .resourceGroupName("string")
        .user(LogzMonitorUserArgs.builder()
            .email("string")
            .firstName("string")
            .lastName("string")
            .phoneNumber("string")
            .build())
        .companyName("string")
        .enabled(false)
        .enterpriseAppId("string")
        .location("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .build());
    
    logz_monitor_resource = azure.monitoring.LogzMonitor("logzMonitorResource",
        plan={
            "billing_cycle": "string",
            "effective_date": "string",
            "plan_id": "string",
            "usage_type": "string",
        },
        resource_group_name="string",
        user={
            "email": "string",
            "first_name": "string",
            "last_name": "string",
            "phone_number": "string",
        },
        company_name="string",
        enabled=False,
        enterprise_app_id="string",
        location="string",
        name="string",
        tags={
            "string": "string",
        })
    
    const logzMonitorResource = new azure.monitoring.LogzMonitor("logzMonitorResource", {
        plan: {
            billingCycle: "string",
            effectiveDate: "string",
            planId: "string",
            usageType: "string",
        },
        resourceGroupName: "string",
        user: {
            email: "string",
            firstName: "string",
            lastName: "string",
            phoneNumber: "string",
        },
        companyName: "string",
        enabled: false,
        enterpriseAppId: "string",
        location: "string",
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:monitoring:LogzMonitor
    properties:
        companyName: string
        enabled: false
        enterpriseAppId: string
        location: string
        name: string
        plan:
            billingCycle: string
            effectiveDate: string
            planId: string
            usageType: string
        resourceGroupName: string
        tags:
            string: string
        user:
            email: string
            firstName: string
            lastName: string
            phoneNumber: string
    

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

    Plan LogzMonitorPlan
    A plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    User LogzMonitorUser
    A user block as defined below.
    CompanyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    Enabled bool
    Whether the resource monitoring is enabled?
    EnterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    Location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    Name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the logz Monitor.
    Plan LogzMonitorPlanArgs
    A plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    User LogzMonitorUserArgs
    A user block as defined below.
    CompanyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    Enabled bool
    Whether the resource monitoring is enabled?
    EnterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    Location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    Name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the logz Monitor.
    plan LogzMonitorPlan
    A plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    user LogzMonitorUser
    A user block as defined below.
    companyName String
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled Boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId String
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location String
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    name String
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the logz Monitor.
    plan LogzMonitorPlan
    A plan block as defined below.
    resourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    user LogzMonitorUser
    A user block as defined below.
    companyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the logz Monitor.
    plan LogzMonitorPlanArgs
    A plan block as defined below.
    resource_group_name str
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    user LogzMonitorUserArgs
    A user block as defined below.
    company_name str
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled bool
    Whether the resource monitoring is enabled?
    enterprise_app_id str
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location str
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    name str
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the logz Monitor.
    plan Property Map
    A plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    user Property Map
    A user block as defined below.
    companyName String
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled Boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId String
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location String
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    name String
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the logz Monitor.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    LogzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    SingleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    Id string
    The provider-assigned unique ID for this managed resource.
    LogzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    SingleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    id String
    The provider-assigned unique ID for this managed resource.
    logzOrganizationId String
    The ID associated with the logz organization of this logz Monitor.
    singleSignOnUrl String
    The single sign on url associated with the logz organization of this logz Monitor.
    id string
    The provider-assigned unique ID for this managed resource.
    logzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    singleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    id str
    The provider-assigned unique ID for this managed resource.
    logz_organization_id str
    The ID associated with the logz organization of this logz Monitor.
    single_sign_on_url str
    The single sign on url associated with the logz organization of this logz Monitor.
    id String
    The provider-assigned unique ID for this managed resource.
    logzOrganizationId String
    The ID associated with the logz organization of this logz Monitor.
    singleSignOnUrl String
    The single sign on url associated with the logz organization of this logz Monitor.

    Look up Existing LogzMonitor Resource

    Get an existing LogzMonitor 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?: LogzMonitorState, opts?: CustomResourceOptions): LogzMonitor
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            company_name: Optional[str] = None,
            enabled: Optional[bool] = None,
            enterprise_app_id: Optional[str] = None,
            location: Optional[str] = None,
            logz_organization_id: Optional[str] = None,
            name: Optional[str] = None,
            plan: Optional[LogzMonitorPlanArgs] = None,
            resource_group_name: Optional[str] = None,
            single_sign_on_url: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            user: Optional[LogzMonitorUserArgs] = None) -> LogzMonitor
    func GetLogzMonitor(ctx *Context, name string, id IDInput, state *LogzMonitorState, opts ...ResourceOption) (*LogzMonitor, error)
    public static LogzMonitor Get(string name, Input<string> id, LogzMonitorState? state, CustomResourceOptions? opts = null)
    public static LogzMonitor get(String name, Output<String> id, LogzMonitorState state, CustomResourceOptions options)
    resources:  _:    type: azure:monitoring:LogzMonitor    get:      id: ${id}
    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:
    CompanyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    Enabled bool
    Whether the resource monitoring is enabled?
    EnterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    Location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    LogzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    Name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    Plan LogzMonitorPlan
    A plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    SingleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the logz Monitor.
    User LogzMonitorUser
    A user block as defined below.
    CompanyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    Enabled bool
    Whether the resource monitoring is enabled?
    EnterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    Location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    LogzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    Name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    Plan LogzMonitorPlanArgs
    A plan block as defined below.
    ResourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    SingleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    Tags map[string]string
    A mapping of tags which should be assigned to the logz Monitor.
    User LogzMonitorUserArgs
    A user block as defined below.
    companyName String
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled Boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId String
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location String
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    logzOrganizationId String
    The ID associated with the logz organization of this logz Monitor.
    name String
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    plan LogzMonitorPlan
    A plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    singleSignOnUrl String
    The single sign on url associated with the logz organization of this logz Monitor.
    tags Map<String,String>
    A mapping of tags which should be assigned to the logz Monitor.
    user LogzMonitorUser
    A user block as defined below.
    companyName string
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId string
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location string
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    logzOrganizationId string
    The ID associated with the logz organization of this logz Monitor.
    name string
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    plan LogzMonitorPlan
    A plan block as defined below.
    resourceGroupName string
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    singleSignOnUrl string
    The single sign on url associated with the logz organization of this logz Monitor.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the logz Monitor.
    user LogzMonitorUser
    A user block as defined below.
    company_name str
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled bool
    Whether the resource monitoring is enabled?
    enterprise_app_id str
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location str
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    logz_organization_id str
    The ID associated with the logz organization of this logz Monitor.
    name str
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    plan LogzMonitorPlanArgs
    A plan block as defined below.
    resource_group_name str
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    single_sign_on_url str
    The single sign on url associated with the logz organization of this logz Monitor.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the logz Monitor.
    user LogzMonitorUserArgs
    A user block as defined below.
    companyName String
    Name of the Logz organization. Changing this forces a new logz Monitor to be created.
    enabled Boolean
    Whether the resource monitoring is enabled?
    enterpriseAppId String
    The ID of the Enterprise App. Changing this forces a new logz Monitor to be created.
    location String
    The Azure Region where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    logzOrganizationId String
    The ID associated with the logz organization of this logz Monitor.
    name String
    The name which should be used for this logz Monitor. Changing this forces a new logz Monitor to be created.
    plan Property Map
    A plan block as defined below.
    resourceGroupName String
    The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
    singleSignOnUrl String
    The single sign on url associated with the logz organization of this logz Monitor.
    tags Map<String>
    A mapping of tags which should be assigned to the logz Monitor.
    user Property Map
    A user block as defined below.

    Supporting Types

    LogzMonitorPlan, LogzMonitorPlanArgs

    BillingCycle string
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    EffectiveDate string
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    PlanId string
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    UsageType string
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.
    BillingCycle string
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    EffectiveDate string
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    PlanId string
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    UsageType string
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.
    billingCycle String
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    effectiveDate String
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    planId String
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    usageType String
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.
    billingCycle string
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    effectiveDate string
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    planId string
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    usageType string
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.
    billing_cycle str
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    effective_date str
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    plan_id str
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    usage_type str
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.
    billingCycle String
    Different billing cycles. Possible values are MONTHLY or WEEKLY. Changing this forces a new logz Monitor to be created.
    effectiveDate String
    Date when plan was applied. Changing this forces a new logz Monitor to be created.
    planId String
    Plan id as published by Logz. Possible values are 100gb14days. Changing this forces a new logz Monitor to be created.
    usageType String
    Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

    LogzMonitorUser, LogzMonitorUserArgs

    Email string
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    FirstName string
    First Name of the user. Changing this forces a new logz Monitor to be created.
    LastName string
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    PhoneNumber string
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    Email string
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    FirstName string
    First Name of the user. Changing this forces a new logz Monitor to be created.
    LastName string
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    PhoneNumber string
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    email String
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    firstName String
    First Name of the user. Changing this forces a new logz Monitor to be created.
    lastName String
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    phoneNumber String
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    email string
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    firstName string
    First Name of the user. Changing this forces a new logz Monitor to be created.
    lastName string
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    phoneNumber string
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    email str
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    first_name str
    First Name of the user. Changing this forces a new logz Monitor to be created.
    last_name str
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    phone_number str
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    email String
    Email of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.
    firstName String
    First Name of the user. Changing this forces a new logz Monitor to be created.
    lastName String
    Last Name of the user. Changing this forces a new logz Monitor to be created.
    phoneNumber String
    Phone number of the user used by Logz for contacting them if needed. Changing this forces a new logz Monitor to be created.

    Import

    logz Monitors can be imported using the resource id, e.g.

     $ pulumi import azure:monitoring/logzMonitor:LogzMonitor example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logz/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.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.