azure-native.logz.Monitor
Explore with Pulumi AI
Azure REST API version: 2022-01-01-preview. Prior API version in Azure Native 1.x: 2020-10-01.
Example Usage
Monitors_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var monitor = new AzureNative.Logz.Monitor("monitor", new()
    {
        MonitorName = "myMonitor",
        ResourceGroupName = "myResourceGroup",
    });
});
package main
import (
	logz "github.com/pulumi/pulumi-azure-native-sdk/logz/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logz.NewMonitor(ctx, "monitor", &logz.MonitorArgs{
			MonitorName:       pulumi.String("myMonitor"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
		})
		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.azurenative.logz.Monitor;
import com.pulumi.azurenative.logz.MonitorArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var monitor = new Monitor("monitor", MonitorArgs.builder()
            .monitorName("myMonitor")
            .resourceGroupName("myResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const monitor = new azure_native.logz.Monitor("monitor", {
    monitorName: "myMonitor",
    resourceGroupName: "myResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.logz.Monitor("monitor",
    monitor_name="myMonitor",
    resource_group_name="myResourceGroup")
resources:
  monitor:
    type: azure-native:logz:Monitor
    properties:
      monitorName: myMonitor
      resourceGroupName: myResourceGroup
Create Monitor Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Monitor(name: string, args: MonitorArgs, opts?: CustomResourceOptions);@overload
def Monitor(resource_name: str,
            args: MonitorArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Monitor(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            resource_group_name: Optional[str] = None,
            identity: Optional[IdentityPropertiesArgs] = None,
            location: Optional[str] = None,
            monitor_name: Optional[str] = None,
            properties: Optional[MonitorPropertiesArgs] = None,
            tags: Optional[Mapping[str, str]] = None)func NewMonitor(ctx *Context, name string, args MonitorArgs, opts ...ResourceOption) (*Monitor, error)public Monitor(string name, MonitorArgs args, CustomResourceOptions? opts = null)
public Monitor(String name, MonitorArgs args)
public Monitor(String name, MonitorArgs args, CustomResourceOptions options)
type: azure-native:logz:Monitor
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplemonitorResourceResourceFromLogz = new AzureNative.Logz.Monitor("examplemonitorResourceResourceFromLogz", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.Logz.Inputs.IdentityPropertiesArgs
    {
        Type = "string",
    },
    Location = "string",
    MonitorName = "string",
    Properties = new AzureNative.Logz.Inputs.MonitorPropertiesArgs
    {
        LogzOrganizationProperties = new AzureNative.Logz.Inputs.LogzOrganizationPropertiesArgs
        {
            CompanyName = "string",
            EnterpriseAppId = "string",
            SingleSignOnUrl = "string",
        },
        MarketplaceSubscriptionStatus = "string",
        MonitoringStatus = "string",
        PlanData = new AzureNative.Logz.Inputs.PlanDataArgs
        {
            BillingCycle = "string",
            EffectiveDate = "string",
            PlanDetails = "string",
            UsageType = "string",
        },
        UserInfo = new AzureNative.Logz.Inputs.UserInfoArgs
        {
            EmailAddress = "string",
            FirstName = "string",
            LastName = "string",
            PhoneNumber = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := logz.NewMonitor(ctx, "examplemonitorResourceResourceFromLogz", &logz.MonitorArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &logz.IdentityPropertiesArgs{
		Type: pulumi.String("string"),
	},
	Location:    pulumi.String("string"),
	MonitorName: pulumi.String("string"),
	Properties: &logz.MonitorPropertiesArgs{
		LogzOrganizationProperties: &logz.LogzOrganizationPropertiesArgs{
			CompanyName:     pulumi.String("string"),
			EnterpriseAppId: pulumi.String("string"),
			SingleSignOnUrl: pulumi.String("string"),
		},
		MarketplaceSubscriptionStatus: pulumi.String("string"),
		MonitoringStatus:              pulumi.String("string"),
		PlanData: &logz.PlanDataArgs{
			BillingCycle:  pulumi.String("string"),
			EffectiveDate: pulumi.String("string"),
			PlanDetails:   pulumi.String("string"),
			UsageType:     pulumi.String("string"),
		},
		UserInfo: &logz.UserInfoArgs{
			EmailAddress: pulumi.String("string"),
			FirstName:    pulumi.String("string"),
			LastName:     pulumi.String("string"),
			PhoneNumber:  pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var examplemonitorResourceResourceFromLogz = new Monitor("examplemonitorResourceResourceFromLogz", MonitorArgs.builder()
    .resourceGroupName("string")
    .identity(IdentityPropertiesArgs.builder()
        .type("string")
        .build())
    .location("string")
    .monitorName("string")
    .properties(MonitorPropertiesArgs.builder()
        .logzOrganizationProperties(LogzOrganizationPropertiesArgs.builder()
            .companyName("string")
            .enterpriseAppId("string")
            .singleSignOnUrl("string")
            .build())
        .marketplaceSubscriptionStatus("string")
        .monitoringStatus("string")
        .planData(PlanDataArgs.builder()
            .billingCycle("string")
            .effectiveDate("string")
            .planDetails("string")
            .usageType("string")
            .build())
        .userInfo(UserInfoArgs.builder()
            .emailAddress("string")
            .firstName("string")
            .lastName("string")
            .phoneNumber("string")
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .build());
examplemonitor_resource_resource_from_logz = azure_native.logz.Monitor("examplemonitorResourceResourceFromLogz",
    resource_group_name="string",
    identity={
        "type": "string",
    },
    location="string",
    monitor_name="string",
    properties={
        "logz_organization_properties": {
            "company_name": "string",
            "enterprise_app_id": "string",
            "single_sign_on_url": "string",
        },
        "marketplace_subscription_status": "string",
        "monitoring_status": "string",
        "plan_data": {
            "billing_cycle": "string",
            "effective_date": "string",
            "plan_details": "string",
            "usage_type": "string",
        },
        "user_info": {
            "email_address": "string",
            "first_name": "string",
            "last_name": "string",
            "phone_number": "string",
        },
    },
    tags={
        "string": "string",
    })
const examplemonitorResourceResourceFromLogz = new azure_native.logz.Monitor("examplemonitorResourceResourceFromLogz", {
    resourceGroupName: "string",
    identity: {
        type: "string",
    },
    location: "string",
    monitorName: "string",
    properties: {
        logzOrganizationProperties: {
            companyName: "string",
            enterpriseAppId: "string",
            singleSignOnUrl: "string",
        },
        marketplaceSubscriptionStatus: "string",
        monitoringStatus: "string",
        planData: {
            billingCycle: "string",
            effectiveDate: "string",
            planDetails: "string",
            usageType: "string",
        },
        userInfo: {
            emailAddress: "string",
            firstName: "string",
            lastName: "string",
            phoneNumber: "string",
        },
    },
    tags: {
        string: "string",
    },
});
type: azure-native:logz:Monitor
properties:
    identity:
        type: string
    location: string
    monitorName: string
    properties:
        logzOrganizationProperties:
            companyName: string
            enterpriseAppId: string
            singleSignOnUrl: string
        marketplaceSubscriptionStatus: string
        monitoringStatus: string
        planData:
            billingCycle: string
            effectiveDate: string
            planDetails: string
            usageType: string
        userInfo:
            emailAddress: string
            firstName: string
            lastName: string
            phoneNumber: string
    resourceGroupName: string
    tags:
        string: string
Monitor Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Monitor resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Identity
Pulumi.Azure Native. Logz. Inputs. Identity Properties 
- Location string
- MonitorName string
- Monitor resource name
- Properties
Pulumi.Azure Native. Logz. Inputs. Monitor Properties 
- Properties specific to the monitor resource.
- Dictionary<string, string>
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Identity
IdentityProperties Args 
- Location string
- MonitorName string
- Monitor resource name
- Properties
MonitorProperties Args 
- Properties specific to the monitor resource.
- map[string]string
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- identity
IdentityProperties 
- location String
- monitorName String
- Monitor resource name
- properties
MonitorProperties 
- Properties specific to the monitor resource.
- Map<String,String>
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- identity
IdentityProperties 
- location string
- monitorName string
- Monitor resource name
- properties
MonitorProperties 
- Properties specific to the monitor resource.
- {[key: string]: string}
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- identity
IdentityProperties Args 
- location str
- monitor_name str
- Monitor resource name
- properties
MonitorProperties Args 
- Properties specific to the monitor resource.
- Mapping[str, str]
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- identity Property Map
- location String
- monitorName String
- Monitor resource name
- properties Property Map
- Properties specific to the monitor resource.
- Map<String>
Outputs
All input properties are implicitly available as output properties. Additionally, the Monitor resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the monitor resource.
- SystemData Pulumi.Azure Native. Logz. Outputs. System Data Response 
- The system metadata relating to this resource
- Type string
- The type of the monitor resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the monitor resource.
- SystemData SystemData Response 
- The system metadata relating to this resource
- Type string
- The type of the monitor resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the monitor resource.
- systemData SystemData Response 
- The system metadata relating to this resource
- type String
- The type of the monitor resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the monitor resource.
- systemData SystemData Response 
- The system metadata relating to this resource
- type string
- The type of the monitor resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the monitor resource.
- system_data SystemData Response 
- The system metadata relating to this resource
- type str
- The type of the monitor resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the monitor resource.
- systemData Property Map
- The system metadata relating to this resource
- type String
- The type of the monitor resource.
Supporting Types
IdentityProperties, IdentityPropertiesArgs    
- Type
string | ManagedIdentity Types 
- type
String | ManagedIdentity Types 
- type
string | ManagedIdentity Types 
- type
str | ManagedIdentity Types 
- type
String | "SystemAssigned" | "User Assigned" 
IdentityPropertiesResponse, IdentityPropertiesResponseArgs      
- PrincipalId string
- The identity ID.
- TenantId string
- The tenant ID of resource.
- Type string
- PrincipalId string
- The identity ID.
- TenantId string
- The tenant ID of resource.
- Type string
- principalId String
- The identity ID.
- tenantId String
- The tenant ID of resource.
- type String
- principalId string
- The identity ID.
- tenantId string
- The tenant ID of resource.
- type string
- principal_id str
- The identity ID.
- tenant_id str
- The tenant ID of resource.
- type str
- principalId String
- The identity ID.
- tenantId String
- The tenant ID of resource.
- type String
LogzOrganizationProperties, LogzOrganizationPropertiesArgs      
- CompanyName string
- Name of the Logz organization.
- EnterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- SingleSign stringOn Url 
- The login URL specific to this Logz Organization.
- CompanyName string
- Name of the Logz organization.
- EnterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- SingleSign stringOn Url 
- The login URL specific to this Logz Organization.
- companyName String
- Name of the Logz organization.
- enterpriseApp StringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign StringOn Url 
- The login URL specific to this Logz Organization.
- companyName string
- Name of the Logz organization.
- enterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign stringOn Url 
- The login URL specific to this Logz Organization.
- company_name str
- Name of the Logz organization.
- enterprise_app_ strid 
- The Id of the Enterprise App used for Single sign on.
- single_sign_ stron_ url 
- The login URL specific to this Logz Organization.
- companyName String
- Name of the Logz organization.
- enterpriseApp StringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign StringOn Url 
- The login URL specific to this Logz Organization.
LogzOrganizationPropertiesResponse, LogzOrganizationPropertiesResponseArgs        
- Id string
- Id of the Logz organization.
- CompanyName string
- Name of the Logz organization.
- EnterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- SingleSign stringOn Url 
- The login URL specific to this Logz Organization.
- Id string
- Id of the Logz organization.
- CompanyName string
- Name of the Logz organization.
- EnterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- SingleSign stringOn Url 
- The login URL specific to this Logz Organization.
- id String
- Id of the Logz organization.
- companyName String
- Name of the Logz organization.
- enterpriseApp StringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign StringOn Url 
- The login URL specific to this Logz Organization.
- id string
- Id of the Logz organization.
- companyName string
- Name of the Logz organization.
- enterpriseApp stringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign stringOn Url 
- The login URL specific to this Logz Organization.
- id str
- Id of the Logz organization.
- company_name str
- Name of the Logz organization.
- enterprise_app_ strid 
- The Id of the Enterprise App used for Single sign on.
- single_sign_ stron_ url 
- The login URL specific to this Logz Organization.
- id String
- Id of the Logz organization.
- companyName String
- Name of the Logz organization.
- enterpriseApp StringId 
- The Id of the Enterprise App used for Single sign on.
- singleSign StringOn Url 
- The login URL specific to this Logz Organization.
ManagedIdentityTypes, ManagedIdentityTypesArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- ManagedIdentity Types System Assigned 
- SystemAssigned
- ManagedIdentity Types User Assigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
MarketplaceSubscriptionStatus, MarketplaceSubscriptionStatusArgs      
- Active
- Active
- Suspended
- Suspended
- MarketplaceSubscription Status Active 
- Active
- MarketplaceSubscription Status Suspended 
- Suspended
- Active
- Active
- Suspended
- Suspended
- Active
- Active
- Suspended
- Suspended
- ACTIVE
- Active
- SUSPENDED
- Suspended
- "Active"
- Active
- "Suspended"
- Suspended
MonitorProperties, MonitorPropertiesArgs    
- LogzOrganization Pulumi.Properties Azure Native. Logz. Inputs. Logz Organization Properties 
- MarketplaceSubscription string | Pulumi.Status Azure Native. Logz. Marketplace Subscription Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- MonitoringStatus string | Pulumi.Azure Native. Logz. Monitoring Status 
- Flag specifying if the resource monitoring is enabled or disabled.
- PlanData Pulumi.Azure Native. Logz. Inputs. Plan Data 
- UserInfo Pulumi.Azure Native. Logz. Inputs. User Info 
- LogzOrganization LogzProperties Organization Properties 
- MarketplaceSubscription string | MarketplaceStatus Subscription Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- MonitoringStatus string | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- PlanData PlanData 
- UserInfo UserInfo 
- logzOrganization LogzProperties Organization Properties 
- marketplaceSubscription String | MarketplaceStatus Subscription Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus String | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- planData PlanData 
- userInfo UserInfo 
- logzOrganization LogzProperties Organization Properties 
- marketplaceSubscription string | MarketplaceStatus Subscription Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus string | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- planData PlanData 
- userInfo UserInfo 
- logz_organization_ Logzproperties Organization Properties 
- marketplace_subscription_ str | Marketplacestatus Subscription Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring_status str | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- plan_data PlanData 
- user_info UserInfo 
- logzOrganization Property MapProperties 
- marketplaceSubscription String | "Active" | "Suspended"Status 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus String | "Enabled" | "Disabled"
- Flag specifying if the resource monitoring is enabled or disabled.
- planData Property Map
- userInfo Property Map
MonitorPropertiesResponse, MonitorPropertiesResponseArgs      
- LiftrResource stringCategory 
- LiftrResource intPreference 
- The priority of the resource.
- ProvisioningState string
- Flag specifying if the resource provisioning state as tracked by ARM.
- LogzOrganization Pulumi.Properties Azure Native. Logz. Inputs. Logz Organization Properties Response 
- MarketplaceSubscription stringStatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- MonitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- PlanData Pulumi.Azure Native. Logz. Inputs. Plan Data Response 
- UserInfo Pulumi.Azure Native. Logz. Inputs. User Info Response 
- LiftrResource stringCategory 
- LiftrResource intPreference 
- The priority of the resource.
- ProvisioningState string
- Flag specifying if the resource provisioning state as tracked by ARM.
- LogzOrganization LogzProperties Organization Properties Response 
- MarketplaceSubscription stringStatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- MonitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- PlanData PlanData Response 
- UserInfo UserInfo Response 
- liftrResource StringCategory 
- liftrResource IntegerPreference 
- The priority of the resource.
- provisioningState String
- Flag specifying if the resource provisioning state as tracked by ARM.
- logzOrganization LogzProperties Organization Properties Response 
- marketplaceSubscription StringStatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus String
- Flag specifying if the resource monitoring is enabled or disabled.
- planData PlanData Response 
- userInfo UserInfo Response 
- liftrResource stringCategory 
- liftrResource numberPreference 
- The priority of the resource.
- provisioningState string
- Flag specifying if the resource provisioning state as tracked by ARM.
- logzOrganization LogzProperties Organization Properties Response 
- marketplaceSubscription stringStatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- planData PlanData Response 
- userInfo UserInfo Response 
- liftr_resource_ strcategory 
- liftr_resource_ intpreference 
- The priority of the resource.
- provisioning_state str
- Flag specifying if the resource provisioning state as tracked by ARM.
- logz_organization_ Logzproperties Organization Properties Response 
- marketplace_subscription_ strstatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring_status str
- Flag specifying if the resource monitoring is enabled or disabled.
- plan_data PlanData Response 
- user_info UserInfo Response 
- liftrResource StringCategory 
- liftrResource NumberPreference 
- The priority of the resource.
- provisioningState String
- Flag specifying if the resource provisioning state as tracked by ARM.
- logzOrganization Property MapProperties 
- marketplaceSubscription StringStatus 
- Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoringStatus String
- Flag specifying if the resource monitoring is enabled or disabled.
- planData Property Map
- userInfo Property Map
MonitoringStatus, MonitoringStatusArgs    
- Enabled
- Enabled
- Disabled
- Disabled
- MonitoringStatus Enabled 
- Enabled
- MonitoringStatus Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
PlanData, PlanDataArgs    
- BillingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- EffectiveDate string
- date when plan was applied
- PlanDetails string
- plan id as published by Logz
- UsageType string
- different usage type like PAYG/COMMITTED. this could be enum
- BillingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- EffectiveDate string
- date when plan was applied
- PlanDetails string
- plan id as published by Logz
- UsageType string
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle String
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate String
- date when plan was applied
- planDetails String
- plan id as published by Logz
- usageType String
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate string
- date when plan was applied
- planDetails string
- plan id as published by Logz
- usageType string
- different usage type like PAYG/COMMITTED. this could be enum
- billing_cycle str
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective_date str
- date when plan was applied
- plan_details str
- plan id as published by Logz
- usage_type str
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle String
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate String
- date when plan was applied
- planDetails String
- plan id as published by Logz
- usageType String
- different usage type like PAYG/COMMITTED. this could be enum
PlanDataResponse, PlanDataResponseArgs      
- BillingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- EffectiveDate string
- date when plan was applied
- PlanDetails string
- plan id as published by Logz
- UsageType string
- different usage type like PAYG/COMMITTED. this could be enum
- BillingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- EffectiveDate string
- date when plan was applied
- PlanDetails string
- plan id as published by Logz
- UsageType string
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle String
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate String
- date when plan was applied
- planDetails String
- plan id as published by Logz
- usageType String
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle string
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate string
- date when plan was applied
- planDetails string
- plan id as published by Logz
- usageType string
- different usage type like PAYG/COMMITTED. this could be enum
- billing_cycle str
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective_date str
- date when plan was applied
- plan_details str
- plan id as published by Logz
- usage_type str
- different usage type like PAYG/COMMITTED. this could be enum
- billingCycle String
- different billing cycles like MONTHLY/WEEKLY. this could be enum
- effectiveDate String
- date when plan was applied
- planDetails String
- plan id as published by Logz
- usageType String
- different usage type like PAYG/COMMITTED. this could be enum
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserInfo, UserInfoArgs    
- EmailAddress string
- Email of the user used by Logz for contacting them if needed
- FirstName string
- First Name of the user
- LastName string
- Last Name of the user
- PhoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- EmailAddress string
- Email of the user used by Logz for contacting them if needed
- FirstName string
- First Name of the user
- LastName string
- Last Name of the user
- PhoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- emailAddress String
- Email of the user used by Logz for contacting them if needed
- firstName String
- First Name of the user
- lastName String
- Last Name of the user
- phoneNumber String
- Phone number of the user used by Logz for contacting them if needed
- emailAddress string
- Email of the user used by Logz for contacting them if needed
- firstName string
- First Name of the user
- lastName string
- Last Name of the user
- phoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- email_address str
- Email of the user used by Logz for contacting them if needed
- first_name str
- First Name of the user
- last_name str
- Last Name of the user
- phone_number str
- Phone number of the user used by Logz for contacting them if needed
- emailAddress String
- Email of the user used by Logz for contacting them if needed
- firstName String
- First Name of the user
- lastName String
- Last Name of the user
- phoneNumber String
- Phone number of the user used by Logz for contacting them if needed
UserInfoResponse, UserInfoResponseArgs      
- EmailAddress string
- Email of the user used by Logz for contacting them if needed
- FirstName string
- First Name of the user
- LastName string
- Last Name of the user
- PhoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- EmailAddress string
- Email of the user used by Logz for contacting them if needed
- FirstName string
- First Name of the user
- LastName string
- Last Name of the user
- PhoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- emailAddress String
- Email of the user used by Logz for contacting them if needed
- firstName String
- First Name of the user
- lastName String
- Last Name of the user
- phoneNumber String
- Phone number of the user used by Logz for contacting them if needed
- emailAddress string
- Email of the user used by Logz for contacting them if needed
- firstName string
- First Name of the user
- lastName string
- Last Name of the user
- phoneNumber string
- Phone number of the user used by Logz for contacting them if needed
- email_address str
- Email of the user used by Logz for contacting them if needed
- first_name str
- First Name of the user
- last_name str
- Last Name of the user
- phone_number str
- Phone number of the user used by Logz for contacting them if needed
- emailAddress String
- Email of the user used by Logz for contacting them if needed
- firstName String
- First Name of the user
- lastName String
- Last Name of the user
- phoneNumber String
- Phone number of the user used by Logz for contacting them if needed
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:logz:Monitor myMonitor /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logz/monitors/{monitorName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0