azure-native.dashboard.Grafana
Explore with Pulumi AI
The grafana resource type. API Version: 2022-05-01-preview.
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 = "SystemAssigned",
},
Location = "West US",
Properties = new AzureNative.Dashboard.Inputs.ManagedGrafanaPropertiesArgs
{
ApiKey = "Enabled",
DeterministicOutboundIP = "Enabled",
PublicNetworkAccess = "Enabled",
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"
"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("SystemAssigned"),
},
Location: pulumi.String("West US"),
Properties: &dashboard.ManagedGrafanaPropertiesArgs{
ApiKey: pulumi.String("Enabled"),
DeterministicOutboundIP: pulumi.String("Enabled"),
PublicNetworkAccess: pulumi.String("Enabled"),
ZoneRedundancy: pulumi.String("Enabled"),
},
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 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(Map.of("type", "SystemAssigned"))
.location("West US")
.properties(Map.ofEntries(
Map.entry("apiKey", "Enabled"),
Map.entry("deterministicOutboundIP", "Enabled"),
Map.entry("publicNetworkAccess", "Enabled"),
Map.entry("zoneRedundancy", "Enabled")
))
.resourceGroupName("myResourceGroup")
.sku(Map.of("name", "Standard"))
.tags(Map.of("Environment", "Dev"))
.workspaceName("myWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
grafana = azure_native.dashboard.Grafana("grafana",
identity=azure_native.dashboard.ManagedServiceIdentityArgs(
type="SystemAssigned",
),
location="West US",
properties=azure_native.dashboard.ManagedGrafanaPropertiesArgs(
api_key="Enabled",
deterministic_outbound_ip="Enabled",
public_network_access="Enabled",
zone_redundancy="Enabled",
),
resource_group_name="myResourceGroup",
sku=azure_native.dashboard.ResourceSkuArgs(
name="Standard",
),
tags={
"Environment": "Dev",
},
workspace_name="myWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const grafana = new azure_native.dashboard.Grafana("grafana", {
identity: {
type: "SystemAssigned",
},
location: "West US",
properties: {
apiKey: "Enabled",
deterministicOutboundIP: "Enabled",
publicNetworkAccess: "Enabled",
zoneRedundancy: "Enabled",
},
resourceGroupName: "myResourceGroup",
sku: {
name: "Standard",
},
tags: {
Environment: "Dev",
},
workspaceName: "myWorkspace",
});
resources:
grafana:
type: azure-native:dashboard:Grafana
properties:
identity:
type: SystemAssigned
location: West US
properties:
apiKey: Enabled
deterministicOutboundIP: Enabled
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 =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Location = "string",
Properties =
{
{ "apiKey", "string" },
{ "autoGeneratedDomainNameLabelScope", "string" },
{ "deterministicOutboundIP", "string" },
{ "publicNetworkAccess", "string" },
{ "zoneRedundancy", "string" },
},
Sku =
{
{ "name", "string" },
},
Tags =
{
{ "string", "string" },
},
WorkspaceName = "string",
});
example, err := dashboard.NewGrafana(ctx, "grafanaResource", &dashboard.GrafanaArgs{
ResourceGroupName: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Location: "string",
Properties: map[string]interface{}{
"apiKey": "string",
"autoGeneratedDomainNameLabelScope": "string",
"deterministicOutboundIP": "string",
"publicNetworkAccess": "string",
"zoneRedundancy": "string",
},
Sku: map[string]interface{}{
"name": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
WorkspaceName: "string",
})
var grafanaResource = new Grafana("grafanaResource", GrafanaArgs.builder()
.resourceGroupName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.workspaceName("string")
.build());
grafana_resource = azure_native.dashboard.Grafana("grafanaResource",
resource_group_name=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
location=string,
properties={
apiKey: string,
autoGeneratedDomainNameLabelScope: string,
deterministicOutboundIP: string,
publicNetworkAccess: string,
zoneRedundancy: 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: "any",
},
},
location: "string",
properties: {
apiKey: "string",
autoGeneratedDomainNameLabelScope: "string",
deterministicOutboundIP: "string",
publicNetworkAccess: "string",
zoneRedundancy: "string",
},
sku: {
name: "string",
},
tags: {
string: "string",
},
workspaceName: "string",
});
type: azure-native:dashboard:Grafana
properties:
identity:
type: string
userAssignedIdentities:
string: any
location: string
properties:
apiKey: string
autoGeneratedDomainNameLabelScope: string
deterministicOutboundIP: 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
The Grafana resource accepts the following input properties:
- Resource
Group 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.
- Workspace
Name string - The workspace name of Azure Managed Grafana.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Managed
Service Identity Args - The managed identity of the grafana resource.
- Location string
- The geo-location where the grafana resource lives
- Properties
Managed
Grafana Properties Args - Properties specific to the grafana resource.
- Sku
Resource
Sku Args - The Sku of the grafana resource.
- map[string]string
- The tags for grafana resource.
- Workspace
Name string - The workspace name of Azure Managed Grafana.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed identity of the grafana resource.
- location String
- The geo-location where the grafana resource lives
- properties
Managed
Grafana Properties - Properties specific to the grafana resource.
- sku
Resource
Sku - The Sku of the grafana resource.
- Map<String,String>
- The tags for grafana resource.
- workspace
Name String - The workspace name of Azure Managed Grafana.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed identity of the grafana resource.
- location string
- The geo-location where the grafana resource lives
- properties
Managed
Grafana Properties - Properties specific to the grafana resource.
- sku
Resource
Sku - The Sku of the grafana resource.
- {[key: string]: string}
- The tags for grafana resource.
- workspace
Name string - The workspace name of Azure Managed Grafana.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity Args - The managed identity of the grafana resource.
- location str
- The geo-location where the grafana resource lives
- properties
Managed
Grafana Properties Args - Properties specific to the grafana resource.
- sku
Resource
Sku 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.
- resource
Group 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.
- workspace
Name 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.
- System
Data 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.
- System
Data 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.
- system
Data 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.
- system
Data 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.
- system
Data 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
- Api
Key Disabled - Disabled
- Api
Key Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
AutoGeneratedDomainNameLabelScope, AutoGeneratedDomainNameLabelScopeArgs
- Tenant
Reuse - TenantReuse
- Auto
Generated Domain Name Label Scope Tenant Reuse - TenantReuse
- Tenant
Reuse - TenantReuse
- Tenant
Reuse - TenantReuse
- TENANT_REUSE
- TenantReuse
- "Tenant
Reuse" - TenantReuse
DeterministicOutboundIP, DeterministicOutboundIPArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Deterministic
Outbound IPDisabled - Disabled
- Deterministic
Outbound IPEnabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
ManagedGrafanaProperties, ManagedGrafanaPropertiesArgs
- Api
Key string | Pulumi.Azure Native. Dashboard. Api Key - The api key setting of the Grafana instance.
- Auto
Generated string | Pulumi.Domain Name Label Scope Azure Native. Dashboard. Auto Generated Domain Name Label Scope - Scope for dns deterministic name hash calculation.
- Deterministic
Outbound string | Pulumi.IP Azure Native. Dashboard. Deterministic Outbound IP - Whether a Grafana instance uses deterministic outbound IPs.
- Public
Network string | Pulumi.Access Azure Native. Dashboard. Public Network Access - Indicate the state for enable or disable traffic over the public interface.
- Zone
Redundancy string | Pulumi.Azure Native. Dashboard. Zone Redundancy - The zone redundancy setting of the Grafana instance.
- Api
Key string | ApiKey - The api key setting of the Grafana instance.
- Auto
Generated string | AutoDomain Name Label Scope Generated Domain Name Label Scope - Scope for dns deterministic name hash calculation.
- Deterministic
Outbound string | DeterministicIP Outbound IP - Whether a Grafana instance uses deterministic outbound IPs.
- Public
Network string | PublicAccess Network Access - Indicate the state for enable or disable traffic over the public interface.
- Zone
Redundancy string | ZoneRedundancy - The zone redundancy setting of the Grafana instance.
- api
Key String | ApiKey - The api key setting of the Grafana instance.
- auto
Generated String | AutoDomain Name Label Scope Generated Domain Name Label Scope - Scope for dns deterministic name hash calculation.
- deterministic
Outbound String | DeterministicIP Outbound IP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network String | PublicAccess Network Access - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy String | ZoneRedundancy - The zone redundancy setting of the Grafana instance.
- api
Key string | ApiKey - The api key setting of the Grafana instance.
- auto
Generated string | AutoDomain Name Label Scope Generated Domain Name Label Scope - Scope for dns deterministic name hash calculation.
- deterministic
Outbound string | DeterministicIP Outbound IP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network string | PublicAccess Network Access - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy 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.
- 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.
- api
Key String | "Disabled" | "Enabled" - The api key setting of the Grafana instance.
- auto
Generated String | "TenantDomain Name Label Scope Reuse" - Scope for dns deterministic name hash calculation.
- deterministic
Outbound String | "Disabled" | "Enabled"IP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network String | "Enabled" | "Disabled"Access - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy 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.
- Outbound
IPs List<string> - List of outbound IPs if deterministicOutboundIP is enabled.
- Private
Endpoint List<Pulumi.Connections Azure Native. Dashboard. Inputs. Private Endpoint Connection Response> - The private endpoint connections of the Grafana instance.
- Provisioning
State string - Provisioning state of the resource.
- Api
Key string - The api key setting of the Grafana instance.
- Auto
Generated stringDomain Name Label Scope - Scope for dns deterministic name hash calculation.
- Deterministic
Outbound stringIP - Whether a Grafana instance uses deterministic outbound IPs.
- Public
Network stringAccess - Indicate the state for enable or disable traffic over the public interface.
- Zone
Redundancy string - The zone redundancy setting of the Grafana instance.
- Endpoint string
- The endpoint of the Grafana instance.
- string
- The Grafana software version.
- Outbound
IPs []string - List of outbound IPs if deterministicOutboundIP is enabled.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The private endpoint connections of the Grafana instance.
- Provisioning
State string - Provisioning state of the resource.
- Api
Key string - The api key setting of the Grafana instance.
- Auto
Generated stringDomain Name Label Scope - Scope for dns deterministic name hash calculation.
- Deterministic
Outbound stringIP - Whether a Grafana instance uses deterministic outbound IPs.
- Public
Network stringAccess - Indicate the state for enable or disable traffic over the public interface.
- Zone
Redundancy string - The zone redundancy setting of the Grafana instance.
- endpoint String
- The endpoint of the Grafana instance.
- String
- The Grafana software version.
- outbound
IPs List<String> - List of outbound IPs if deterministicOutboundIP is enabled.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The private endpoint connections of the Grafana instance.
- provisioning
State String - Provisioning state of the resource.
- api
Key String - The api key setting of the Grafana instance.
- auto
Generated StringDomain Name Label Scope - Scope for dns deterministic name hash calculation.
- deterministic
Outbound StringIP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network StringAccess - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy String - The zone redundancy setting of the Grafana instance.
- endpoint string
- The endpoint of the Grafana instance.
- string
- The Grafana software version.
- outbound
IPs string[] - List of outbound IPs if deterministicOutboundIP is enabled.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The private endpoint connections of the Grafana instance.
- provisioning
State string - Provisioning state of the resource.
- api
Key string - The api key setting of the Grafana instance.
- auto
Generated stringDomain Name Label Scope - Scope for dns deterministic name hash calculation.
- deterministic
Outbound stringIP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network stringAccess - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy 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.
- 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.
- outbound
IPs List<String> - List of outbound IPs if deterministicOutboundIP is enabled.
- private
Endpoint List<Property Map>Connections - The private endpoint connections of the Grafana instance.
- provisioning
State String - Provisioning state of the resource.
- api
Key String - The api key setting of the Grafana instance.
- auto
Generated StringDomain Name Label Scope - Scope for dns deterministic name hash calculation.
- deterministic
Outbound StringIP - Whether a Grafana instance uses deterministic outbound IPs.
- public
Network StringAccess - Indicate the state for enable or disable traffic over the public interface.
- zone
Redundancy 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).
- User
Assigned Dictionary<string, object>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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]interface{}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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,Object>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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: any}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 | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Any]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" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Any>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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned 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.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id 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).
- User
Assigned 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.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned 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.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned {[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.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id 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).
- user
Assigned 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,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
- Private
Link 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.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data 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"
- Group
Ids List<string> - The private endpoint connection group ids.
- Private
Endpoint 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
- 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 string - The provisioning state of the private endpoint connection resource.
- System
Data 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"
- Group
Ids []string - 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
- 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 String - The provisioning state of the private endpoint connection resource.
- system
Data 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"
- group
Ids List<String> - 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
- 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 string - The provisioning state of the private endpoint connection resource.
- system
Data 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"
- group
Ids string[] - The private endpoint connection group ids.
- private
Endpoint 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
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- system
Data 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"
- group
Ids List<String> - The private endpoint connection group ids.
- private
Endpoint 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
- Actions
Required 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 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 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 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.
- actions
Required 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
- Public
Network Access Enabled - Enabled
- Public
Network 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
ZoneRedundancy, ZoneRedundancyArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Zone
Redundancy Disabled - Disabled
- Zone
Redundancy 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/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/grafana/myWorkspace
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0