1. Packages
  2. Azure Native v2
  3. API Docs
  4. logz
  5. MetricsSource
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.logz.MetricsSource

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Azure REST API version: 2022-01-01-preview. Prior API version in Azure Native 1.x: 2022-01-01-preview.

Example Usage

metricsSource_Create

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

return await Deployment.RunAsync(() => 
{
    var metricsSource = new AzureNative.Logz.MetricsSource("metricsSource", new()
    {
        MetricsSourceName = "MetricsSource1",
        MonitorName = "myMonitor",
        ResourceGroupName = "myResourceGroup",
    });

});
Copy
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.NewMetricsSource(ctx, "metricsSource", &logz.MetricsSourceArgs{
			MetricsSourceName: pulumi.String("MetricsSource1"),
			MonitorName:       pulumi.String("myMonitor"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logz.MetricsSource;
import com.pulumi.azurenative.logz.MetricsSourceArgs;
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 metricsSource = new MetricsSource("metricsSource", MetricsSourceArgs.builder()
            .metricsSourceName("MetricsSource1")
            .monitorName("myMonitor")
            .resourceGroupName("myResourceGroup")
            .build());

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

const metricsSource = new azure_native.logz.MetricsSource("metricsSource", {
    metricsSourceName: "MetricsSource1",
    monitorName: "myMonitor",
    resourceGroupName: "myResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

metrics_source = azure_native.logz.MetricsSource("metricsSource",
    metrics_source_name="MetricsSource1",
    monitor_name="myMonitor",
    resource_group_name="myResourceGroup")
Copy
resources:
  metricsSource:
    type: azure-native:logz:MetricsSource
    properties:
      metricsSourceName: MetricsSource1
      monitorName: myMonitor
      resourceGroupName: myResourceGroup
Copy

Create MetricsSource Resource

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

Constructor syntax

new MetricsSource(name: string, args: MetricsSourceArgs, opts?: CustomResourceOptions);
@overload
def MetricsSource(resource_name: str,
                  args: MetricsSourceArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def MetricsSource(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  monitor_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  identity: Optional[IdentityPropertiesArgs] = None,
                  location: Optional[str] = None,
                  metrics_source_name: Optional[str] = None,
                  properties: Optional[MonitorPropertiesArgs] = None,
                  tags: Optional[Mapping[str, str]] = None)
func NewMetricsSource(ctx *Context, name string, args MetricsSourceArgs, opts ...ResourceOption) (*MetricsSource, error)
public MetricsSource(string name, MetricsSourceArgs args, CustomResourceOptions? opts = null)
public MetricsSource(String name, MetricsSourceArgs args)
public MetricsSource(String name, MetricsSourceArgs args, CustomResourceOptions options)
type: azure-native:logz:MetricsSource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MetricsSourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MetricsSourceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MetricsSourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MetricsSourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MetricsSourceArgs
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 metricsSourceResource = new AzureNative.Logz.MetricsSource("metricsSourceResource", new()
{
    MonitorName = "string",
    ResourceGroupName = "string",
    Identity = 
    {
        { "type", "string" },
    },
    Location = "string",
    MetricsSourceName = "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" },
    },
});
Copy
example, err := logz.NewMetricsSource(ctx, "metricsSourceResource", &logz.MetricsSourceArgs{
	MonitorName:       "string",
	ResourceGroupName: "string",
	Identity: map[string]interface{}{
		"type": "string",
	},
	Location:          "string",
	MetricsSourceName: "string",
	Properties: map[string]interface{}{
		"logzOrganizationProperties": map[string]interface{}{
			"companyName":     "string",
			"enterpriseAppId": "string",
			"singleSignOnUrl": "string",
		},
		"marketplaceSubscriptionStatus": "string",
		"monitoringStatus":              "string",
		"planData": map[string]interface{}{
			"billingCycle":  "string",
			"effectiveDate": "string",
			"planDetails":   "string",
			"usageType":     "string",
		},
		"userInfo": map[string]interface{}{
			"emailAddress": "string",
			"firstName":    "string",
			"lastName":     "string",
			"phoneNumber":  "string",
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var metricsSourceResource = new MetricsSource("metricsSourceResource", MetricsSourceArgs.builder()
    .monitorName("string")
    .resourceGroupName("string")
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .metricsSourceName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
metrics_source_resource = azure_native.logz.MetricsSource("metricsSourceResource",
    monitor_name=string,
    resource_group_name=string,
    identity={
        type: string,
    },
    location=string,
    metrics_source_name=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,
    })
Copy
const metricsSourceResource = new azure_native.logz.MetricsSource("metricsSourceResource", {
    monitorName: "string",
    resourceGroupName: "string",
    identity: {
        type: "string",
    },
    location: "string",
    metricsSourceName: "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",
    },
});
Copy
type: azure-native:logz:MetricsSource
properties:
    identity:
        type: string
    location: string
    metricsSourceName: 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
Copy

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

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

Outputs

All input properties are implicitly available as output properties. Additionally, the MetricsSource 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.AzureNative.Logz.Outputs.SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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 SystemDataResponse
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

IdentityPropertiesResponse
, IdentityPropertiesResponseArgs

PrincipalId This property is required. string
The identity ID.
TenantId This property is required. string
The tenant ID of resource.
Type string
PrincipalId This property is required. string
The identity ID.
TenantId This property is required. string
The tenant ID of resource.
Type string
principalId This property is required. String
The identity ID.
tenantId This property is required. String
The tenant ID of resource.
type String
principalId This property is required. string
The identity ID.
tenantId This property is required. string
The tenant ID of resource.
type string
principal_id This property is required. str
The identity ID.
tenant_id This property is required. str
The tenant ID of resource.
type str
principalId This property is required. String
The identity ID.
tenantId This property is required. String
The tenant ID of resource.
type String

LogzOrganizationProperties
, LogzOrganizationPropertiesArgs

CompanyName string
Name of the Logz organization.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
SingleSignOnUrl string
The login URL specific to this Logz Organization.
CompanyName string
Name of the Logz organization.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
SingleSignOnUrl string
The login URL specific to this Logz Organization.
companyName String
Name of the Logz organization.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl String
The login URL specific to this Logz Organization.
companyName string
Name of the Logz organization.
enterpriseAppId string
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl string
The login URL specific to this Logz Organization.
company_name str
Name of the Logz organization.
enterprise_app_id str
The Id of the Enterprise App used for Single sign on.
single_sign_on_url str
The login URL specific to this Logz Organization.
companyName String
Name of the Logz organization.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl String
The login URL specific to this Logz Organization.

LogzOrganizationPropertiesResponse
, LogzOrganizationPropertiesResponseArgs

Id This property is required. string
Id of the Logz organization.
CompanyName string
Name of the Logz organization.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
SingleSignOnUrl string
The login URL specific to this Logz Organization.
Id This property is required. string
Id of the Logz organization.
CompanyName string
Name of the Logz organization.
EnterpriseAppId string
The Id of the Enterprise App used for Single sign on.
SingleSignOnUrl string
The login URL specific to this Logz Organization.
id This property is required. String
Id of the Logz organization.
companyName String
Name of the Logz organization.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl String
The login URL specific to this Logz Organization.
id This property is required. string
Id of the Logz organization.
companyName string
Name of the Logz organization.
enterpriseAppId string
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl string
The login URL specific to this Logz Organization.
id This property is required. str
Id of the Logz organization.
company_name str
Name of the Logz organization.
enterprise_app_id str
The Id of the Enterprise App used for Single sign on.
single_sign_on_url str
The login URL specific to this Logz Organization.
id This property is required. String
Id of the Logz organization.
companyName String
Name of the Logz organization.
enterpriseAppId String
The Id of the Enterprise App used for Single sign on.
singleSignOnUrl String
The login URL specific to this Logz Organization.

ManagedIdentityTypes
, ManagedIdentityTypesArgs

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

MarketplaceSubscriptionStatus
, MarketplaceSubscriptionStatusArgs

Active
Active
Suspended
Suspended
MarketplaceSubscriptionStatusActive
Active
MarketplaceSubscriptionStatusSuspended
Suspended
Active
Active
Suspended
Suspended
Active
Active
Suspended
Suspended
ACTIVE
Active
SUSPENDED
Suspended
"Active"
Active
"Suspended"
Suspended

MonitorProperties
, MonitorPropertiesArgs

LogzOrganizationProperties Pulumi.AzureNative.Logz.Inputs.LogzOrganizationProperties
MarketplaceSubscriptionStatus string | Pulumi.AzureNative.Logz.MarketplaceSubscriptionStatus
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.AzureNative.Logz.MonitoringStatus
Flag specifying if the resource monitoring is enabled or disabled.
PlanData Pulumi.AzureNative.Logz.Inputs.PlanData
UserInfo Pulumi.AzureNative.Logz.Inputs.UserInfo
LogzOrganizationProperties LogzOrganizationProperties
MarketplaceSubscriptionStatus string | MarketplaceSubscriptionStatus
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
logzOrganizationProperties LogzOrganizationProperties
marketplaceSubscriptionStatus String | MarketplaceSubscriptionStatus
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
logzOrganizationProperties LogzOrganizationProperties
marketplaceSubscriptionStatus string | MarketplaceSubscriptionStatus
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_properties LogzOrganizationProperties
marketplace_subscription_status str | MarketplaceSubscriptionStatus
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
logzOrganizationProperties Property Map
marketplaceSubscriptionStatus String | "Active" | "Suspended"
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

LiftrResourceCategory This property is required. string
LiftrResourcePreference This property is required. int
The priority of the resource.
ProvisioningState This property is required. string
Flag specifying if the resource provisioning state as tracked by ARM.
LogzOrganizationProperties Pulumi.AzureNative.Logz.Inputs.LogzOrganizationPropertiesResponse
MarketplaceSubscriptionStatus string
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.AzureNative.Logz.Inputs.PlanDataResponse
UserInfo Pulumi.AzureNative.Logz.Inputs.UserInfoResponse
LiftrResourceCategory This property is required. string
LiftrResourcePreference This property is required. int
The priority of the resource.
ProvisioningState This property is required. string
Flag specifying if the resource provisioning state as tracked by ARM.
LogzOrganizationProperties LogzOrganizationPropertiesResponse
MarketplaceSubscriptionStatus string
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 PlanDataResponse
UserInfo UserInfoResponse
liftrResourceCategory This property is required. String
liftrResourcePreference This property is required. Integer
The priority of the resource.
provisioningState This property is required. String
Flag specifying if the resource provisioning state as tracked by ARM.
logzOrganizationProperties LogzOrganizationPropertiesResponse
marketplaceSubscriptionStatus String
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 PlanDataResponse
userInfo UserInfoResponse
liftrResourceCategory This property is required. string
liftrResourcePreference This property is required. number
The priority of the resource.
provisioningState This property is required. string
Flag specifying if the resource provisioning state as tracked by ARM.
logzOrganizationProperties LogzOrganizationPropertiesResponse
marketplaceSubscriptionStatus string
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 PlanDataResponse
userInfo UserInfoResponse
liftr_resource_category This property is required. str
liftr_resource_preference This property is required. int
The priority of the resource.
provisioning_state This property is required. str
Flag specifying if the resource provisioning state as tracked by ARM.
logz_organization_properties LogzOrganizationPropertiesResponse
marketplace_subscription_status str
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 PlanDataResponse
user_info UserInfoResponse
liftrResourceCategory This property is required. String
liftrResourcePreference This property is required. Number
The priority of the resource.
provisioningState This property is required. String
Flag specifying if the resource provisioning state as tracked by ARM.
logzOrganizationProperties Property Map
marketplaceSubscriptionStatus String
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
MonitoringStatusEnabled
Enabled
MonitoringStatusDisabled
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.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserInfo
, UserInfoArgs

EmailAddress string
Email of the user used by 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:MetricsSource myMonitor /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logz/monitors/{monitorName}/metricsSource/{metricsSourceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi