1. Packages
  2. Azure Native
  3. API Docs
  4. timeseriesinsights
  5. Gen1Environment
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.timeseriesinsights.Gen1Environment

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    An environment is a set of time-series data available for query, and is the top level Azure Time Series Insights resource. Gen1 environments have data retention limits. Azure REST API version: 2020-05-15. Prior API version in Azure Native 1.x: 2020-05-15.

    Example Usage

    EnvironmentsCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var gen1Environment = new AzureNative.TimeSeriesInsights.Gen1Environment("gen1Environment", new()
        {
            DataRetentionTime = "P31D",
            EnvironmentName = "env1",
            Kind = "Gen1",
            Location = "West US",
            PartitionKeyProperties = new[]
            {
                new AzureNative.TimeSeriesInsights.Inputs.TimeSeriesIdPropertyArgs
                {
                    Name = "DeviceId1",
                    Type = AzureNative.TimeSeriesInsights.PropertyType.String,
                },
            },
            ResourceGroupName = "rg1",
            Sku = new AzureNative.TimeSeriesInsights.Inputs.SkuArgs
            {
                Capacity = 1,
                Name = AzureNative.TimeSeriesInsights.SkuName.S1,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/timeseriesinsights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := timeseriesinsights.NewGen1Environment(ctx, "gen1Environment", &timeseriesinsights.Gen1EnvironmentArgs{
    			DataRetentionTime: pulumi.String("P31D"),
    			EnvironmentName:   pulumi.String("env1"),
    			Kind:              pulumi.String("Gen1"),
    			Location:          pulumi.String("West US"),
    			PartitionKeyProperties: timeseriesinsights.TimeSeriesIdPropertyArray{
    				&timeseriesinsights.TimeSeriesIdPropertyArgs{
    					Name: pulumi.String("DeviceId1"),
    					Type: pulumi.String(timeseriesinsights.PropertyTypeString),
    				},
    			},
    			ResourceGroupName: pulumi.String("rg1"),
    			Sku: &timeseriesinsights.SkuArgs{
    				Capacity: pulumi.Int(1),
    				Name:     pulumi.String(timeseriesinsights.SkuNameS1),
    			},
    		})
    		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.timeseriesinsights.Gen1Environment;
    import com.pulumi.azurenative.timeseriesinsights.Gen1EnvironmentArgs;
    import com.pulumi.azurenative.timeseriesinsights.inputs.TimeSeriesIdPropertyArgs;
    import com.pulumi.azurenative.timeseriesinsights.inputs.SkuArgs;
    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 gen1Environment = new Gen1Environment("gen1Environment", Gen1EnvironmentArgs.builder()        
                .dataRetentionTime("P31D")
                .environmentName("env1")
                .kind("Gen1")
                .location("West US")
                .partitionKeyProperties(TimeSeriesIdPropertyArgs.builder()
                    .name("DeviceId1")
                    .type("String")
                    .build())
                .resourceGroupName("rg1")
                .sku(SkuArgs.builder()
                    .capacity(1)
                    .name("S1")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    gen1_environment = azure_native.timeseriesinsights.Gen1Environment("gen1Environment",
        data_retention_time="P31D",
        environment_name="env1",
        kind="Gen1",
        location="West US",
        partition_key_properties=[azure_native.timeseriesinsights.TimeSeriesIdPropertyArgs(
            name="DeviceId1",
            type=azure_native.timeseriesinsights.PropertyType.STRING,
        )],
        resource_group_name="rg1",
        sku=azure_native.timeseriesinsights.SkuArgs(
            capacity=1,
            name=azure_native.timeseriesinsights.SkuName.S1,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const gen1Environment = new azure_native.timeseriesinsights.Gen1Environment("gen1Environment", {
        dataRetentionTime: "P31D",
        environmentName: "env1",
        kind: "Gen1",
        location: "West US",
        partitionKeyProperties: [{
            name: "DeviceId1",
            type: azure_native.timeseriesinsights.PropertyType.String,
        }],
        resourceGroupName: "rg1",
        sku: {
            capacity: 1,
            name: azure_native.timeseriesinsights.SkuName.S1,
        },
    });
    
    resources:
      gen1Environment:
        type: azure-native:timeseriesinsights:Gen1Environment
        properties:
          dataRetentionTime: P31D
          environmentName: env1
          kind: Gen1
          location: West US
          partitionKeyProperties:
            - name: DeviceId1
              type: String
          resourceGroupName: rg1
          sku:
            capacity: 1
            name: S1
    

    Create Gen1Environment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Gen1Environment(name: string, args: Gen1EnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def Gen1Environment(resource_name: str,
                        args: Gen1EnvironmentArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def Gen1Environment(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        data_retention_time: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        sku: Optional[SkuArgs] = None,
                        environment_name: Optional[str] = None,
                        location: Optional[str] = None,
                        partition_key_properties: Optional[Sequence[TimeSeriesIdPropertyArgs]] = None,
                        storage_limit_exceeded_behavior: Optional[Union[str, StorageLimitExceededBehavior]] = None,
                        tags: Optional[Mapping[str, str]] = None)
    func NewGen1Environment(ctx *Context, name string, args Gen1EnvironmentArgs, opts ...ResourceOption) (*Gen1Environment, error)
    public Gen1Environment(string name, Gen1EnvironmentArgs args, CustomResourceOptions? opts = null)
    public Gen1Environment(String name, Gen1EnvironmentArgs args)
    public Gen1Environment(String name, Gen1EnvironmentArgs args, CustomResourceOptions options)
    
    type: azure-native:timeseriesinsights:Gen1Environment
    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 Gen1EnvironmentArgs
    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 Gen1EnvironmentArgs
    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 Gen1EnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Gen1EnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Gen1EnvironmentArgs
    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 gen1EnvironmentResource = new AzureNative.TimeSeriesInsights.Gen1Environment("gen1EnvironmentResource", new()
    {
        DataRetentionTime = "string",
        Kind = "string",
        ResourceGroupName = "string",
        Sku = new AzureNative.TimeSeriesInsights.Inputs.SkuArgs
        {
            Capacity = 0,
            Name = "string",
        },
        EnvironmentName = "string",
        Location = "string",
        PartitionKeyProperties = new[]
        {
            new AzureNative.TimeSeriesInsights.Inputs.TimeSeriesIdPropertyArgs
            {
                Name = "string",
                Type = "string",
            },
        },
        StorageLimitExceededBehavior = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := timeseriesinsights.NewGen1Environment(ctx, "gen1EnvironmentResource", &timeseriesinsights.Gen1EnvironmentArgs{
    DataRetentionTime: pulumi.String("string"),
    Kind: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Sku: &timeseriesinsights.SkuArgs{
    Capacity: pulumi.Int(0),
    Name: pulumi.String("string"),
    },
    EnvironmentName: pulumi.String("string"),
    Location: pulumi.String("string"),
    PartitionKeyProperties: timeseriesinsights.TimeSeriesIdPropertyArray{
    &timeseriesinsights.TimeSeriesIdPropertyArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    },
    StorageLimitExceededBehavior: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var gen1EnvironmentResource = new Gen1Environment("gen1EnvironmentResource", Gen1EnvironmentArgs.builder()        
        .dataRetentionTime("string")
        .kind("string")
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .capacity(0)
            .name("string")
            .build())
        .environmentName("string")
        .location("string")
        .partitionKeyProperties(TimeSeriesIdPropertyArgs.builder()
            .name("string")
            .type("string")
            .build())
        .storageLimitExceededBehavior("string")
        .tags(Map.of("string", "string"))
        .build());
    
    gen1_environment_resource = azure_native.timeseriesinsights.Gen1Environment("gen1EnvironmentResource",
        data_retention_time="string",
        kind="string",
        resource_group_name="string",
        sku=azure_native.timeseriesinsights.SkuArgs(
            capacity=0,
            name="string",
        ),
        environment_name="string",
        location="string",
        partition_key_properties=[azure_native.timeseriesinsights.TimeSeriesIdPropertyArgs(
            name="string",
            type="string",
        )],
        storage_limit_exceeded_behavior="string",
        tags={
            "string": "string",
        })
    
    const gen1EnvironmentResource = new azure_native.timeseriesinsights.Gen1Environment("gen1EnvironmentResource", {
        dataRetentionTime: "string",
        kind: "string",
        resourceGroupName: "string",
        sku: {
            capacity: 0,
            name: "string",
        },
        environmentName: "string",
        location: "string",
        partitionKeyProperties: [{
            name: "string",
            type: "string",
        }],
        storageLimitExceededBehavior: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:timeseriesinsights:Gen1Environment
    properties:
        dataRetentionTime: string
        environmentName: string
        kind: string
        location: string
        partitionKeyProperties:
            - name: string
              type: string
        resourceGroupName: string
        sku:
            capacity: 0
            name: string
        storageLimitExceededBehavior: string
        tags:
            string: string
    

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

    DataRetentionTime string
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    ResourceGroupName string
    Name of an Azure Resource group.
    Sku Pulumi.AzureNative.TimeSeriesInsights.Inputs.Sku
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    EnvironmentName string
    Name of the environment
    Location string
    The location of the resource.
    PartitionKeyProperties List<Pulumi.AzureNative.TimeSeriesInsights.Inputs.TimeSeriesIdProperty>
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    StorageLimitExceededBehavior string | Pulumi.AzureNative.TimeSeriesInsights.StorageLimitExceededBehavior
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    Tags Dictionary<string, string>
    Key-value pairs of additional properties for the resource.
    DataRetentionTime string
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    ResourceGroupName string
    Name of an Azure Resource group.
    Sku SkuArgs
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    EnvironmentName string
    Name of the environment
    Location string
    The location of the resource.
    PartitionKeyProperties []TimeSeriesIdPropertyArgs
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    StorageLimitExceededBehavior string | StorageLimitExceededBehavior
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    Tags map[string]string
    Key-value pairs of additional properties for the resource.
    dataRetentionTime String
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    resourceGroupName String
    Name of an Azure Resource group.
    sku Sku
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    environmentName String
    Name of the environment
    location String
    The location of the resource.
    partitionKeyProperties List<TimeSeriesIdProperty>
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    storageLimitExceededBehavior String | StorageLimitExceededBehavior
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    tags Map<String,String>
    Key-value pairs of additional properties for the resource.
    dataRetentionTime string
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    resourceGroupName string
    Name of an Azure Resource group.
    sku Sku
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    environmentName string
    Name of the environment
    location string
    The location of the resource.
    partitionKeyProperties TimeSeriesIdProperty[]
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    storageLimitExceededBehavior string | StorageLimitExceededBehavior
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    tags {[key: string]: string}
    Key-value pairs of additional properties for the resource.
    data_retention_time str
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    resource_group_name str
    Name of an Azure Resource group.
    sku SkuArgs
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    environment_name str
    Name of the environment
    location str
    The location of the resource.
    partition_key_properties Sequence[TimeSeriesIdPropertyArgs]
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    storage_limit_exceeded_behavior str | StorageLimitExceededBehavior
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    tags Mapping[str, str]
    Key-value pairs of additional properties for the resource.
    dataRetentionTime String
    ISO8601 timespan specifying the minimum number of days the environment's events will be available for query.
    resourceGroupName String
    Name of an Azure Resource group.
    sku Property Map
    The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.
    environmentName String
    Name of the environment
    location String
    The location of the resource.
    partitionKeyProperties List<Property Map>
    The list of event properties which will be used to partition data in the environment. Currently, only a single partition key property is supported.
    storageLimitExceededBehavior String | "PurgeOldData" | "PauseIngress"
    The behavior the Time Series Insights service should take when the environment's capacity has been exceeded. If "PauseIngress" is specified, new events will not be read from the event source. If "PurgeOldData" is specified, new events will continue to be read and old events will be deleted from the environment. The default behavior is PurgeOldData.
    tags Map<String>
    Key-value pairs of additional properties for the resource.

    Outputs

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

    CreationTime string
    The time the resource was created.
    DataAccessFqdn string
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    DataAccessId string
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name
    ProvisioningState string
    Provisioning state of the resource.
    Status Pulumi.AzureNative.TimeSeriesInsights.Outputs.EnvironmentStatusResponse
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    Type string
    Resource type
    CreationTime string
    The time the resource was created.
    DataAccessFqdn string
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    DataAccessId string
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name
    ProvisioningState string
    Provisioning state of the resource.
    Status EnvironmentStatusResponse
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    Type string
    Resource type
    creationTime String
    The time the resource was created.
    dataAccessFqdn String
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    dataAccessId String
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name
    provisioningState String
    Provisioning state of the resource.
    status EnvironmentStatusResponse
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    type String
    Resource type
    creationTime string
    The time the resource was created.
    dataAccessFqdn string
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    dataAccessId string
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name
    provisioningState string
    Provisioning state of the resource.
    status EnvironmentStatusResponse
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    type string
    Resource type
    creation_time str
    The time the resource was created.
    data_access_fqdn str
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    data_access_id str
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name
    provisioning_state str
    Provisioning state of the resource.
    status EnvironmentStatusResponse
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    type str
    Resource type
    creationTime String
    The time the resource was created.
    dataAccessFqdn String
    The fully qualified domain name used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    dataAccessId String
    An id used to access the environment data, e.g. to query the environment's events or upload reference data for the environment.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name
    provisioningState String
    Provisioning state of the resource.
    status Property Map
    An object that represents the status of the environment, and its internal state in the Time Series Insights service.
    type String
    Resource type

    Supporting Types

    EnvironmentStateDetailsResponse, EnvironmentStateDetailsResponseArgs

    Code string
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    Message string
    A message that describes the state in detail.
    Code string
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    Message string
    A message that describes the state in detail.
    code String
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    message String
    A message that describes the state in detail.
    code string
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    message string
    A message that describes the state in detail.
    code str
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    message str
    A message that describes the state in detail.
    code String
    Contains the code that represents the reason of an environment being in a particular state. Can be used to programmatically handle specific cases.
    message String
    A message that describes the state in detail.

    EnvironmentStatusResponse, EnvironmentStatusResponseArgs

    Ingress Pulumi.AzureNative.TimeSeriesInsights.Inputs.IngressEnvironmentStatusResponse
    An object that represents the status of ingress on an environment.
    WarmStorage Pulumi.AzureNative.TimeSeriesInsights.Inputs.WarmStorageEnvironmentStatusResponse
    An object that represents the status of warm storage on an environment.
    Ingress IngressEnvironmentStatusResponse
    An object that represents the status of ingress on an environment.
    WarmStorage WarmStorageEnvironmentStatusResponse
    An object that represents the status of warm storage on an environment.
    ingress IngressEnvironmentStatusResponse
    An object that represents the status of ingress on an environment.
    warmStorage WarmStorageEnvironmentStatusResponse
    An object that represents the status of warm storage on an environment.
    ingress IngressEnvironmentStatusResponse
    An object that represents the status of ingress on an environment.
    warmStorage WarmStorageEnvironmentStatusResponse
    An object that represents the status of warm storage on an environment.
    ingress IngressEnvironmentStatusResponse
    An object that represents the status of ingress on an environment.
    warm_storage WarmStorageEnvironmentStatusResponse
    An object that represents the status of warm storage on an environment.
    ingress Property Map
    An object that represents the status of ingress on an environment.
    warmStorage Property Map
    An object that represents the status of warm storage on an environment.

    IngressEnvironmentStatusResponse, IngressEnvironmentStatusResponseArgs

    StateDetails Pulumi.AzureNative.TimeSeriesInsights.Inputs.EnvironmentStateDetailsResponse
    An object that contains the details about an environment's state.
    State string
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"
    StateDetails EnvironmentStateDetailsResponse
    An object that contains the details about an environment's state.
    State string
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"
    stateDetails EnvironmentStateDetailsResponse
    An object that contains the details about an environment's state.
    state String
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"
    stateDetails EnvironmentStateDetailsResponse
    An object that contains the details about an environment's state.
    state string
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"
    state_details EnvironmentStateDetailsResponse
    An object that contains the details about an environment's state.
    state str
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"
    stateDetails Property Map
    An object that contains the details about an environment's state.
    state String
    This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running", "Paused" or "Unknown"

    PropertyType, PropertyTypeArgs

    String
    String
    PropertyTypeString
    String
    String
    String
    String
    String
    STRING
    String
    "String"
    String

    Sku, SkuArgs

    Capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    Name string | Pulumi.AzureNative.TimeSeriesInsights.SkuName
    The name of this SKU.
    Capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    Name string | SkuName
    The name of this SKU.
    capacity Integer
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name String | SkuName
    The name of this SKU.
    capacity number
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name string | SkuName
    The name of this SKU.
    capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name str | SkuName
    The name of this SKU.
    capacity Number
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name String | "S1" | "S2" | "P1" | "L1"
    The name of this SKU.

    SkuName, SkuNameArgs

    S1
    S1
    S2
    S2
    P1
    P1
    L1
    L1
    SkuNameS1
    S1
    SkuNameS2
    S2
    SkuNameP1
    P1
    SkuNameL1
    L1
    S1
    S1
    S2
    S2
    P1
    P1
    L1
    L1
    S1
    S1
    S2
    S2
    P1
    P1
    L1
    L1
    S1
    S1
    S2
    S2
    P1
    P1
    L1
    L1
    "S1"
    S1
    "S2"
    S2
    "P1"
    P1
    "L1"
    L1

    SkuResponse, SkuResponseArgs

    Capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    Name string
    The name of this SKU.
    Capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    Name string
    The name of this SKU.
    capacity Integer
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name String
    The name of this SKU.
    capacity number
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name string
    The name of this SKU.
    capacity int
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name str
    The name of this SKU.
    capacity Number
    The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.
    name String
    The name of this SKU.

    StorageLimitExceededBehavior, StorageLimitExceededBehaviorArgs

    PurgeOldData
    PurgeOldData
    PauseIngress
    PauseIngress
    StorageLimitExceededBehaviorPurgeOldData
    PurgeOldData
    StorageLimitExceededBehaviorPauseIngress
    PauseIngress
    PurgeOldData
    PurgeOldData
    PauseIngress
    PauseIngress
    PurgeOldData
    PurgeOldData
    PauseIngress
    PauseIngress
    PURGE_OLD_DATA
    PurgeOldData
    PAUSE_INGRESS
    PauseIngress
    "PurgeOldData"
    PurgeOldData
    "PauseIngress"
    PauseIngress

    TimeSeriesIdProperty, TimeSeriesIdPropertyArgs

    Name string
    The name of the property.
    Type string | Pulumi.AzureNative.TimeSeriesInsights.PropertyType
    The type of the property.
    Name string
    The name of the property.
    Type string | PropertyType
    The type of the property.
    name String
    The name of the property.
    type String | PropertyType
    The type of the property.
    name string
    The name of the property.
    type string | PropertyType
    The type of the property.
    name str
    The name of the property.
    type str | PropertyType
    The type of the property.
    name String
    The name of the property.
    type String | "String"
    The type of the property.

    TimeSeriesIdPropertyResponse, TimeSeriesIdPropertyResponseArgs

    Name string
    The name of the property.
    Type string
    The type of the property.
    Name string
    The name of the property.
    Type string
    The type of the property.
    name String
    The name of the property.
    type String
    The type of the property.
    name string
    The name of the property.
    type string
    The type of the property.
    name str
    The name of the property.
    type str
    The type of the property.
    name String
    The name of the property.
    type String
    The type of the property.

    WarmStorageEnvironmentStatusResponse, WarmStorageEnvironmentStatusResponseArgs

    CurrentCount int
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    MaxCount int
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    State string
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
    CurrentCount int
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    MaxCount int
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    State string
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
    currentCount Integer
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    maxCount Integer
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    state String
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
    currentCount number
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    maxCount number
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    state string
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
    current_count int
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    max_count int
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    state str
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
    currentCount Number
    A value that represents the number of properties used by the environment for S1/S2 SKU and number of properties used by Warm Store for PAYG SKU
    maxCount Number
    A value that represents the maximum number of properties used allowed by the environment for S1/S2 SKU and maximum number of properties allowed by Warm Store for PAYG SKU.
    state String
    This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:timeseriesinsights:Gen1Environment env1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TimeSeriesInsights/environments/{environmentName} 
    

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi