azure-native.timeseriesinsights.IoTHubEventSource
Explore with Pulumi AI
An event source that receives its data from an Azure IoTHub. API Version: 2020-05-15.
Example Usage
CreateEventHubEventSource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var ioTHubEventSource = new AzureNative.TimeSeriesInsights.IoTHubEventSource("ioTHubEventSource", new()
{
EnvironmentName = "env1",
EventSourceName = "es1",
ResourceGroupName = "rg1",
});
});
package main
import (
timeseriesinsights "github.com/pulumi/pulumi-azure-native-sdk/timeseriesinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := timeseriesinsights.NewIoTHubEventSource(ctx, "ioTHubEventSource", ×eriesinsights.IoTHubEventSourceArgs{
EnvironmentName: pulumi.String("env1"),
EventSourceName: pulumi.String("es1"),
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.IoTHubEventSource;
import com.pulumi.azurenative.timeseriesinsights.IoTHubEventSourceArgs;
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 ioTHubEventSource = new IoTHubEventSource("ioTHubEventSource", IoTHubEventSourceArgs.builder()
.environmentName("env1")
.eventSourceName("es1")
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
io_t_hub_event_source = azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSource",
environment_name="env1",
event_source_name="es1",
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const ioTHubEventSource = new azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSource", {
environmentName: "env1",
eventSourceName: "es1",
resourceGroupName: "rg1",
});
resources:
ioTHubEventSource:
type: azure-native:timeseriesinsights:IoTHubEventSource
properties:
environmentName: env1
eventSourceName: es1
resourceGroupName: rg1
EventSourcesCreateEventHubWithCustomEnquedTime
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var ioTHubEventSource = new AzureNative.TimeSeriesInsights.IoTHubEventSource("ioTHubEventSource", new()
{
EnvironmentName = "env1",
EventSourceName = "es1",
ResourceGroupName = "rg1",
});
});
package main
import (
timeseriesinsights "github.com/pulumi/pulumi-azure-native-sdk/timeseriesinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := timeseriesinsights.NewIoTHubEventSource(ctx, "ioTHubEventSource", ×eriesinsights.IoTHubEventSourceArgs{
EnvironmentName: pulumi.String("env1"),
EventSourceName: pulumi.String("es1"),
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.IoTHubEventSource;
import com.pulumi.azurenative.timeseriesinsights.IoTHubEventSourceArgs;
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 ioTHubEventSource = new IoTHubEventSource("ioTHubEventSource", IoTHubEventSourceArgs.builder()
.environmentName("env1")
.eventSourceName("es1")
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
io_t_hub_event_source = azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSource",
environment_name="env1",
event_source_name="es1",
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const ioTHubEventSource = new azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSource", {
environmentName: "env1",
eventSourceName: "es1",
resourceGroupName: "rg1",
});
resources:
ioTHubEventSource:
type: azure-native:timeseriesinsights:IoTHubEventSource
properties:
environmentName: env1
eventSourceName: es1
resourceGroupName: rg1
Create IoTHubEventSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IoTHubEventSource(name: string, args: IoTHubEventSourceArgs, opts?: CustomResourceOptions);
@overload
def IoTHubEventSource(resource_name: str,
args: IoTHubEventSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IoTHubEventSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
shared_access_key: Optional[str] = None,
resource_group_name: Optional[str] = None,
event_source_resource_id: Optional[str] = None,
iot_hub_name: Optional[str] = None,
key_name: Optional[str] = None,
environment_name: Optional[str] = None,
consumer_group_name: Optional[str] = None,
location: Optional[str] = None,
event_source_name: Optional[str] = None,
local_timestamp: Optional[LocalTimestampArgs] = None,
tags: Optional[Mapping[str, str]] = None,
time: Optional[str] = None,
timestamp_property_name: Optional[str] = None,
type: Optional[Union[str, IngressStartAtType]] = None)
func NewIoTHubEventSource(ctx *Context, name string, args IoTHubEventSourceArgs, opts ...ResourceOption) (*IoTHubEventSource, error)
public IoTHubEventSource(string name, IoTHubEventSourceArgs args, CustomResourceOptions? opts = null)
public IoTHubEventSource(String name, IoTHubEventSourceArgs args)
public IoTHubEventSource(String name, IoTHubEventSourceArgs args, CustomResourceOptions options)
type: azure-native:timeseriesinsights:IoTHubEventSource
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 IoTHubEventSourceArgs
- 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 IoTHubEventSourceArgs
- 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 IoTHubEventSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IoTHubEventSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IoTHubEventSourceArgs
- 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 ioTHubEventSourceResource = new AzureNative.Timeseriesinsights.IoTHubEventSource("ioTHubEventSourceResource", new()
{
Kind = "string",
SharedAccessKey = "string",
ResourceGroupName = "string",
EventSourceResourceId = "string",
IotHubName = "string",
KeyName = "string",
EnvironmentName = "string",
ConsumerGroupName = "string",
Location = "string",
EventSourceName = "string",
LocalTimestamp =
{
{ "format", "string" },
{ "timeZoneOffset",
{
{ "propertyName", "string" },
} },
},
Tags =
{
{ "string", "string" },
},
Time = "string",
TimestampPropertyName = "string",
Type = "string",
});
example, err := timeseriesinsights.NewIoTHubEventSource(ctx, "ioTHubEventSourceResource", ×eriesinsights.IoTHubEventSourceArgs{
Kind: "string",
SharedAccessKey: "string",
ResourceGroupName: "string",
EventSourceResourceId: "string",
IotHubName: "string",
KeyName: "string",
EnvironmentName: "string",
ConsumerGroupName: "string",
Location: "string",
EventSourceName: "string",
LocalTimestamp: map[string]interface{}{
"format": "string",
"timeZoneOffset": map[string]interface{}{
"propertyName": "string",
},
},
Tags: map[string]interface{}{
"string": "string",
},
Time: "string",
TimestampPropertyName: "string",
Type: "string",
})
var ioTHubEventSourceResource = new IoTHubEventSource("ioTHubEventSourceResource", IoTHubEventSourceArgs.builder()
.kind("string")
.sharedAccessKey("string")
.resourceGroupName("string")
.eventSourceResourceId("string")
.iotHubName("string")
.keyName("string")
.environmentName("string")
.consumerGroupName("string")
.location("string")
.eventSourceName("string")
.localTimestamp(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.time("string")
.timestampPropertyName("string")
.type("string")
.build());
io_t_hub_event_source_resource = azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSourceResource",
kind=string,
shared_access_key=string,
resource_group_name=string,
event_source_resource_id=string,
iot_hub_name=string,
key_name=string,
environment_name=string,
consumer_group_name=string,
location=string,
event_source_name=string,
local_timestamp={
format: string,
timeZoneOffset: {
propertyName: string,
},
},
tags={
string: string,
},
time=string,
timestamp_property_name=string,
type=string)
const ioTHubEventSourceResource = new azure_native.timeseriesinsights.IoTHubEventSource("ioTHubEventSourceResource", {
kind: "string",
sharedAccessKey: "string",
resourceGroupName: "string",
eventSourceResourceId: "string",
iotHubName: "string",
keyName: "string",
environmentName: "string",
consumerGroupName: "string",
location: "string",
eventSourceName: "string",
localTimestamp: {
format: "string",
timeZoneOffset: {
propertyName: "string",
},
},
tags: {
string: "string",
},
time: "string",
timestampPropertyName: "string",
type: "string",
});
type: azure-native:timeseriesinsights:IoTHubEventSource
properties:
consumerGroupName: string
environmentName: string
eventSourceName: string
eventSourceResourceId: string
iotHubName: string
keyName: string
kind: string
localTimestamp:
format: string
timeZoneOffset:
propertyName: string
location: string
resourceGroupName: string
sharedAccessKey: string
tags:
string: string
time: string
timestampPropertyName: string
type: string
IoTHubEventSource 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 IoTHubEventSource resource accepts the following input properties:
- Consumer
Group stringName - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- Environment
Name string - The name of the Time Series Insights environment associated with the specified resource group.
- Event
Source stringResource Id - The resource id of the event source in Azure Resource Manager.
- Iot
Hub stringName - The name of the iot hub.
- Key
Name string - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- Resource
Group stringName - Name of an Azure Resource group.
- string
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- Event
Source stringName - Name of the event source.
- Local
Timestamp Pulumi.Azure Native. Time Series Insights. Inputs. Local Timestamp - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- Location string
- The location of the resource.
- Dictionary<string, string>
- Key-value pairs of additional properties for the resource.
- Time string
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- Timestamp
Property stringName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- Type
string | Pulumi.
Azure Native. Time Series Insights. Ingress Start At Type - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
- Consumer
Group stringName - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- Environment
Name string - The name of the Time Series Insights environment associated with the specified resource group.
- Event
Source stringResource Id - The resource id of the event source in Azure Resource Manager.
- Iot
Hub stringName - The name of the iot hub.
- Key
Name string - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- Resource
Group stringName - Name of an Azure Resource group.
- string
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- Event
Source stringName - Name of the event source.
- Local
Timestamp LocalTimestamp Args - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- Location string
- The location of the resource.
- map[string]string
- Key-value pairs of additional properties for the resource.
- Time string
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- Timestamp
Property stringName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- Type
string | Ingress
Start At Type - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
- consumer
Group StringName - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- environment
Name String - The name of the Time Series Insights environment associated with the specified resource group.
- event
Source StringResource Id - The resource id of the event source in Azure Resource Manager.
- iot
Hub StringName - The name of the iot hub.
- key
Name String - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- resource
Group StringName - Name of an Azure Resource group.
- String
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- event
Source StringName - Name of the event source.
- local
Timestamp LocalTimestamp - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- location String
- The location of the resource.
- Map<String,String>
- Key-value pairs of additional properties for the resource.
- time String
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- timestamp
Property StringName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- type
String | Ingress
Start At Type - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
- consumer
Group stringName - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- environment
Name string - The name of the Time Series Insights environment associated with the specified resource group.
- event
Source stringResource Id - The resource id of the event source in Azure Resource Manager.
- iot
Hub stringName - The name of the iot hub.
- key
Name string - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- resource
Group stringName - Name of an Azure Resource group.
- string
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- event
Source stringName - Name of the event source.
- local
Timestamp LocalTimestamp - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- location string
- The location of the resource.
- {[key: string]: string}
- Key-value pairs of additional properties for the resource.
- time string
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- timestamp
Property stringName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- type
string | Ingress
Start At Type - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
- consumer_
group_ strname - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- environment_
name str - The name of the Time Series Insights environment associated with the specified resource group.
- event_
source_ strresource_ id - The resource id of the event source in Azure Resource Manager.
- iot_
hub_ strname - The name of the iot hub.
- key_
name str - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- resource_
group_ strname - Name of an Azure Resource group.
- str
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- event_
source_ strname - Name of the event source.
- local_
timestamp LocalTimestamp Args - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- location str
- The location of the resource.
- Mapping[str, str]
- Key-value pairs of additional properties for the resource.
- time str
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- timestamp_
property_ strname - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- type
str | Ingress
Start At Type - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
- consumer
Group StringName - The name of the iot hub's consumer group that holds the partitions from which events will be read.
- environment
Name String - The name of the Time Series Insights environment associated with the specified resource group.
- event
Source StringResource Id - The resource id of the event source in Azure Resource Manager.
- iot
Hub StringName - The name of the iot hub.
- key
Name String - The name of the Shared Access Policy key that grants the Time Series Insights service access to the iot hub. This shared access policy key must grant 'service connect' permissions to the iot hub.
- resource
Group StringName - Name of an Azure Resource group.
- String
- The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot hub. This property is not shown in event source responses.
- event
Source StringName - Name of the event source.
- local
Timestamp Property Map - An object that represents the local timestamp property. It contains the format of local timestamp that needs to be used and the corresponding timezone offset information. If a value isn't specified for localTimestamp, or if null, then the local timestamp will not be ingressed with the events.
- location String
- The location of the resource.
- Map<String>
- Key-value pairs of additional properties for the resource.
- time String
- ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed.
- timestamp
Property StringName - The event property that will be used as the event source's timestamp. If a value isn't specified for timestampPropertyName, or if null or empty-string is specified, the event creation time will be used.
- type
String | "Earliest
Available" | "Event Source Creation Time" | "Custom Enqueued Time" - The type of the ingressStartAt, It can be "EarliestAvailable", "EventSourceCreationTime", "CustomEnqueuedTime".
Outputs
All input properties are implicitly available as output properties. Additionally, the IoTHubEventSource resource produces the following output properties:
- Creation
Time string - The time the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Provisioning
State string - Provisioning state of the resource.
- Creation
Time string - The time the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Provisioning
State string - Provisioning state of the resource.
- creation
Time String - The time the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- provisioning
State String - Provisioning state of the resource.
- creation
Time string - The time the resource was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name
- provisioning
State string - Provisioning state of the resource.
- creation_
time str - The time the resource was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name
- provisioning_
state str - Provisioning state of the resource.
- creation
Time String - The time the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- provisioning
State String - Provisioning state of the resource.
Supporting Types
IngressStartAtType, IngressStartAtTypeArgs
- Earliest
Available - EarliestAvailable
- Event
Source Creation Time - EventSourceCreationTime
- Custom
Enqueued Time - CustomEnqueuedTime
- Ingress
Start At Type Earliest Available - EarliestAvailable
- Ingress
Start At Type Event Source Creation Time - EventSourceCreationTime
- Ingress
Start At Type Custom Enqueued Time - CustomEnqueuedTime
- Earliest
Available - EarliestAvailable
- Event
Source Creation Time - EventSourceCreationTime
- Custom
Enqueued Time - CustomEnqueuedTime
- Earliest
Available - EarliestAvailable
- Event
Source Creation Time - EventSourceCreationTime
- Custom
Enqueued Time - CustomEnqueuedTime
- EARLIEST_AVAILABLE
- EarliestAvailable
- EVENT_SOURCE_CREATION_TIME
- EventSourceCreationTime
- CUSTOM_ENQUEUED_TIME
- CustomEnqueuedTime
- "Earliest
Available" - EarliestAvailable
- "Event
Source Creation Time" - EventSourceCreationTime
- "Custom
Enqueued Time" - CustomEnqueuedTime
LocalTimestamp, LocalTimestampArgs
- Format
string | Pulumi.
Azure Native. Time Series Insights. Local Timestamp Format - An enum that represents the format of the local timestamp property that needs to be set.
- Time
Zone Pulumi.Offset Azure Native. Time Series Insights. Inputs. Local Timestamp Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- Format
string | Local
Timestamp Format - An enum that represents the format of the local timestamp property that needs to be set.
- Time
Zone LocalOffset Timestamp Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format
String | Local
Timestamp Format - An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone LocalOffset Timestamp Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format
string | Local
Timestamp Format - An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone LocalOffset Timestamp Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format
str | Local
Timestamp Format - An enum that represents the format of the local timestamp property that needs to be set.
- time_
zone_ Localoffset Timestamp Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format String | "Embedded"
- An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone Property MapOffset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
LocalTimestampFormat, LocalTimestampFormatArgs
- Embedded
- Embedded
- Local
Timestamp Format Embedded - Embedded
- Embedded
- Embedded
- Embedded
- Embedded
- EMBEDDED
- Embedded
- "Embedded"
- Embedded
LocalTimestampResponse, LocalTimestampResponseArgs
- Format string
- An enum that represents the format of the local timestamp property that needs to be set.
- Time
Zone Pulumi.Offset Azure Native. Time Series Insights. Inputs. Local Timestamp Response Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- Format string
- An enum that represents the format of the local timestamp property that needs to be set.
- Time
Zone LocalOffset Timestamp Response Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format String
- An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone LocalOffset Timestamp Response Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format string
- An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone LocalOffset Timestamp Response Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format str
- An enum that represents the format of the local timestamp property that needs to be set.
- time_
zone_ Localoffset Timestamp Response Time Zone Offset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
- format String
- An enum that represents the format of the local timestamp property that needs to be set.
- time
Zone Property MapOffset - An object that represents the offset information for the local timestamp format specified. Should not be specified for LocalTimestampFormat - Embedded.
LocalTimestampResponseTimeZoneOffset, LocalTimestampResponseTimeZoneOffsetArgs
- Property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- Property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name String - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property_
name str - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name String - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
LocalTimestampTimeZoneOffset, LocalTimestampTimeZoneOffsetArgs
- Property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- Property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name String - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name string - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property_
name str - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
- property
Name String - The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:timeseriesinsights:IoTHubEventSource es1 /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.TimeSeriesInsights/Environments/env1/eventSources/es1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0