DataProduct

class DataProduct : KotlinCustomResource

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

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}

Properties

Link copied to clipboard

List of available minor versions of the data product resource.

Link copied to clipboard

Resource links which exposed to the customer to query the data.

Link copied to clipboard

Current configured minor version of the data product resource.

Link copied to clipboard

Customer managed encryption key details for data product.

Link copied to clipboard

Flag to enable customer managed key encryption for data product.

Link copied to clipboard
val documentation: Output<String>

Documentation link for the data product based on definition file.

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

The managed service identities assigned to this resource.

Link copied to clipboard
val keyVaultUrl: Output<String>

Key vault url.

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val majorVersion: Output<String>

Major version of data product.

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

Network rule set for data product.

Link copied to clipboard
val owners: Output<List<String>>?

List of name or email associated with data product resource deployment.

Link copied to clipboard

Flag to enable or disable private link for data product resource.

Link copied to clipboard
val product: Output<String>

Product name of data product.

Link copied to clipboard

Latest provisioning state of data product.

Link copied to clipboard

Flag to enable or disable public access of data product resource.

Link copied to clipboard
val publisher: Output<String>

Data product publisher name.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val purviewAccount: Output<String>?

Purview account url for data product to connect to.

Link copied to clipboard

Purview collection url for data product to connect to.

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

Flag to enable or disable redundancy for data product.

Link copied to clipboard
val resourceGuid: Output<String>

The resource GUID property of the data product resource.

Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

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

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>