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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- Resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- User
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.- Company
Name 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
.- Enterprise
App stringId 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.
- Dictionary<string, string>
A mapping of tags which should be assigned to the logz Monitor.
- Plan
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- Resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- User
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.- Company
Name 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
.- Enterprise
App stringId 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.
- map[string]string
A mapping of tags which should be assigned to the logz Monitor.
- plan
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource
Group StringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- user
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.- company
Name 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
.- enterprise
App StringId 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.
- Map<String,String>
A mapping of tags which should be assigned to the logz Monitor.
- plan
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- user
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.- company
Name 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
.- enterprise
App stringId 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.
- {[key: string]: string}
A mapping of tags which should be assigned to the logz Monitor.
- plan
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource_
group_ strname The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- user
Logz
Monitor User Args 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_ strid 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.
- 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.- resource
Group StringName 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.- company
Name 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
.- enterprise
App StringId 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.
- 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.
- Logz
Organization stringId The ID associated with the logz organization of this logz Monitor.
- Single
Sign stringOn Url 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.
- Logz
Organization stringId The ID associated with the logz organization of this logz Monitor.
- Single
Sign stringOn Url 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.
- logz
Organization StringId The ID associated with the logz organization of this logz Monitor.
- single
Sign StringOn Url 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.
- logz
Organization stringId The ID associated with the logz organization of this logz Monitor.
- single
Sign stringOn Url 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_ strid The ID associated with the logz organization of this logz Monitor.
- single_
sign_ stron_ url 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.
- logz
Organization StringId The ID associated with the logz organization of this logz Monitor.
- single
Sign StringOn Url 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.
- Company
Name 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
.- Enterprise
App stringId 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.
- Logz
Organization stringId 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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- Resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- Single
Sign stringOn Url The single sign on url associated with the logz organization of this logz Monitor.
- Dictionary<string, string>
A mapping of tags which should be assigned to the logz Monitor.
- User
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.
- Company
Name 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
.- Enterprise
App stringId 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.
- Logz
Organization stringId 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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- Resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- Single
Sign stringOn Url The single sign on url associated with the logz organization of this logz Monitor.
- map[string]string
A mapping of tags which should be assigned to the logz Monitor.
- User
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.
- company
Name 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
.- enterprise
App StringId 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.
- logz
Organization StringId 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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource
Group StringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- single
Sign StringOn Url The single sign on url associated with the logz organization of this logz Monitor.
- Map<String,String>
A mapping of tags which should be assigned to the logz Monitor.
- user
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.
- company
Name 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
.- enterprise
App stringId 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.
- logz
Organization stringId 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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource
Group stringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- single
Sign stringOn Url The single sign on url associated with the logz organization of this logz Monitor.
- {[key: string]: string}
A mapping of tags which should be assigned to the logz Monitor.
- user
Logz
Monitor User Args 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_ strid 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_ strid 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
Logz
Monitor Plan Args A
plan
block as defined below. Changing this forces a new resource to be created.- resource_
group_ strname The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- single_
sign_ stron_ url The single sign on url associated with the logz organization of this logz Monitor.
- Mapping[str, str]
A mapping of tags which should be assigned to the logz Monitor.
- user
Logz
Monitor User Args A
user
block as defined below. Changing this forces a new resource to be created.
- company
Name 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
.- enterprise
App StringId 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.
- logz
Organization StringId 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.- resource
Group StringName The name of the Resource Group where the logz Monitor should exist. Changing this forces a new logz Monitor to be created.
- single
Sign StringOn Url The single sign on url associated with the logz organization of this logz Monitor.
- 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
- Billing
Cycle string Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. Changing this forces a new logz Monitor to be created.- Effective
Date string Date when plan was applied. Changing this forces a new logz Monitor to be created.
- Usage
Type string Different usage types. Possible values are
PAYG
orCOMMITTED
. Changing this forces a new logz Monitor to be created.- Plan
Id string Plan id as published by Logz. The only possible value is
100gb14days
. Defaults to100gb14days
. Changing this forces a new logz Monitor to be created.
- Billing
Cycle string Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. Changing this forces a new logz Monitor to be created.- Effective
Date string Date when plan was applied. Changing this forces a new logz Monitor to be created.
- Usage
Type string Different usage types. Possible values are
PAYG
orCOMMITTED
. Changing this forces a new logz Monitor to be created.- Plan
Id string Plan id as published by Logz. The only possible value is
100gb14days
. Defaults to100gb14days
. Changing this forces a new logz Monitor to be created.
- billing
Cycle String Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. Changing this forces a new logz Monitor to be created.- effective
Date String Date when plan was applied. Changing this forces a new logz Monitor to be created.
- usage
Type String Different usage types. Possible values are
PAYG
orCOMMITTED
. Changing this forces a new logz Monitor to be created.- plan
Id String Plan id as published by Logz. The only possible value is
100gb14days
. Defaults to100gb14days
. Changing this forces a new logz Monitor to be created.
- billing
Cycle string Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. Changing this forces a new logz Monitor to be created.- effective
Date string Date when plan was applied. Changing this forces a new logz Monitor to be created.
- usage
Type string Different usage types. Possible values are
PAYG
orCOMMITTED
. Changing this forces a new logz Monitor to be created.- plan
Id string Plan id as published by Logz. The only possible value is
100gb14days
. Defaults to100gb14days
. Changing this forces a new logz Monitor to be created.
- billing_
cycle str Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. 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
orCOMMITTED
. 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 to100gb14days
. Changing this forces a new logz Monitor to be created.
- billing
Cycle String Different billing cycles. Possible values are
MONTHLY
orWEEKLY
. Changing this forces a new logz Monitor to be created.- effective
Date String Date when plan was applied. Changing this forces a new logz Monitor to be created.
- usage
Type String Different usage types. Possible values are
PAYG
orCOMMITTED
. Changing this forces a new logz Monitor to be created.- plan
Id String Plan id as published by Logz. The only possible value is
100gb14days
. Defaults to100gb14days
. 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.
- First
Name string First Name of the user. Changing this forces a new logz Monitor to be created.
- Last
Name string Last Name of the user. Changing this forces a new logz Monitor to be created.
- Phone
Number 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.
- First
Name string First Name of the user. Changing this forces a new logz Monitor to be created.
- Last
Name string Last Name of the user. Changing this forces a new logz Monitor to be created.
- Phone
Number 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.
- first
Name String First Name of the user. Changing this forces a new logz Monitor to be created.
- last
Name String Last Name of the user. Changing this forces a new logz Monitor to be created.
- phone
Number 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.
- first
Name string First Name of the user. Changing this forces a new logz Monitor to be created.
- last
Name string Last Name of the user. Changing this forces a new logz Monitor to be created.
- phone
Number 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.
- first
Name String First Name of the user. Changing this forces a new logz Monitor to be created.
- last
Name String Last Name of the user. Changing this forces a new logz Monitor to be created.
- phone
Number 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.