azure-native.purview.Account
Explore with Pulumi AI
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.
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",
});
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"),
})
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());
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")
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",
});
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
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 Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Account
Name Changes to this property will trigger replacement.
- The name of the account.
- Identity
Pulumi.
Azure Native. Purview. Inputs. Identity - The Managed Identity of the resource
- Ingestion
Storage Pulumi.Azure Native. Purview. Inputs. Ingestion Storage - Ingestion Storage Account Info
- Location string
- Gets or sets the location.
- Managed
Event string | Pulumi.Hub State Azure Native. Purview. Managed Event Hub State - 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.
- Gets or sets the managed resource group name
- Managed
Resources string | Pulumi.Public Network Access Azure Native. Purview. Public Network Access - Gets or sets the public network access for managed resources.
- Public
Network string | Pulumi.Access Azure Native. Purview. Public Network Access - Gets or sets the public network access.
- Sku
Pulumi.
Azure Native. Purview. Inputs. Account Sku - Gets or sets the Sku.
- Dictionary<string, string>
- Tags on the azure resource.
- Tenant
Endpoint string | Pulumi.State Azure Native. Purview. Tenant Endpoint State - Gets or sets the state of tenant endpoint.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Account
Name Changes to this property will trigger replacement.
- The name of the account.
- Identity
Identity
Args - The Managed Identity of the resource
- Ingestion
Storage IngestionStorage Args - Ingestion Storage Account Info
- Location string
- Gets or sets the location.
- Managed
Event string | ManagedHub State Event Hub State - 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.
- Gets or sets the managed resource group name
- Managed
Resources string | PublicPublic Network Access Network Access - Gets or sets the public network access for managed resources.
- Public
Network string | PublicAccess Network Access - Gets or sets the public network access.
- Sku
Account
Sku Args - Gets or sets the Sku.
- map[string]string
- Tags on the azure resource.
- Tenant
Endpoint string | TenantState Endpoint State - Gets or sets the state of tenant endpoint.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- account
Name Changes to this property will trigger replacement.
- The name of the account.
- identity Identity
- The Managed Identity of the resource
- ingestion
Storage IngestionStorage - Ingestion Storage Account Info
- location String
- Gets or sets the location.
- managed
Event String | ManagedHub State Event Hub State - 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.
- Gets or sets the managed resource group name
- managed
Resources String | PublicPublic Network Access Network Access - Gets or sets the public network access for managed resources.
- public
Network String | PublicAccess Network Access - Gets or sets the public network access.
- sku
Account
Sku - Gets or sets the Sku.
- Map<String,String>
- Tags on the azure resource.
- tenant
Endpoint String | TenantState Endpoint State - Gets or sets the state of tenant endpoint.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- account
Name Changes to this property will trigger replacement.
- The name of the account.
- identity Identity
- The Managed Identity of the resource
- ingestion
Storage IngestionStorage - Ingestion Storage Account Info
- location string
- Gets or sets the location.
- managed
Event string | ManagedHub State Event Hub State - 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.
- Gets or sets the managed resource group name
- managed
Resources string | PublicPublic Network Access Network Access - Gets or sets the public network access for managed resources.
- public
Network string | PublicAccess Network Access - Gets or sets the public network access.
- sku
Account
Sku - Gets or sets the Sku.
- {[key: string]: string}
- Tags on the azure resource.
- tenant
Endpoint string | TenantState Endpoint State - Gets or sets the state of tenant endpoint.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- account_
name Changes to this property will trigger replacement.
- The name of the account.
- identity
Identity
Args - The Managed Identity of the resource
- ingestion_
storage IngestionStorage Args - Ingestion Storage Account Info
- location str
- Gets or sets the location.
- managed_
event_ str | Managedhub_ state Event Hub State - 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.
- Gets or sets the managed resource group name
- managed_
resources_ str | Publicpublic_ network_ access Network Access - Gets or sets the public network access for managed resources.
- public_
network_ str | Publicaccess Network Access - Gets or sets the public network access.
- sku
Account
Sku Args - Gets or sets the Sku.
- Mapping[str, str]
- Tags on the azure resource.
- tenant_
endpoint_ str | Tenantstate Endpoint State - Gets or sets the state of tenant endpoint.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- account
Name Changes to this property will trigger replacement.
- The name of the account.
- identity Property Map
- The Managed Identity of the resource
- ingestion
Storage Property Map - Ingestion Storage Account Info
- location String
- Gets or sets the location.
- managed
Event String | "NotHub State Specified" | "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.
- managed
Resource Group Name Changes to this property will trigger replacement.
- Gets or sets the managed resource group name
- managed
Resources String | "NotPublic Network Access Specified" | "Enabled" | "Disabled" - Gets or sets the public network access for managed resources.
- public
Network String | "NotAccess Specified" | "Enabled" | "Disabled" - Gets or sets the public network access.
- sku Property Map
- Gets or sets the Sku.
- Map<String>
- Tags on the azure resource.
- tenant
Endpoint String | "NotState Specified" | "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:
- Account
Status Pulumi.Azure Native. Purview. Outputs. Account Properties Response Account Status - Gets or sets the status of the account.
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
At string - Gets the time at which the entity was created.
- Created
By string - Gets the creator of the entity.
- Created
By stringObject Id - Gets the creators of the entity's object id.
- Default
Domain string - Gets the default domain in the account.
- Endpoints
Pulumi.
Azure Native. Purview. Outputs. Account Properties Response Endpoints - The URIs that are the public endpoints of the account.
- Friendly
Name string - Gets or sets the friendly name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Resources Pulumi.Azure Native. Purview. Outputs. Account Properties Response Managed Resources - Gets the resource identifiers of the managed resources.
- Name string
- Gets or sets the name.
- Private
Endpoint List<Pulumi.Connections Azure Native. Purview. Outputs. Private Endpoint Connection Response> - Gets the private endpoint connections information.
- Provisioning
State string - Gets or sets the state of the provisioning.
- System
Data Pulumi.Azure Native. Purview. Outputs. Tracked Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type string
- Gets or sets the type.
- Cloud
Connectors Pulumi.Azure Native. Purview. Outputs. Cloud Connectors Response - External Cloud Service connectors
- Merge
Info Pulumi.Azure Native. Purview. Outputs. Account Merge Info Response - Gets or sets the Merge Info.
- Account
Status AccountProperties Response Account Status - Gets or sets the status of the account.
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
At string - Gets the time at which the entity was created.
- Created
By string - Gets the creator of the entity.
- Created
By stringObject Id - Gets the creators of the entity's object id.
- Default
Domain string - Gets the default domain in the account.
- Endpoints
Account
Properties Response Endpoints - The URIs that are the public endpoints of the account.
- Friendly
Name string - Gets or sets the friendly name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Resources AccountProperties Response Managed Resources - Gets the resource identifiers of the managed resources.
- Name string
- Gets or sets the name.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - Gets the private endpoint connections information.
- Provisioning
State string - Gets or sets the state of the provisioning.
- System
Data TrackedResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type string
- Gets or sets the type.
- Cloud
Connectors CloudConnectors Response - External Cloud Service connectors
- Merge
Info AccountMerge Info Response - Gets or sets the Merge Info.
- account
Status AccountProperties Response Account Status - Gets or sets the status of the account.
- azure
Api StringVersion - The Azure API version of the resource.
- created
At String - Gets the time at which the entity was created.
- created
By String - Gets the creator of the entity.
- created
By StringObject Id - Gets the creators of the entity's object id.
- default
Domain String - Gets the default domain in the account.
- endpoints
Account
Properties Response Endpoints - The URIs that are the public endpoints of the account.
- friendly
Name String - Gets or sets the friendly name.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Resources AccountProperties Response Managed Resources - Gets the resource identifiers of the managed resources.
- name String
- Gets or sets the name.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - Gets the private endpoint connections information.
- provisioning
State String - Gets or sets the state of the provisioning.
- system
Data TrackedResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type String
- Gets or sets the type.
- cloud
Connectors CloudConnectors Response - External Cloud Service connectors
- merge
Info AccountMerge Info Response - Gets or sets the Merge Info.
- account
Status AccountProperties Response Account Status - Gets or sets the status of the account.
- azure
Api stringVersion - The Azure API version of the resource.
- created
At string - Gets the time at which the entity was created.
- created
By string - Gets the creator of the entity.
- created
By stringObject Id - Gets the creators of the entity's object id.
- default
Domain string - Gets the default domain in the account.
- endpoints
Account
Properties Response Endpoints - The URIs that are the public endpoints of the account.
- friendly
Name string - Gets or sets the friendly name.
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Resources AccountProperties Response Managed Resources - Gets the resource identifiers of the managed resources.
- name string
- Gets or sets the name.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - Gets the private endpoint connections information.
- provisioning
State string - Gets or sets the state of the provisioning.
- system
Data TrackedResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type string
- Gets or sets the type.
- cloud
Connectors CloudConnectors Response - External Cloud Service connectors
- merge
Info AccountMerge Info Response - Gets or sets the Merge Info.
- account_
status AccountProperties Response Account Status - Gets or sets the status of the account.
- azure_
api_ strversion - 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_ strobject_ id - Gets the creators of the entity's object id.
- default_
domain str - Gets the default domain in the account.
- endpoints
Account
Properties Response Endpoints - 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 AccountProperties Response Managed Resources - Gets the resource identifiers of the managed resources.
- name str
- Gets or sets the name.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - Gets the private endpoint connections information.
- provisioning_
state str - Gets or sets the state of the provisioning.
- system_
data TrackedResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type str
- Gets or sets the type.
- cloud_
connectors CloudConnectors Response - External Cloud Service connectors
- merge_
info AccountMerge Info Response - Gets or sets the Merge Info.
- account
Status Property Map - Gets or sets the status of the account.
- azure
Api StringVersion - The Azure API version of the resource.
- created
At String - Gets the time at which the entity was created.
- created
By String - Gets the creator of the entity.
- created
By StringObject Id - Gets the creators of the entity's object id.
- default
Domain String - Gets the default domain in the account.
- endpoints Property Map
- The URIs that are the public endpoints of the account.
- friendly
Name String - Gets or sets the friendly name.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Resources Property Map - Gets the resource identifiers of the managed resources.
- name String
- Gets or sets the name.
- private
Endpoint List<Property Map>Connections - Gets the private endpoint connections information.
- provisioning
State String - Gets or sets the state of the provisioning.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Gets or sets the type.
- cloud
Connectors Property Map - External Cloud Service connectors
- merge
Info Property Map - Gets or sets the Merge Info.
Supporting Types
AccountMergeInfoResponse, AccountMergeInfoResponseArgs
- Account
Location This property is required. string - The account location of the other account in the merge operation.
- Account
Name This property is required. string - The account name of the other account in the merge operation.
- Account
Resource Group Name This property is required. string - The resource group name of the other account in the merge operation.
- Account
Subscription Id 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.
- Merge
Status This property is required. string - The status of the merge operation.
- Type
Of Account This property is required. string - The account's type for the merge operation.
- Account
Location This property is required. string - The account location of the other account in the merge operation.
- Account
Name This property is required. string - The account name of the other account in the merge operation.
- Account
Resource Group Name This property is required. string - The resource group name of the other account in the merge operation.
- Account
Subscription Id 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.
- Merge
Status This property is required. string - The status of the merge operation.
- Type
Of Account This property is required. string - The account's type for the merge operation.
- account
Location This property is required. String - The account location of the other account in the merge operation.
- account
Name This property is required. String - The account name of the other account in the merge operation.
- account
Resource Group Name This property is required. String - The resource group name of the other account in the merge operation.
- account
Subscription Id 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.
- merge
Status This property is required. String - The status of the merge operation.
- type
Of Account This property is required. String - The account's type for the merge operation.
- account
Location This property is required. string - The account location of the other account in the merge operation.
- account
Name This property is required. string - The account name of the other account in the merge operation.
- account
Resource Group Name This property is required. string - The resource group name of the other account in the merge operation.
- account
Subscription Id 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.
- merge
Status This property is required. string - The status of the merge operation.
- type
Of Account 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.
- account
Location This property is required. String - The account location of the other account in the merge operation.
- account
Name This property is required. String - The account name of the other account in the merge operation.
- account
Resource Group Name This property is required. String - The resource group name of the other account in the merge operation.
- account
Subscription Id 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.
- merge
Status This property is required. String - The status of the merge operation.
- type
Of Account This property is required. String - The account's type for the merge operation.
AccountPropertiesResponseAccountStatus, AccountPropertiesResponseAccountStatusArgs
- Account
Provisioning State This property is required. string - Gets the account status code.
- Error
Details This property is required. Pulumi.Azure Native. Purview. Inputs. Account Status Response Error Details - Gets the account error details.
- Account
Provisioning State This property is required. string - Gets the account status code.
- Error
Details This property is required. AccountStatus Response Error Details - Gets the account error details.
- account
Provisioning State This property is required. String - Gets the account status code.
- error
Details This property is required. AccountStatus Response Error Details - Gets the account error details.
- account
Provisioning State This property is required. string - Gets the account status code.
- error
Details This property is required. AccountStatus Response Error Details - Gets the account error details.
- account_
provisioning_ state This property is required. str - Gets the account status code.
- error_
details This property is required. AccountStatus Response Error Details - Gets the account error details.
- account
Provisioning State This property is required. String - Gets the account status code.
- error
Details This property is required. Property Map - Gets the account error details.
AccountPropertiesResponseEndpoints, AccountPropertiesResponseEndpointsArgs
AccountPropertiesResponseManagedResources, AccountPropertiesResponseManagedResourcesArgs
- Event
Hub Namespace This property is required. string - Gets the managed event hub namespace resource identifier.
- Resource
Group This property is required. string - Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
- Storage
Account This property is required. string - Gets the managed storage account resource identifier.
- Event
Hub Namespace This property is required. string - Gets the managed event hub namespace resource identifier.
- Resource
Group This property is required. string - Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
- Storage
Account This property is required. string - Gets the managed storage account resource identifier.
- event
Hub Namespace This property is required. String - Gets the managed event hub namespace resource identifier.
- resource
Group This property is required. String - Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
- storage
Account This property is required. String - Gets the managed storage account resource identifier.
- event
Hub Namespace This property is required. string - Gets the managed event hub namespace resource identifier.
- resource
Group This property is required. string - Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
- storage
Account 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.
- event
Hub Namespace This property is required. String - Gets the managed event hub namespace resource identifier.
- resource
Group This property is required. String - Gets the managed resource group resource identifier. This resource group will host resource dependencies for the account.
- storage
Account This property is required. String - Gets the managed storage account resource identifier.
AccountResponseSku, AccountResponseSkuArgs
AccountSku, AccountSkuArgs
- Capacity int
- Gets or sets the sku capacity.
- Name
string | Pulumi.
Azure Native. Purview. Account Sku Name - Gets or sets the sku name.
- Capacity int
- Gets or sets the sku capacity.
- Name
string | Account
Sku Name - Gets or sets the sku name.
- capacity Integer
- Gets or sets the sku capacity.
- name
String | Account
Sku Name - Gets or sets the sku name.
- capacity number
- Gets or sets the sku capacity.
- name
string | Account
Sku Name - Gets or sets the sku name.
- capacity int
- Gets or sets the sku capacity.
- name
str | Account
Sku Name - 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
- Account
Sku Name Standard - Standard
- Account
Sku Name Free - 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.Azure Native. Purview. Inputs. Error Model Response> - 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. []ErrorModel Response - 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<ErrorModel Response> - 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. ErrorModel Response[] - 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[ErrorModel Response] - 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
- Aws
External Id 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. string - AWS external identifier. Configured in AWS to allow use of the role arn used for scanning
- aws
External Id 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. 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
- aws
External Id 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.Azure Native. Purview. Inputs. Error Model Response> - 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. []ErrorModel Response - 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<ErrorModel Response> - 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. ErrorModel Response[] - 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[ErrorModel Response] - 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.
Azure Native. Purview. Managed Identity Type - Identity Type
- User
Assigned List<string>Identities - User Assigned Identities
- Type
string | Managed
Identity Type - Identity Type
- User
Assigned []stringIdentities - User Assigned Identities
- type
String | Managed
Identity Type - Identity Type
- user
Assigned List<String>Identities - User Assigned Identities
- type
string | Managed
Identity Type - Identity Type
- user
Assigned string[]Identities - User Assigned Identities
- type
str | Managed
Identity Type - Identity Type
- user_
assigned_ Sequence[str]identities - User Assigned Identities
- type
String | "None" | "System
Assigned" | "User Assigned" - Identity Type
- user
Assigned List<String>Identities - User Assigned Identities
IdentityResponse, IdentityResponseArgs
- Principal
Id This property is required. string - Service principal object Id
- Tenant
Id This property is required. string - Tenant Id
- Type string
- Identity Type
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Purview. Inputs. User Assigned Identity Response> - User Assigned Identities
- Principal
Id This property is required. string - Service principal object Id
- Tenant
Id This property is required. string - Tenant Id
- Type string
- Identity Type
- User
Assigned map[string]UserIdentities Assigned Identity Response - User Assigned Identities
- principal
Id This property is required. String - Service principal object Id
- tenant
Id This property is required. String - Tenant Id
- type String
- Identity Type
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - User Assigned Identities
- principal
Id This property is required. string - Service principal object Id
- tenant
Id This property is required. string - Tenant Id
- type string
- Identity Type
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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_ Mapping[str, Useridentities Assigned Identity Response] - User Assigned Identities
- principal
Id This property is required. String - Service principal object Id
- tenant
Id This property is required. String - Tenant Id
- type String
- Identity Type
- user
Assigned Map<Property Map>Identities - User Assigned Identities
IngestionStorage, IngestionStorageArgs
- Public
Network string | Pulumi.Access Azure Native. Purview. Public Network Access - Gets or sets the public network access setting
- Public
Network string | PublicAccess Network Access - Gets or sets the public network access setting
- public
Network String | PublicAccess Network Access - Gets or sets the public network access setting
- public
Network string | PublicAccess Network Access - Gets or sets the public network access setting
- public_
network_ str | Publicaccess Network Access - Gets or sets the public network access setting
- public
Network String | "NotAccess Specified" | "Enabled" | "Disabled" - Gets or sets the public network access setting
IngestionStorageResponse, IngestionStorageResponseArgs
- Id
This property is required. string - Gets or sets the Id.
- Primary
Endpoint This property is required. string - Gets or sets the primary endpoint.
- Public
Network stringAccess - Gets or sets the public network access setting
- Id
This property is required. string - Gets or sets the Id.
- Primary
Endpoint This property is required. string - Gets or sets the primary endpoint.
- Public
Network stringAccess - Gets or sets the public network access setting
- id
This property is required. String - Gets or sets the Id.
- primary
Endpoint This property is required. String - Gets or sets the primary endpoint.
- public
Network StringAccess - Gets or sets the public network access setting
- id
This property is required. string - Gets or sets the Id.
- primary
Endpoint This property is required. string - Gets or sets the primary endpoint.
- public
Network stringAccess - 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_ straccess - Gets or sets the public network access setting
- id
This property is required. String - Gets or sets the Id.
- primary
Endpoint This property is required. String - Gets or sets the primary endpoint.
- public
Network StringAccess - Gets or sets the public network access setting
ManagedEventHubState, ManagedEventHubStateArgs
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- Managed
Event Hub State Not Specified - NotSpecified
- Managed
Event Hub State Disabled - Disabled
- Managed
Event Hub State Enabled - Enabled
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- NOT_SPECIFIED
- NotSpecified
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Not
Specified" - NotSpecified
- "Disabled"
- Disabled
- "Enabled"
- Enabled
ManagedIdentityType, ManagedIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Managed
Identity Type None - None
- Managed
Identity Type System Assigned - SystemAssigned
- Managed
Identity Type User Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - 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.
- Provisioning
State This property is required. string - The provisioning state.
- System
Data This property is required. Pulumi.Azure Native. Purview. Inputs. Proxy Resource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type
This property is required. string - Gets or sets the type.
- Private
Endpoint Pulumi.Azure Native. Purview. Inputs. Private Endpoint Response - The private endpoint information.
- Private
Link Pulumi.Service Connection State Azure Native. Purview. Inputs. Private Link Service Connection State Response - 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.
- Provisioning
State This property is required. string - The provisioning state.
- System
Data This property is required. ProxyResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- Type
This property is required. string - Gets or sets the type.
- Private
Endpoint PrivateEndpoint Response - The private endpoint information.
- Private
Link PrivateService Connection State Link Service Connection State Response - 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.
- provisioning
State This property is required. String - The provisioning state.
- system
Data This property is required. ProxyResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type
This property is required. String - Gets or sets the type.
- private
Endpoint PrivateEndpoint Response - The private endpoint information.
- private
Link PrivateService Connection State Link Service Connection State Response - 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.
- provisioning
State This property is required. string - The provisioning state.
- system
Data This property is required. ProxyResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type
This property is required. string - Gets or sets the type.
- private
Endpoint PrivateEndpoint Response - The private endpoint information.
- private
Link PrivateService Connection State Link Service Connection State Response - 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. ProxyResource Response System Data - Metadata pertaining to creation and last modification of the resource.
- type
This property is required. str - Gets or sets the type.
- private_
endpoint PrivateEndpoint Response - The private endpoint information.
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - 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.
- provisioning
State This property is required. String - The provisioning state.
- system
Data 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.
- private
Endpoint Property Map - The private endpoint information.
- private
Link Property MapService Connection State - 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
- Actions
Required string - The required actions.
- Description string
- The description.
- Status string
- The status.
- Actions
Required string - The required actions.
- Description string
- The description.
- Status string
- The status.
- actions
Required String - The required actions.
- description String
- The description.
- status String
- The status.
- actions
Required 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.
- actions
Required String - The required actions.
- description String
- The description.
- status String
- The status.
ProxyResourceResponseSystemData, ProxyResourceResponseSystemDataArgs
- Created
At This property is required. string - The timestamp of resource creation (UTC).
- Created
By This property is required. string - The identity that created the resource.
- Created
By Type This property is required. string - The type of identity that created the resource.
- Last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- Last
Modified By This property is required. string - The identity that last modified the resource.
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource.
- Created
At This property is required. string - The timestamp of resource creation (UTC).
- Created
By This property is required. string - The identity that created the resource.
- Created
By Type This property is required. string - The type of identity that created the resource.
- Last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- Last
Modified By This property is required. string - The identity that last modified the resource.
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource.
- created
At This property is required. String - The timestamp of resource creation (UTC).
- created
By This property is required. String - The identity that created the resource.
- created
By Type This property is required. String - The type of identity that created the resource.
- last
Modified At This property is required. String - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. String - The identity that last modified the resource.
- last
Modified By Type This property is required. String - The type of identity that last modified the resource.
- created
At This property is required. string - The timestamp of resource creation (UTC).
- created
By This property is required. string - The identity that created the resource.
- created
By Type This property is required. string - The type of identity that created the resource.
- last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. string - The identity that last modified the resource.
- last
Modified By Type 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.
- created
At This property is required. String - The timestamp of resource creation (UTC).
- created
By This property is required. String - The identity that created the resource.
- created
By Type This property is required. String - The type of identity that created the resource.
- last
Modified At This property is required. String - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. String - The identity that last modified the resource.
- last
Modified By Type This property is required. String - The type of identity that last modified the resource.
PublicNetworkAccess, PublicNetworkAccessArgs
- Not
Specified - NotSpecified
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Not Specified - NotSpecified
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Not
Specified - NotSpecified
- Enabled
- Enabled
- Disabled
- Disabled
- Not
Specified - NotSpecified
- Enabled
- Enabled
- Disabled
- Disabled
- NOT_SPECIFIED
- NotSpecified
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Not
Specified" - NotSpecified
- "Enabled"
- Enabled
- "Disabled"
- Disabled
TenantEndpointState, TenantEndpointStateArgs
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- Tenant
Endpoint State Not Specified - NotSpecified
- Tenant
Endpoint State Disabled - Disabled
- Tenant
Endpoint State Enabled - Enabled
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- Not
Specified - NotSpecified
- Disabled
- Disabled
- Enabled
- Enabled
- NOT_SPECIFIED
- NotSpecified
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Not
Specified" - NotSpecified
- "Disabled"
- Disabled
- "Enabled"
- Enabled
TrackedResourceResponseSystemData, TrackedResourceResponseSystemDataArgs
- Created
At This property is required. string - The timestamp of resource creation (UTC).
- Created
By This property is required. string - The identity that created the resource.
- Created
By Type This property is required. string - The type of identity that created the resource.
- Last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- Last
Modified By This property is required. string - The identity that last modified the resource.
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource.
- Created
At This property is required. string - The timestamp of resource creation (UTC).
- Created
By This property is required. string - The identity that created the resource.
- Created
By Type This property is required. string - The type of identity that created the resource.
- Last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- Last
Modified By This property is required. string - The identity that last modified the resource.
- Last
Modified By Type This property is required. string - The type of identity that last modified the resource.
- created
At This property is required. String - The timestamp of resource creation (UTC).
- created
By This property is required. String - The identity that created the resource.
- created
By Type This property is required. String - The type of identity that created the resource.
- last
Modified At This property is required. String - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. String - The identity that last modified the resource.
- last
Modified By Type This property is required. String - The type of identity that last modified the resource.
- created
At This property is required. string - The timestamp of resource creation (UTC).
- created
By This property is required. string - The identity that created the resource.
- created
By Type This property is required. string - The type of identity that created the resource.
- last
Modified At This property is required. string - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. string - The identity that last modified the resource.
- last
Modified By Type 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.
- created
At This property is required. String - The timestamp of resource creation (UTC).
- created
By This property is required. String - The identity that created the resource.
- created
By Type This property is required. String - The type of identity that created the resource.
- last
Modified At This property is required. String - The timestamp of the last modification the resource (UTC).
- last
Modified By This property is required. String - The identity that last modified the resource.
- last
Modified By Type This property is required. String - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id This property is required. string - Gets or Sets Client ID
- Principal
Id This property is required. string - Gets or Sets Principal ID
- Client
Id This property is required. string - Gets or Sets Client ID
- Principal
Id This property is required. string - Gets or Sets Principal ID
- client
Id This property is required. String - Gets or Sets Client ID
- principal
Id This property is required. String - Gets or Sets Principal ID
- client
Id This property is required. string - Gets or Sets Client ID
- principal
Id 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
- client
Id This property is required. String - Gets or Sets Client ID
- principal
Id 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0