1. Packages
  2. Azure Classic
  3. API Docs
  4. iot
  5. TimeSeriesInsightsGen2Environment

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

azure.iot.TimeSeriesInsightsGen2Environment

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi

    Manages an Azure IoT Time Series Insights Gen2 Environment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const storage = new azure.storage.Account("storage", {
        name: "example",
        location: example.location,
        resourceGroupName: example.name,
        accountTier: "Standard",
        accountReplicationType: "LRS",
    });
    const exampleTimeSeriesInsightsGen2Environment = new azure.iot.TimeSeriesInsightsGen2Environment("example", {
        name: "example",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "L1",
        warmStoreDataRetentionTime: "P30D",
        idProperties: ["id"],
        storage: {
            name: storage.name,
            key: storage.primaryAccessKey,
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    storage = azure.storage.Account("storage",
        name="example",
        location=example.location,
        resource_group_name=example.name,
        account_tier="Standard",
        account_replication_type="LRS")
    example_time_series_insights_gen2_environment = azure.iot.TimeSeriesInsightsGen2Environment("example",
        name="example",
        location=example.location,
        resource_group_name=example.name,
        sku_name="L1",
        warm_store_data_retention_time="P30D",
        id_properties=["id"],
        storage=azure.iot.TimeSeriesInsightsGen2EnvironmentStorageArgs(
            name=storage.name,
            key=storage.primary_access_key,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/iot"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		storage, err := storage.NewAccount(ctx, "storage", &storage.AccountArgs{
    			Name:                   pulumi.String("example"),
    			Location:               example.Location,
    			ResourceGroupName:      example.Name,
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("LRS"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iot.NewTimeSeriesInsightsGen2Environment(ctx, "example", &iot.TimeSeriesInsightsGen2EnvironmentArgs{
    			Name:                       pulumi.String("example"),
    			Location:                   example.Location,
    			ResourceGroupName:          example.Name,
    			SkuName:                    pulumi.String("L1"),
    			WarmStoreDataRetentionTime: pulumi.String("P30D"),
    			IdProperties: pulumi.StringArray{
    				pulumi.String("id"),
    			},
    			Storage: &iot.TimeSeriesInsightsGen2EnvironmentStorageArgs{
    				Name: storage.Name,
    				Key:  storage.PrimaryAccessKey,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var storage = new Azure.Storage.Account("storage", new()
        {
            Name = "example",
            Location = example.Location,
            ResourceGroupName = example.Name,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
        });
    
        var exampleTimeSeriesInsightsGen2Environment = new Azure.Iot.TimeSeriesInsightsGen2Environment("example", new()
        {
            Name = "example",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "L1",
            WarmStoreDataRetentionTime = "P30D",
            IdProperties = new[]
            {
                "id",
            },
            Storage = new Azure.Iot.Inputs.TimeSeriesInsightsGen2EnvironmentStorageArgs
            {
                Name = storage.Name,
                Key = storage.PrimaryAccessKey,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.iot.TimeSeriesInsightsGen2Environment;
    import com.pulumi.azure.iot.TimeSeriesInsightsGen2EnvironmentArgs;
    import com.pulumi.azure.iot.inputs.TimeSeriesInsightsGen2EnvironmentStorageArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var storage = new Account("storage", AccountArgs.builder()        
                .name("example")
                .location(example.location())
                .resourceGroupName(example.name())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .build());
    
            var exampleTimeSeriesInsightsGen2Environment = new TimeSeriesInsightsGen2Environment("exampleTimeSeriesInsightsGen2Environment", TimeSeriesInsightsGen2EnvironmentArgs.builder()        
                .name("example")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("L1")
                .warmStoreDataRetentionTime("P30D")
                .idProperties("id")
                .storage(TimeSeriesInsightsGen2EnvironmentStorageArgs.builder()
                    .name(storage.name())
                    .key(storage.primaryAccessKey())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      storage:
        type: azure:storage:Account
        properties:
          name: example
          location: ${example.location}
          resourceGroupName: ${example.name}
          accountTier: Standard
          accountReplicationType: LRS
      exampleTimeSeriesInsightsGen2Environment:
        type: azure:iot:TimeSeriesInsightsGen2Environment
        name: example
        properties:
          name: example
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: L1
          warmStoreDataRetentionTime: P30D
          idProperties:
            - id
          storage:
            name: ${storage.name}
            key: ${storage.primaryAccessKey}
    

    Create TimeSeriesInsightsGen2Environment Resource

    new TimeSeriesInsightsGen2Environment(name: string, args: TimeSeriesInsightsGen2EnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def TimeSeriesInsightsGen2Environment(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          id_properties: Optional[Sequence[str]] = None,
                                          location: Optional[str] = None,
                                          name: Optional[str] = None,
                                          resource_group_name: Optional[str] = None,
                                          sku_name: Optional[str] = None,
                                          storage: Optional[TimeSeriesInsightsGen2EnvironmentStorageArgs] = None,
                                          tags: Optional[Mapping[str, str]] = None,
                                          warm_store_data_retention_time: Optional[str] = None)
    @overload
    def TimeSeriesInsightsGen2Environment(resource_name: str,
                                          args: TimeSeriesInsightsGen2EnvironmentArgs,
                                          opts: Optional[ResourceOptions] = None)
    func NewTimeSeriesInsightsGen2Environment(ctx *Context, name string, args TimeSeriesInsightsGen2EnvironmentArgs, opts ...ResourceOption) (*TimeSeriesInsightsGen2Environment, error)
    public TimeSeriesInsightsGen2Environment(string name, TimeSeriesInsightsGen2EnvironmentArgs args, CustomResourceOptions? opts = null)
    public TimeSeriesInsightsGen2Environment(String name, TimeSeriesInsightsGen2EnvironmentArgs args)
    public TimeSeriesInsightsGen2Environment(String name, TimeSeriesInsightsGen2EnvironmentArgs args, CustomResourceOptions options)
    
    type: azure:iot:TimeSeriesInsightsGen2Environment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args TimeSeriesInsightsGen2EnvironmentArgs
    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 TimeSeriesInsightsGen2EnvironmentArgs
    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 TimeSeriesInsightsGen2EnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TimeSeriesInsightsGen2EnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TimeSeriesInsightsGen2EnvironmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    TimeSeriesInsightsGen2Environment 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 TimeSeriesInsightsGen2Environment resource accepts the following input properties:

    IdProperties List<string>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    Storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WarmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    IdProperties []string
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    Storage TimeSeriesInsightsGen2EnvironmentStorageArgs
    A storage block as defined below.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WarmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    idProperties List<String>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime String
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    idProperties string[]
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    id_properties Sequence[str]
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    sku_name str
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorageArgs
    A storage block as defined below.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    warm_store_data_retention_time str
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    idProperties List<String>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage Property Map
    A storage block as defined below.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    tags Map<String>
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime String
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.

    Outputs

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

    DataAccessFqdn string
    The FQDN used to access the environment data.
    Id string
    The provider-assigned unique ID for this managed resource.
    DataAccessFqdn string
    The FQDN used to access the environment data.
    Id string
    The provider-assigned unique ID for this managed resource.
    dataAccessFqdn String
    The FQDN used to access the environment data.
    id String
    The provider-assigned unique ID for this managed resource.
    dataAccessFqdn string
    The FQDN used to access the environment data.
    id string
    The provider-assigned unique ID for this managed resource.
    data_access_fqdn str
    The FQDN used to access the environment data.
    id str
    The provider-assigned unique ID for this managed resource.
    dataAccessFqdn String
    The FQDN used to access the environment data.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TimeSeriesInsightsGen2Environment Resource

    Get an existing TimeSeriesInsightsGen2Environment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TimeSeriesInsightsGen2EnvironmentState, opts?: CustomResourceOptions): TimeSeriesInsightsGen2Environment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_access_fqdn: Optional[str] = None,
            id_properties: Optional[Sequence[str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            sku_name: Optional[str] = None,
            storage: Optional[TimeSeriesInsightsGen2EnvironmentStorageArgs] = None,
            tags: Optional[Mapping[str, str]] = None,
            warm_store_data_retention_time: Optional[str] = None) -> TimeSeriesInsightsGen2Environment
    func GetTimeSeriesInsightsGen2Environment(ctx *Context, name string, id IDInput, state *TimeSeriesInsightsGen2EnvironmentState, opts ...ResourceOption) (*TimeSeriesInsightsGen2Environment, error)
    public static TimeSeriesInsightsGen2Environment Get(string name, Input<string> id, TimeSeriesInsightsGen2EnvironmentState? state, CustomResourceOptions? opts = null)
    public static TimeSeriesInsightsGen2Environment get(String name, Output<String> id, TimeSeriesInsightsGen2EnvironmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DataAccessFqdn string
    The FQDN used to access the environment data.
    IdProperties List<string>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    ResourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    Storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WarmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    DataAccessFqdn string
    The FQDN used to access the environment data.
    IdProperties []string
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    ResourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    SkuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    Storage TimeSeriesInsightsGen2EnvironmentStorageArgs
    A storage block as defined below.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WarmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    dataAccessFqdn String
    The FQDN used to access the environment data.
    idProperties List<String>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName String
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime String
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    dataAccessFqdn string
    The FQDN used to access the environment data.
    idProperties string[]
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName string
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName string
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorage
    A storage block as defined below.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime string
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    data_access_fqdn str
    The FQDN used to access the environment data.
    id_properties Sequence[str]
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    resource_group_name str
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    sku_name str
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage TimeSeriesInsightsGen2EnvironmentStorageArgs
    A storage block as defined below.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    warm_store_data_retention_time str
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    dataAccessFqdn String
    The FQDN used to access the environment data.
    idProperties List<String>
    A list of property ids for the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created. Must be globally unique.
    resourceGroupName String
    The name of the resource group in which to create the Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    skuName String
    Specifies the SKU Name for this IoT Time Series Insights Gen2 Environment. Currently it supports only L1. For gen2, capacity cannot be specified. Changing this forces a new resource to be created.
    storage Property Map
    A storage block as defined below.
    tags Map<String>
    A mapping of tags to assign to the resource.
    warmStoreDataRetentionTime String
    Specifies the ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.

    Supporting Types

    TimeSeriesInsightsGen2EnvironmentStorage, TimeSeriesInsightsGen2EnvironmentStorageArgs

    Key string
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    Name string
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    Key string
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    Name string
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    key String
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    name String
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    key string
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    name string
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    key str
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    name str
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.
    key String
    Access key of storage account for Azure IoT Time Series Insights Gen2 Environment
    name String
    Name of storage account for Azure IoT Time Series Insights Gen2 Environment. Changing this forces a new resource to be created.

    Import

    Azure IoT Time Series Insights Gen2 Environment can be imported using the resource id, e.g.

    $ pulumi import azure:iot/timeSeriesInsightsGen2Environment:TimeSeriesInsightsGen2Environment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.TimeSeriesInsights/environments/example
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.70.0 published on Wednesday, Mar 27, 2024 by Pulumi