azure-native.networkanalytics.DataProduct
Explore with Pulumi AI
The data product resource. Azure REST API version: 2023-11-15.
Example Usage
DataProducts_Create_MaximumSet_Gen - generated by [MinimumSet] rule_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataProduct = new AzureNative.NetworkAnalytics.DataProduct("dataProduct", new()
{
DataProductName = "dataproduct01",
Location = "eastus",
MajorVersion = "1.0.0",
Product = "MCC",
Publisher = "Microsoft",
ResourceGroupName = "aoiresourceGroupName",
Tags =
{
{ "userSpecifiedKeyName", "userSpecifiedKeyValue" },
},
});
});
package main
import (
networkanalytics "github.com/pulumi/pulumi-azure-native-sdk/networkanalytics/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networkanalytics.NewDataProduct(ctx, "dataProduct", &networkanalytics.DataProductArgs{
DataProductName: pulumi.String("dataproduct01"),
Location: pulumi.String("eastus"),
MajorVersion: pulumi.String("1.0.0"),
Product: pulumi.String("MCC"),
Publisher: pulumi.String("Microsoft"),
ResourceGroupName: pulumi.String("aoiresourceGroupName"),
Tags: pulumi.StringMap{
"userSpecifiedKeyName": pulumi.String("userSpecifiedKeyValue"),
},
})
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.networkanalytics.DataProduct;
import com.pulumi.azurenative.networkanalytics.DataProductArgs;
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 dataProduct = new DataProduct("dataProduct", DataProductArgs.builder()
.dataProductName("dataproduct01")
.location("eastus")
.majorVersion("1.0.0")
.product("MCC")
.publisher("Microsoft")
.resourceGroupName("aoiresourceGroupName")
.tags(Map.of("userSpecifiedKeyName", "userSpecifiedKeyValue"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
data_product = azure_native.networkanalytics.DataProduct("dataProduct",
data_product_name="dataproduct01",
location="eastus",
major_version="1.0.0",
product="MCC",
publisher="Microsoft",
resource_group_name="aoiresourceGroupName",
tags={
"userSpecifiedKeyName": "userSpecifiedKeyValue",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataProduct = new azure_native.networkanalytics.DataProduct("dataProduct", {
dataProductName: "dataproduct01",
location: "eastus",
majorVersion: "1.0.0",
product: "MCC",
publisher: "Microsoft",
resourceGroupName: "aoiresourceGroupName",
tags: {
userSpecifiedKeyName: "userSpecifiedKeyValue",
},
});
resources:
dataProduct:
type: azure-native:networkanalytics:DataProduct
properties:
dataProductName: dataproduct01
location: eastus
majorVersion: 1.0.0
product: MCC
publisher: Microsoft
resourceGroupName: aoiresourceGroupName
tags:
userSpecifiedKeyName: userSpecifiedKeyValue
Create DataProduct Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataProduct(name: string, args: DataProductArgs, opts?: CustomResourceOptions);
@overload
def DataProduct(resource_name: str,
args: DataProductArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataProduct(resource_name: str,
opts: Optional[ResourceOptions] = None,
major_version: Optional[str] = None,
resource_group_name: Optional[str] = None,
publisher: Optional[str] = None,
product: Optional[str] = None,
networkacls: Optional[DataProductNetworkAclsArgs] = None,
data_product_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
managed_resource_group_configuration: Optional[ManagedResourceGroupConfigurationArgs] = None,
current_minor_version: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
private_links_enabled: Optional[Union[str, ControlState]] = None,
location: Optional[str] = None,
public_network_access: Optional[Union[str, ControlState]] = None,
customer_managed_key_encryption_enabled: Optional[Union[str, ControlState]] = None,
purview_account: Optional[str] = None,
purview_collection: Optional[str] = None,
redundancy: Optional[Union[str, ControlState]] = None,
customer_encryption_key: Optional[EncryptionKeyDetailsArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewDataProduct(ctx *Context, name string, args DataProductArgs, opts ...ResourceOption) (*DataProduct, error)
public DataProduct(string name, DataProductArgs args, CustomResourceOptions? opts = null)
public DataProduct(String name, DataProductArgs args)
public DataProduct(String name, DataProductArgs args, CustomResourceOptions options)
type: azure-native:networkanalytics:DataProduct
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DataProductArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataProductArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataProductArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataProductArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataProductArgs
- 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 dataProductResource = new AzureNative.NetworkAnalytics.DataProduct("dataProductResource", new()
{
MajorVersion = "string",
ResourceGroupName = "string",
Publisher = "string",
Product = "string",
Networkacls = new AzureNative.NetworkAnalytics.Inputs.DataProductNetworkAclsArgs
{
AllowedQueryIpRangeList = new[]
{
"string",
},
DefaultAction = "string",
IpRules = new[]
{
new AzureNative.NetworkAnalytics.Inputs.IPRulesArgs
{
Action = "string",
Value = "string",
},
},
VirtualNetworkRule = new[]
{
new AzureNative.NetworkAnalytics.Inputs.VirtualNetworkRuleArgs
{
Id = "string",
Action = "string",
State = "string",
},
},
},
DataProductName = "string",
Identity = new AzureNative.NetworkAnalytics.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
ManagedResourceGroupConfiguration = new AzureNative.NetworkAnalytics.Inputs.ManagedResourceGroupConfigurationArgs
{
Location = "string",
Name = "string",
},
CurrentMinorVersion = "string",
Owners = new[]
{
"string",
},
PrivateLinksEnabled = "string",
Location = "string",
PublicNetworkAccess = "string",
CustomerManagedKeyEncryptionEnabled = "string",
PurviewAccount = "string",
PurviewCollection = "string",
Redundancy = "string",
CustomerEncryptionKey = new AzureNative.NetworkAnalytics.Inputs.EncryptionKeyDetailsArgs
{
KeyName = "string",
KeyVaultUri = "string",
KeyVersion = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := networkanalytics.NewDataProduct(ctx, "dataProductResource", &networkanalytics.DataProductArgs{
MajorVersion: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Publisher: pulumi.String("string"),
Product: pulumi.String("string"),
Networkacls: &networkanalytics.DataProductNetworkAclsArgs{
AllowedQueryIpRangeList: pulumi.StringArray{
pulumi.String("string"),
},
DefaultAction: pulumi.String("string"),
IpRules: networkanalytics.IPRulesArray{
&networkanalytics.IPRulesArgs{
Action: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VirtualNetworkRule: networkanalytics.VirtualNetworkRuleArray{
&networkanalytics.VirtualNetworkRuleArgs{
Id: pulumi.String("string"),
Action: pulumi.String("string"),
State: pulumi.String("string"),
},
},
},
DataProductName: pulumi.String("string"),
Identity: &networkanalytics.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
ManagedResourceGroupConfiguration: &networkanalytics.ManagedResourceGroupConfigurationArgs{
Location: pulumi.String("string"),
Name: pulumi.String("string"),
},
CurrentMinorVersion: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
PrivateLinksEnabled: pulumi.String("string"),
Location: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
CustomerManagedKeyEncryptionEnabled: pulumi.String("string"),
PurviewAccount: pulumi.String("string"),
PurviewCollection: pulumi.String("string"),
Redundancy: pulumi.String("string"),
CustomerEncryptionKey: &networkanalytics.EncryptionKeyDetailsArgs{
KeyName: pulumi.String("string"),
KeyVaultUri: pulumi.String("string"),
KeyVersion: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var dataProductResource = new DataProduct("dataProductResource", DataProductArgs.builder()
.majorVersion("string")
.resourceGroupName("string")
.publisher("string")
.product("string")
.networkacls(DataProductNetworkAclsArgs.builder()
.allowedQueryIpRangeList("string")
.defaultAction("string")
.ipRules(IPRulesArgs.builder()
.action("string")
.value("string")
.build())
.virtualNetworkRule(VirtualNetworkRuleArgs.builder()
.id("string")
.action("string")
.state("string")
.build())
.build())
.dataProductName("string")
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.location("string")
.name("string")
.build())
.currentMinorVersion("string")
.owners("string")
.privateLinksEnabled("string")
.location("string")
.publicNetworkAccess("string")
.customerManagedKeyEncryptionEnabled("string")
.purviewAccount("string")
.purviewCollection("string")
.redundancy("string")
.customerEncryptionKey(EncryptionKeyDetailsArgs.builder()
.keyName("string")
.keyVaultUri("string")
.keyVersion("string")
.build())
.tags(Map.of("string", "string"))
.build());
data_product_resource = azure_native.networkanalytics.DataProduct("dataProductResource",
major_version="string",
resource_group_name="string",
publisher="string",
product="string",
networkacls=azure_native.networkanalytics.DataProductNetworkAclsArgs(
allowed_query_ip_range_list=["string"],
default_action="string",
ip_rules=[azure_native.networkanalytics.IPRulesArgs(
action="string",
value="string",
)],
virtual_network_rule=[azure_native.networkanalytics.VirtualNetworkRuleArgs(
id="string",
action="string",
state="string",
)],
),
data_product_name="string",
identity=azure_native.networkanalytics.ManagedServiceIdentityArgs(
type="string",
user_assigned_identities=["string"],
),
managed_resource_group_configuration=azure_native.networkanalytics.ManagedResourceGroupConfigurationArgs(
location="string",
name="string",
),
current_minor_version="string",
owners=["string"],
private_links_enabled="string",
location="string",
public_network_access="string",
customer_managed_key_encryption_enabled="string",
purview_account="string",
purview_collection="string",
redundancy="string",
customer_encryption_key=azure_native.networkanalytics.EncryptionKeyDetailsArgs(
key_name="string",
key_vault_uri="string",
key_version="string",
),
tags={
"string": "string",
})
const dataProductResource = new azure_native.networkanalytics.DataProduct("dataProductResource", {
majorVersion: "string",
resourceGroupName: "string",
publisher: "string",
product: "string",
networkacls: {
allowedQueryIpRangeList: ["string"],
defaultAction: "string",
ipRules: [{
action: "string",
value: "string",
}],
virtualNetworkRule: [{
id: "string",
action: "string",
state: "string",
}],
},
dataProductName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
managedResourceGroupConfiguration: {
location: "string",
name: "string",
},
currentMinorVersion: "string",
owners: ["string"],
privateLinksEnabled: "string",
location: "string",
publicNetworkAccess: "string",
customerManagedKeyEncryptionEnabled: "string",
purviewAccount: "string",
purviewCollection: "string",
redundancy: "string",
customerEncryptionKey: {
keyName: "string",
keyVaultUri: "string",
keyVersion: "string",
},
tags: {
string: "string",
},
});
type: azure-native:networkanalytics:DataProduct
properties:
currentMinorVersion: string
customerEncryptionKey:
keyName: string
keyVaultUri: string
keyVersion: string
customerManagedKeyEncryptionEnabled: string
dataProductName: string
identity:
type: string
userAssignedIdentities:
- string
location: string
majorVersion: string
managedResourceGroupConfiguration:
location: string
name: string
networkacls:
allowedQueryIpRangeList:
- string
defaultAction: string
ipRules:
- action: string
value: string
virtualNetworkRule:
- action: string
id: string
state: string
owners:
- string
privateLinksEnabled: string
product: string
publicNetworkAccess: string
publisher: string
purviewAccount: string
purviewCollection: string
redundancy: string
resourceGroupName: string
tags:
string: string
DataProduct Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DataProduct resource accepts the following input properties:
- Major
Version string - Major version of data product.
- Product string
- Product name of data product.
- Publisher string
- Data product publisher name.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Current
Minor stringVersion - Current configured minor version of the data product resource.
- Customer
Encryption Pulumi.Key Azure Native. Network Analytics. Inputs. Encryption Key Details - Customer managed encryption key details for data product.
- Customer
Managed string | Pulumi.Key Encryption Enabled Azure Native. Network Analytics. Control State - Flag to enable customer managed key encryption for data product.
- Data
Product stringName - The data product resource name
- Identity
Pulumi.
Azure Native. Network Analytics. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Managed
Resource Pulumi.Group Configuration Azure Native. Network Analytics. Inputs. Managed Resource Group Configuration - Managed resource group configuration.
- Networkacls
Pulumi.
Azure Native. Network Analytics. Inputs. Data Product Network Acls - Network rule set for data product.
- Owners List<string>
- List of name or email associated with data product resource deployment.
- Private
Links string | Pulumi.Enabled Azure Native. Network Analytics. Control State - Flag to enable or disable private link for data product resource.
- Public
Network string | Pulumi.Access Azure Native. Network Analytics. Control State - Flag to enable or disable public access of data product resource.
- Purview
Account string - Purview account url for data product to connect to.
- Purview
Collection string - Purview collection url for data product to connect to.
- Redundancy
string | Pulumi.
Azure Native. Network Analytics. Control State - Flag to enable or disable redundancy for data product.
- Dictionary<string, string>
- Resource tags.
- Major
Version string - Major version of data product.
- Product string
- Product name of data product.
- Publisher string
- Data product publisher name.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Current
Minor stringVersion - Current configured minor version of the data product resource.
- Customer
Encryption EncryptionKey Key Details Args - Customer managed encryption key details for data product.
- Customer
Managed string | ControlKey Encryption Enabled State - Flag to enable customer managed key encryption for data product.
- Data
Product stringName - The data product resource name
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Managed
Resource ManagedGroup Configuration Resource Group Configuration Args - Managed resource group configuration.
- Networkacls
Data
Product Network Acls Args - Network rule set for data product.
- Owners []string
- List of name or email associated with data product resource deployment.
- Private
Links string | ControlEnabled State - Flag to enable or disable private link for data product resource.
- Public
Network string | ControlAccess State - Flag to enable or disable public access of data product resource.
- Purview
Account string - Purview account url for data product to connect to.
- Purview
Collection string - Purview collection url for data product to connect to.
- Redundancy
string | Control
State - Flag to enable or disable redundancy for data product.
- map[string]string
- Resource tags.
- major
Version String - Major version of data product.
- product String
- Product name of data product.
- publisher String
- Data product publisher name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- current
Minor StringVersion - Current configured minor version of the data product resource.
- customer
Encryption EncryptionKey Key Details - Customer managed encryption key details for data product.
- customer
Managed String | ControlKey Encryption Enabled State - Flag to enable customer managed key encryption for data product.
- data
Product StringName - The data product resource name
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed resource group configuration.
- networkacls
Data
Product Network Acls - Network rule set for data product.
- owners List<String>
- List of name or email associated with data product resource deployment.
- private
Links String | ControlEnabled State - Flag to enable or disable private link for data product resource.
- public
Network String | ControlAccess State - Flag to enable or disable public access of data product resource.
- purview
Account String - Purview account url for data product to connect to.
- purview
Collection String - Purview collection url for data product to connect to.
- redundancy
String | Control
State - Flag to enable or disable redundancy for data product.
- Map<String,String>
- Resource tags.
- major
Version string - Major version of data product.
- product string
- Product name of data product.
- publisher string
- Data product publisher name.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- current
Minor stringVersion - Current configured minor version of the data product resource.
- customer
Encryption EncryptionKey Key Details - Customer managed encryption key details for data product.
- customer
Managed string | ControlKey Encryption Enabled State - Flag to enable customer managed key encryption for data product.
- data
Product stringName - The data product resource name
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed resource group configuration.
- networkacls
Data
Product Network Acls - Network rule set for data product.
- owners string[]
- List of name or email associated with data product resource deployment.
- private
Links string | ControlEnabled State - Flag to enable or disable private link for data product resource.
- public
Network string | ControlAccess State - Flag to enable or disable public access of data product resource.
- purview
Account string - Purview account url for data product to connect to.
- purview
Collection string - Purview collection url for data product to connect to.
- redundancy
string | Control
State - Flag to enable or disable redundancy for data product.
- {[key: string]: string}
- Resource tags.
- major_
version str - Major version of data product.
- product str
- Product name of data product.
- publisher str
- Data product publisher name.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- current_
minor_ strversion - Current configured minor version of the data product resource.
- customer_
encryption_ Encryptionkey Key Details Args - Customer managed encryption key details for data product.
- customer_
managed_ str | Controlkey_ encryption_ enabled State - Flag to enable customer managed key encryption for data product.
- data_
product_ strname - The data product resource name
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- managed_
resource_ Managedgroup_ configuration Resource Group Configuration Args - Managed resource group configuration.
- networkacls
Data
Product Network Acls Args - Network rule set for data product.
- owners Sequence[str]
- List of name or email associated with data product resource deployment.
- private_
links_ str | Controlenabled State - Flag to enable or disable private link for data product resource.
- public_
network_ str | Controlaccess State - Flag to enable or disable public access of data product resource.
- purview_
account str - Purview account url for data product to connect to.
- purview_
collection str - Purview collection url for data product to connect to.
- redundancy
str | Control
State - Flag to enable or disable redundancy for data product.
- Mapping[str, str]
- Resource tags.
- major
Version String - Major version of data product.
- product String
- Product name of data product.
- publisher String
- Data product publisher name.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- current
Minor StringVersion - Current configured minor version of the data product resource.
- customer
Encryption Property MapKey - Customer managed encryption key details for data product.
- customer
Managed String | "Enabled" | "Disabled"Key Encryption Enabled - Flag to enable customer managed key encryption for data product.
- data
Product StringName - The data product resource name
- identity Property Map
- The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- managed
Resource Property MapGroup Configuration - Managed resource group configuration.
- networkacls Property Map
- Network rule set for data product.
- owners List<String>
- List of name or email associated with data product resource deployment.
- private
Links String | "Enabled" | "Disabled"Enabled - Flag to enable or disable private link for data product resource.
- public
Network String | "Enabled" | "Disabled"Access - Flag to enable or disable public access of data product resource.
- purview
Account String - Purview account url for data product to connect to.
- purview
Collection String - Purview collection url for data product to connect to.
- redundancy String | "Enabled" | "Disabled"
- Flag to enable or disable redundancy for data product.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataProduct resource produces the following output properties:
- Available
Minor List<string>Versions - List of available minor versions of the data product resource.
- Consumption
Endpoints Pulumi.Azure Native. Network Analytics. Outputs. Consumption Endpoints Properties Response - Resource links which exposed to the customer to query the data.
- Documentation string
- Documentation link for the data product based on definition file.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Vault stringUrl - Key vault url.
- Name string
- The name of the resource
- Provisioning
State string - Latest provisioning state of data product.
- Resource
Guid string - The resource GUID property of the data product resource.
- System
Data Pulumi.Azure Native. Network Analytics. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Available
Minor []stringVersions - List of available minor versions of the data product resource.
- Consumption
Endpoints ConsumptionEndpoints Properties Response - Resource links which exposed to the customer to query the data.
- Documentation string
- Documentation link for the data product based on definition file.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Vault stringUrl - Key vault url.
- Name string
- The name of the resource
- Provisioning
State string - Latest provisioning state of data product.
- Resource
Guid string - The resource GUID property of the data product resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- available
Minor List<String>Versions - List of available minor versions of the data product resource.
- consumption
Endpoints ConsumptionEndpoints Properties Response - Resource links which exposed to the customer to query the data.
- documentation String
- Documentation link for the data product based on definition file.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Vault StringUrl - Key vault url.
- name String
- The name of the resource
- provisioning
State String - Latest provisioning state of data product.
- resource
Guid String - The resource GUID property of the data product resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- available
Minor string[]Versions - List of available minor versions of the data product resource.
- consumption
Endpoints ConsumptionEndpoints Properties Response - Resource links which exposed to the customer to query the data.
- documentation string
- Documentation link for the data product based on definition file.
- id string
- The provider-assigned unique ID for this managed resource.
- key
Vault stringUrl - Key vault url.
- name string
- The name of the resource
- provisioning
State string - Latest provisioning state of data product.
- resource
Guid string - The resource GUID property of the data product resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- available_
minor_ Sequence[str]versions - List of available minor versions of the data product resource.
- consumption_
endpoints ConsumptionEndpoints Properties Response - Resource links which exposed to the customer to query the data.
- documentation str
- Documentation link for the data product based on definition file.
- id str
- The provider-assigned unique ID for this managed resource.
- key_
vault_ strurl - Key vault url.
- name str
- The name of the resource
- provisioning_
state str - Latest provisioning state of data product.
- resource_
guid str - The resource GUID property of the data product resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- available
Minor List<String>Versions - List of available minor versions of the data product resource.
- consumption
Endpoints Property Map - Resource links which exposed to the customer to query the data.
- documentation String
- Documentation link for the data product based on definition file.
- id String
- The provider-assigned unique ID for this managed resource.
- key
Vault StringUrl - Key vault url.
- name String
- The name of the resource
- provisioning
State String - Latest provisioning state of data product.
- resource
Guid String - The resource GUID property of the data product resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ConsumptionEndpointsPropertiesResponse, ConsumptionEndpointsPropertiesResponseArgs
- File
Access stringResource Id - Resource Id of file access endpoint.
- File
Access stringUrl - Url to consume file type.
- Ingestion
Resource stringId - Resource Id of ingestion endpoint.
- Ingestion
Url string - Ingestion url to upload the data.
- Query
Resource stringId - Resource Id of query endpoint.
- Query
Url string - Url to consume the processed data.
- File
Access stringResource Id - Resource Id of file access endpoint.
- File
Access stringUrl - Url to consume file type.
- Ingestion
Resource stringId - Resource Id of ingestion endpoint.
- Ingestion
Url string - Ingestion url to upload the data.
- Query
Resource stringId - Resource Id of query endpoint.
- Query
Url string - Url to consume the processed data.
- file
Access StringResource Id - Resource Id of file access endpoint.
- file
Access StringUrl - Url to consume file type.
- ingestion
Resource StringId - Resource Id of ingestion endpoint.
- ingestion
Url String - Ingestion url to upload the data.
- query
Resource StringId - Resource Id of query endpoint.
- query
Url String - Url to consume the processed data.
- file
Access stringResource Id - Resource Id of file access endpoint.
- file
Access stringUrl - Url to consume file type.
- ingestion
Resource stringId - Resource Id of ingestion endpoint.
- ingestion
Url string - Ingestion url to upload the data.
- query
Resource stringId - Resource Id of query endpoint.
- query
Url string - Url to consume the processed data.
- file_
access_ strresource_ id - Resource Id of file access endpoint.
- file_
access_ strurl - Url to consume file type.
- ingestion_
resource_ strid - Resource Id of ingestion endpoint.
- ingestion_
url str - Ingestion url to upload the data.
- query_
resource_ strid - Resource Id of query endpoint.
- query_
url str - Url to consume the processed data.
- file
Access StringResource Id - Resource Id of file access endpoint.
- file
Access StringUrl - Url to consume file type.
- ingestion
Resource StringId - Resource Id of ingestion endpoint.
- ingestion
Url String - Ingestion url to upload the data.
- query
Resource StringId - Resource Id of query endpoint.
- query
Url String - Url to consume the processed data.
ControlState, ControlStateArgs
- Enabled
- EnabledField to enable a setting.
- Disabled
- DisabledField to disable a setting.
- Control
State Enabled - EnabledField to enable a setting.
- Control
State Disabled - DisabledField to disable a setting.
- Enabled
- EnabledField to enable a setting.
- Disabled
- DisabledField to disable a setting.
- Enabled
- EnabledField to enable a setting.
- Disabled
- DisabledField to disable a setting.
- ENABLED
- EnabledField to enable a setting.
- DISABLED
- DisabledField to disable a setting.
- "Enabled"
- EnabledField to enable a setting.
- "Disabled"
- DisabledField to disable a setting.
DataProductNetworkAcls, DataProductNetworkAclsArgs
- Allowed
Query List<string>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- Default
Action string | Pulumi.Azure Native. Network Analytics. Default Action - Default Action
- Ip
Rules List<Pulumi.Azure Native. Network Analytics. Inputs. IPRules> - IP rule with specific IP or IP range in CIDR format.
- Virtual
Network List<Pulumi.Rule Azure Native. Network Analytics. Inputs. Virtual Network Rule> - Virtual Network Rule
- Allowed
Query []stringIp Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- Default
Action string | DefaultAction - Default Action
- Ip
Rules []IPRules - IP rule with specific IP or IP range in CIDR format.
- Virtual
Network []VirtualRule Network Rule - Virtual Network Rule
- allowed
Query List<String>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action String | DefaultAction - Default Action
- ip
Rules List<IPRules> - IP rule with specific IP or IP range in CIDR format.
- virtual
Network List<VirtualRule Network Rule> - Virtual Network Rule
- allowed
Query string[]Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action string | DefaultAction - Default Action
- ip
Rules IPRules[] - IP rule with specific IP or IP range in CIDR format.
- virtual
Network VirtualRule Network Rule[] - Virtual Network Rule
- allowed_
query_ Sequence[str]ip_ range_ list - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default_
action str | DefaultAction - Default Action
- ip_
rules Sequence[IPRules] - IP rule with specific IP or IP range in CIDR format.
- virtual_
network_ Sequence[Virtualrule Network Rule] - Virtual Network Rule
- allowed
Query List<String>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action String | "Allow" | "Deny" - Default Action
- ip
Rules List<Property Map> - IP rule with specific IP or IP range in CIDR format.
- virtual
Network List<Property Map>Rule - Virtual Network Rule
DataProductNetworkAclsResponse, DataProductNetworkAclsResponseArgs
- Allowed
Query List<string>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- Default
Action string - Default Action
- Ip
Rules List<Pulumi.Azure Native. Network Analytics. Inputs. IPRules Response> - IP rule with specific IP or IP range in CIDR format.
- Virtual
Network List<Pulumi.Rule Azure Native. Network Analytics. Inputs. Virtual Network Rule Response> - Virtual Network Rule
- Allowed
Query []stringIp Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- Default
Action string - Default Action
- Ip
Rules []IPRulesResponse - IP rule with specific IP or IP range in CIDR format.
- Virtual
Network []VirtualRule Network Rule Response - Virtual Network Rule
- allowed
Query List<String>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action String - Default Action
- ip
Rules List<IPRulesResponse> - IP rule with specific IP or IP range in CIDR format.
- virtual
Network List<VirtualRule Network Rule Response> - Virtual Network Rule
- allowed
Query string[]Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action string - Default Action
- ip
Rules IPRulesResponse[] - IP rule with specific IP or IP range in CIDR format.
- virtual
Network VirtualRule Network Rule Response[] - Virtual Network Rule
- allowed_
query_ Sequence[str]ip_ range_ list - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default_
action str - Default Action
- ip_
rules Sequence[IPRulesResponse] - IP rule with specific IP or IP range in CIDR format.
- virtual_
network_ Sequence[Virtualrule Network Rule Response] - Virtual Network Rule
- allowed
Query List<String>Ip Range List - The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
- default
Action String - Default Action
- ip
Rules List<Property Map> - IP rule with specific IP or IP range in CIDR format.
- virtual
Network List<Property Map>Rule - Virtual Network Rule
DefaultAction, DefaultActionArgs
- Allow
- AllowRepresents allow action.
- Deny
- DenyRepresents deny action.
- Default
Action Allow - AllowRepresents allow action.
- Default
Action Deny - DenyRepresents deny action.
- Allow
- AllowRepresents allow action.
- Deny
- DenyRepresents deny action.
- Allow
- AllowRepresents allow action.
- Deny
- DenyRepresents deny action.
- ALLOW
- AllowRepresents allow action.
- DENY
- DenyRepresents deny action.
- "Allow"
- AllowRepresents allow action.
- "Deny"
- DenyRepresents deny action.
EncryptionKeyDetails, EncryptionKeyDetailsArgs
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The Uri of the key vault.
- Key
Version string - The version of the key vault key.
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The Uri of the key vault.
- Key
Version string - The version of the key vault key.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The Uri of the key vault.
- key
Version String - The version of the key vault key.
- key
Name string - The name of the key vault key.
- key
Vault stringUri - The Uri of the key vault.
- key
Version string - The version of the key vault key.
- key_
name str - The name of the key vault key.
- key_
vault_ struri - The Uri of the key vault.
- key_
version str - The version of the key vault key.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The Uri of the key vault.
- key
Version String - The version of the key vault key.
EncryptionKeyDetailsResponse, EncryptionKeyDetailsResponseArgs
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The Uri of the key vault.
- Key
Version string - The version of the key vault key.
- Key
Name string - The name of the key vault key.
- Key
Vault stringUri - The Uri of the key vault.
- Key
Version string - The version of the key vault key.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The Uri of the key vault.
- key
Version String - The version of the key vault key.
- key
Name string - The name of the key vault key.
- key
Vault stringUri - The Uri of the key vault.
- key
Version string - The version of the key vault key.
- key_
name str - The name of the key vault key.
- key_
vault_ struri - The Uri of the key vault.
- key_
version str - The version of the key vault key.
- key
Name String - The name of the key vault key.
- key
Vault StringUri - The Uri of the key vault.
- key
Version String - The version of the key vault key.
IPRules, IPRulesArgs
IPRulesResponse, IPRulesResponseArgs
ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Network Analytics. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned, User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Network Analytics. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
VirtualNetworkRule, VirtualNetworkRuleArgs
VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:networkanalytics:DataProduct dataproduct01 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkAnalytics/dataProducts/{dataProductName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0