azure-native.dashboard.Grafana
Explore with Pulumi AI
The grafana resource type. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2022-05-01-preview.
Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01, 2023-10-01-preview, 2024-10-01.
Example Usage
Grafana_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var grafana = new AzureNative.Dashboard.Grafana("grafana", new()
    {
        Identity = new AzureNative.Dashboard.Inputs.ManagedServiceIdentityArgs
        {
            Type = AzureNative.Dashboard.ManagedServiceIdentityType.SystemAssigned,
        },
        Location = "West US",
        Properties = new AzureNative.Dashboard.Inputs.ManagedGrafanaPropertiesArgs
        {
            ApiKey = AzureNative.Dashboard.ApiKey.Enabled,
            DeterministicOutboundIP = AzureNative.Dashboard.DeterministicOutboundIP.Enabled,
            GrafanaIntegrations = new AzureNative.Dashboard.Inputs.GrafanaIntegrationsArgs
            {
                AzureMonitorWorkspaceIntegrations = new[]
                {
                    new AzureNative.Dashboard.Inputs.AzureMonitorWorkspaceIntegrationArgs
                    {
                        AzureMonitorWorkspaceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace",
                    },
                },
            },
            PublicNetworkAccess = AzureNative.Dashboard.PublicNetworkAccess.Enabled,
            ZoneRedundancy = AzureNative.Dashboard.ZoneRedundancy.Enabled,
        },
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.Dashboard.Inputs.ResourceSkuArgs
        {
            Name = "Standard",
        },
        Tags = 
        {
            { "Environment", "Dev" },
        },
        WorkspaceName = "myWorkspace",
    });
});
package main
import (
	dashboard "github.com/pulumi/pulumi-azure-native-sdk/dashboard/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dashboard.NewGrafana(ctx, "grafana", &dashboard.GrafanaArgs{
			Identity: &dashboard.ManagedServiceIdentityArgs{
				Type: pulumi.String(dashboard.ManagedServiceIdentityTypeSystemAssigned),
			},
			Location: pulumi.String("West US"),
			Properties: &dashboard.ManagedGrafanaPropertiesArgs{
				ApiKey:                  pulumi.String(dashboard.ApiKeyEnabled),
				DeterministicOutboundIP: pulumi.String(dashboard.DeterministicOutboundIPEnabled),
				GrafanaIntegrations: &dashboard.GrafanaIntegrationsArgs{
					AzureMonitorWorkspaceIntegrations: dashboard.AzureMonitorWorkspaceIntegrationArray{
						&dashboard.AzureMonitorWorkspaceIntegrationArgs{
							AzureMonitorWorkspaceResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace"),
						},
					},
				},
				PublicNetworkAccess: pulumi.String(dashboard.PublicNetworkAccessEnabled),
				ZoneRedundancy:      pulumi.String(dashboard.ZoneRedundancyEnabled),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &dashboard.ResourceSkuArgs{
				Name: pulumi.String("Standard"),
			},
			Tags: pulumi.StringMap{
				"Environment": pulumi.String("Dev"),
			},
			WorkspaceName: pulumi.String("myWorkspace"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.dashboard.Grafana;
import com.pulumi.azurenative.dashboard.GrafanaArgs;
import com.pulumi.azurenative.dashboard.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.dashboard.inputs.ManagedGrafanaPropertiesArgs;
import com.pulumi.azurenative.dashboard.inputs.GrafanaIntegrationsArgs;
import com.pulumi.azurenative.dashboard.inputs.ResourceSkuArgs;
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 grafana = new Grafana("grafana", GrafanaArgs.builder()
            .identity(ManagedServiceIdentityArgs.builder()
                .type("SystemAssigned")
                .build())
            .location("West US")
            .properties(ManagedGrafanaPropertiesArgs.builder()
                .apiKey("Enabled")
                .deterministicOutboundIP("Enabled")
                .grafanaIntegrations(GrafanaIntegrationsArgs.builder()
                    .azureMonitorWorkspaceIntegrations(AzureMonitorWorkspaceIntegrationArgs.builder()
                        .azureMonitorWorkspaceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace")
                        .build())
                    .build())
                .publicNetworkAccess("Enabled")
                .zoneRedundancy("Enabled")
                .build())
            .resourceGroupName("myResourceGroup")
            .sku(ResourceSkuArgs.builder()
                .name("Standard")
                .build())
            .tags(Map.of("Environment", "Dev"))
            .workspaceName("myWorkspace")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const grafana = new azure_native.dashboard.Grafana("grafana", {
    identity: {
        type: azure_native.dashboard.ManagedServiceIdentityType.SystemAssigned,
    },
    location: "West US",
    properties: {
        apiKey: azure_native.dashboard.ApiKey.Enabled,
        deterministicOutboundIP: azure_native.dashboard.DeterministicOutboundIP.Enabled,
        grafanaIntegrations: {
            azureMonitorWorkspaceIntegrations: [{
                azureMonitorWorkspaceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace",
            }],
        },
        publicNetworkAccess: azure_native.dashboard.PublicNetworkAccess.Enabled,
        zoneRedundancy: azure_native.dashboard.ZoneRedundancy.Enabled,
    },
    resourceGroupName: "myResourceGroup",
    sku: {
        name: "Standard",
    },
    tags: {
        Environment: "Dev",
    },
    workspaceName: "myWorkspace",
});
import pulumi
import pulumi_azure_native as azure_native
grafana = azure_native.dashboard.Grafana("grafana",
    identity={
        "type": azure_native.dashboard.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
    },
    location="West US",
    properties={
        "api_key": azure_native.dashboard.ApiKey.ENABLED,
        "deterministic_outbound_ip": azure_native.dashboard.DeterministicOutboundIP.ENABLED,
        "grafana_integrations": {
            "azure_monitor_workspace_integrations": [{
                "azure_monitor_workspace_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace",
            }],
        },
        "public_network_access": azure_native.dashboard.PublicNetworkAccess.ENABLED,
        "zone_redundancy": azure_native.dashboard.ZoneRedundancy.ENABLED,
    },
    resource_group_name="myResourceGroup",
    sku={
        "name": "Standard",
    },
    tags={
        "Environment": "Dev",
    },
    workspace_name="myWorkspace")
resources:
  grafana:
    type: azure-native:dashboard:Grafana
    properties:
      identity:
        type: SystemAssigned
      location: West US
      properties:
        apiKey: Enabled
        deterministicOutboundIP: Enabled
        grafanaIntegrations:
          azureMonitorWorkspaceIntegrations:
            - azureMonitorWorkspaceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.monitor/accounts/myAzureMonitorWorkspace
        publicNetworkAccess: Enabled
        zoneRedundancy: Enabled
      resourceGroupName: myResourceGroup
      sku:
        name: Standard
      tags:
        Environment: Dev
      workspaceName: myWorkspace
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",
        GrafanaIntegrations = new AzureNative.Dashboard.Inputs.GrafanaIntegrationsArgs
        {
            AzureMonitorWorkspaceIntegrations = new[]
            {
                new AzureNative.Dashboard.Inputs.AzureMonitorWorkspaceIntegrationArgs
                {
                    AzureMonitorWorkspaceResourceId = "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"),
		GrafanaIntegrations: &dashboard.GrafanaIntegrationsArgs{
			AzureMonitorWorkspaceIntegrations: dashboard.AzureMonitorWorkspaceIntegrationArray{
				&dashboard.AzureMonitorWorkspaceIntegrationArgs{
					AzureMonitorWorkspaceResourceId: 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")
        .grafanaIntegrations(GrafanaIntegrationsArgs.builder()
            .azureMonitorWorkspaceIntegrations(AzureMonitorWorkspaceIntegrationArgs.builder()
                .azureMonitorWorkspaceResourceId("string")
                .build())
            .build())
        .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",
        "grafana_integrations": {
            "azure_monitor_workspace_integrations": [{
                "azure_monitor_workspace_resource_id": "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",
        grafanaIntegrations: {
            azureMonitorWorkspaceIntegrations: [{
                azureMonitorWorkspaceResourceId: "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
        grafanaIntegrations:
            azureMonitorWorkspaceIntegrations:
                - azureMonitorWorkspaceResourceId: 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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Identity
Pulumi.Azure Native. Dashboard. Inputs. Managed Service Identity 
- The managed identity of the grafana resource.
- Location string
- The geo-location where the grafana resource lives
- Properties
Pulumi.Azure Native. Dashboard. Inputs. Managed Grafana Properties 
- Properties specific to the grafana resource.
- Sku
Pulumi.Azure Native. Dashboard. Inputs. Resource Sku 
- The Sku of the grafana resource.
- Dictionary<string, string>
- The tags for grafana resource.
- WorkspaceName string
- The workspace name of Azure Managed Grafana.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Identity
ManagedService Identity Args 
- The managed identity of the grafana resource.
- Location string
- The geo-location where the grafana resource lives
- Properties
ManagedGrafana Properties Args 
- Properties specific to the grafana resource.
- Sku
ResourceSku Args 
- The Sku of the grafana resource.
- map[string]string
- The tags for grafana resource.
- WorkspaceName string
- The workspace name of Azure Managed Grafana.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- identity
ManagedService Identity 
- The managed identity of the grafana resource.
- location String
- The geo-location where the grafana resource lives
- properties
ManagedGrafana Properties 
- Properties specific to the grafana resource.
- sku
ResourceSku 
- The Sku of the grafana resource.
- Map<String,String>
- The tags for grafana resource.
- workspaceName String
- The workspace name of Azure Managed Grafana.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- identity
ManagedService Identity 
- The managed identity of the grafana resource.
- location string
- The geo-location where the grafana resource lives
- properties
ManagedGrafana Properties 
- Properties specific to the grafana resource.
- sku
ResourceSku 
- The Sku of the grafana resource.
- {[key: string]: string}
- The tags for grafana resource.
- workspaceName string
- The workspace name of Azure Managed Grafana.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- identity
ManagedService Identity Args 
- The managed identity of the grafana resource.
- location str
- The geo-location where the grafana resource lives
- properties
ManagedGrafana Properties Args 
- Properties specific to the grafana resource.
- sku
ResourceSku Args 
- The Sku of the grafana resource.
- Mapping[str, str]
- The tags for grafana resource.
- workspace_name str
- The workspace name of Azure Managed Grafana.
- resourceGroup StringName 
- 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.
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the grafana resource.
- SystemData Pulumi.Azure Native. Dashboard. Outputs. System Data Response 
- The system meta data relating to this grafana resource.
- Type string
- The type of the grafana resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the grafana resource.
- SystemData SystemData Response 
- The system meta data relating to this grafana resource.
- Type string
- The type of the grafana resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the grafana resource.
- systemData SystemData Response 
- The system meta data relating to this grafana resource.
- type String
- The type of the grafana resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the grafana resource.
- systemData SystemData Response 
- The system meta data relating to this grafana resource.
- type string
- The type of the grafana resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the grafana resource.
- system_data SystemData Response 
- The system meta data relating to this grafana resource.
- type str
- The type of the grafana 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
- ApiKey Disabled 
- Disabled
- ApiKey Enabled 
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
AutoGeneratedDomainNameLabelScope, AutoGeneratedDomainNameLabelScopeArgs            
- TenantReuse 
- TenantReuse
- AutoGenerated Domain Name Label Scope Tenant Reuse 
- TenantReuse
- TenantReuse 
- TenantReuse
- TenantReuse 
- TenantReuse
- TENANT_REUSE
- TenantReuse
- "TenantReuse" 
- TenantReuse
AzureMonitorWorkspaceIntegration, AzureMonitorWorkspaceIntegrationArgs        
- AzureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- AzureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor StringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azure_monitor_ strworkspace_ resource_ id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor StringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
AzureMonitorWorkspaceIntegrationResponse, AzureMonitorWorkspaceIntegrationResponseArgs          
- AzureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- AzureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor StringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor stringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
- azure_monitor_ strworkspace_ resource_ id 
- The resource Id of the connected Azure Monitor Workspace.
- azureMonitor StringWorkspace Resource Id 
- The resource Id of the connected Azure Monitor Workspace.
DeterministicOutboundIP, DeterministicOutboundIPArgs      
- Disabled
- Disabled
- Enabled
- Enabled
- DeterministicOutbound IPDisabled 
- Disabled
- DeterministicOutbound IPEnabled 
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
GrafanaIntegrations, GrafanaIntegrationsArgs    
GrafanaIntegrationsResponse, GrafanaIntegrationsResponseArgs      
ManagedGrafanaProperties, ManagedGrafanaPropertiesArgs      
- ApiKey string | Pulumi.Azure Native. Dashboard. Api Key 
- The api key setting of the Grafana instance.
- AutoGenerated string | Pulumi.Domain Name Label Scope Azure Native. Dashboard. Auto Generated Domain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- DeterministicOutbound string | Pulumi.IP Azure Native. Dashboard. Deterministic Outbound IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- GrafanaIntegrations Pulumi.Azure Native. Dashboard. Inputs. Grafana Integrations 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- PublicNetwork string | Pulumi.Access Azure Native. Dashboard. Public Network Access 
- Indicate the state for enable or disable traffic over the public interface.
- ZoneRedundancy string | Pulumi.Azure Native. Dashboard. Zone Redundancy 
- The zone redundancy setting of the Grafana instance.
- ApiKey string | ApiKey 
- The api key setting of the Grafana instance.
- AutoGenerated string | AutoDomain Name Label Scope Generated Domain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- DeterministicOutbound string | DeterministicIP Outbound IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- GrafanaIntegrations GrafanaIntegrations 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- PublicNetwork string | PublicAccess Network Access 
- 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.
- autoGenerated String | AutoDomain Name Label Scope Generated Domain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound String | DeterministicIP Outbound IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations GrafanaIntegrations 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork String | PublicAccess Network Access 
- 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.
- autoGenerated string | AutoDomain Name Label Scope Generated Domain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound string | DeterministicIP Outbound IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations GrafanaIntegrations 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork string | PublicAccess Network Access 
- 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_ str | Autodomain_ name_ label_ scope Generated Domain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministic_outbound_ str | Deterministicip Outbound IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafana_integrations GrafanaIntegrations 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- public_network_ str | Publicaccess Network Access 
- 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.
- autoGenerated String | "TenantDomain Name Label Scope Reuse" 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound String | "Disabled" | "Enabled"IP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations Property Map
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork String | "Enabled" | "Disabled"Access 
- 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.
- string
- The Grafana software version.
- OutboundIPs List<string>
- List of outbound IPs if deterministicOutboundIP is enabled.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Dashboard. Inputs. Private Endpoint Connection Response> 
- 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.
- AutoGenerated stringDomain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- DeterministicOutbound stringIP 
- Whether a Grafana instance uses deterministic outbound IPs.
- GrafanaIntegrations Pulumi.Azure Native. Dashboard. Inputs. Grafana Integrations Response 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- PublicNetwork stringAccess 
- 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.
- string
- The Grafana software version.
- OutboundIPs []string
- List of outbound IPs if deterministicOutboundIP is enabled.
- PrivateEndpoint []PrivateConnections Endpoint Connection Response 
- 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.
- AutoGenerated stringDomain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- DeterministicOutbound stringIP 
- Whether a Grafana instance uses deterministic outbound IPs.
- GrafanaIntegrations GrafanaIntegrations Response 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- PublicNetwork stringAccess 
- 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.
- String
- The Grafana software version.
- outboundIPs List<String>
- List of outbound IPs if deterministicOutboundIP is enabled.
- privateEndpoint List<PrivateConnections Endpoint Connection Response> 
- 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.
- autoGenerated StringDomain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound StringIP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations GrafanaIntegrations Response 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork StringAccess 
- 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.
- string
- The Grafana software version.
- outboundIPs string[]
- List of outbound IPs if deterministicOutboundIP is enabled.
- privateEndpoint PrivateConnections Endpoint Connection Response[] 
- 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.
- autoGenerated stringDomain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound stringIP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations GrafanaIntegrations Response 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork stringAccess 
- 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_ Sequence[Privateconnections Endpoint Connection Response] 
- 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_ strdomain_ name_ label_ scope 
- Scope for dns deterministic name hash calculation.
- deterministic_outbound_ strip 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafana_integrations GrafanaIntegrations Response 
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- public_network_ straccess 
- 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.
- String
- The Grafana software version.
- outboundIPs List<String>
- List of outbound IPs if deterministicOutboundIP is enabled.
- privateEndpoint List<Property Map>Connections 
- 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.
- autoGenerated StringDomain Name Label Scope 
- Scope for dns deterministic name hash calculation.
- deterministicOutbound StringIP 
- Whether a Grafana instance uses deterministic outbound IPs.
- grafanaIntegrations Property Map
- GrafanaIntegrations is a bundled observability experience (e.g. pre-configured data source, tailored Grafana dashboards, alerting defaults) for common monitoring scenarios.
- publicNetwork StringAccess 
- 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.Azure Native. Dashboard. Managed Service Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned List<string>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned []stringIdentities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned string[]Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_assigned_ Sequence[str]identities 
- 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" | "User Assigned" | "System Assigned,User Assigned" 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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).
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Dashboard. Inputs. User Assigned Identity Response> 
- 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).
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- 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).
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- 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).
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- 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_ Mapping[str, Useridentities Assigned Identity Response] 
- 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).
- userAssigned Map<Property Map>Identities 
- 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_User Assigned 
- SystemAssigned,UserAssigned
- ManagedService Identity Type None 
- None
- ManagedService Identity Type System Assigned 
- SystemAssigned
- ManagedService Identity Type User Assigned 
- UserAssigned
- ManagedService Identity Type_System Assigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned,User Assigned" 
- SystemAssigned,UserAssigned
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
- PrivateLink Pulumi.Service Connection State Azure Native. Dashboard. Inputs. Private Link Service Connection State Response 
- 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.Azure Native. Dashboard. Inputs. System Data Response 
- 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.Azure Native. Dashboard. Inputs. Private Endpoint Response 
- 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
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- 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 SystemData Response 
- 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 PrivateEndpoint Response 
- 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- 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 SystemData Response 
- 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 PrivateEndpoint Response 
- 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- 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 SystemData Response 
- 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 PrivateEndpoint Response 
- 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_ Privateservice_ connection_ state Link Service Connection State Response 
- 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 SystemData Response 
- 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 PrivateEndpoint Response 
- 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
- privateLink Property MapService Connection State 
- 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
- PublicNetwork Access Enabled 
- Enabled
- PublicNetwork Access Disabled 
- 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
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
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.
ZoneRedundancy, ZoneRedundancyArgs    
- Disabled
- Disabled
- Enabled
- Enabled
- ZoneRedundancy Disabled 
- Disabled
- ZoneRedundancy Enabled 
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0