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

azure-native.purview.Account

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Account resource

Uses Azure REST API version 2024-04-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-12-01.

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

Example Usage

Accounts_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var account = new AzureNative.Purview.Account("account", new()
    {
        AccountName = "account1",
        Location = "West US 2",
        ResourceGroupName = "SampleResourceGroup",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := purview.NewAccount(ctx, "account", &purview.AccountArgs{
			AccountName:       pulumi.String("account1"),
			Location:          pulumi.String("West US 2"),
			ResourceGroupName: pulumi.String("SampleResourceGroup"),
		})
		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.purview.Account;
import com.pulumi.azurenative.purview.AccountArgs;
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 account = new Account("account", AccountArgs.builder()
            .accountName("account1")
            .location("West US 2")
            .resourceGroupName("SampleResourceGroup")
            .build());

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

const account = new azure_native.purview.Account("account", {
    accountName: "account1",
    location: "West US 2",
    resourceGroupName: "SampleResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

account = azure_native.purview.Account("account",
    account_name="account1",
    location="West US 2",
    resource_group_name="SampleResourceGroup")
Copy
resources:
  account:
    type: azure-native:purview:Account
    properties:
      accountName: account1
      location: West US 2
      resourceGroupName: SampleResourceGroup
Copy

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,
            account_name: Optional[str] = None,
            identity: Optional[IdentityArgs] = None,
            ingestion_storage: Optional[IngestionStorageArgs] = None,
            location: Optional[str] = None,
            managed_event_hub_state: Optional[Union[str, ManagedEventHubState]] = None,
            managed_resource_group_name: Optional[str] = None,
            managed_resources_public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
            public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
            sku: Optional[AccountSkuArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            tenant_endpoint_state: Optional[Union[str, TenantEndpointState]] = 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-native:purview:Account
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. AccountArgs
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. 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 This property is required. string
The unique name of the resource.
args This property is required. AccountArgs
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. AccountArgs
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. 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 exampleaccountResourceResourceFromPurview = new AzureNative.Purview.Account("exampleaccountResourceResourceFromPurview", new()
{
    ResourceGroupName = "string",
    AccountName = "string",
    Identity = new AzureNative.Purview.Inputs.IdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    IngestionStorage = new AzureNative.Purview.Inputs.IngestionStorageArgs
    {
        PublicNetworkAccess = "string",
    },
    Location = "string",
    ManagedEventHubState = "string",
    ManagedResourceGroupName = "string",
    ManagedResourcesPublicNetworkAccess = "string",
    PublicNetworkAccess = "string",
    Sku = new AzureNative.Purview.Inputs.AccountSkuArgs
    {
        Capacity = 0,
        Name = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    TenantEndpointState = "string",
});
Copy
example, err := purview.NewAccount(ctx, "exampleaccountResourceResourceFromPurview", &purview.AccountArgs{
	ResourceGroupName: pulumi.String("string"),
	AccountName:       pulumi.String("string"),
	Identity: &purview.IdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	IngestionStorage: &purview.IngestionStorageArgs{
		PublicNetworkAccess: pulumi.String("string"),
	},
	Location:                            pulumi.String("string"),
	ManagedEventHubState:                pulumi.String("string"),
	ManagedResourceGroupName:            pulumi.String("string"),
	ManagedResourcesPublicNetworkAccess: pulumi.String("string"),
	PublicNetworkAccess:                 pulumi.String("string"),
	Sku: &purview.AccountSkuArgs{
		Capacity: pulumi.Int(0),
		Name:     pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TenantEndpointState: pulumi.String("string"),
})
Copy
var exampleaccountResourceResourceFromPurview = new com.pulumi.azurenative.purview.Account("exampleaccountResourceResourceFromPurview", com.pulumi.azurenative.purview.AccountArgs.builder()
    .resourceGroupName("string")
    .accountName("string")
    .identity(IdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .ingestionStorage(IngestionStorageArgs.builder()
        .publicNetworkAccess("string")
        .build())
    .location("string")
    .managedEventHubState("string")
    .managedResourceGroupName("string")
    .managedResourcesPublicNetworkAccess("string")
    .publicNetworkAccess("string")
    .sku(AccountSkuArgs.builder()
        .capacity(0)
        .name("string")
        .build())
    .tags(Map.of("string", "string"))
    .tenantEndpointState("string")
    .build());
Copy
exampleaccount_resource_resource_from_purview = azure_native.purview.Account("exampleaccountResourceResourceFromPurview",
    resource_group_name="string",
    account_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    ingestion_storage={
        "public_network_access": "string",
    },
    location="string",
    managed_event_hub_state="string",
    managed_resource_group_name="string",
    managed_resources_public_network_access="string",
    public_network_access="string",
    sku={
        "capacity": 0,
        "name": "string",
    },
    tags={
        "string": "string",
    },
    tenant_endpoint_state="string")
Copy
const exampleaccountResourceResourceFromPurview = new azure_native.purview.Account("exampleaccountResourceResourceFromPurview", {
    resourceGroupName: "string",
    accountName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    ingestionStorage: {
        publicNetworkAccess: "string",
    },
    location: "string",
    managedEventHubState: "string",
    managedResourceGroupName: "string",
    managedResourcesPublicNetworkAccess: "string",
    publicNetworkAccess: "string",
    sku: {
        capacity: 0,
        name: "string",
    },
    tags: {
        string: "string",
    },
    tenantEndpointState: "string",
});
Copy
type: azure-native:purview:Account
properties:
    accountName: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    ingestionStorage:
        publicNetworkAccess: string
    location: string
    managedEventHubState: string
    managedResourceGroupName: string
    managedResourcesPublicNetworkAccess: string
    publicNetworkAccess: string
    resourceGroupName: string
    sku:
        capacity: 0
        name: string
    tags:
        string: string
    tenantEndpointState: string
Copy

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:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AccountName Changes to this property will trigger replacement. string
The name of the account.
Identity Pulumi.AzureNative.Purview.Inputs.Identity
The Managed Identity of the resource
IngestionStorage Pulumi.AzureNative.Purview.Inputs.IngestionStorage
Ingestion Storage Account Info
Location string
Gets or sets the location.
ManagedEventHubState string | Pulumi.AzureNative.Purview.ManagedEventHubState
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
ManagedResourceGroupName Changes to this property will trigger replacement. string
Gets or sets the managed resource group name
ManagedResourcesPublicNetworkAccess string | Pulumi.AzureNative.Purview.PublicNetworkAccess
Gets or sets the public network access for managed resources.
PublicNetworkAccess string | Pulumi.AzureNative.Purview.PublicNetworkAccess
Gets or sets the public network access.
Sku Pulumi.AzureNative.Purview.Inputs.AccountSku
Gets or sets the Sku.
Tags Dictionary<string, string>
Tags on the azure resource.
TenantEndpointState string | Pulumi.AzureNative.Purview.TenantEndpointState
Gets or sets the state of tenant endpoint.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AccountName Changes to this property will trigger replacement. string
The name of the account.
Identity IdentityArgs
The Managed Identity of the resource
IngestionStorage IngestionStorageArgs
Ingestion Storage Account Info
Location string
Gets or sets the location.
ManagedEventHubState string | ManagedEventHubState
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
ManagedResourceGroupName Changes to this property will trigger replacement. string
Gets or sets the managed resource group name
ManagedResourcesPublicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access for managed resources.
PublicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access.
Sku AccountSkuArgs
Gets or sets the Sku.
Tags map[string]string
Tags on the azure resource.
TenantEndpointState string | TenantEndpointState
Gets or sets the state of tenant endpoint.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
accountName Changes to this property will trigger replacement. String
The name of the account.
identity Identity
The Managed Identity of the resource
ingestionStorage IngestionStorage
Ingestion Storage Account Info
location String
Gets or sets the location.
managedEventHubState String | ManagedEventHubState
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
managedResourceGroupName Changes to this property will trigger replacement. String
Gets or sets the managed resource group name
managedResourcesPublicNetworkAccess String | PublicNetworkAccess
Gets or sets the public network access for managed resources.
publicNetworkAccess String | PublicNetworkAccess
Gets or sets the public network access.
sku AccountSku
Gets or sets the Sku.
tags Map<String,String>
Tags on the azure resource.
tenantEndpointState String | TenantEndpointState
Gets or sets the state of tenant endpoint.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
accountName Changes to this property will trigger replacement. string
The name of the account.
identity Identity
The Managed Identity of the resource
ingestionStorage IngestionStorage
Ingestion Storage Account Info
location string
Gets or sets the location.
managedEventHubState string | ManagedEventHubState
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
managedResourceGroupName Changes to this property will trigger replacement. string
Gets or sets the managed resource group name
managedResourcesPublicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access for managed resources.
publicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access.
sku AccountSku
Gets or sets the Sku.
tags {[key: string]: string}
Tags on the azure resource.
tenantEndpointState string | TenantEndpointState
Gets or sets the state of tenant endpoint.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
account_name Changes to this property will trigger replacement. str
The name of the account.
identity IdentityArgs
The Managed Identity of the resource
ingestion_storage IngestionStorageArgs
Ingestion Storage Account Info
location str
Gets or sets the location.
managed_event_hub_state str | ManagedEventHubState
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
managed_resource_group_name Changes to this property will trigger replacement. str
Gets or sets the managed resource group name
managed_resources_public_network_access str | PublicNetworkAccess
Gets or sets the public network access for managed resources.
public_network_access str | PublicNetworkAccess
Gets or sets the public network access.
sku AccountSkuArgs
Gets or sets the Sku.
tags Mapping[str, str]
Tags on the azure resource.
tenant_endpoint_state str | TenantEndpointState
Gets or sets the state of tenant endpoint.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
accountName Changes to this property will trigger replacement. String
The name of the account.
identity Property Map
The Managed Identity of the resource
ingestionStorage Property Map
Ingestion Storage Account Info
location String
Gets or sets the location.
managedEventHubState String | "NotSpecified" | "Disabled" | "Enabled"
Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.
managedResourceGroupName Changes to this property will trigger replacement. String
Gets or sets the managed resource group name
managedResourcesPublicNetworkAccess String | "NotSpecified" | "Enabled" | "Disabled"
Gets or sets the public network access for managed resources.
publicNetworkAccess String | "NotSpecified" | "Enabled" | "Disabled"
Gets or sets the public network access.
sku Property Map
Gets or sets the Sku.
tags Map<String>
Tags on the azure resource.
tenantEndpointState String | "NotSpecified" | "Disabled" | "Enabled"
Gets or sets the state of tenant endpoint.

Outputs

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

AccountStatus Pulumi.AzureNative.Purview.Outputs.AccountPropertiesResponseAccountStatus
Gets or sets the status of the account.
AzureApiVersion string
The Azure API version of the resource.
CreatedAt string
Gets the time at which the entity was created.
CreatedBy string
Gets the creator of the entity.
CreatedByObjectId string
Gets the creators of the entity's object id.
DefaultDomain string
Gets the default domain in the account.
Endpoints Pulumi.AzureNative.Purview.Outputs.AccountPropertiesResponseEndpoints
The URIs that are the public endpoints of the account.
FriendlyName string
Gets or sets the friendly name.
Id string
The provider-assigned unique ID for this managed resource.
ManagedResources Pulumi.AzureNative.Purview.Outputs.AccountPropertiesResponseManagedResources
Gets the resource identifiers of the managed resources.
Name string
Gets or sets the name.
PrivateEndpointConnections List<Pulumi.AzureNative.Purview.Outputs.PrivateEndpointConnectionResponse>
Gets the private endpoint connections information.
ProvisioningState string
Gets or sets the state of the provisioning.
SystemData Pulumi.AzureNative.Purview.Outputs.TrackedResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
Type string
Gets or sets the type.
CloudConnectors Pulumi.AzureNative.Purview.Outputs.CloudConnectorsResponse
External Cloud Service connectors
MergeInfo Pulumi.AzureNative.Purview.Outputs.AccountMergeInfoResponse
Gets or sets the Merge Info.
AccountStatus AccountPropertiesResponseAccountStatus
Gets or sets the status of the account.
AzureApiVersion string
The Azure API version of the resource.
CreatedAt string
Gets the time at which the entity was created.
CreatedBy string
Gets the creator of the entity.
CreatedByObjectId string
Gets the creators of the entity's object id.
DefaultDomain string
Gets the default domain in the account.
Endpoints AccountPropertiesResponseEndpoints
The URIs that are the public endpoints of the account.
FriendlyName string
Gets or sets the friendly name.
Id string
The provider-assigned unique ID for this managed resource.
ManagedResources AccountPropertiesResponseManagedResources
Gets the resource identifiers of the managed resources.
Name string
Gets or sets the name.
PrivateEndpointConnections []PrivateEndpointConnectionResponse
Gets the private endpoint connections information.
ProvisioningState string
Gets or sets the state of the provisioning.
SystemData TrackedResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
Type string
Gets or sets the type.
CloudConnectors CloudConnectorsResponse
External Cloud Service connectors
MergeInfo AccountMergeInfoResponse
Gets or sets the Merge Info.
accountStatus AccountPropertiesResponseAccountStatus
Gets or sets the status of the account.
azureApiVersion String
The Azure API version of the resource.
createdAt String
Gets the time at which the entity was created.
createdBy String
Gets the creator of the entity.
createdByObjectId String
Gets the creators of the entity's object id.
defaultDomain String
Gets the default domain in the account.
endpoints AccountPropertiesResponseEndpoints
The URIs that are the public endpoints of the account.
friendlyName String
Gets or sets the friendly name.
id String
The provider-assigned unique ID for this managed resource.
managedResources AccountPropertiesResponseManagedResources
Gets the resource identifiers of the managed resources.
name String
Gets or sets the name.
privateEndpointConnections List<PrivateEndpointConnectionResponse>
Gets the private endpoint connections information.
provisioningState String
Gets or sets the state of the provisioning.
systemData TrackedResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type String
Gets or sets the type.
cloudConnectors CloudConnectorsResponse
External Cloud Service connectors
mergeInfo AccountMergeInfoResponse
Gets or sets the Merge Info.
accountStatus AccountPropertiesResponseAccountStatus
Gets or sets the status of the account.
azureApiVersion string
The Azure API version of the resource.
createdAt string
Gets the time at which the entity was created.
createdBy string
Gets the creator of the entity.
createdByObjectId string
Gets the creators of the entity's object id.
defaultDomain string
Gets the default domain in the account.
endpoints AccountPropertiesResponseEndpoints
The URIs that are the public endpoints of the account.
friendlyName string
Gets or sets the friendly name.
id string
The provider-assigned unique ID for this managed resource.
managedResources AccountPropertiesResponseManagedResources
Gets the resource identifiers of the managed resources.
name string
Gets or sets the name.
privateEndpointConnections PrivateEndpointConnectionResponse[]
Gets the private endpoint connections information.
provisioningState string
Gets or sets the state of the provisioning.
systemData TrackedResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type string
Gets or sets the type.
cloudConnectors CloudConnectorsResponse
External Cloud Service connectors
mergeInfo AccountMergeInfoResponse
Gets or sets the Merge Info.
account_status AccountPropertiesResponseAccountStatus
Gets or sets the status of the account.
azure_api_version str
The Azure API version of the resource.
created_at str
Gets the time at which the entity was created.
created_by str
Gets the creator of the entity.
created_by_object_id str
Gets the creators of the entity's object id.
default_domain str
Gets the default domain in the account.
endpoints AccountPropertiesResponseEndpoints
The URIs that are the public endpoints of the account.
friendly_name str
Gets or sets the friendly name.
id str
The provider-assigned unique ID for this managed resource.
managed_resources AccountPropertiesResponseManagedResources
Gets the resource identifiers of the managed resources.
name str
Gets or sets the name.
private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
Gets the private endpoint connections information.
provisioning_state str
Gets or sets the state of the provisioning.
system_data TrackedResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type str
Gets or sets the type.
cloud_connectors CloudConnectorsResponse
External Cloud Service connectors
merge_info AccountMergeInfoResponse
Gets or sets the Merge Info.
accountStatus Property Map
Gets or sets the status of the account.
azureApiVersion String
The Azure API version of the resource.
createdAt String
Gets the time at which the entity was created.
createdBy String
Gets the creator of the entity.
createdByObjectId String
Gets the creators of the entity's object id.
defaultDomain String
Gets the default domain in the account.
endpoints Property Map
The URIs that are the public endpoints of the account.
friendlyName String
Gets or sets the friendly name.
id String
The provider-assigned unique ID for this managed resource.
managedResources Property Map
Gets the resource identifiers of the managed resources.
name String
Gets or sets the name.
privateEndpointConnections List<Property Map>
Gets the private endpoint connections information.
provisioningState String
Gets or sets the state of the provisioning.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
Gets or sets the type.
cloudConnectors Property Map
External Cloud Service connectors
mergeInfo Property Map
Gets or sets the Merge Info.

Supporting Types

AccountMergeInfoResponse
, AccountMergeInfoResponseArgs

AccountLocation This property is required. string
The account location of the other account in the merge operation.
AccountName This property is required. string
The account name of the other account in the merge operation.
AccountResourceGroupName This property is required. string
The resource group name of the other account in the merge operation.
AccountSubscriptionId This property is required. string
The subscription id of the other account in the merge operation.
Deprovisioned This property is required. bool
The deprovisioned status of the account. Only applicable for the secondary account.
MergeStatus This property is required. string
The status of the merge operation.
TypeOfAccount This property is required. string
The account's type for the merge operation.
AccountLocation This property is required. string
The account location of the other account in the merge operation.
AccountName This property is required. string
The account name of the other account in the merge operation.
AccountResourceGroupName This property is required. string
The resource group name of the other account in the merge operation.
AccountSubscriptionId This property is required. string
The subscription id of the other account in the merge operation.
Deprovisioned This property is required. bool
The deprovisioned status of the account. Only applicable for the secondary account.
MergeStatus This property is required. string
The status of the merge operation.
TypeOfAccount This property is required. string
The account's type for the merge operation.
accountLocation This property is required. String
The account location of the other account in the merge operation.
accountName This property is required. String
The account name of the other account in the merge operation.
accountResourceGroupName This property is required. String
The resource group name of the other account in the merge operation.
accountSubscriptionId This property is required. String
The subscription id of the other account in the merge operation.
deprovisioned This property is required. Boolean
The deprovisioned status of the account. Only applicable for the secondary account.
mergeStatus This property is required. String
The status of the merge operation.
typeOfAccount This property is required. String
The account's type for the merge operation.
accountLocation This property is required. string
The account location of the other account in the merge operation.
accountName This property is required. string
The account name of the other account in the merge operation.
accountResourceGroupName This property is required. string
The resource group name of the other account in the merge operation.
accountSubscriptionId This property is required. string
The subscription id of the other account in the merge operation.
deprovisioned This property is required. boolean
The deprovisioned status of the account. Only applicable for the secondary account.
mergeStatus This property is required. string
The status of the merge operation.
typeOfAccount This property is required. string
The account's type for the merge operation.
account_location This property is required. str
The account location of the other account in the merge operation.
account_name This property is required. str
The account name of the other account in the merge operation.
account_resource_group_name This property is required. str
The resource group name of the other account in the merge operation.
account_subscription_id This property is required. str
The subscription id of the other account in the merge operation.
deprovisioned This property is required. bool
The deprovisioned status of the account. Only applicable for the secondary account.
merge_status This property is required. str
The status of the merge operation.
type_of_account This property is required. str
The account's type for the merge operation.
accountLocation This property is required. String
The account location of the other account in the merge operation.
accountName This property is required. String
The account name of the other account in the merge operation.
accountResourceGroupName This property is required. String
The resource group name of the other account in the merge operation.
accountSubscriptionId This property is required. String
The subscription id of the other account in the merge operation.
deprovisioned This property is required. Boolean
The deprovisioned status of the account. Only applicable for the secondary account.
mergeStatus This property is required. String
The status of the merge operation.
typeOfAccount This property is required. String
The account's type for the merge operation.

AccountPropertiesResponseAccountStatus
, AccountPropertiesResponseAccountStatusArgs

AccountProvisioningState This property is required. string
Gets the account status code.
ErrorDetails This property is required. Pulumi.AzureNative.Purview.Inputs.AccountStatusResponseErrorDetails
Gets the account error details.
AccountProvisioningState This property is required. string
Gets the account status code.
ErrorDetails This property is required. AccountStatusResponseErrorDetails
Gets the account error details.
accountProvisioningState This property is required. String
Gets the account status code.
errorDetails This property is required. AccountStatusResponseErrorDetails
Gets the account error details.
accountProvisioningState This property is required. string
Gets the account status code.
errorDetails This property is required. AccountStatusResponseErrorDetails
Gets the account error details.
account_provisioning_state This property is required. str
Gets the account status code.
error_details This property is required. AccountStatusResponseErrorDetails
Gets the account error details.
accountProvisioningState This property is required. String
Gets the account status code.
errorDetails This property is required. Property Map
Gets the account error details.

AccountPropertiesResponseEndpoints
, AccountPropertiesResponseEndpointsArgs

Catalog This property is required. string
Gets the catalog endpoint.
Scan This property is required. string
Gets the scan endpoint.
Catalog This property is required. string
Gets the catalog endpoint.
Scan This property is required. string
Gets the scan endpoint.
catalog This property is required. String
Gets the catalog endpoint.
scan This property is required. String
Gets the scan endpoint.
catalog This property is required. string
Gets the catalog endpoint.
scan This property is required. string
Gets the scan endpoint.
catalog This property is required. str
Gets the catalog endpoint.
scan This property is required. str
Gets the scan endpoint.
catalog This property is required. String
Gets the catalog endpoint.
scan This property is required. String
Gets the scan endpoint.

AccountPropertiesResponseManagedResources
, AccountPropertiesResponseManagedResourcesArgs

EventHubNamespace This property is required. string
Gets the managed event hub namespace resource identifier.
ResourceGroup This property is required. string
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
StorageAccount This property is required. string
Gets the managed storage account resource identifier.
EventHubNamespace This property is required. string
Gets the managed event hub namespace resource identifier.
ResourceGroup This property is required. string
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
StorageAccount This property is required. string
Gets the managed storage account resource identifier.
eventHubNamespace This property is required. String
Gets the managed event hub namespace resource identifier.
resourceGroup This property is required. String
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
storageAccount This property is required. String
Gets the managed storage account resource identifier.
eventHubNamespace This property is required. string
Gets the managed event hub namespace resource identifier.
resourceGroup This property is required. string
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
storageAccount This property is required. string
Gets the managed storage account resource identifier.
event_hub_namespace This property is required. str
Gets the managed event hub namespace resource identifier.
resource_group This property is required. str
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
storage_account This property is required. str
Gets the managed storage account resource identifier.
eventHubNamespace This property is required. String
Gets the managed event hub namespace resource identifier.
resourceGroup This property is required. String
Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
storageAccount This property is required. String
Gets the managed storage account resource identifier.

AccountResponseSku
, AccountResponseSkuArgs

Capacity int
Gets or sets the sku capacity.
Name string
Gets or sets the sku name.
Capacity int
Gets or sets the sku capacity.
Name string
Gets or sets the sku name.
capacity Integer
Gets or sets the sku capacity.
name String
Gets or sets the sku name.
capacity number
Gets or sets the sku capacity.
name string
Gets or sets the sku name.
capacity int
Gets or sets the sku capacity.
name str
Gets or sets the sku name.
capacity Number
Gets or sets the sku capacity.
name String
Gets or sets the sku name.

AccountSku
, AccountSkuArgs

Capacity int
Gets or sets the sku capacity.
Name string | Pulumi.AzureNative.Purview.AccountSkuName
Gets or sets the sku name.
Capacity int
Gets or sets the sku capacity.
Name string | AccountSkuName
Gets or sets the sku name.
capacity Integer
Gets or sets the sku capacity.
name String | AccountSkuName
Gets or sets the sku name.
capacity number
Gets or sets the sku capacity.
name string | AccountSkuName
Gets or sets the sku name.
capacity int
Gets or sets the sku capacity.
name str | AccountSkuName
Gets or sets the sku name.
capacity Number
Gets or sets the sku capacity.
name String | "Standard" | "Free"
Gets or sets the sku name.

AccountSkuName
, AccountSkuNameArgs

Standard
Standard
Free
Free
AccountSkuNameStandard
Standard
AccountSkuNameFree
Free
Standard
Standard
Free
Free
Standard
Standard
Free
Free
STANDARD
Standard
FREE
Free
"Standard"
Standard
"Free"
Free

AccountStatusResponseErrorDetails
, AccountStatusResponseErrorDetailsArgs

Code This property is required. string
Gets or sets the code.
Details This property is required. List<Pulumi.AzureNative.Purview.Inputs.ErrorModelResponse>
Gets or sets the details.
Message This property is required. string
Gets or sets the messages.
Target This property is required. string
Gets or sets the target.
Code This property is required. string
Gets or sets the code.
Details This property is required. []ErrorModelResponse
Gets or sets the details.
Message This property is required. string
Gets or sets the messages.
Target This property is required. string
Gets or sets the target.
code This property is required. String
Gets or sets the code.
details This property is required. List<ErrorModelResponse>
Gets or sets the details.
message This property is required. String
Gets or sets the messages.
target This property is required. String
Gets or sets the target.
code This property is required. string
Gets or sets the code.
details This property is required. ErrorModelResponse[]
Gets or sets the details.
message This property is required. string
Gets or sets the messages.
target This property is required. string
Gets or sets the target.
code This property is required. str
Gets or sets the code.
details This property is required. Sequence[ErrorModelResponse]
Gets or sets the details.
message This property is required. str
Gets or sets the messages.
target This property is required. str
Gets or sets the target.
code This property is required. String
Gets or sets the code.
details This property is required. List<Property Map>
Gets or sets the details.
message This property is required. String
Gets or sets the messages.
target This property is required. String
Gets or sets the target.

CloudConnectorsResponse
, CloudConnectorsResponseArgs

AwsExternalId This property is required. string
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
AwsExternalId This property is required. string
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
awsExternalId This property is required. String
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
awsExternalId This property is required. string
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
aws_external_id This property is required. str
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
awsExternalId This property is required. String
AWS external identifier. Configured in AWS to allow use of the role arn used for scanning

ErrorModelResponse
, ErrorModelResponseArgs

Code This property is required. string
Gets or sets the code.
Details This property is required. List<Pulumi.AzureNative.Purview.Inputs.ErrorModelResponse>
Gets or sets the details.
Message This property is required. string
Gets or sets the messages.
Target This property is required. string
Gets or sets the target.
Code This property is required. string
Gets or sets the code.
Details This property is required. []ErrorModelResponse
Gets or sets the details.
Message This property is required. string
Gets or sets the messages.
Target This property is required. string
Gets or sets the target.
code This property is required. String
Gets or sets the code.
details This property is required. List<ErrorModelResponse>
Gets or sets the details.
message This property is required. String
Gets or sets the messages.
target This property is required. String
Gets or sets the target.
code This property is required. string
Gets or sets the code.
details This property is required. ErrorModelResponse[]
Gets or sets the details.
message This property is required. string
Gets or sets the messages.
target This property is required. string
Gets or sets the target.
code This property is required. str
Gets or sets the code.
details This property is required. Sequence[ErrorModelResponse]
Gets or sets the details.
message This property is required. str
Gets or sets the messages.
target This property is required. str
Gets or sets the target.
code This property is required. String
Gets or sets the code.
details This property is required. List<Property Map>
Gets or sets the details.
message This property is required. String
Gets or sets the messages.
target This property is required. String
Gets or sets the target.

Identity
, IdentityArgs

Type string | Pulumi.AzureNative.Purview.ManagedIdentityType
Identity Type
UserAssignedIdentities List<string>
User Assigned Identities
Type string | ManagedIdentityType
Identity Type
UserAssignedIdentities []string
User Assigned Identities
type String | ManagedIdentityType
Identity Type
userAssignedIdentities List<String>
User Assigned Identities
type string | ManagedIdentityType
Identity Type
userAssignedIdentities string[]
User Assigned Identities
type str | ManagedIdentityType
Identity Type
user_assigned_identities Sequence[str]
User Assigned Identities
type String | "None" | "SystemAssigned" | "UserAssigned"
Identity Type
userAssignedIdentities List<String>
User Assigned Identities

IdentityResponse
, IdentityResponseArgs

PrincipalId This property is required. string
Service principal object Id
TenantId This property is required. string
Tenant Id
Type string
Identity Type
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Purview.Inputs.UserAssignedIdentityResponse>
User Assigned Identities
PrincipalId This property is required. string
Service principal object Id
TenantId This property is required. string
Tenant Id
Type string
Identity Type
UserAssignedIdentities map[string]UserAssignedIdentityResponse
User Assigned Identities
principalId This property is required. String
Service principal object Id
tenantId This property is required. String
Tenant Id
type String
Identity Type
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
User Assigned Identities
principalId This property is required. string
Service principal object Id
tenantId This property is required. string
Tenant Id
type string
Identity Type
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
User Assigned Identities
principal_id This property is required. str
Service principal object Id
tenant_id This property is required. str
Tenant Id
type str
Identity Type
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
User Assigned Identities
principalId This property is required. String
Service principal object Id
tenantId This property is required. String
Tenant Id
type String
Identity Type
userAssignedIdentities Map<Property Map>
User Assigned Identities

IngestionStorage
, IngestionStorageArgs

PublicNetworkAccess string | Pulumi.AzureNative.Purview.PublicNetworkAccess
Gets or sets the public network access setting
PublicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access setting
publicNetworkAccess String | PublicNetworkAccess
Gets or sets the public network access setting
publicNetworkAccess string | PublicNetworkAccess
Gets or sets the public network access setting
public_network_access str | PublicNetworkAccess
Gets or sets the public network access setting
publicNetworkAccess String | "NotSpecified" | "Enabled" | "Disabled"
Gets or sets the public network access setting

IngestionStorageResponse
, IngestionStorageResponseArgs

Id This property is required. string
Gets or sets the Id.
PrimaryEndpoint This property is required. string
Gets or sets the primary endpoint.
PublicNetworkAccess string
Gets or sets the public network access setting
Id This property is required. string
Gets or sets the Id.
PrimaryEndpoint This property is required. string
Gets or sets the primary endpoint.
PublicNetworkAccess string
Gets or sets the public network access setting
id This property is required. String
Gets or sets the Id.
primaryEndpoint This property is required. String
Gets or sets the primary endpoint.
publicNetworkAccess String
Gets or sets the public network access setting
id This property is required. string
Gets or sets the Id.
primaryEndpoint This property is required. string
Gets or sets the primary endpoint.
publicNetworkAccess string
Gets or sets the public network access setting
id This property is required. str
Gets or sets the Id.
primary_endpoint This property is required. str
Gets or sets the primary endpoint.
public_network_access str
Gets or sets the public network access setting
id This property is required. String
Gets or sets the Id.
primaryEndpoint This property is required. String
Gets or sets the primary endpoint.
publicNetworkAccess String
Gets or sets the public network access setting

ManagedEventHubState
, ManagedEventHubStateArgs

NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
ManagedEventHubStateNotSpecified
NotSpecified
ManagedEventHubStateDisabled
Disabled
ManagedEventHubStateEnabled
Enabled
NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
NOT_SPECIFIED
NotSpecified
DISABLED
Disabled
ENABLED
Enabled
"NotSpecified"
NotSpecified
"Disabled"
Disabled
"Enabled"
Enabled

ManagedIdentityType
, ManagedIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
ManagedIdentityTypeNone
None
ManagedIdentityTypeSystemAssigned
SystemAssigned
ManagedIdentityTypeUserAssigned
UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

Id This property is required. string
Gets or sets the identifier.
Name This property is required. string
Gets or sets the name.
ProvisioningState This property is required. string
The provisioning state.
SystemData This property is required. Pulumi.AzureNative.Purview.Inputs.ProxyResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
Type This property is required. string
Gets or sets the type.
PrivateEndpoint Pulumi.AzureNative.Purview.Inputs.PrivateEndpointResponse
The private endpoint information.
PrivateLinkServiceConnectionState Pulumi.AzureNative.Purview.Inputs.PrivateLinkServiceConnectionStateResponse
The private link service connection state.
Id This property is required. string
Gets or sets the identifier.
Name This property is required. string
Gets or sets the name.
ProvisioningState This property is required. string
The provisioning state.
SystemData This property is required. ProxyResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
Type This property is required. string
Gets or sets the type.
PrivateEndpoint PrivateEndpointResponse
The private endpoint information.
PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
The private link service connection state.
id This property is required. String
Gets or sets the identifier.
name This property is required. String
Gets or sets the name.
provisioningState This property is required. String
The provisioning state.
systemData This property is required. ProxyResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type This property is required. String
Gets or sets the type.
privateEndpoint PrivateEndpointResponse
The private endpoint information.
privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
The private link service connection state.
id This property is required. string
Gets or sets the identifier.
name This property is required. string
Gets or sets the name.
provisioningState This property is required. string
The provisioning state.
systemData This property is required. ProxyResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type This property is required. string
Gets or sets the type.
privateEndpoint PrivateEndpointResponse
The private endpoint information.
privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
The private link service connection state.
id This property is required. str
Gets or sets the identifier.
name This property is required. str
Gets or sets the name.
provisioning_state This property is required. str
The provisioning state.
system_data This property is required. ProxyResourceResponseSystemData
Metadata pertaining to creation and last modification of the resource.
type This property is required. str
Gets or sets the type.
private_endpoint PrivateEndpointResponse
The private endpoint information.
private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
The private link service connection state.
id This property is required. String
Gets or sets the identifier.
name This property is required. String
Gets or sets the name.
provisioningState This property is required. String
The provisioning state.
systemData This property is required. Property Map
Metadata pertaining to creation and last modification of the resource.
type This property is required. String
Gets or sets the type.
privateEndpoint Property Map
The private endpoint information.
privateLinkServiceConnectionState Property Map
The private link service connection state.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id string
The private endpoint identifier.
Id string
The private endpoint identifier.
id String
The private endpoint identifier.
id string
The private endpoint identifier.
id str
The private endpoint identifier.
id String
The private endpoint identifier.

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
The required actions.
Description string
The description.
Status string
The status.
ActionsRequired string
The required actions.
Description string
The description.
Status string
The status.
actionsRequired String
The required actions.
description String
The description.
status String
The status.
actionsRequired string
The required actions.
description string
The description.
status string
The status.
actions_required str
The required actions.
description str
The description.
status str
The status.
actionsRequired String
The required actions.
description String
The description.
status String
The status.

ProxyResourceResponseSystemData
, ProxyResourceResponseSystemDataArgs

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

PublicNetworkAccess
, PublicNetworkAccessArgs

NotSpecified
NotSpecified
Enabled
Enabled
Disabled
Disabled
PublicNetworkAccessNotSpecified
NotSpecified
PublicNetworkAccessEnabled
Enabled
PublicNetworkAccessDisabled
Disabled
NotSpecified
NotSpecified
Enabled
Enabled
Disabled
Disabled
NotSpecified
NotSpecified
Enabled
Enabled
Disabled
Disabled
NOT_SPECIFIED
NotSpecified
ENABLED
Enabled
DISABLED
Disabled
"NotSpecified"
NotSpecified
"Enabled"
Enabled
"Disabled"
Disabled

TenantEndpointState
, TenantEndpointStateArgs

NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
TenantEndpointStateNotSpecified
NotSpecified
TenantEndpointStateDisabled
Disabled
TenantEndpointStateEnabled
Enabled
NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
NotSpecified
NotSpecified
Disabled
Disabled
Enabled
Enabled
NOT_SPECIFIED
NotSpecified
DISABLED
Disabled
ENABLED
Enabled
"NotSpecified"
NotSpecified
"Disabled"
Disabled
"Enabled"
Enabled

TrackedResourceResponseSystemData
, TrackedResourceResponseSystemDataArgs

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

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
Gets or Sets Client ID
PrincipalId This property is required. string
Gets or Sets Principal ID
ClientId This property is required. string
Gets or Sets Client ID
PrincipalId This property is required. string
Gets or Sets Principal ID
clientId This property is required. String
Gets or Sets Client ID
principalId This property is required. String
Gets or Sets Principal ID
clientId This property is required. string
Gets or Sets Client ID
principalId This property is required. string
Gets or Sets Principal ID
client_id This property is required. str
Gets or Sets Client ID
principal_id This property is required. str
Gets or Sets Principal ID
clientId This property is required. String
Gets or Sets Client ID
principalId This property is required. String
Gets or Sets Principal ID

Import

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

$ pulumi import azure-native:purview:Account account1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Purview/accounts/{accountName} 
Copy

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

Package Details

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