azure logo
Azure Classic v5.38.0, Mar 21 23

azure.monitoring.LogzMonitor

Manages a logz Monitor.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
    {
        Location = "West Europe",
    });

    var exampleLogzMonitor = new Azure.Monitoring.LogzMonitor("exampleLogzMonitor", new()
    {
        ResourceGroupName = exampleResourceGroup.Name,
        Location = exampleResourceGroup.Location,
        Plan = new Azure.Monitoring.Inputs.LogzMonitorPlanArgs
        {
            BillingCycle = "MONTHLY",
            EffectiveDate = "2022-06-06T00:00:00Z",
            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/v5/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v5/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"),
				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
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.monitoring.LogzMonitor;
import com.pulumi.azure.monitoring.LogzMonitorArgs;
import com.pulumi.azure.monitoring.inputs.LogzMonitorPlanArgs;
import com.pulumi.azure.monitoring.inputs.LogzMonitorUserArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
            .location("West Europe")
            .build());

        var exampleLogzMonitor = new LogzMonitor("exampleLogzMonitor", LogzMonitorArgs.builder()        
            .resourceGroupName(exampleResourceGroup.name())
            .location(exampleResourceGroup.location())
            .plan(LogzMonitorPlanArgs.builder()
                .billingCycle("MONTHLY")
                .effectiveDate("2022-06-06T00:00:00Z")
                .usageType("COMMITTED")
                .build())
            .user(LogzMonitorUserArgs.builder()
                .email("user@example.com")
                .firstName("Example")
                .lastName("User")
                .phoneNumber("+12313803556")
                .build())
            .build());

    }
}
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",
        usage_type="COMMITTED",
    ),
    user=azure.monitoring.LogzMonitorUserArgs(
        email="user@example.com",
        first_name="Example",
        last_name="User",
        phone_number="+12313803556",
    ))
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",
        usageType: "COMMITTED",
    },
    user: {
        email: "user@example.com",
        firstName: "Example",
        lastName: "User",
        phoneNumber: "+12313803556",
    },
});
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    properties:
      location: West Europe
  exampleLogzMonitor:
    type: azure:monitoring:LogzMonitor
    properties:
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      plan:
        billingCycle: MONTHLY
        effectiveDate: 2022-06-06T00:00:00Z
        usageType: COMMITTED
      user:
        email: user@example.com
        firstName: Example
        lastName: User
        phoneNumber: '+12313803556'

Create LogzMonitor Resource

new LogzMonitor(name: string, args: LogzMonitorArgs, opts?: CustomResourceOptions);
@overload
def LogzMonitor(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                company_name: Optional[str] = None,
                enabled: Optional[bool] = None,
                enterprise_app_id: Optional[str] = None,
                location: Optional[str] = None,
                name: Optional[str] = None,
                plan: Optional[LogzMonitorPlanArgs] = None,
                resource_group_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                user: Optional[LogzMonitorUserArgs] = None)
@overload
def LogzMonitor(resource_name: str,
                args: LogzMonitorArgs,
                opts: Optional[ResourceOptions] = 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.

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.

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

The LogzMonitor resource accepts the following input properties:

Plan LogzMonitorPlanArgs

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 logz Monitor should exist. Changing this forces a new logz Monitor to be created.

User LogzMonitorUserArgs

A user block as defined below. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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 LogzMonitorPlanArgs

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 logz Monitor should exist. Changing this forces a new logz Monitor to be created.

user LogzMonitorUserArgs

A user block as defined below. Changing this forces a new resource to be created.

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? Defaults to true.

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 LogzMonitorPlanArgs

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 logz Monitor should exist. Changing this forces a new logz Monitor to be created.

user LogzMonitorUserArgs

A user block as defined below. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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)
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:
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? Defaults to true.

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. Changing this forces a new resource to be created.

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 LogzMonitorUserArgs

A user block as defined below. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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 LogzMonitorUserArgs

A user block as defined below. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

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? Defaults to true.

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. Changing this forces a new resource to be created.

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. Changing this forces a new resource to be created.

Supporting Types

LogzMonitorPlan

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.

UsageType string

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

PlanId string

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. 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.

UsageType string

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

PlanId string

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. 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.

usageType String

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

planId String

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. 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.

usageType string

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

planId string

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. 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.

usage_type str

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

plan_id str

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. 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.

usageType String

Different usage types. Possible values are PAYG or COMMITTED. Changing this forces a new logz Monitor to be created.

planId String

Plan id as published by Logz. The only possible value is 100gb14days. Defaults to 100gb14days. Changing this forces a new logz Monitor to be created.

LogzMonitorUser

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes

This Pulumi package is based on the azurerm Terraform Provider.