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

azure-native-v2.powerbi.PowerBIResource

Explore with Pulumi AI

Azure REST API version: 2020-06-01. Prior API version in Azure Native 1.x: 2020-06-01.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var powerBIResource = new AzureNative.PowerBI.PowerBIResource("powerBIResource", new()
    {
        AzureResourceName = "azureResourceName",
        Location = "global",
        ResourceGroupName = "resourceGroup",
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
        TenantId = "ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f",
    });

});
Copy
package main

import (
	powerbi "github.com/pulumi/pulumi-azure-native-sdk/powerbi/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := powerbi.NewPowerBIResource(ctx, "powerBIResource", &powerbi.PowerBIResourceArgs{
			AzureResourceName: pulumi.String("azureResourceName"),
			Location:          pulumi.String("global"),
			ResourceGroupName: pulumi.String("resourceGroup"),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
			TenantId: pulumi.String("ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.powerbi.PowerBIResource;
import com.pulumi.azurenative.powerbi.PowerBIResourceArgs;
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 powerBIResource = new PowerBIResource("powerBIResource", PowerBIResourceArgs.builder()
            .azureResourceName("azureResourceName")
            .location("global")
            .resourceGroupName("resourceGroup")
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .tenantId("ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f")
            .build());

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

const powerBIResource = new azure_native.powerbi.PowerBIResource("powerBIResource", {
    azureResourceName: "azureResourceName",
    location: "global",
    resourceGroupName: "resourceGroup",
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
    tenantId: "ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

power_bi_resource = azure_native.powerbi.PowerBIResource("powerBIResource",
    azure_resource_name="azureResourceName",
    location="global",
    resource_group_name="resourceGroup",
    tags={
        "tag1": "value1",
        "tag2": "value2",
    },
    tenant_id="ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f")
Copy
resources:
  powerBIResource:
    type: azure-native:powerbi:PowerBIResource
    properties:
      azureResourceName: azureResourceName
      location: global
      resourceGroupName: resourceGroup
      tags:
        tag1: value1
        tag2: value2
      tenantId: ac2bc297-8a3e-46f3-972d-87c2b4ae6e2f
Copy

Create PowerBIResource Resource

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

Constructor syntax

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

@overload
def PowerBIResource(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    azure_resource_name: Optional[str] = None,
                    location: Optional[str] = None,
                    private_endpoint_connections: Optional[Sequence[PrivateEndpointConnectionArgs]] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    tenant_id: Optional[str] = None)
func NewPowerBIResource(ctx *Context, name string, args PowerBIResourceArgs, opts ...ResourceOption) (*PowerBIResource, error)
public PowerBIResource(string name, PowerBIResourceArgs args, CustomResourceOptions? opts = null)
public PowerBIResource(String name, PowerBIResourceArgs args)
public PowerBIResource(String name, PowerBIResourceArgs args, CustomResourceOptions options)
type: azure-native:powerbi:PowerBIResource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PowerBIResourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PowerBIResourceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PowerBIResourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PowerBIResourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PowerBIResourceArgs
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 powerBIResourceResource = new AzureNative.Powerbi.PowerBIResource("powerBIResourceResource", new()
{
    ResourceGroupName = "string",
    AzureResourceName = "string",
    Location = "string",
    PrivateEndpointConnections = new[]
    {
        
        {
            { "privateEndpoint", 
            {
                { "id", "string" },
            } },
            { "privateLinkServiceConnectionState", 
            {
                { "actionsRequired", "string" },
                { "description", "string" },
                { "status", "string" },
            } },
            { "provisioningState", "string" },
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
    TenantId = "string",
});
Copy
example, err := powerbi.NewPowerBIResource(ctx, "powerBIResourceResource", &powerbi.PowerBIResourceArgs{
	ResourceGroupName: "string",
	AzureResourceName: "string",
	Location:          "string",
	PrivateEndpointConnections: []map[string]interface{}{
		map[string]interface{}{
			"privateEndpoint": map[string]interface{}{
				"id": "string",
			},
			"privateLinkServiceConnectionState": map[string]interface{}{
				"actionsRequired": "string",
				"description":     "string",
				"status":          "string",
			},
			"provisioningState": "string",
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
	TenantId: "string",
})
Copy
var powerBIResourceResource = new PowerBIResource("powerBIResourceResource", PowerBIResourceArgs.builder()
    .resourceGroupName("string")
    .azureResourceName("string")
    .location("string")
    .privateEndpointConnections(%!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))
    .tenantId("string")
    .build());
Copy
power_bi_resource_resource = azure_native.powerbi.PowerBIResource("powerBIResourceResource",
    resource_group_name=string,
    azure_resource_name=string,
    location=string,
    private_endpoint_connections=[{
        privateEndpoint: {
            id: string,
        },
        privateLinkServiceConnectionState: {
            actionsRequired: string,
            description: string,
            status: string,
        },
        provisioningState: string,
    }],
    tags={
        string: string,
    },
    tenant_id=string)
Copy
const powerBIResourceResource = new azure_native.powerbi.PowerBIResource("powerBIResourceResource", {
    resourceGroupName: "string",
    azureResourceName: "string",
    location: "string",
    privateEndpointConnections: [{
        privateEndpoint: {
            id: "string",
        },
        privateLinkServiceConnectionState: {
            actionsRequired: "string",
            description: "string",
            status: "string",
        },
        provisioningState: "string",
    }],
    tags: {
        string: "string",
    },
    tenantId: "string",
});
Copy
type: azure-native:powerbi:PowerBIResource
properties:
    azureResourceName: string
    location: string
    privateEndpointConnections:
        - privateEndpoint:
            id: string
          privateLinkServiceConnectionState:
            actionsRequired: string
            description: string
            status: string
          provisioningState: string
    resourceGroupName: string
    tags:
        string: string
    tenantId: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AzureResourceName Changes to this property will trigger replacement. string
The name of the Azure resource.
Location string
Specifies the location of the resource.
PrivateEndpointConnections List<Pulumi.AzureNative.PowerBI.Inputs.PrivateEndpointConnection>
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
Tags Dictionary<string, string>
Specifies the tags of the resource.
TenantId string
Specifies the tenant id of the resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
AzureResourceName Changes to this property will trigger replacement. string
The name of the Azure resource.
Location string
Specifies the location of the resource.
PrivateEndpointConnections []PrivateEndpointConnectionTypeArgs
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
Tags map[string]string
Specifies the tags of the resource.
TenantId string
Specifies the tenant id of the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
azureResourceName Changes to this property will trigger replacement. String
The name of the Azure resource.
location String
Specifies the location of the resource.
privateEndpointConnections List<PrivateEndpointConnection>
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Map<String,String>
Specifies the tags of the resource.
tenantId String
Specifies the tenant id of the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
azureResourceName Changes to this property will trigger replacement. string
The name of the Azure resource.
location string
Specifies the location of the resource.
privateEndpointConnections PrivateEndpointConnection[]
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags {[key: string]: string}
Specifies the tags of the resource.
tenantId string
Specifies the tenant id of the resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
azure_resource_name Changes to this property will trigger replacement. str
The name of the Azure resource.
location str
Specifies the location of the resource.
private_endpoint_connections Sequence[PrivateEndpointConnectionArgs]
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Mapping[str, str]
Specifies the tags of the resource.
tenant_id str
Specifies the tenant id of the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
azureResourceName Changes to this property will trigger replacement. String
The name of the Azure resource.
location String
Specifies the location of the resource.
privateEndpointConnections List<Property Map>
Specifies the private endpoint connections of the resource. These are also available as standalone resources. Do not mix inline and standalone resource as they will conflict with each other, leading to resources deletion.
tags Map<String>
Specifies the tags of the resource.
tenantId String
Specifies the tenant id of the resource.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Specifies the name of the resource.
SystemData Pulumi.AzureNative.PowerBI.Outputs.SystemDataResponse
The system metadata relating to this resource.
Type string
Specifies the type of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Specifies the name of the resource.
SystemData SystemDataResponse
The system metadata relating to this resource.
Type string
Specifies the type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Specifies the name of the resource.
systemData SystemDataResponse
The system metadata relating to this resource.
type String
Specifies the type of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Specifies the name of the resource.
systemData SystemDataResponse
The system metadata relating to this resource.
type string
Specifies the type of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Specifies the name of the resource.
system_data SystemDataResponse
The system metadata relating to this resource.
type str
Specifies the type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Specifies the name of the resource.
systemData Property Map
The system metadata relating to this resource.
type String
Specifies the type of the resource.

Supporting Types

ConnectionState
, ConnectionStateArgs

ActionsRequired string
Actions required (if any).
Description string
Description of the connection state.
Status string | Pulumi.AzureNative.PowerBI.PersistedConnectionStatus
Status of the connection.
ActionsRequired string
Actions required (if any).
Description string
Description of the connection state.
Status string | PersistedConnectionStatus
Status of the connection.
actionsRequired String
Actions required (if any).
description String
Description of the connection state.
status String | PersistedConnectionStatus
Status of the connection.
actionsRequired string
Actions required (if any).
description string
Description of the connection state.
status string | PersistedConnectionStatus
Status of the connection.
actions_required str
Actions required (if any).
description str
Description of the connection state.
status str | PersistedConnectionStatus
Status of the connection.
actionsRequired String
Actions required (if any).
description String
Description of the connection state.
status String | "Pending" | "Approved" | "Rejected" | "Disconnected"
Status of the connection.

ConnectionStateResponse
, ConnectionStateResponseArgs

ActionsRequired string
Actions required (if any).
Description string
Description of the connection state.
Status string
Status of the connection.
ActionsRequired string
Actions required (if any).
Description string
Description of the connection state.
Status string
Status of the connection.
actionsRequired String
Actions required (if any).
description String
Description of the connection state.
status String
Status of the connection.
actionsRequired string
Actions required (if any).
description string
Description of the connection state.
status string
Status of the connection.
actions_required str
Actions required (if any).
description str
Description of the connection state.
status str
Status of the connection.
actionsRequired String
Actions required (if any).
description String
Description of the connection state.
status String
Status of the connection.

PersistedConnectionStatus
, PersistedConnectionStatusArgs

Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
PersistedConnectionStatusPending
Pending
PersistedConnectionStatusApproved
Approved
PersistedConnectionStatusRejected
Rejected
PersistedConnectionStatusDisconnected
Disconnected
Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
Pending
Pending
Approved
Approved
Rejected
Rejected
Disconnected
Disconnected
PENDING
Pending
APPROVED
Approved
REJECTED
Rejected
DISCONNECTED
Disconnected
"Pending"
Pending
"Approved"
Approved
"Rejected"
Rejected
"Disconnected"
Disconnected

PrivateEndpoint
, PrivateEndpointArgs

Id string
Specifies the id of private endpoint.
Id string
Specifies the id of private endpoint.
id String
Specifies the id of private endpoint.
id string
Specifies the id of private endpoint.
id str
Specifies the id of private endpoint.
id String
Specifies the id of private endpoint.

PrivateEndpointConnection
, PrivateEndpointConnectionArgs

PrivateEndpoint PrivateEndpoint
Specifies the private endpoint.
PrivateLinkServiceConnectionState ConnectionState
Specifies the connection state.
ProvisioningState string | ResourceProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint PrivateEndpoint
Specifies the private endpoint.
privateLinkServiceConnectionState ConnectionState
Specifies the connection state.
provisioningState String | ResourceProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint PrivateEndpoint
Specifies the private endpoint.
privateLinkServiceConnectionState ConnectionState
Specifies the connection state.
provisioningState string | ResourceProvisioningState
Provisioning state of the Private Endpoint Connection.
private_endpoint PrivateEndpoint
Specifies the private endpoint.
private_link_service_connection_state ConnectionState
Specifies the connection state.
provisioning_state str | ResourceProvisioningState
Provisioning state of the Private Endpoint Connection.
privateEndpoint Property Map
Specifies the private endpoint.
privateLinkServiceConnectionState Property Map
Specifies the connection state.
provisioningState String | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Canceled" | "Failed"
Provisioning state of the Private Endpoint Connection.

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

Id This property is required. string
Specifies the id of the resource.
Name This property is required. string
Specifies the name of the resource.
SystemData This property is required. Pulumi.AzureNative.PowerBI.Inputs.SystemDataResponse
The system meta data relating to this resource.
Type This property is required. string
Specifies the type of the resource.
PrivateEndpoint Pulumi.AzureNative.PowerBI.Inputs.PrivateEndpointResponse
Specifies the private endpoint.
PrivateLinkServiceConnectionState Pulumi.AzureNative.PowerBI.Inputs.ConnectionStateResponse
Specifies the connection state.
ProvisioningState string
Provisioning state of the Private Endpoint Connection.
Id This property is required. string
Specifies the id of the resource.
Name This property is required. string
Specifies the name of the resource.
SystemData This property is required. SystemDataResponse
The system meta data relating to this resource.
Type This property is required. string
Specifies the type of the resource.
PrivateEndpoint PrivateEndpointResponse
Specifies the private endpoint.
PrivateLinkServiceConnectionState ConnectionStateResponse
Specifies the connection state.
ProvisioningState string
Provisioning state of the Private Endpoint Connection.
id This property is required. String
Specifies the id of the resource.
name This property is required. String
Specifies the name of the resource.
systemData This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. String
Specifies the type of the resource.
privateEndpoint PrivateEndpointResponse
Specifies the private endpoint.
privateLinkServiceConnectionState ConnectionStateResponse
Specifies the connection state.
provisioningState String
Provisioning state of the Private Endpoint Connection.
id This property is required. string
Specifies the id of the resource.
name This property is required. string
Specifies the name of the resource.
systemData This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. string
Specifies the type of the resource.
privateEndpoint PrivateEndpointResponse
Specifies the private endpoint.
privateLinkServiceConnectionState ConnectionStateResponse
Specifies the connection state.
provisioningState string
Provisioning state of the Private Endpoint Connection.
id This property is required. str
Specifies the id of the resource.
name This property is required. str
Specifies the name of the resource.
system_data This property is required. SystemDataResponse
The system meta data relating to this resource.
type This property is required. str
Specifies the type of the resource.
private_endpoint PrivateEndpointResponse
Specifies the private endpoint.
private_link_service_connection_state ConnectionStateResponse
Specifies the connection state.
provisioning_state str
Provisioning state of the Private Endpoint Connection.
id This property is required. String
Specifies the id of the resource.
name This property is required. String
Specifies the name of the resource.
systemData This property is required. Property Map
The system meta data relating to this resource.
type This property is required. String
Specifies the type of the resource.
privateEndpoint Property Map
Specifies the private endpoint.
privateLinkServiceConnectionState Property Map
Specifies the connection state.
provisioningState String
Provisioning state of the Private Endpoint Connection.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id string
Specifies the id of private endpoint.
Id string
Specifies the id of private endpoint.
id String
Specifies the id of private endpoint.
id string
Specifies the id of private endpoint.
id str
Specifies the id of private endpoint.
id String
Specifies the id of private endpoint.

ResourceProvisioningState
, ResourceProvisioningStateArgs

Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
ResourceProvisioningStateCreating
Creating
ResourceProvisioningStateUpdating
Updating
ResourceProvisioningStateDeleting
Deleting
ResourceProvisioningStateSucceeded
Succeeded
ResourceProvisioningStateCanceled
Canceled
ResourceProvisioningStateFailed
Failed
Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
Creating
Creating
Updating
Updating
Deleting
Deleting
Succeeded
Succeeded
Canceled
Canceled
Failed
Failed
CREATING
Creating
UPDATING
Updating
DELETING
Deleting
SUCCEEDED
Succeeded
CANCELED
Canceled
FAILED
Failed
"Creating"
Creating
"Updating"
Updating
"Deleting"
Deleting
"Succeeded"
Succeeded
"Canceled"
Canceled
"Failed"
Failed

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:powerbi:PowerBIResource myPrivateLinkServiceResource /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.PowerBI/privateLinkServicesForPowerBI/{azureResourceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0