1. Packages
  2. Azure Native
  3. API Docs
  4. dashboard
  5. Grafana
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.dashboard.Grafana

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    The grafana resource type.

    Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2022-08-01.

    Other available API versions: 2022-08-01, 2022-10-01-preview, 2023-09-01, 2023-10-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native dashboard [ApiVersion]. See the version guide for details.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:dashboard:Grafana myWorkspace /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Dashboard/grafana/{workspaceName} 
    

    Create Grafana Resource

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

    Constructor syntax

    new Grafana(name: string, args: GrafanaArgs, opts?: CustomResourceOptions);
    @overload
    def Grafana(resource_name: str,
                args: GrafanaArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Grafana(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                identity: Optional[ManagedServiceIdentityArgs] = None,
                location: Optional[str] = None,
                properties: Optional[ManagedGrafanaPropertiesArgs] = None,
                sku: Optional[ResourceSkuArgs] = None,
                tags: Optional[Mapping[str, str]] = None,
                workspace_name: Optional[str] = None)
    func NewGrafana(ctx *Context, name string, args GrafanaArgs, opts ...ResourceOption) (*Grafana, error)
    public Grafana(string name, GrafanaArgs args, CustomResourceOptions? opts = null)
    public Grafana(String name, GrafanaArgs args)
    public Grafana(String name, GrafanaArgs args, CustomResourceOptions options)
    
    type: azure-native:dashboard:Grafana
    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 GrafanaArgs
    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 GrafanaArgs
    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 GrafanaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GrafanaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GrafanaArgs
    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 grafanaResource = new AzureNative.Dashboard.Grafana("grafanaResource", new()
    {
        ResourceGroupName = "string",
        Identity = new AzureNative.Dashboard.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        Properties = new AzureNative.Dashboard.Inputs.ManagedGrafanaPropertiesArgs
        {
            ApiKey = "string",
            AutoGeneratedDomainNameLabelScope = "string",
            DeterministicOutboundIP = "string",
            EnterpriseConfigurations = new AzureNative.Dashboard.Inputs.EnterpriseConfigurationsArgs
            {
                MarketplaceAutoRenew = "string",
                MarketplacePlanId = "string",
            },
            GrafanaConfigurations = new AzureNative.Dashboard.Inputs.GrafanaConfigurationsArgs
            {
                Security = new AzureNative.Dashboard.Inputs.SecurityArgs
                {
                    CsrfAlwaysCheck = false,
                },
                Smtp = new AzureNative.Dashboard.Inputs.SmtpArgs
                {
                    Enabled = false,
                    FromAddress = "string",
                    FromName = "string",
                    Host = "string",
                    Password = "string",
                    SkipVerify = false,
                    StartTLSPolicy = "string",
                    User = "string",
                },
                Snapshots = new AzureNative.Dashboard.Inputs.SnapshotsArgs
                {
                    ExternalEnabled = false,
                },
                Users = new AzureNative.Dashboard.Inputs.UsersArgs
                {
                    ViewersCanEdit = false,
                },
            },
            GrafanaIntegrations = new AzureNative.Dashboard.Inputs.GrafanaIntegrationsArgs
            {
                AzureMonitorWorkspaceIntegrations = new[]
                {
                    new AzureNative.Dashboard.Inputs.AzureMonitorWorkspaceIntegrationArgs
                    {
                        AzureMonitorWorkspaceResourceId = "string",
                    },
                },
            },
            GrafanaMajorVersion = "string",
            GrafanaPlugins = new[]
            {
                "string",
            },
            PublicNetworkAccess = "string",
            ZoneRedundancy = "string",
        },
        Sku = new AzureNative.Dashboard.Inputs.ResourceSkuArgs
        {
            Name = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        WorkspaceName = "string",
    });
    
    example, err := dashboard.NewGrafana(ctx, "grafanaResource", &dashboard.GrafanaArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Identity: &dashboard.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location: pulumi.String("string"),
    	Properties: &dashboard.ManagedGrafanaPropertiesArgs{
    		ApiKey:                            pulumi.String("string"),
    		AutoGeneratedDomainNameLabelScope: pulumi.String("string"),
    		DeterministicOutboundIP:           pulumi.String("string"),
    		EnterpriseConfigurations: &dashboard.EnterpriseConfigurationsArgs{
    			MarketplaceAutoRenew: pulumi.String("string"),
    			MarketplacePlanId:    pulumi.String("string"),
    		},
    		GrafanaConfigurations: &dashboard.GrafanaConfigurationsArgs{
    			Security: &dashboard.SecurityArgs{
    				CsrfAlwaysCheck: pulumi.Bool(false),
    			},
    			Smtp: &dashboard.SmtpArgs{
    				Enabled:        pulumi.Bool(false),
    				FromAddress:    pulumi.String("string"),
    				FromName:       pulumi.String("string"),
    				Host:           pulumi.String("string"),
    				Password:       pulumi.String("string"),
    				SkipVerify:     pulumi.Bool(false),
    				StartTLSPolicy: pulumi.String("string"),
    				User:           pulumi.String("string"),
    			},
    			Snapshots: &dashboard.SnapshotsArgs{
    				ExternalEnabled: pulumi.Bool(false),
    			},
    			Users: &dashboard.UsersArgs{
    				ViewersCanEdit: pulumi.Bool(false),
    			},
    		},
    		GrafanaIntegrations: &dashboard.GrafanaIntegrationsArgs{
    			AzureMonitorWorkspaceIntegrations: dashboard.AzureMonitorWorkspaceIntegrationArray{
    				&dashboard.AzureMonitorWorkspaceIntegrationArgs{
    					AzureMonitorWorkspaceResourceId: pulumi.String("string"),
    				},
    			},
    		},
    		GrafanaMajorVersion: pulumi.String("string"),
    		GrafanaPlugins: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		PublicNetworkAccess: pulumi.String("string"),
    		ZoneRedundancy:      pulumi.String("string"),
    	},
    	Sku: &dashboard.ResourceSkuArgs{
    		Name: pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	WorkspaceName: pulumi.String("string"),
    })
    
    var grafanaResource = new Grafana("grafanaResource", GrafanaArgs.builder()
        .resourceGroupName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .properties(ManagedGrafanaPropertiesArgs.builder()
            .apiKey("string")
            .autoGeneratedDomainNameLabelScope("string")
            .deterministicOutboundIP("string")
            .enterpriseConfigurations(EnterpriseConfigurationsArgs.builder()
                .marketplaceAutoRenew("string")
                .marketplacePlanId("string")
                .build())
            .grafanaConfigurations(GrafanaConfigurationsArgs.builder()
                .security(SecurityArgs.builder()
                    .csrfAlwaysCheck(false)
                    .build())
                .smtp(SmtpArgs.builder()
                    .enabled(false)
                    .fromAddress("string")
                    .fromName("string")
                    .host("string")
                    .password("string")
                    .skipVerify(false)
                    .startTLSPolicy("string")
                    .user("string")
                    .build())
                .snapshots(SnapshotsArgs.builder()
                    .externalEnabled(false)
                    .build())
                .users(UsersArgs.builder()
                    .viewersCanEdit(false)
                    .build())
                .build())
            .grafanaIntegrations(GrafanaIntegrationsArgs.builder()
                .azureMonitorWorkspaceIntegrations(AzureMonitorWorkspaceIntegrationArgs.builder()
                    .azureMonitorWorkspaceResourceId("string")
                    .build())
                .build())
            .grafanaMajorVersion("string")
            .grafanaPlugins("string")
            .publicNetworkAccess("string")
            .zoneRedundancy("string")
            .build())
        .sku(ResourceSkuArgs.builder()
            .name("string")
            .build())
        .tags(Map.of("string", "string"))
        .workspaceName("string")
        .build());
    
    grafana_resource = azure_native.dashboard.Grafana("grafanaResource",
        resource_group_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        properties={
            "api_key": "string",
            "auto_generated_domain_name_label_scope": "string",
            "deterministic_outbound_ip": "string",
            "enterprise_configurations": {
                "marketplace_auto_renew": "string",
                "marketplace_plan_id": "string",
            },
            "grafana_configurations": {
                "security": {
                    "csrf_always_check": False,
                },
                "smtp": {
                    "enabled": False,
                    "from_address": "string",
                    "from_name": "string",
                    "host": "string",
                    "password": "string",
                    "skip_verify": False,
                    "start_tls_policy": "string",
                    "user": "string",
                },
                "snapshots": {
                    "external_enabled": False,
                },
                "users": {
                    "viewers_can_edit": False,
                },
            },
            "grafana_integrations": {
                "azure_monitor_workspace_integrations": [{
                    "azure_monitor_workspace_resource_id": "string",
                }],
            },
            "grafana_major_version": "string",
            "grafana_plugins": ["string"],
            "public_network_access": "string",
            "zone_redundancy": "string",
        },
        sku={
            "name": "string",
        },
        tags={
            "string": "string",
        },
        workspace_name="string")
    
    const grafanaResource = new azure_native.dashboard.Grafana("grafanaResource", {
        resourceGroupName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        properties: {
            apiKey: "string",
            autoGeneratedDomainNameLabelScope: "string",
            deterministicOutboundIP: "string",
            enterpriseConfigurations: {
                marketplaceAutoRenew: "string",
                marketplacePlanId: "string",
            },
            grafanaConfigurations: {
                security: {
                    csrfAlwaysCheck: false,
                },
                smtp: {
                    enabled: false,
                    fromAddress: "string",
                    fromName: "string",
                    host: "string",
                    password: "string",
                    skipVerify: false,
                    startTLSPolicy: "string",
                    user: "string",
                },
                snapshots: {
                    externalEnabled: false,
                },
                users: {
                    viewersCanEdit: false,
                },
            },
            grafanaIntegrations: {
                azureMonitorWorkspaceIntegrations: [{
                    azureMonitorWorkspaceResourceId: "string",
                }],
            },
            grafanaMajorVersion: "string",
            grafanaPlugins: ["string"],
            publicNetworkAccess: "string",
            zoneRedundancy: "string",
        },
        sku: {
            name: "string",
        },
        tags: {
            string: "string",
        },
        workspaceName: "string",
    });
    
    type: azure-native:dashboard:Grafana
    properties:
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        properties:
            apiKey: string
            autoGeneratedDomainNameLabelScope: string
            deterministicOutboundIP: string
            enterpriseConfigurations:
                marketplaceAutoRenew: string
                marketplacePlanId: string
            grafanaConfigurations:
                security:
                    csrfAlwaysCheck: false
                smtp:
                    enabled: false
                    fromAddress: string
                    fromName: string
                    host: string
                    password: string
                    skipVerify: false
                    startTLSPolicy: string
                    user: string
                snapshots:
                    externalEnabled: false
                users:
                    viewersCanEdit: false
            grafanaIntegrations:
                azureMonitorWorkspaceIntegrations:
                    - azureMonitorWorkspaceResourceId: string
            grafanaMajorVersion: string
            grafanaPlugins:
                - string
            publicNetworkAccess: string
            zoneRedundancy: string
        resourceGroupName: string
        sku:
            name: string
        tags:
            string: string
        workspaceName: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.Dashboard.Inputs.ManagedServiceIdentity
    The managed identity of the grafana resource.
    Location string
    The geo-location where the grafana resource lives
    Properties Pulumi.AzureNative.Dashboard.Inputs.ManagedGrafanaProperties
    Properties specific to the grafana resource.
    Sku Pulumi.AzureNative.Dashboard.Inputs.ResourceSku
    The Sku of the grafana resource.
    Tags Dictionary<string, string>
    The tags for grafana resource.
    WorkspaceName string
    The workspace name of Azure Managed Grafana.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity ManagedServiceIdentityArgs
    The managed identity of the grafana resource.
    Location string
    The geo-location where the grafana resource lives
    Properties ManagedGrafanaPropertiesArgs
    Properties specific to the grafana resource.
    Sku ResourceSkuArgs
    The Sku of the grafana resource.
    Tags map[string]string
    The tags for grafana resource.
    WorkspaceName string
    The workspace name of Azure Managed Grafana.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed identity of the grafana resource.
    location String
    The geo-location where the grafana resource lives
    properties ManagedGrafanaProperties
    Properties specific to the grafana resource.
    sku ResourceSku
    The Sku of the grafana resource.
    tags Map<String,String>
    The tags for grafana resource.
    workspaceName String
    The workspace name of Azure Managed Grafana.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentity
    The managed identity of the grafana resource.
    location string
    The geo-location where the grafana resource lives
    properties ManagedGrafanaProperties
    Properties specific to the grafana resource.
    sku ResourceSku
    The Sku of the grafana resource.
    tags {[key: string]: string}
    The tags for grafana resource.
    workspaceName string
    The workspace name of Azure Managed Grafana.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity ManagedServiceIdentityArgs
    The managed identity of the grafana resource.
    location str
    The geo-location where the grafana resource lives
    properties ManagedGrafanaPropertiesArgs
    Properties specific to the grafana resource.
    sku ResourceSkuArgs
    The Sku of the grafana resource.
    tags Mapping[str, str]
    The tags for grafana resource.
    workspace_name str
    The workspace name of Azure Managed Grafana.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    The managed identity of the grafana resource.
    location String
    The geo-location where the grafana resource lives
    properties Property Map
    Properties specific to the grafana resource.
    sku Property Map
    The Sku of the grafana resource.
    tags Map<String>
    The tags for grafana resource.
    workspaceName String
    The workspace name of Azure Managed Grafana.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the grafana resource.
    SystemData Pulumi.AzureNative.Dashboard.Outputs.SystemDataResponse
    The system meta data relating to this grafana resource.
    Type string
    The type of the grafana resource.
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the grafana resource.
    SystemData SystemDataResponse
    The system meta data relating to this grafana resource.
    Type string
    The type of the grafana resource.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the grafana resource.
    systemData SystemDataResponse
    The system meta data relating to this grafana resource.
    type String
    The type of the grafana resource.
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name of the grafana resource.
    systemData SystemDataResponse
    The system meta data relating to this grafana resource.
    type string
    The type of the grafana resource.
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name of the grafana resource.
    system_data SystemDataResponse
    The system meta data relating to this grafana resource.
    type str
    The type of the grafana resource.
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the grafana resource.
    systemData Property Map
    The system meta data relating to this grafana resource.
    type String
    The type of the grafana resource.

    Supporting Types

    ApiKey, ApiKeyArgs

    Disabled
    Disabled
    Enabled
    Enabled
    ApiKeyDisabled
    Disabled
    ApiKeyEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    AutoGeneratedDomainNameLabelScope, AutoGeneratedDomainNameLabelScopeArgs

    TenantReuse
    TenantReuse
    AutoGeneratedDomainNameLabelScopeTenantReuse
    TenantReuse
    TenantReuse
    TenantReuse
    TenantReuse
    TenantReuse
    TENANT_REUSE
    TenantReuse
    "TenantReuse"
    TenantReuse

    AzureMonitorWorkspaceIntegration, AzureMonitorWorkspaceIntegrationArgs

    AzureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    AzureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId String
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    azure_monitor_workspace_resource_id str
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId String
    The resource Id of the connected Azure Monitor Workspace.

    AzureMonitorWorkspaceIntegrationResponse, AzureMonitorWorkspaceIntegrationResponseArgs

    AzureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    AzureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId String
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId string
    The resource Id of the connected Azure Monitor Workspace.
    azure_monitor_workspace_resource_id str
    The resource Id of the connected Azure Monitor Workspace.
    azureMonitorWorkspaceResourceId String
    The resource Id of the connected Azure Monitor Workspace.

    DeterministicOutboundIP, DeterministicOutboundIPArgs

    Disabled
    Disabled
    Enabled
    Enabled
    DeterministicOutboundIPDisabled
    Disabled
    DeterministicOutboundIPEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    EnterpriseConfigurations, EnterpriseConfigurationsArgs

    MarketplaceAutoRenew string | Pulumi.AzureNative.Dashboard.MarketplaceAutoRenew
    The AutoRenew setting of the Enterprise subscription
    MarketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    MarketplaceAutoRenew string | MarketplaceAutoRenew
    The AutoRenew setting of the Enterprise subscription
    MarketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew String | MarketplaceAutoRenew
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId String
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew string | MarketplaceAutoRenew
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplace_auto_renew str | MarketplaceAutoRenew
    The AutoRenew setting of the Enterprise subscription
    marketplace_plan_id str
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew String | "Disabled" | "Enabled"
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId String
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins

    EnterpriseConfigurationsResponse, EnterpriseConfigurationsResponseArgs

    MarketplaceAutoRenew string
    The AutoRenew setting of the Enterprise subscription
    MarketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    MarketplaceAutoRenew string
    The AutoRenew setting of the Enterprise subscription
    MarketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew String
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId String
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew string
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId string
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplace_auto_renew str
    The AutoRenew setting of the Enterprise subscription
    marketplace_plan_id str
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins
    marketplaceAutoRenew String
    The AutoRenew setting of the Enterprise subscription
    marketplacePlanId String
    The Plan Id of the Azure Marketplace subscription for the Enterprise plugins

    GrafanaConfigurations, GrafanaConfigurationsArgs

    Security Pulumi.AzureNative.Dashboard.Inputs.Security
    Grafana security settings
    Smtp Pulumi.AzureNative.Dashboard.Inputs.Smtp
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    Snapshots Pulumi.AzureNative.Dashboard.Inputs.Snapshots
    Grafana Snapshots settings
    Users Pulumi.AzureNative.Dashboard.Inputs.Users
    Grafana users settings
    Security Security
    Grafana security settings
    Smtp Smtp
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    Snapshots Snapshots
    Grafana Snapshots settings
    Users Users
    Grafana users settings
    security Security
    Grafana security settings
    smtp Smtp
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots Snapshots
    Grafana Snapshots settings
    users Users
    Grafana users settings
    security Security
    Grafana security settings
    smtp Smtp
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots Snapshots
    Grafana Snapshots settings
    users Users
    Grafana users settings
    security Security
    Grafana security settings
    smtp Smtp
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots Snapshots
    Grafana Snapshots settings
    users Users
    Grafana users settings
    security Property Map
    Grafana security settings
    smtp Property Map
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots Property Map
    Grafana Snapshots settings
    users Property Map
    Grafana users settings

    GrafanaConfigurationsResponse, GrafanaConfigurationsResponseArgs

    Security Pulumi.AzureNative.Dashboard.Inputs.SecurityResponse
    Grafana security settings
    Smtp Pulumi.AzureNative.Dashboard.Inputs.SmtpResponse
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    Snapshots Pulumi.AzureNative.Dashboard.Inputs.SnapshotsResponse
    Grafana Snapshots settings
    Users Pulumi.AzureNative.Dashboard.Inputs.UsersResponse
    Grafana users settings
    Security SecurityResponse
    Grafana security settings
    Smtp SmtpResponse
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    Snapshots SnapshotsResponse
    Grafana Snapshots settings
    Users UsersResponse
    Grafana users settings
    security SecurityResponse
    Grafana security settings
    smtp SmtpResponse
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots SnapshotsResponse
    Grafana Snapshots settings
    users UsersResponse
    Grafana users settings
    security SecurityResponse
    Grafana security settings
    smtp SmtpResponse
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots SnapshotsResponse
    Grafana Snapshots settings
    users UsersResponse
    Grafana users settings
    security SecurityResponse
    Grafana security settings
    smtp SmtpResponse
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots SnapshotsResponse
    Grafana Snapshots settings
    users UsersResponse
    Grafana users settings
    security Property Map
    Grafana security settings
    smtp Property Map
    Email server settings. https://grafana.com/docs/grafana/v9.0/setup-grafana/configure-grafana/#smtp
    snapshots Property Map
    Grafana Snapshots settings
    users Property Map
    Grafana users settings

    GrafanaIntegrations, GrafanaIntegrationsArgs

    GrafanaIntegrationsResponse, GrafanaIntegrationsResponseArgs

    GrafanaPluginResponse, GrafanaPluginResponseArgs

    PluginId string
    Grafana plugin id
    PluginId string
    Grafana plugin id
    pluginId String
    Grafana plugin id
    pluginId string
    Grafana plugin id
    plugin_id str
    Grafana plugin id
    pluginId String
    Grafana plugin id

    ManagedGrafanaProperties, ManagedGrafanaPropertiesArgs

    ApiKey string | Pulumi.AzureNative.Dashboard.ApiKey
    The api key setting of the Grafana instance.
    AutoGeneratedDomainNameLabelScope string | Pulumi.AzureNative.Dashboard.AutoGeneratedDomainNameLabelScope
    Scope for dns deterministic name hash calculation.
    DeterministicOutboundIP string | Pulumi.AzureNative.Dashboard.DeterministicOutboundIP
    Whether a Grafana instance uses deterministic outbound IPs.
    EnterpriseConfigurations Pulumi.AzureNative.Dashboard.Inputs.EnterpriseConfigurations
    Enterprise settings of a Grafana instance
    GrafanaConfigurations Pulumi.AzureNative.Dashboard.Inputs.GrafanaConfigurations
    Server configurations of a Grafana instance
    GrafanaIntegrations Pulumi.AzureNative.Dashboard.Inputs.GrafanaIntegrations
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    GrafanaMajorVersion string
    The major Grafana software version to target.
    GrafanaPlugins List<string>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    PublicNetworkAccess string | Pulumi.AzureNative.Dashboard.PublicNetworkAccess
    Indicate the state for enable or disable traffic over the public interface.
    ZoneRedundancy string | Pulumi.AzureNative.Dashboard.ZoneRedundancy
    The zone redundancy setting of the Grafana instance.
    ApiKey string | ApiKey
    The api key setting of the Grafana instance.
    AutoGeneratedDomainNameLabelScope string | AutoGeneratedDomainNameLabelScope
    Scope for dns deterministic name hash calculation.
    DeterministicOutboundIP string | DeterministicOutboundIP
    Whether a Grafana instance uses deterministic outbound IPs.
    EnterpriseConfigurations EnterpriseConfigurations
    Enterprise settings of a Grafana instance
    GrafanaConfigurations GrafanaConfigurations
    Server configurations of a Grafana instance
    GrafanaIntegrations GrafanaIntegrations
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    GrafanaMajorVersion string
    The major Grafana software version to target.
    GrafanaPlugins []string
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    PublicNetworkAccess string | PublicNetworkAccess
    Indicate the state for enable or disable traffic over the public interface.
    ZoneRedundancy string | ZoneRedundancy
    The zone redundancy setting of the Grafana instance.
    apiKey String | ApiKey
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope String | AutoGeneratedDomainNameLabelScope
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP String | DeterministicOutboundIP
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations EnterpriseConfigurations
    Enterprise settings of a Grafana instance
    grafanaConfigurations GrafanaConfigurations
    Server configurations of a Grafana instance
    grafanaIntegrations GrafanaIntegrations
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion String
    The major Grafana software version to target.
    grafanaPlugins List<String>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess String | PublicNetworkAccess
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy String | ZoneRedundancy
    The zone redundancy setting of the Grafana instance.
    apiKey string | ApiKey
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope string | AutoGeneratedDomainNameLabelScope
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP string | DeterministicOutboundIP
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations EnterpriseConfigurations
    Enterprise settings of a Grafana instance
    grafanaConfigurations GrafanaConfigurations
    Server configurations of a Grafana instance
    grafanaIntegrations GrafanaIntegrations
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion string
    The major Grafana software version to target.
    grafanaPlugins string[]
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess string | PublicNetworkAccess
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy string | ZoneRedundancy
    The zone redundancy setting of the Grafana instance.
    api_key str | ApiKey
    The api key setting of the Grafana instance.
    auto_generated_domain_name_label_scope str | AutoGeneratedDomainNameLabelScope
    Scope for dns deterministic name hash calculation.
    deterministic_outbound_ip str | DeterministicOutboundIP
    Whether a Grafana instance uses deterministic outbound IPs.
    enterprise_configurations EnterpriseConfigurations
    Enterprise settings of a Grafana instance
    grafana_configurations GrafanaConfigurations
    Server configurations of a Grafana instance
    grafana_integrations GrafanaIntegrations
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafana_major_version str
    The major Grafana software version to target.
    grafana_plugins Sequence[str]
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    public_network_access str | PublicNetworkAccess
    Indicate the state for enable or disable traffic over the public interface.
    zone_redundancy str | ZoneRedundancy
    The zone redundancy setting of the Grafana instance.
    apiKey String | "Disabled" | "Enabled"
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope String | "TenantReuse"
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP String | "Disabled" | "Enabled"
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations Property Map
    Enterprise settings of a Grafana instance
    grafanaConfigurations Property Map
    Server configurations of a Grafana instance
    grafanaIntegrations Property Map
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion String
    The major Grafana software version to target.
    grafanaPlugins List<String>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess String | "Enabled" | "Disabled"
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy String | "Disabled" | "Enabled"
    The zone redundancy setting of the Grafana instance.

    ManagedGrafanaPropertiesResponse, ManagedGrafanaPropertiesResponseArgs

    Endpoint string
    The endpoint of the Grafana instance.
    GrafanaVersion string
    The Grafana software version.
    OutboundIPs List<string>
    List of outbound IPs if deterministicOutboundIP is enabled.
    PrivateEndpointConnections List<Pulumi.AzureNative.Dashboard.Inputs.PrivateEndpointConnectionResponse>
    The private endpoint connections of the Grafana instance.
    ProvisioningState string
    Provisioning state of the resource.
    ApiKey string
    The api key setting of the Grafana instance.
    AutoGeneratedDomainNameLabelScope string
    Scope for dns deterministic name hash calculation.
    DeterministicOutboundIP string
    Whether a Grafana instance uses deterministic outbound IPs.
    EnterpriseConfigurations Pulumi.AzureNative.Dashboard.Inputs.EnterpriseConfigurationsResponse
    Enterprise settings of a Grafana instance
    GrafanaConfigurations Pulumi.AzureNative.Dashboard.Inputs.GrafanaConfigurationsResponse
    Server configurations of a Grafana instance
    GrafanaIntegrations Pulumi.AzureNative.Dashboard.Inputs.GrafanaIntegrationsResponse
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    GrafanaMajorVersion string
    The major Grafana software version to target.
    GrafanaPlugins Dictionary<string, Pulumi.AzureNative.Dashboard.Inputs.GrafanaPluginResponse>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    PublicNetworkAccess string
    Indicate the state for enable or disable traffic over the public interface.
    ZoneRedundancy string
    The zone redundancy setting of the Grafana instance.
    Endpoint string
    The endpoint of the Grafana instance.
    GrafanaVersion string
    The Grafana software version.
    OutboundIPs []string
    List of outbound IPs if deterministicOutboundIP is enabled.
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    The private endpoint connections of the Grafana instance.
    ProvisioningState string
    Provisioning state of the resource.
    ApiKey string
    The api key setting of the Grafana instance.
    AutoGeneratedDomainNameLabelScope string
    Scope for dns deterministic name hash calculation.
    DeterministicOutboundIP string
    Whether a Grafana instance uses deterministic outbound IPs.
    EnterpriseConfigurations EnterpriseConfigurationsResponse
    Enterprise settings of a Grafana instance
    GrafanaConfigurations GrafanaConfigurationsResponse
    Server configurations of a Grafana instance
    GrafanaIntegrations GrafanaIntegrationsResponse
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    GrafanaMajorVersion string
    The major Grafana software version to target.
    GrafanaPlugins map[string]GrafanaPluginResponse
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    PublicNetworkAccess string
    Indicate the state for enable or disable traffic over the public interface.
    ZoneRedundancy string
    The zone redundancy setting of the Grafana instance.
    endpoint String
    The endpoint of the Grafana instance.
    grafanaVersion String
    The Grafana software version.
    outboundIPs List<String>
    List of outbound IPs if deterministicOutboundIP is enabled.
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    The private endpoint connections of the Grafana instance.
    provisioningState String
    Provisioning state of the resource.
    apiKey String
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope String
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP String
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations EnterpriseConfigurationsResponse
    Enterprise settings of a Grafana instance
    grafanaConfigurations GrafanaConfigurationsResponse
    Server configurations of a Grafana instance
    grafanaIntegrations GrafanaIntegrationsResponse
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion String
    The major Grafana software version to target.
    grafanaPlugins Map<String,GrafanaPluginResponse>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess String
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy String
    The zone redundancy setting of the Grafana instance.
    endpoint string
    The endpoint of the Grafana instance.
    grafanaVersion string
    The Grafana software version.
    outboundIPs string[]
    List of outbound IPs if deterministicOutboundIP is enabled.
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    The private endpoint connections of the Grafana instance.
    provisioningState string
    Provisioning state of the resource.
    apiKey string
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope string
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP string
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations EnterpriseConfigurationsResponse
    Enterprise settings of a Grafana instance
    grafanaConfigurations GrafanaConfigurationsResponse
    Server configurations of a Grafana instance
    grafanaIntegrations GrafanaIntegrationsResponse
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion string
    The major Grafana software version to target.
    grafanaPlugins {[key: string]: GrafanaPluginResponse}
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess string
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy string
    The zone redundancy setting of the Grafana instance.
    endpoint str
    The endpoint of the Grafana instance.
    grafana_version str
    The Grafana software version.
    outbound_ips Sequence[str]
    List of outbound IPs if deterministicOutboundIP is enabled.
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    The private endpoint connections of the Grafana instance.
    provisioning_state str
    Provisioning state of the resource.
    api_key str
    The api key setting of the Grafana instance.
    auto_generated_domain_name_label_scope str
    Scope for dns deterministic name hash calculation.
    deterministic_outbound_ip str
    Whether a Grafana instance uses deterministic outbound IPs.
    enterprise_configurations EnterpriseConfigurationsResponse
    Enterprise settings of a Grafana instance
    grafana_configurations GrafanaConfigurationsResponse
    Server configurations of a Grafana instance
    grafana_integrations GrafanaIntegrationsResponse
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafana_major_version str
    The major Grafana software version to target.
    grafana_plugins Mapping[str, GrafanaPluginResponse]
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    public_network_access str
    Indicate the state for enable or disable traffic over the public interface.
    zone_redundancy str
    The zone redundancy setting of the Grafana instance.
    endpoint String
    The endpoint of the Grafana instance.
    grafanaVersion String
    The Grafana software version.
    outboundIPs List<String>
    List of outbound IPs if deterministicOutboundIP is enabled.
    privateEndpointConnections List<Property Map>
    The private endpoint connections of the Grafana instance.
    provisioningState String
    Provisioning state of the resource.
    apiKey String
    The api key setting of the Grafana instance.
    autoGeneratedDomainNameLabelScope String
    Scope for dns deterministic name hash calculation.
    deterministicOutboundIP String
    Whether a Grafana instance uses deterministic outbound IPs.
    enterpriseConfigurations Property Map
    Enterprise settings of a Grafana instance
    grafanaConfigurations Property Map
    Server configurations of a Grafana instance
    grafanaIntegrations Property Map
    GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
    grafanaMajorVersion String
    The major Grafana software version to target.
    grafanaPlugins Map<Property Map>
    Installed plugin list of the Grafana instance. Key is plugin id, value is plugin definition.
    publicNetworkAccess String
    Indicate the state for enable or disable traffic over the public interface.
    zoneRedundancy String
    The zone redundancy setting of the Grafana instance.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.Dashboard.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Dashboard.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    MarketplaceAutoRenew, MarketplaceAutoRenewArgs

    Disabled
    Disabled
    Enabled
    Enabled
    MarketplaceAutoRenewDisabled
    Disabled
    MarketplaceAutoRenewEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState Pulumi.AzureNative.Dashboard.Inputs.PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData Pulumi.AzureNative.Dashboard.Inputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    GroupIds List<string>
    The private endpoint connection group ids.
    PrivateEndpoint Pulumi.AzureNative.Dashboard.Inputs.PrivateEndpointResponse
    The resource of private end point.
    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    GroupIds []string
    The private endpoint connection group ids.
    PrivateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    groupIds List<String>
    The private endpoint connection group ids.
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name string
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState string
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    groupIds string[]
    The private endpoint connection group ids.
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id str
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name str
    The name of the resource
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioning_state str
    The provisioning state of the private endpoint connection resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    group_ids Sequence[str]
    The private endpoint connection group ids.
    private_endpoint PrivateEndpointResponse
    The resource of private end point.
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState Property Map
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    groupIds List<String>
    The private endpoint connection group ids.
    privateEndpoint Property Map
    The resource of private end point.

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    Id string
    The ARM identifier for Private Endpoint
    Id string
    The ARM identifier for Private Endpoint
    id String
    The ARM identifier for Private Endpoint
    id string
    The ARM identifier for Private Endpoint
    id str
    The ARM identifier for Private Endpoint
    id String
    The ARM identifier for Private Endpoint

    PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs

    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    description string
    The reason for approval/rejection of the connection.
    status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actions_required str
    A message indicating if changes on the service provider require any updates on the consumer.
    description str
    The reason for approval/rejection of the connection.
    status str
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

    PublicNetworkAccess, PublicNetworkAccessArgs

    Enabled
    Enabled
    Disabled
    Disabled
    PublicNetworkAccessEnabled
    Enabled
    PublicNetworkAccessDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    ResourceSku, ResourceSkuArgs

    Name string
    Name string
    name String
    name string
    name str
    name String

    ResourceSkuResponse, ResourceSkuResponseArgs

    Name string
    Name string
    name String
    name string
    name str
    name String

    Security, SecurityArgs

    CsrfAlwaysCheck bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    CsrfAlwaysCheck bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck Boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrf_always_check bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck Boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).

    SecurityResponse, SecurityResponseArgs

    CsrfAlwaysCheck bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    CsrfAlwaysCheck bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck Boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrf_always_check bool
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).
    csrfAlwaysCheck Boolean
    Set to true to execute the CSRF check even if the login cookie is not in a request (default false).

    Smtp, SmtpArgs

    Enabled bool
    Enable this to allow Grafana to send email. Default is false
    FromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    FromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    Host string
    SMTP server hostname with port, e.g. test.email.net:587
    Password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    SkipVerify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    StartTLSPolicy string | Pulumi.AzureNative.Dashboard.StartTLSPolicy
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    User string
    User of SMTP auth
    Enabled bool
    Enable this to allow Grafana to send email. Default is false
    FromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    FromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    Host string
    SMTP server hostname with port, e.g. test.email.net:587
    Password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    SkipVerify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    StartTLSPolicy string | StartTLSPolicy
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    User string
    User of SMTP auth
    enabled Boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress String
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName String
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host String
    SMTP server hostname with port, e.g. test.email.net:587
    password String
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify Boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy String | StartTLSPolicy
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user String
    User of SMTP auth
    enabled boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host string
    SMTP server hostname with port, e.g. test.email.net:587
    password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy string | StartTLSPolicy
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user string
    User of SMTP auth
    enabled bool
    Enable this to allow Grafana to send email. Default is false
    from_address str
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    from_name str
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host str
    SMTP server hostname with port, e.g. test.email.net:587
    password str
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skip_verify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    start_tls_policy str | StartTLSPolicy
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user str
    User of SMTP auth
    enabled Boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress String
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName String
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host String
    SMTP server hostname with port, e.g. test.email.net:587
    password String
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify Boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy String | "OpportunisticStartTLS" | "MandatoryStartTLS" | "NoStartTLS"
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user String
    User of SMTP auth

    SmtpResponse, SmtpResponseArgs

    Enabled bool
    Enable this to allow Grafana to send email. Default is false
    FromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    FromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    Host string
    SMTP server hostname with port, e.g. test.email.net:587
    Password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    SkipVerify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    StartTLSPolicy string
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    User string
    User of SMTP auth
    Enabled bool
    Enable this to allow Grafana to send email. Default is false
    FromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    FromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    Host string
    SMTP server hostname with port, e.g. test.email.net:587
    Password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    SkipVerify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    StartTLSPolicy string
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    User string
    User of SMTP auth
    enabled Boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress String
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName String
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host String
    SMTP server hostname with port, e.g. test.email.net:587
    password String
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify Boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy String
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user String
    User of SMTP auth
    enabled boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress string
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName string
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host string
    SMTP server hostname with port, e.g. test.email.net:587
    password string
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy string
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user string
    User of SMTP auth
    enabled bool
    Enable this to allow Grafana to send email. Default is false
    from_address str
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    from_name str
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host str
    SMTP server hostname with port, e.g. test.email.net:587
    password str
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skip_verify bool
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    start_tls_policy str
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user str
    User of SMTP auth
    enabled Boolean
    Enable this to allow Grafana to send email. Default is false
    fromAddress String
    Address used when sending out emails https://pkg.go.dev/net/mail#Address
    fromName String
    Name to be used when sending out emails. Default is "Azure Managed Grafana Notification" https://pkg.go.dev/net/mail#Address
    host String
    SMTP server hostname with port, e.g. test.email.net:587
    password String
    Password of SMTP auth. If the password contains # or ;, then you have to wrap it with triple quotes
    skipVerify Boolean
    Verify SSL for SMTP server. Default is false https://pkg.go.dev/crypto/tls#Config
    startTLSPolicy String
    The StartTLSPolicy setting of the SMTP configuration https://pkg.go.dev/github.com/go-mail/mail#StartTLSPolicy
    user String
    User of SMTP auth

    Snapshots, SnapshotsArgs

    ExternalEnabled bool
    Set to false to disable external snapshot publish endpoint
    ExternalEnabled bool
    Set to false to disable external snapshot publish endpoint
    externalEnabled Boolean
    Set to false to disable external snapshot publish endpoint
    externalEnabled boolean
    Set to false to disable external snapshot publish endpoint
    external_enabled bool
    Set to false to disable external snapshot publish endpoint
    externalEnabled Boolean
    Set to false to disable external snapshot publish endpoint

    SnapshotsResponse, SnapshotsResponseArgs

    ExternalEnabled bool
    Set to false to disable external snapshot publish endpoint
    ExternalEnabled bool
    Set to false to disable external snapshot publish endpoint
    externalEnabled Boolean
    Set to false to disable external snapshot publish endpoint
    externalEnabled boolean
    Set to false to disable external snapshot publish endpoint
    external_enabled bool
    Set to false to disable external snapshot publish endpoint
    externalEnabled Boolean
    Set to false to disable external snapshot publish endpoint

    StartTLSPolicy, StartTLSPolicyArgs

    OpportunisticStartTLS
    OpportunisticStartTLS
    MandatoryStartTLS
    MandatoryStartTLS
    NoStartTLS
    NoStartTLS
    StartTLSPolicyOpportunisticStartTLS
    OpportunisticStartTLS
    StartTLSPolicyMandatoryStartTLS
    MandatoryStartTLS
    StartTLSPolicyNoStartTLS
    NoStartTLS
    OpportunisticStartTLS
    OpportunisticStartTLS
    MandatoryStartTLS
    MandatoryStartTLS
    NoStartTLS
    NoStartTLS
    OpportunisticStartTLS
    OpportunisticStartTLS
    MandatoryStartTLS
    MandatoryStartTLS
    NoStartTLS
    NoStartTLS
    OPPORTUNISTIC_START_TLS
    OpportunisticStartTLS
    MANDATORY_START_TLS
    MandatoryStartTLS
    NO_START_TLS
    NoStartTLS
    "OpportunisticStartTLS"
    OpportunisticStartTLS
    "MandatoryStartTLS"
    MandatoryStartTLS
    "NoStartTLS"
    NoStartTLS

    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.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Users, UsersArgs

    ViewersCanEdit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    ViewersCanEdit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit Boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewers_can_edit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit Boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.

    UsersResponse, UsersResponseArgs

    ViewersCanEdit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    ViewersCanEdit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit Boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewers_can_edit bool
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.
    viewersCanEdit Boolean
    Set to true so viewers can access and use explore and perform temporary edits on panels in dashboards they have access to. They cannot save their changes.

    ZoneRedundancy, ZoneRedundancyArgs

    Disabled
    Disabled
    Enabled
    Enabled
    ZoneRedundancyDisabled
    Disabled
    ZoneRedundancyEnabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    DISABLED
    Disabled
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "Enabled"
    Enabled

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi