1. Packages
  2. Azure Native
  3. API Docs
  4. networkanalytics
  5. DataProduct
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.networkanalytics.DataProduct

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    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 (
    	"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.

    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:

    MajorVersion string
    Major version of data product.
    Product string
    Product name of data product.
    Publisher string
    Data product publisher name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CurrentMinorVersion string
    Current configured minor version of the data product resource.
    CustomerEncryptionKey Pulumi.AzureNative.NetworkAnalytics.Inputs.EncryptionKeyDetails
    Customer managed encryption key details for data product.
    CustomerManagedKeyEncryptionEnabled string | Pulumi.AzureNative.NetworkAnalytics.ControlState
    Flag to enable customer managed key encryption for data product.
    DataProductName string
    The data product resource name
    Identity Pulumi.AzureNative.NetworkAnalytics.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    ManagedResourceGroupConfiguration Pulumi.AzureNative.NetworkAnalytics.Inputs.ManagedResourceGroupConfiguration
    Managed resource group configuration.
    Networkacls Pulumi.AzureNative.NetworkAnalytics.Inputs.DataProductNetworkAcls
    Network rule set for data product.
    Owners List<string>
    List of name or email associated with data product resource deployment.
    PrivateLinksEnabled string | Pulumi.AzureNative.NetworkAnalytics.ControlState
    Flag to enable or disable private link for data product resource.
    PublicNetworkAccess string | Pulumi.AzureNative.NetworkAnalytics.ControlState
    Flag to enable or disable public access of data product resource.
    PurviewAccount string
    Purview account url for data product to connect to.
    PurviewCollection string
    Purview collection url for data product to connect to.
    Redundancy string | Pulumi.AzureNative.NetworkAnalytics.ControlState
    Flag to enable or disable redundancy for data product.
    Tags Dictionary<string, string>
    Resource tags.
    MajorVersion string
    Major version of data product.
    Product string
    Product name of data product.
    Publisher string
    Data product publisher name.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    CurrentMinorVersion string
    Current configured minor version of the data product resource.
    CustomerEncryptionKey EncryptionKeyDetailsArgs
    Customer managed encryption key details for data product.
    CustomerManagedKeyEncryptionEnabled string | ControlState
    Flag to enable customer managed key encryption for data product.
    DataProductName string
    The data product resource name
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location string
    The geo-location where the resource lives
    ManagedResourceGroupConfiguration ManagedResourceGroupConfigurationArgs
    Managed resource group configuration.
    Networkacls DataProductNetworkAclsArgs
    Network rule set for data product.
    Owners []string
    List of name or email associated with data product resource deployment.
    PrivateLinksEnabled string | ControlState
    Flag to enable or disable private link for data product resource.
    PublicNetworkAccess string | ControlState
    Flag to enable or disable public access of data product resource.
    PurviewAccount string
    Purview account url for data product to connect to.
    PurviewCollection string
    Purview collection url for data product to connect to.
    Redundancy string | ControlState
    Flag to enable or disable redundancy for data product.
    Tags map[string]string
    Resource tags.
    majorVersion String
    Major version of data product.
    product String
    Product name of data product.
    publisher String
    Data product publisher name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    currentMinorVersion String
    Current configured minor version of the data product resource.
    customerEncryptionKey EncryptionKeyDetails
    Customer managed encryption key details for data product.
    customerManagedKeyEncryptionEnabled String | ControlState
    Flag to enable customer managed key encryption for data product.
    dataProductName String
    The data product resource name
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location String
    The geo-location where the resource lives
    managedResourceGroupConfiguration ManagedResourceGroupConfiguration
    Managed resource group configuration.
    networkacls DataProductNetworkAcls
    Network rule set for data product.
    owners List<String>
    List of name or email associated with data product resource deployment.
    privateLinksEnabled String | ControlState
    Flag to enable or disable private link for data product resource.
    publicNetworkAccess String | ControlState
    Flag to enable or disable public access of data product resource.
    purviewAccount String
    Purview account url for data product to connect to.
    purviewCollection String
    Purview collection url for data product to connect to.
    redundancy String | ControlState
    Flag to enable or disable redundancy for data product.
    tags Map<String,String>
    Resource tags.
    majorVersion string
    Major version of data product.
    product string
    Product name of data product.
    publisher string
    Data product publisher name.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    currentMinorVersion string
    Current configured minor version of the data product resource.
    customerEncryptionKey EncryptionKeyDetails
    Customer managed encryption key details for data product.
    customerManagedKeyEncryptionEnabled string | ControlState
    Flag to enable customer managed key encryption for data product.
    dataProductName string
    The data product resource name
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location string
    The geo-location where the resource lives
    managedResourceGroupConfiguration ManagedResourceGroupConfiguration
    Managed resource group configuration.
    networkacls DataProductNetworkAcls
    Network rule set for data product.
    owners string[]
    List of name or email associated with data product resource deployment.
    privateLinksEnabled string | ControlState
    Flag to enable or disable private link for data product resource.
    publicNetworkAccess string | ControlState
    Flag to enable or disable public access of data product resource.
    purviewAccount string
    Purview account url for data product to connect to.
    purviewCollection string
    Purview collection url for data product to connect to.
    redundancy string | ControlState
    Flag to enable or disable redundancy for data product.
    tags {[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_name str
    The name of the resource group. The name is case insensitive.
    current_minor_version str
    Current configured minor version of the data product resource.
    customer_encryption_key EncryptionKeyDetailsArgs
    Customer managed encryption key details for data product.
    customer_managed_key_encryption_enabled str | ControlState
    Flag to enable customer managed key encryption for data product.
    data_product_name str
    The data product resource name
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location str
    The geo-location where the resource lives
    managed_resource_group_configuration ManagedResourceGroupConfigurationArgs
    Managed resource group configuration.
    networkacls DataProductNetworkAclsArgs
    Network rule set for data product.
    owners Sequence[str]
    List of name or email associated with data product resource deployment.
    private_links_enabled str | ControlState
    Flag to enable or disable private link for data product resource.
    public_network_access str | ControlState
    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 | ControlState
    Flag to enable or disable redundancy for data product.
    tags Mapping[str, str]
    Resource tags.
    majorVersion String
    Major version of data product.
    product String
    Product name of data product.
    publisher String
    Data product publisher name.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    currentMinorVersion String
    Current configured minor version of the data product resource.
    customerEncryptionKey Property Map
    Customer managed encryption key details for data product.
    customerManagedKeyEncryptionEnabled String | "Enabled" | "Disabled"
    Flag to enable customer managed key encryption for data product.
    dataProductName String
    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
    managedResourceGroupConfiguration Property Map
    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.
    privateLinksEnabled String | "Enabled" | "Disabled"
    Flag to enable or disable private link for data product resource.
    publicNetworkAccess String | "Enabled" | "Disabled"
    Flag to enable or disable public access of data product resource.
    purviewAccount String
    Purview account url for data product to connect to.
    purviewCollection String
    Purview collection url for data product to connect to.
    redundancy String | "Enabled" | "Disabled"
    Flag to enable or disable redundancy for data product.
    tags Map<String>
    Resource tags.

    Outputs

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

    AvailableMinorVersions List<string>
    List of available minor versions of the data product resource.
    ConsumptionEndpoints Pulumi.AzureNative.NetworkAnalytics.Outputs.ConsumptionEndpointsPropertiesResponse
    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.
    KeyVaultUrl string
    Key vault url.
    Name string
    The name of the resource
    ProvisioningState string
    Latest provisioning state of data product.
    ResourceGuid string
    The resource GUID property of the data product resource.
    SystemData Pulumi.AzureNative.NetworkAnalytics.Outputs.SystemDataResponse
    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"
    AvailableMinorVersions []string
    List of available minor versions of the data product resource.
    ConsumptionEndpoints ConsumptionEndpointsPropertiesResponse
    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.
    KeyVaultUrl string
    Key vault url.
    Name string
    The name of the resource
    ProvisioningState string
    Latest provisioning state of data product.
    ResourceGuid string
    The resource GUID property of the data product resource.
    SystemData SystemDataResponse
    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"
    availableMinorVersions List<String>
    List of available minor versions of the data product resource.
    consumptionEndpoints ConsumptionEndpointsPropertiesResponse
    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.
    keyVaultUrl String
    Key vault url.
    name String
    The name of the resource
    provisioningState String
    Latest provisioning state of data product.
    resourceGuid String
    The resource GUID property of the data product resource.
    systemData SystemDataResponse
    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"
    availableMinorVersions string[]
    List of available minor versions of the data product resource.
    consumptionEndpoints ConsumptionEndpointsPropertiesResponse
    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.
    keyVaultUrl string
    Key vault url.
    name string
    The name of the resource
    provisioningState string
    Latest provisioning state of data product.
    resourceGuid string
    The resource GUID property of the data product resource.
    systemData SystemDataResponse
    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_versions Sequence[str]
    List of available minor versions of the data product resource.
    consumption_endpoints ConsumptionEndpointsPropertiesResponse
    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_url str
    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 SystemDataResponse
    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"
    availableMinorVersions List<String>
    List of available minor versions of the data product resource.
    consumptionEndpoints 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.
    keyVaultUrl String
    Key vault url.
    name String
    The name of the resource
    provisioningState String
    Latest provisioning state of data product.
    resourceGuid String
    The resource GUID property of the data product resource.
    systemData 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

    FileAccessResourceId string
    Resource Id of file access endpoint.
    FileAccessUrl string
    Url to consume file type.
    IngestionResourceId string
    Resource Id of ingestion endpoint.
    IngestionUrl string
    Ingestion url to upload the data.
    QueryResourceId string
    Resource Id of query endpoint.
    QueryUrl string
    Url to consume the processed data.
    FileAccessResourceId string
    Resource Id of file access endpoint.
    FileAccessUrl string
    Url to consume file type.
    IngestionResourceId string
    Resource Id of ingestion endpoint.
    IngestionUrl string
    Ingestion url to upload the data.
    QueryResourceId string
    Resource Id of query endpoint.
    QueryUrl string
    Url to consume the processed data.
    fileAccessResourceId String
    Resource Id of file access endpoint.
    fileAccessUrl String
    Url to consume file type.
    ingestionResourceId String
    Resource Id of ingestion endpoint.
    ingestionUrl String
    Ingestion url to upload the data.
    queryResourceId String
    Resource Id of query endpoint.
    queryUrl String
    Url to consume the processed data.
    fileAccessResourceId string
    Resource Id of file access endpoint.
    fileAccessUrl string
    Url to consume file type.
    ingestionResourceId string
    Resource Id of ingestion endpoint.
    ingestionUrl string
    Ingestion url to upload the data.
    queryResourceId string
    Resource Id of query endpoint.
    queryUrl string
    Url to consume the processed data.
    file_access_resource_id str
    Resource Id of file access endpoint.
    file_access_url str
    Url to consume file type.
    ingestion_resource_id str
    Resource Id of ingestion endpoint.
    ingestion_url str
    Ingestion url to upload the data.
    query_resource_id str
    Resource Id of query endpoint.
    query_url str
    Url to consume the processed data.
    fileAccessResourceId String
    Resource Id of file access endpoint.
    fileAccessUrl String
    Url to consume file type.
    ingestionResourceId String
    Resource Id of ingestion endpoint.
    ingestionUrl String
    Ingestion url to upload the data.
    queryResourceId String
    Resource Id of query endpoint.
    queryUrl String
    Url to consume the processed data.

    ControlState, ControlStateArgs

    Enabled
    EnabledField to enable a setting.
    Disabled
    DisabledField to disable a setting.
    ControlStateEnabled
    EnabledField to enable a setting.
    ControlStateDisabled
    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

    AllowedQueryIpRangeList List<string>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    DefaultAction string | Pulumi.AzureNative.NetworkAnalytics.DefaultAction
    Default Action
    IpRules List<Pulumi.AzureNative.NetworkAnalytics.Inputs.IPRules>
    IP rule with specific IP or IP range in CIDR format.
    VirtualNetworkRule List<Pulumi.AzureNative.NetworkAnalytics.Inputs.VirtualNetworkRule>
    Virtual Network Rule
    AllowedQueryIpRangeList []string
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    DefaultAction string | DefaultAction
    Default Action
    IpRules []IPRules
    IP rule with specific IP or IP range in CIDR format.
    VirtualNetworkRule []VirtualNetworkRule
    Virtual Network Rule
    allowedQueryIpRangeList List<String>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction String | DefaultAction
    Default Action
    ipRules List<IPRules>
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule List<VirtualNetworkRule>
    Virtual Network Rule
    allowedQueryIpRangeList string[]
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction string | DefaultAction
    Default Action
    ipRules IPRules[]
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule VirtualNetworkRule[]
    Virtual Network Rule
    allowed_query_ip_range_list Sequence[str]
    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_rule Sequence[VirtualNetworkRule]
    Virtual Network Rule
    allowedQueryIpRangeList List<String>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction String | "Allow" | "Deny"
    Default Action
    ipRules List<Property Map>
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule List<Property Map>
    Virtual Network Rule

    DataProductNetworkAclsResponse, DataProductNetworkAclsResponseArgs

    AllowedQueryIpRangeList List<string>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    DefaultAction string
    Default Action
    IpRules List<Pulumi.AzureNative.NetworkAnalytics.Inputs.IPRulesResponse>
    IP rule with specific IP or IP range in CIDR format.
    VirtualNetworkRule List<Pulumi.AzureNative.NetworkAnalytics.Inputs.VirtualNetworkRuleResponse>
    Virtual Network Rule
    AllowedQueryIpRangeList []string
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    DefaultAction string
    Default Action
    IpRules []IPRulesResponse
    IP rule with specific IP or IP range in CIDR format.
    VirtualNetworkRule []VirtualNetworkRuleResponse
    Virtual Network Rule
    allowedQueryIpRangeList List<String>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction String
    Default Action
    ipRules List<IPRulesResponse>
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule List<VirtualNetworkRuleResponse>
    Virtual Network Rule
    allowedQueryIpRangeList string[]
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction string
    Default Action
    ipRules IPRulesResponse[]
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule VirtualNetworkRuleResponse[]
    Virtual Network Rule
    allowed_query_ip_range_list Sequence[str]
    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_rule Sequence[VirtualNetworkRuleResponse]
    Virtual Network Rule
    allowedQueryIpRangeList List<String>
    The list of query ips in the format of CIDR allowed to connect to query/visualization endpoint.
    defaultAction String
    Default Action
    ipRules List<Property Map>
    IP rule with specific IP or IP range in CIDR format.
    virtualNetworkRule List<Property Map>
    Virtual Network Rule

    DefaultAction, DefaultActionArgs

    Allow
    AllowRepresents allow action.
    Deny
    DenyRepresents deny action.
    DefaultActionAllow
    AllowRepresents allow action.
    DefaultActionDeny
    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

    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The Uri of the key vault.
    KeyVersion string
    The version of the key vault key.
    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The Uri of the key vault.
    KeyVersion string
    The version of the key vault key.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The Uri of the key vault.
    keyVersion String
    The version of the key vault key.
    keyName string
    The name of the key vault key.
    keyVaultUri string
    The Uri of the key vault.
    keyVersion string
    The version of the key vault key.
    key_name str
    The name of the key vault key.
    key_vault_uri str
    The Uri of the key vault.
    key_version str
    The version of the key vault key.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The Uri of the key vault.
    keyVersion String
    The version of the key vault key.

    EncryptionKeyDetailsResponse, EncryptionKeyDetailsResponseArgs

    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The Uri of the key vault.
    KeyVersion string
    The version of the key vault key.
    KeyName string
    The name of the key vault key.
    KeyVaultUri string
    The Uri of the key vault.
    KeyVersion string
    The version of the key vault key.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The Uri of the key vault.
    keyVersion String
    The version of the key vault key.
    keyName string
    The name of the key vault key.
    keyVaultUri string
    The Uri of the key vault.
    keyVersion string
    The version of the key vault key.
    key_name str
    The name of the key vault key.
    key_vault_uri str
    The Uri of the key vault.
    key_version str
    The version of the key vault key.
    keyName String
    The name of the key vault key.
    keyVaultUri String
    The Uri of the key vault.
    keyVersion String
    The version of the key vault key.

    IPRules, IPRulesArgs

    Action string
    The action of virtual network rule.
    Value string
    IP Rules Value
    Action string
    The action of virtual network rule.
    Value string
    IP Rules Value
    action String
    The action of virtual network rule.
    value String
    IP Rules Value
    action string
    The action of virtual network rule.
    value string
    IP Rules Value
    action str
    The action of virtual network rule.
    value str
    IP Rules Value
    action String
    The action of virtual network rule.
    value String
    IP Rules Value

    IPRulesResponse, IPRulesResponseArgs

    Action string
    The action of virtual network rule.
    Value string
    IP Rules Value
    Action string
    The action of virtual network rule.
    Value string
    IP Rules Value
    action String
    The action of virtual network rule.
    value String
    IP Rules Value
    action string
    The action of virtual network rule.
    value string
    IP Rules Value
    action str
    The action of virtual network rule.
    value str
    IP Rules Value
    action String
    The action of virtual network rule.
    value String
    IP Rules Value

    ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs

    Location string
    Managed Resource Group location
    Name string
    Name of managed resource group
    Location string
    Managed Resource Group location
    Name string
    Name of managed resource group
    location String
    Managed Resource Group location
    name String
    Name of managed resource group
    location string
    Managed Resource Group location
    name string
    Name of managed resource group
    location str
    Managed Resource Group location
    name str
    Name of managed resource group
    location String
    Managed Resource Group location
    name String
    Name of managed resource group

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.NetworkAnalytics.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    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 | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    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" | "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    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

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId 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).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.NetworkAnalytics.Inputs.UserAssignedIdentityResponse>
    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.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId 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).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    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.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    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.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    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_identities Mapping[str, UserAssignedIdentityResponse]
    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.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId 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).
    userAssignedIdentities Map<Property Map>
    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
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned, UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned, UserAssigned"
    SystemAssigned, UserAssigned

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId 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.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    VirtualNetworkRule, VirtualNetworkRuleArgs

    Id string
    Resource ID of a subnet
    Action string
    The action of virtual network rule.
    State string
    Gets the state of virtual network rule.
    Id string
    Resource ID of a subnet
    Action string
    The action of virtual network rule.
    State string
    Gets the state of virtual network rule.
    id String
    Resource ID of a subnet
    action String
    The action of virtual network rule.
    state String
    Gets the state of virtual network rule.
    id string
    Resource ID of a subnet
    action string
    The action of virtual network rule.
    state string
    Gets the state of virtual network rule.
    id str
    Resource ID of a subnet
    action str
    The action of virtual network rule.
    state str
    Gets the state of virtual network rule.
    id String
    Resource ID of a subnet
    action String
    The action of virtual network rule.
    state String
    Gets the state of virtual network rule.

    VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs

    Id string
    Resource ID of a subnet
    Action string
    The action of virtual network rule.
    State string
    Gets the state of virtual network rule.
    Id string
    Resource ID of a subnet
    Action string
    The action of virtual network rule.
    State string
    Gets the state of virtual network rule.
    id String
    Resource ID of a subnet
    action String
    The action of virtual network rule.
    state String
    Gets the state of virtual network rule.
    id string
    Resource ID of a subnet
    action string
    The action of virtual network rule.
    state string
    Gets the state of virtual network rule.
    id str
    Resource ID of a subnet
    action str
    The action of virtual network rule.
    state str
    Gets the state of virtual network rule.
    id String
    Resource ID of a subnet
    action String
    The action of virtual network rule.
    state String
    Gets the state of virtual network rule.

    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi