azure-native.timeseriesinsights.Gen2Environment
Explore with Pulumi AI
An environment is a set of time-series data available for query, and is the top level Azure Time Series Insights resource. Gen2 environments do not have set 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 gen2Environment = new AzureNative.TimeSeriesInsights.Gen2Environment("gen2Environment", new()
{
EnvironmentName = "env1",
ResourceGroupName = "rg1",
});
});
package main
import (
timeseriesinsights "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.NewGen2Environment(ctx, "gen2Environment", ×eriesinsights.Gen2EnvironmentArgs{
EnvironmentName: pulumi.String("env1"),
ResourceGroupName: pulumi.String("rg1"),
})
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.Gen2Environment;
import com.pulumi.azurenative.timeseriesinsights.Gen2EnvironmentArgs;
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 gen2Environment = new Gen2Environment("gen2Environment", Gen2EnvironmentArgs.builder()
.environmentName("env1")
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
gen2_environment = azure_native.timeseriesinsights.Gen2Environment("gen2Environment",
environment_name="env1",
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const gen2Environment = new azure_native.timeseriesinsights.Gen2Environment("gen2Environment", {
environmentName: "env1",
resourceGroupName: "rg1",
});
resources:
gen2Environment:
type: azure-native:timeseriesinsights:Gen2Environment
properties:
environmentName: env1
resourceGroupName: rg1
Create Gen2Environment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Gen2Environment(name: string, args: Gen2EnvironmentArgs, opts?: CustomResourceOptions);
@overload
def Gen2Environment(resource_name: str,
args: Gen2EnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Gen2Environment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
storage_configuration: Optional[Gen2StorageConfigurationInputArgs] = None,
time_series_id_properties: Optional[Sequence[TimeSeriesIdPropertyArgs]] = None,
environment_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
warm_store_configuration: Optional[WarmStoreConfigurationPropertiesArgs] = None)
func NewGen2Environment(ctx *Context, name string, args Gen2EnvironmentArgs, opts ...ResourceOption) (*Gen2Environment, error)
public Gen2Environment(string name, Gen2EnvironmentArgs args, CustomResourceOptions? opts = null)
public Gen2Environment(String name, Gen2EnvironmentArgs args)
public Gen2Environment(String name, Gen2EnvironmentArgs args, CustomResourceOptions options)
type: azure-native:timeseriesinsights:Gen2Environment
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 Gen2EnvironmentArgs
- 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 Gen2EnvironmentArgs
- 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 Gen2EnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Gen2EnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Gen2EnvironmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var gen2EnvironmentResource = new AzureNative.TimeSeriesInsights.Gen2Environment("gen2EnvironmentResource", new()
{
Kind = "string",
ResourceGroupName = "string",
Sku = new AzureNative.TimeSeriesInsights.Inputs.SkuArgs
{
Capacity = 0,
Name = "string",
},
StorageConfiguration = new AzureNative.TimeSeriesInsights.Inputs.Gen2StorageConfigurationInputArgs
{
AccountName = "string",
ManagementKey = "string",
},
TimeSeriesIdProperties = new[]
{
new AzureNative.TimeSeriesInsights.Inputs.TimeSeriesIdPropertyArgs
{
Name = "string",
Type = "string",
},
},
EnvironmentName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
WarmStoreConfiguration = new AzureNative.TimeSeriesInsights.Inputs.WarmStoreConfigurationPropertiesArgs
{
DataRetention = "string",
},
});
example, err := timeseriesinsights.NewGen2Environment(ctx, "gen2EnvironmentResource", ×eriesinsights.Gen2EnvironmentArgs{
Kind: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Sku: ×eriesinsights.SkuArgs{
Capacity: pulumi.Int(0),
Name: pulumi.String("string"),
},
StorageConfiguration: ×eriesinsights.Gen2StorageConfigurationInputArgs{
AccountName: pulumi.String("string"),
ManagementKey: pulumi.String("string"),
},
TimeSeriesIdProperties: timeseriesinsights.TimeSeriesIdPropertyArray{
×eriesinsights.TimeSeriesIdPropertyArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
EnvironmentName: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
WarmStoreConfiguration: ×eriesinsights.WarmStoreConfigurationPropertiesArgs{
DataRetention: pulumi.String("string"),
},
})
var gen2EnvironmentResource = new Gen2Environment("gen2EnvironmentResource", Gen2EnvironmentArgs.builder()
.kind("string")
.resourceGroupName("string")
.sku(SkuArgs.builder()
.capacity(0)
.name("string")
.build())
.storageConfiguration(Gen2StorageConfigurationInputArgs.builder()
.accountName("string")
.managementKey("string")
.build())
.timeSeriesIdProperties(TimeSeriesIdPropertyArgs.builder()
.name("string")
.type("string")
.build())
.environmentName("string")
.location("string")
.tags(Map.of("string", "string"))
.warmStoreConfiguration(WarmStoreConfigurationPropertiesArgs.builder()
.dataRetention("string")
.build())
.build());
gen2_environment_resource = azure_native.timeseriesinsights.Gen2Environment("gen2EnvironmentResource",
kind="string",
resource_group_name="string",
sku=azure_native.timeseriesinsights.SkuArgs(
capacity=0,
name="string",
),
storage_configuration=azure_native.timeseriesinsights.Gen2StorageConfigurationInputArgs(
account_name="string",
management_key="string",
),
time_series_id_properties=[azure_native.timeseriesinsights.TimeSeriesIdPropertyArgs(
name="string",
type="string",
)],
environment_name="string",
location="string",
tags={
"string": "string",
},
warm_store_configuration=azure_native.timeseriesinsights.WarmStoreConfigurationPropertiesArgs(
data_retention="string",
))
const gen2EnvironmentResource = new azure_native.timeseriesinsights.Gen2Environment("gen2EnvironmentResource", {
kind: "string",
resourceGroupName: "string",
sku: {
capacity: 0,
name: "string",
},
storageConfiguration: {
accountName: "string",
managementKey: "string",
},
timeSeriesIdProperties: [{
name: "string",
type: "string",
}],
environmentName: "string",
location: "string",
tags: {
string: "string",
},
warmStoreConfiguration: {
dataRetention: "string",
},
});
type: azure-native:timeseriesinsights:Gen2Environment
properties:
environmentName: string
kind: string
location: string
resourceGroupName: string
sku:
capacity: 0
name: string
storageConfiguration:
accountName: string
managementKey: string
tags:
string: string
timeSeriesIdProperties:
- name: string
type: string
warmStoreConfiguration:
dataRetention: string
Gen2Environment 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 Gen2Environment resource accepts the following input properties:
- Resource
Group stringName - Name of an Azure Resource group.
- Sku
Pulumi.
Azure Native. Time Series Insights. 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.
- Storage
Configuration Pulumi.Azure Native. Time Series Insights. Inputs. Gen2Storage Configuration Input - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- Time
Series List<Pulumi.Id Properties Azure Native. Time Series Insights. Inputs. Time Series Id Property> - The list of event properties which will be used to define the environment's time series id.
- Environment
Name string - Name of the environment
- Location string
- The location of the resource.
- Dictionary<string, string>
- Key-value pairs of additional properties for the resource.
- Warm
Store Pulumi.Configuration Azure Native. Time Series Insights. Inputs. Warm Store Configuration Properties - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
- Resource
Group stringName - Name of an Azure Resource group.
- Sku
Sku
Args - 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.
- Storage
Configuration Gen2StorageConfiguration Input Args - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- Time
Series []TimeId Properties Series Id Property Args - The list of event properties which will be used to define the environment's time series id.
- Environment
Name string - Name of the environment
- Location string
- The location of the resource.
- map[string]string
- Key-value pairs of additional properties for the resource.
- Warm
Store WarmConfiguration Store Configuration Properties Args - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
- resource
Group StringName - 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.
- storage
Configuration Gen2StorageConfiguration Input - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- time
Series List<TimeId Properties Series Id Property> - The list of event properties which will be used to define the environment's time series id.
- environment
Name String - Name of the environment
- location String
- The location of the resource.
- Map<String,String>
- Key-value pairs of additional properties for the resource.
- warm
Store WarmConfiguration Store Configuration Properties - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
- resource
Group stringName - 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.
- storage
Configuration Gen2StorageConfiguration Input - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- time
Series TimeId Properties Series Id Property[] - The list of event properties which will be used to define the environment's time series id.
- environment
Name string - Name of the environment
- location string
- The location of the resource.
- {[key: string]: string}
- Key-value pairs of additional properties for the resource.
- warm
Store WarmConfiguration Store Configuration Properties - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
- resource_
group_ strname - Name of an Azure Resource group.
- sku
Sku
Args - 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.
- storage_
configuration Gen2StorageConfiguration Input Args - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- time_
series_ Sequence[Timeid_ properties Series Id Property Args] - The list of event properties which will be used to define the environment's time series id.
- environment_
name str - Name of the environment
- location str
- The location of the resource.
- Mapping[str, str]
- Key-value pairs of additional properties for the resource.
- warm_
store_ Warmconfiguration Store Configuration Properties Args - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
- resource
Group StringName - 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.
- storage
Configuration Property Map - The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data.
- time
Series List<Property Map>Id Properties - The list of event properties which will be used to define the environment's time series id.
- environment
Name String - Name of the environment
- location String
- The location of the resource.
- Map<String>
- Key-value pairs of additional properties for the resource.
- warm
Store Property MapConfiguration - The warm store configuration provides the details to create a warm store cache that will retain a copy of the environment's data available for faster query.
Outputs
All input properties are implicitly available as output properties. Additionally, the Gen2Environment resource produces the following output properties:
- Creation
Time string - The time the resource was created.
- Data
Access stringFqdn - 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 stringId - 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
- Provisioning
State string - Provisioning state of the resource.
- Status
Pulumi.
Azure Native. Time Series Insights. Outputs. Environment Status Response - 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 string - The time the resource was created.
- Data
Access stringFqdn - 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 stringId - 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
- Provisioning
State string - Provisioning state of the resource.
- Status
Environment
Status Response - 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 String - The time the resource was created.
- data
Access StringFqdn - 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 StringId - 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
- provisioning
State String - Provisioning state of the resource.
- status
Environment
Status Response - 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 string - The time the resource was created.
- data
Access stringFqdn - 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 stringId - 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
- provisioning
State string - Provisioning state of the resource.
- status
Environment
Status Response - 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_ strfqdn - 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_ strid - 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
Environment
Status Response - An object that represents the status of the environment, and its internal state in the Time Series Insights service.
- type str
- Resource type
- creation
Time String - The time the resource was created.
- data
Access StringFqdn - 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 StringId - 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
- provisioning
State 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
EnvironmentStatusResponse, EnvironmentStatusResponseArgs
- Ingress
Pulumi.
Azure Native. Time Series Insights. Inputs. Ingress Environment Status Response - An object that represents the status of ingress on an environment.
- Warm
Storage Pulumi.Azure Native. Time Series Insights. Inputs. Warm Storage Environment Status Response - An object that represents the status of warm storage on an environment.
- Ingress
Ingress
Environment Status Response - An object that represents the status of ingress on an environment.
- Warm
Storage WarmStorage Environment Status Response - An object that represents the status of warm storage on an environment.
- ingress
Ingress
Environment Status Response - An object that represents the status of ingress on an environment.
- warm
Storage WarmStorage Environment Status Response - An object that represents the status of warm storage on an environment.
- ingress
Ingress
Environment Status Response - An object that represents the status of ingress on an environment.
- warm
Storage WarmStorage Environment Status Response - An object that represents the status of warm storage on an environment.
- ingress
Ingress
Environment Status Response - An object that represents the status of ingress on an environment.
- warm_
storage WarmStorage Environment Status Response - 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.
- warm
Storage Property Map - An object that represents the status of warm storage on an environment.
Gen2StorageConfigurationInput, Gen2StorageConfigurationInputArgs
- Account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- Management
Key string - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
- Account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- Management
Key string - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
- account
Name String - The name of the storage account that will hold the environment's Gen2 data.
- management
Key String - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
- account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- management
Key string - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
- account_
name str - The name of the storage account that will hold the environment's Gen2 data.
- management_
key str - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
- account
Name String - The name of the storage account that will hold the environment's Gen2 data.
- management
Key String - The value of the management key that grants the Time Series Insights service write access to the storage account. This property is not shown in environment responses.
Gen2StorageConfigurationOutputResponse, Gen2StorageConfigurationOutputResponseArgs
- Account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- Account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- account
Name String - The name of the storage account that will hold the environment's Gen2 data.
- account
Name string - The name of the storage account that will hold the environment's Gen2 data.
- account_
name str - The name of the storage account that will hold the environment's Gen2 data.
- account
Name String - The name of the storage account that will hold the environment's Gen2 data.
IngressEnvironmentStatusResponse, IngressEnvironmentStatusResponseArgs
- State
Details Pulumi.Azure Native. Time Series Insights. Inputs. Environment State Details Response - 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 EnvironmentState Details Response - 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 EnvironmentState Details Response - 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 EnvironmentState Details Response - 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 EnvironmentState Details Response - 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"
- state
Details 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
- Property
Type String - 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.
Azure Native. Time Series Insights. Sku Name - 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
- Sku
Name S1 - S1
- Sku
Name S2 - S2
- Sku
Name P1 - P1
- Sku
Name 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
- "S1"
- S1
- "S2"
- S2
- "P1"
- P1
- "L1"
- L1
SkuResponse, SkuResponseArgs
TimeSeriesIdProperty, TimeSeriesIdPropertyArgs
- Name string
- The name of the property.
- Type
string | Pulumi.
Azure Native. Time Series Insights. Property Type - The type of the property.
- Name string
- The name of the property.
- Type
string | Property
Type - The type of the property.
- name String
- The name of the property.
- type
String | Property
Type - The type of the property.
- name string
- The name of the property.
- type
string | Property
Type - The type of the property.
- name str
- The name of the property.
- type
str | Property
Type - The type of the property.
TimeSeriesIdPropertyResponse, TimeSeriesIdPropertyResponseArgs
WarmStorageEnvironmentStatusResponse, WarmStorageEnvironmentStatusResponseArgs
- 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 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 string
- This string represents the state of warm storage properties usage. It can be "Ok", "Error", "Unknown".
- current
Count 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
- max
Count 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".
- current
Count 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
- max
Count 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".
- current
Count 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
- max
Count 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".
WarmStoreConfigurationProperties, WarmStoreConfigurationPropertiesArgs
- Data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- Data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention String - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data_
retention str - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention String - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
WarmStoreConfigurationPropertiesResponse, WarmStoreConfigurationPropertiesResponseArgs
- Data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- Data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention String - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention string - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data_
retention str - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
- data
Retention String - ISO8601 timespan specifying the number of days the environment's events will be available for query from the warm store.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:timeseriesinsights:Gen2Environment 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