Account

class Account : KotlinCustomResource

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/#accessing-any-api-version-via-local-packages 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",
});
});
package main
import (
purview "github.com/pulumi/pulumi-azure-native-sdk/purview/v2"
"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
})
}
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());
}
}

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}

Properties

Link copied to clipboard

Gets or sets the status of the account.

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard

External Cloud Service connectors

Link copied to clipboard
val createdAt: Output<String>

Gets the time at which the entity was created.

Link copied to clipboard
val createdBy: Output<String>

Gets the creator of the entity.

Link copied to clipboard

Gets the creators of the entity's object id.

Link copied to clipboard
val defaultDomain: Output<String>

Gets the default domain in the account.

Link copied to clipboard

The URIs that are the public endpoints of the account.

Link copied to clipboard
val friendlyName: Output<String>

Gets or sets the friendly name.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The Managed Identity of the resource

Link copied to clipboard

Ingestion Storage Account Info

Link copied to clipboard
val location: Output<String>?

Gets or sets the location.

Link copied to clipboard

Gets or sets the state of managed eventhub. If enabled managed eventhub will be created, if disabled the managed eventhub will be removed.

Link copied to clipboard

Gets or sets the managed resource group name

Link copied to clipboard

Gets the resource identifiers of the managed resources.

Link copied to clipboard

Gets or sets the public network access for managed resources.

Link copied to clipboard

Gets or sets the Merge Info.

Link copied to clipboard
val name: Output<String>

Gets or sets the name.

Link copied to clipboard

Gets the private endpoint connections information.

Link copied to clipboard

Gets or sets the state of the provisioning.

Link copied to clipboard

Gets or sets the public network access.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val sku: Output<AccountResponseSku>?

Gets or sets the Sku.

Link copied to clipboard

Metadata pertaining to creation and last modification of the resource.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Tags on the azure resource.

Link copied to clipboard

Gets or sets the state of tenant endpoint.

Link copied to clipboard
val type: Output<String>

Gets or sets the type.

Link copied to clipboard
val urn: Output<String>