We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Purview Account.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Purview.Account("exampleAccount", new Azure.Purview.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/purview"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = purview.NewAccount(ctx, "exampleAccount", &purview.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.purview.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.purview.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location)
Example coming soon!
Create Account Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Account(name: string, args: AccountArgs, opts?: CustomResourceOptions);@overload
def Account(resource_name: str,
args: AccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Account(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
managed_resource_group_name: Optional[str] = None,
name: Optional[str] = None,
public_network_enabled: Optional[bool] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewAccount(ctx *Context, name string, args AccountArgs, opts ...ResourceOption) (*Account, error)public Account(string name, AccountArgs args, CustomResourceOptions? opts = null)
public Account(String name, AccountArgs args)
public Account(String name, AccountArgs args, CustomResourceOptions options)
type: azure:purview:Account
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 AccountArgs
- 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 AccountArgs
- 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 AccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountArgs
- 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 exampleaccountResourceResourceFromPurviewaccount = new Azure.Purview.Account("exampleaccountResourceResourceFromPurviewaccount", new()
{
ResourceGroupName = "string",
Location = "string",
ManagedResourceGroupName = "string",
Name = "string",
PublicNetworkEnabled = false,
Tags =
{
{ "string", "string" },
},
});
example, err := purview.NewAccount(ctx, "exampleaccountResourceResourceFromPurviewaccount", &purview.AccountArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
ManagedResourceGroupName: pulumi.String("string"),
Name: pulumi.String("string"),
PublicNetworkEnabled: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampleaccountResourceResourceFromPurviewaccount = new com.pulumi.azure.purview.Account("exampleaccountResourceResourceFromPurviewaccount", com.pulumi.azure.purview.AccountArgs.builder()
.resourceGroupName("string")
.location("string")
.managedResourceGroupName("string")
.name("string")
.publicNetworkEnabled(false)
.tags(Map.of("string", "string"))
.build());
exampleaccount_resource_resource_from_purviewaccount = azure.purview.Account("exampleaccountResourceResourceFromPurviewaccount",
resource_group_name="string",
location="string",
managed_resource_group_name="string",
name="string",
public_network_enabled=False,
tags={
"string": "string",
})
const exampleaccountResourceResourceFromPurviewaccount = new azure.purview.Account("exampleaccountResourceResourceFromPurviewaccount", {
resourceGroupName: "string",
location: "string",
managedResourceGroupName: "string",
name: "string",
publicNetworkEnabled: false,
tags: {
string: "string",
},
});
type: azure:purview:Account
properties:
location: string
managedResourceGroupName: string
name: string
publicNetworkEnabled: false
resourceGroupName: string
tags:
string: string
Account 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 Account resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- Name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- Public
Network boolEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - Sku
Name string - Dictionary<string, string>
- A mapping of tags which should be assigned to the Purview Account.
- Resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- Name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- Public
Network boolEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - Sku
Name string - map[string]string
- A mapping of tags which should be assigned to the Purview Account.
- resource
Group StringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- location String
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource StringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- name String
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network BooleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - sku
Name String - Map<String,String>
- A mapping of tags which should be assigned to the Purview Account.
- resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network booleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - sku
Name string - {[key: string]: string}
- A mapping of tags which should be assigned to the Purview Account.
- resource_
group_ strname - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- location str
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed_
resource_ strgroup_ name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- name str
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public_
network_ boolenabled - Should the Purview Account be visible to the public network? Defaults to
true. - sku_
name str - Mapping[str, str]
- A mapping of tags which should be assigned to the Purview Account.
- resource
Group StringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- location String
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource StringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- name String
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network BooleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - sku
Name String - Map<String>
- A mapping of tags which should be assigned to the Purview Account.
Outputs
All input properties are implicitly available as output properties. Additionally, the Account resource produces the following output properties:
- Atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- Atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- Catalog
Endpoint string - Catalog endpoint.
- Guardian
Endpoint string - Guardian endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
List<Account
Identity> - A
identityblock as defined below. - Managed
Resources List<AccountManaged Resource> - A
managed_resourcesblock as defined below. - Scan
Endpoint string - Scan endpoint.
- Atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- Atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- Catalog
Endpoint string - Catalog endpoint.
- Guardian
Endpoint string - Guardian endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
[]Account
Identity - A
identityblock as defined below. - Managed
Resources []AccountManaged Resource - A
managed_resourcesblock as defined below. - Scan
Endpoint string - Scan endpoint.
- atlas
Kafka StringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka StringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint String - Catalog endpoint.
- guardian
Endpoint String - Guardian endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- identities
List<Account
Identity> - A
identityblock as defined below. - managed
Resources List<AccountManaged Resource> - A
managed_resourcesblock as defined below. - scan
Endpoint String - Scan endpoint.
- atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint string - Catalog endpoint.
- guardian
Endpoint string - Guardian endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- identities
Account
Identity[] - A
identityblock as defined below. - managed
Resources AccountManaged Resource[] - A
managed_resourcesblock as defined below. - scan
Endpoint string - Scan endpoint.
- atlas_
kafka_ strendpoint_ primary_ connection_ string - Atlas Kafka endpoint primary connection string.
- atlas_
kafka_ strendpoint_ secondary_ connection_ string - Atlas Kafka endpoint secondary connection string.
- catalog_
endpoint str - Catalog endpoint.
- guardian_
endpoint str - Guardian endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- identities
Sequence[Account
Identity] - A
identityblock as defined below. - managed_
resources Sequence[AccountManaged Resource] - A
managed_resourcesblock as defined below. - scan_
endpoint str - Scan endpoint.
- atlas
Kafka StringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka StringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint String - Catalog endpoint.
- guardian
Endpoint String - Guardian endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- identities List<Property Map>
- A
identityblock as defined below. - managed
Resources List<Property Map> - A
managed_resourcesblock as defined below. - scan
Endpoint String - Scan endpoint.
Look up Existing Account Resource
Get an existing Account resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AccountState, opts?: CustomResourceOptions): Account@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
atlas_kafka_endpoint_primary_connection_string: Optional[str] = None,
atlas_kafka_endpoint_secondary_connection_string: Optional[str] = None,
catalog_endpoint: Optional[str] = None,
guardian_endpoint: Optional[str] = None,
identities: Optional[Sequence[AccountIdentityArgs]] = None,
location: Optional[str] = None,
managed_resource_group_name: Optional[str] = None,
managed_resources: Optional[Sequence[AccountManagedResourceArgs]] = None,
name: Optional[str] = None,
public_network_enabled: Optional[bool] = None,
resource_group_name: Optional[str] = None,
scan_endpoint: Optional[str] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Accountfunc GetAccount(ctx *Context, name string, id IDInput, state *AccountState, opts ...ResourceOption) (*Account, error)public static Account Get(string name, Input<string> id, AccountState? state, CustomResourceOptions? opts = null)public static Account get(String name, Output<String> id, AccountState state, CustomResourceOptions options)resources: _: type: azure:purview:Account get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- Atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- Catalog
Endpoint string - Catalog endpoint.
- Guardian
Endpoint string - Guardian endpoint.
- Identities
List<Account
Identity> - A
identityblock as defined below. - Location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- Managed
Resources List<AccountManaged Resource> - A
managed_resourcesblock as defined below. - Name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- Public
Network boolEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - Resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Scan
Endpoint string - Scan endpoint.
- Sku
Name string - Dictionary<string, string>
- A mapping of tags which should be assigned to the Purview Account.
- Atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- Atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- Catalog
Endpoint string - Catalog endpoint.
- Guardian
Endpoint string - Guardian endpoint.
- Identities
[]Account
Identity Args - A
identityblock as defined below. - Location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- Managed
Resources []AccountManaged Resource Args - A
managed_resourcesblock as defined below. - Name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- Public
Network boolEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - Resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- Scan
Endpoint string - Scan endpoint.
- Sku
Name string - map[string]string
- A mapping of tags which should be assigned to the Purview Account.
- atlas
Kafka StringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka StringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint String - Catalog endpoint.
- guardian
Endpoint String - Guardian endpoint.
- identities
List<Account
Identity> - A
identityblock as defined below. - location String
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource StringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- managed
Resources List<AccountManaged Resource> - A
managed_resourcesblock as defined below. - name String
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network BooleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - resource
Group StringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- scan
Endpoint String - Scan endpoint.
- sku
Name String - Map<String,String>
- A mapping of tags which should be assigned to the Purview Account.
- atlas
Kafka stringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka stringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint string - Catalog endpoint.
- guardian
Endpoint string - Guardian endpoint.
- identities
Account
Identity[] - A
identityblock as defined below. - location string
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource stringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- managed
Resources AccountManaged Resource[] - A
managed_resourcesblock as defined below. - name string
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network booleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - resource
Group stringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- scan
Endpoint string - Scan endpoint.
- sku
Name string - {[key: string]: string}
- A mapping of tags which should be assigned to the Purview Account.
- atlas_
kafka_ strendpoint_ primary_ connection_ string - Atlas Kafka endpoint primary connection string.
- atlas_
kafka_ strendpoint_ secondary_ connection_ string - Atlas Kafka endpoint secondary connection string.
- catalog_
endpoint str - Catalog endpoint.
- guardian_
endpoint str - Guardian endpoint.
- identities
Sequence[Account
Identity Args] - A
identityblock as defined below. - location str
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed_
resource_ strgroup_ name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- managed_
resources Sequence[AccountManaged Resource Args] - A
managed_resourcesblock as defined below. - name str
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public_
network_ boolenabled - Should the Purview Account be visible to the public network? Defaults to
true. - resource_
group_ strname - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- scan_
endpoint str - Scan endpoint.
- sku_
name str - Mapping[str, str]
- A mapping of tags which should be assigned to the Purview Account.
- atlas
Kafka StringEndpoint Primary Connection String - Atlas Kafka endpoint primary connection string.
- atlas
Kafka StringEndpoint Secondary Connection String - Atlas Kafka endpoint secondary connection string.
- catalog
Endpoint String - Catalog endpoint.
- guardian
Endpoint String - Guardian endpoint.
- identities List<Property Map>
- A
identityblock as defined below. - location String
- The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- managed
Resource StringGroup Name - The name which should be used for the new Resource Group where Purview Account creates the managed resources. Changing this forces a new Purview Account to be created.
- managed
Resources List<Property Map> - A
managed_resourcesblock as defined below. - name String
- The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created.
- public
Network BooleanEnabled - Should the Purview Account be visible to the public network? Defaults to
true. - resource
Group StringName - The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created.
- scan
Endpoint String - Scan endpoint.
- sku
Name String - Map<String>
- A mapping of tags which should be assigned to the Purview Account.
Supporting Types
AccountIdentity, AccountIdentityArgs
- Principal
Id string - The ID of the Principal (Client) in Azure Active Directory.
- Tenant
Id string - The ID of the Azure Active Directory Tenant.
- Type string
- The type of Managed Identity assigned to this Purview Account.
- Principal
Id string - The ID of the Principal (Client) in Azure Active Directory.
- Tenant
Id string - The ID of the Azure Active Directory Tenant.
- Type string
- The type of Managed Identity assigned to this Purview Account.
- principal
Id String - The ID of the Principal (Client) in Azure Active Directory.
- tenant
Id String - The ID of the Azure Active Directory Tenant.
- type String
- The type of Managed Identity assigned to this Purview Account.
- principal
Id string - The ID of the Principal (Client) in Azure Active Directory.
- tenant
Id string - The ID of the Azure Active Directory Tenant.
- type string
- The type of Managed Identity assigned to this Purview Account.
- principal_
id str - The ID of the Principal (Client) in Azure Active Directory.
- tenant_
id str - The ID of the Azure Active Directory Tenant.
- type str
- The type of Managed Identity assigned to this Purview Account.
- principal
Id String - The ID of the Principal (Client) in Azure Active Directory.
- tenant
Id String - The ID of the Azure Active Directory Tenant.
- type String
- The type of Managed Identity assigned to this Purview Account.
AccountManagedResource, AccountManagedResourceArgs
- Event
Hub stringNamespace Id - The ID of the managed event hub namespace.
- Resource
Group stringId - The ID of the managed resource group.
- Storage
Account stringId - The ID of the managed storage account.
- Event
Hub stringNamespace Id - The ID of the managed event hub namespace.
- Resource
Group stringId - The ID of the managed resource group.
- Storage
Account stringId - The ID of the managed storage account.
- event
Hub StringNamespace Id - The ID of the managed event hub namespace.
- resource
Group StringId - The ID of the managed resource group.
- storage
Account StringId - The ID of the managed storage account.
- event
Hub stringNamespace Id - The ID of the managed event hub namespace.
- resource
Group stringId - The ID of the managed resource group.
- storage
Account stringId - The ID of the managed storage account.
- event_
hub_ strnamespace_ id - The ID of the managed event hub namespace.
- resource_
group_ strid - The ID of the managed resource group.
- storage_
account_ strid - The ID of the managed storage account.
- event
Hub StringNamespace Id - The ID of the managed event hub namespace.
- resource
Group StringId - The ID of the managed resource group.
- storage
Account StringId - The ID of the managed storage account.
Import
Purview Accounts can be imported using the resource id, e.g.
$ pulumi import azure:purview/account:Account example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Purview/accounts/account1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
