import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Purview Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleAccount = new azure.purview.Account("example", { * name: "example", * resourceGroupName: example.name, * location: example.location, * identity: { * type: "SystemAssigned", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Purview` - 2021-12-01 * * ## Import * * Purview Accounts can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:purview/account:Account example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Purview/accounts/account1 * ``` */ export declare class Account extends pulumi.CustomResource { /** * Get an existing Account resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AccountState, opts?: pulumi.CustomResourceOptions): Account; /** * Returns true if the given object is an instance of Account. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Account; /** * Atlas Kafka endpoint primary connection string. */ readonly atlasKafkaEndpointPrimaryConnectionString: pulumi.Output; /** * Atlas Kafka endpoint secondary connection string. */ readonly atlasKafkaEndpointSecondaryConnectionString: pulumi.Output; /** * Configured in AWS to allow use of the role arn used for scanning */ readonly awsExternalId: pulumi.Output; /** * Catalog endpoint. */ readonly catalogEndpoint: pulumi.Output; /** * Guardian endpoint. */ readonly guardianEndpoint: pulumi.Output; /** * An `identity` block as defined below. */ readonly identity: pulumi.Output; /** * The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ readonly location: pulumi.Output; /** * Whether the Purview Account should create a managed Event Hub Namespace. Defaults to `true`. * * > **Note:** `managedEventHubEnabled` must be `false` in order to use a Kafka Configuration with the Purview Account. */ readonly managedEventHubEnabled: pulumi.Output; /** * 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. * * > **Note:** `managedResourceGroupName` must be a new Resource Group. */ readonly managedResourceGroupName: pulumi.Output; /** * A `managedResources` block as defined below. */ readonly managedResources: pulumi.Output; /** * The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created. */ readonly name: pulumi.Output; /** * Should the Purview Account be visible to the public network? Defaults to `true`. */ readonly publicNetworkEnabled: pulumi.Output; /** * The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ readonly resourceGroupName: pulumi.Output; /** * Scan endpoint. */ readonly scanEndpoint: pulumi.Output; /** * A mapping of tags which should be assigned to the Purview Account. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Account resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AccountArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Account resources. */ export interface AccountState { /** * Atlas Kafka endpoint primary connection string. */ atlasKafkaEndpointPrimaryConnectionString?: pulumi.Input; /** * Atlas Kafka endpoint secondary connection string. */ atlasKafkaEndpointSecondaryConnectionString?: pulumi.Input; /** * Configured in AWS to allow use of the role arn used for scanning */ awsExternalId?: pulumi.Input; /** * Catalog endpoint. */ catalogEndpoint?: pulumi.Input; /** * Guardian endpoint. */ guardianEndpoint?: pulumi.Input; /** * An `identity` block as defined below. */ identity?: pulumi.Input; /** * The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ location?: pulumi.Input; /** * Whether the Purview Account should create a managed Event Hub Namespace. Defaults to `true`. * * > **Note:** `managedEventHubEnabled` must be `false` in order to use a Kafka Configuration with the Purview Account. */ managedEventHubEnabled?: pulumi.Input; /** * 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. * * > **Note:** `managedResourceGroupName` must be a new Resource Group. */ managedResourceGroupName?: pulumi.Input; /** * A `managedResources` block as defined below. */ managedResources?: pulumi.Input[]>; /** * The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created. */ name?: pulumi.Input; /** * Should the Purview Account be visible to the public network? Defaults to `true`. */ publicNetworkEnabled?: pulumi.Input; /** * The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ resourceGroupName?: pulumi.Input; /** * Scan endpoint. */ scanEndpoint?: pulumi.Input; /** * A mapping of tags which should be assigned to the Purview Account. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Account resource. */ export interface AccountArgs { /** * An `identity` block as defined below. */ identity: pulumi.Input; /** * The Azure Region where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ location?: pulumi.Input; /** * Whether the Purview Account should create a managed Event Hub Namespace. Defaults to `true`. * * > **Note:** `managedEventHubEnabled` must be `false` in order to use a Kafka Configuration with the Purview Account. */ managedEventHubEnabled?: pulumi.Input; /** * 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. * * > **Note:** `managedResourceGroupName` must be a new Resource Group. */ managedResourceGroupName?: pulumi.Input; /** * The name which should be used for this Purview Account. Changing this forces a new Purview Account to be created. */ name?: pulumi.Input; /** * Should the Purview Account be visible to the public network? Defaults to `true`. */ publicNetworkEnabled?: pulumi.Input; /** * The name of the Resource Group where the Purview Account should exist. Changing this forces a new Purview Account to be created. */ resourceGroupName: pulumi.Input; /** * A mapping of tags which should be assigned to the Purview Account. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }