azure-native.iotoperations.DataFlow
Explore with Pulumi AI
Instance dataflowProfile dataflow resource Azure REST API version: 2024-07-01-preview.
Example Usage
DataFlow_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataFlow = new AzureNative.IoTOperations.DataFlow("dataFlow", new()
{
DataflowName = "aio-dataflow",
DataflowProfileName = "aio-dataflowprofile",
ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
{
Name = "ycsyubcxttlusbhfdqaynmkaatnbyv",
Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
},
InstanceName = "aio-instance",
Properties = new AzureNative.IoTOperations.Inputs.DataFlowPropertiesArgs
{
Mode = AzureNative.IoTOperations.OperationalMode.Enabled,
Operations = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowOperationArgs
{
BuiltInTransformationSettings = new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationArgs
{
Datasets = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationDatasetArgs
{
Description = "a description of this dataset",
Expression = "$2 == $1",
Inputs = new[]
{
"machineId",
"$context(dataset-name-user-provided1).machine.details.id",
},
Key = "dataset-name-user-provided1",
SchemaRef = "schemaRef-pointing-to-AIO-schema-registry-instance",
},
},
Filter = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationFilterArgs
{
Description = "this is a user generated string to provide context",
Expression = "$1 == $3 && $2 > $4",
Inputs = new[]
{
"machineId",
"temperature",
"$context(dataset-name-user-provided1).machine.details.id",
"$context(dataset-name-user-provided2).machine.location.temperature",
},
Type = AzureNative.IoTOperations.FilterType.Filter,
},
},
Map = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationMapArgs
{
Description = "this is a user generated string to provide context for the operation",
Expression = "400",
Inputs = new() { },
Output = "temperatureLimit",
Type = AzureNative.IoTOperations.DataFlowMappingType.NewProperties,
},
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationMapArgs
{
Description = "this is a user generated string to provide context for the operation",
Expression = "$1 * 1000",
Inputs = new[]
{
"speed ? $last",
},
Output = "speedLKV",
},
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationMapArgs
{
Description = "this is a user generated string to provide context for the operation",
Expression = "$1 * 9/5 + 32",
Inputs = new[]
{
"temperature",
},
Output = "temperatureF",
Type = AzureNative.IoTOperations.DataFlowMappingType.Compute,
},
},
SchemaRef = "kszdaahrhhctjvusgakiz",
SerializationFormat = AzureNative.IoTOperations.TransformationSerializationFormat.Delta,
},
DestinationSettings = new AzureNative.IoTOperations.Inputs.DataFlowDestinationOperationArgs
{
DataDestination = "hxwohipwddccefqrdz",
EndpointRef = "hvexewvu",
},
Name = "hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau",
OperationType = AzureNative.IoTOperations.OperationType.Source,
SourceSettings = new AzureNative.IoTOperations.Inputs.DataFlowSourceOperationArgs
{
AssetRef = "eswnjlnapfrdeklaivntm",
DataSources = new[]
{
"dvncbklqkvjygnjgatioaikaneue",
},
EndpointRef = "cqsvkqeuyjzci",
SchemaRef = "uchmgqpworewvayionuwydneotyo",
SerializationFormat = AzureNative.IoTOperations.SourceSerializationFormat.Json,
},
},
},
ProfileRef = "juecrpocwpcajelwiwrplvacf",
},
ResourceGroupName = "rgiotoperations",
});
});
package main
import (
iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iotoperations.NewDataFlow(ctx, "dataFlow", &iotoperations.DataFlowArgs{
DataflowName: pulumi.String("aio-dataflow"),
DataflowProfileName: pulumi.String("aio-dataflowprofile"),
ExtendedLocation: &iotoperations.ExtendedLocationArgs{
Name: pulumi.String("ycsyubcxttlusbhfdqaynmkaatnbyv"),
Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
},
InstanceName: pulumi.String("aio-instance"),
Properties: &iotoperations.DataFlowPropertiesArgs{
Mode: pulumi.String(iotoperations.OperationalModeEnabled),
Operations: iotoperations.DataFlowOperationArray{
&iotoperations.DataFlowOperationArgs{
BuiltInTransformationSettings: &iotoperations.DataFlowBuiltInTransformationArgs{
Datasets: iotoperations.DataFlowBuiltInTransformationDatasetArray{
&iotoperations.DataFlowBuiltInTransformationDatasetArgs{
Description: pulumi.String("a description of this dataset"),
Expression: pulumi.String("$2 == $1"),
Inputs: pulumi.StringArray{
pulumi.String("machineId"),
pulumi.String("$context(dataset-name-user-provided1).machine.details.id"),
},
Key: pulumi.String("dataset-name-user-provided1"),
SchemaRef: pulumi.String("schemaRef-pointing-to-AIO-schema-registry-instance"),
},
},
Filter: iotoperations.DataFlowBuiltInTransformationFilterArray{
&iotoperations.DataFlowBuiltInTransformationFilterArgs{
Description: pulumi.String("this is a user generated string to provide context"),
Expression: pulumi.String("$1 == $3 && $2 > $4"),
Inputs: pulumi.StringArray{
pulumi.String("machineId"),
pulumi.String("temperature"),
pulumi.String("$context(dataset-name-user-provided1).machine.details.id"),
pulumi.String("$context(dataset-name-user-provided2).machine.location.temperature"),
},
Type: pulumi.String(iotoperations.FilterTypeFilter),
},
},
Map: iotoperations.DataFlowBuiltInTransformationMapArray{
&iotoperations.DataFlowBuiltInTransformationMapArgs{
Description: pulumi.String("this is a user generated string to provide context for the operation"),
Expression: pulumi.String("400"),
Inputs: pulumi.StringArray{},
Output: pulumi.String("temperatureLimit"),
Type: pulumi.String(iotoperations.DataFlowMappingTypeNewProperties),
},
&iotoperations.DataFlowBuiltInTransformationMapArgs{
Description: pulumi.String("this is a user generated string to provide context for the operation"),
Expression: pulumi.String("$1 * 1000"),
Inputs: pulumi.StringArray{
pulumi.String("speed ? $last"),
},
Output: pulumi.String("speedLKV"),
},
&iotoperations.DataFlowBuiltInTransformationMapArgs{
Description: pulumi.String("this is a user generated string to provide context for the operation"),
Expression: pulumi.String("$1 * 9/5 + 32"),
Inputs: pulumi.StringArray{
pulumi.String("temperature"),
},
Output: pulumi.String("temperatureF"),
Type: pulumi.String(iotoperations.DataFlowMappingTypeCompute),
},
},
SchemaRef: pulumi.String("kszdaahrhhctjvusgakiz"),
SerializationFormat: pulumi.String(iotoperations.TransformationSerializationFormatDelta),
},
DestinationSettings: &iotoperations.DataFlowDestinationOperationArgs{
DataDestination: pulumi.String("hxwohipwddccefqrdz"),
EndpointRef: pulumi.String("hvexewvu"),
},
Name: pulumi.String("hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau"),
OperationType: pulumi.String(iotoperations.OperationTypeSource),
SourceSettings: &iotoperations.DataFlowSourceOperationArgs{
AssetRef: pulumi.String("eswnjlnapfrdeklaivntm"),
DataSources: pulumi.StringArray{
pulumi.String("dvncbklqkvjygnjgatioaikaneue"),
},
EndpointRef: pulumi.String("cqsvkqeuyjzci"),
SchemaRef: pulumi.String("uchmgqpworewvayionuwydneotyo"),
SerializationFormat: pulumi.String(iotoperations.SourceSerializationFormatJson),
},
},
},
ProfileRef: pulumi.String("juecrpocwpcajelwiwrplvacf"),
},
ResourceGroupName: pulumi.String("rgiotoperations"),
})
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.iotoperations.DataFlow;
import com.pulumi.azurenative.iotoperations.DataFlowArgs;
import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.iotoperations.inputs.DataFlowPropertiesArgs;
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 dataFlow = new DataFlow("dataFlow", DataFlowArgs.builder()
.dataflowName("aio-dataflow")
.dataflowProfileName("aio-dataflowprofile")
.extendedLocation(ExtendedLocationArgs.builder()
.name("ycsyubcxttlusbhfdqaynmkaatnbyv")
.type("CustomLocation")
.build())
.instanceName("aio-instance")
.properties(DataFlowPropertiesArgs.builder()
.mode("Enabled")
.operations(DataFlowOperationArgs.builder()
.builtInTransformationSettings(DataFlowBuiltInTransformationArgs.builder()
.datasets(DataFlowBuiltInTransformationDatasetArgs.builder()
.description("a description of this dataset")
.expression("$2 == $1")
.inputs(
"machineId",
"$context(dataset-name-user-provided1).machine.details.id")
.key("dataset-name-user-provided1")
.schemaRef("schemaRef-pointing-to-AIO-schema-registry-instance")
.build())
.filter(DataFlowBuiltInTransformationFilterArgs.builder()
.description("this is a user generated string to provide context")
.expression("$1 == $3 && $2 > $4")
.inputs(
"machineId",
"temperature",
"$context(dataset-name-user-provided1).machine.details.id",
"$context(dataset-name-user-provided2).machine.location.temperature")
.type("Filter")
.build())
.map(
DataFlowBuiltInTransformationMapArgs.builder()
.description("this is a user generated string to provide context for the operation")
.expression("400")
.inputs()
.output("temperatureLimit")
.type("NewProperties")
.build(),
DataFlowBuiltInTransformationMapArgs.builder()
.description("this is a user generated string to provide context for the operation")
.expression("$1 * 1000")
.inputs("speed ? $last")
.output("speedLKV")
.build(),
DataFlowBuiltInTransformationMapArgs.builder()
.description("this is a user generated string to provide context for the operation")
.expression("$1 * 9/5 + 32")
.inputs("temperature")
.output("temperatureF")
.type("Compute")
.build())
.schemaRef("kszdaahrhhctjvusgakiz")
.serializationFormat("Delta")
.build())
.destinationSettings(DataFlowDestinationOperationArgs.builder()
.dataDestination("hxwohipwddccefqrdz")
.endpointRef("hvexewvu")
.build())
.name("hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau")
.operationType("Source")
.sourceSettings(DataFlowSourceOperationArgs.builder()
.assetRef("eswnjlnapfrdeklaivntm")
.dataSources("dvncbklqkvjygnjgatioaikaneue")
.endpointRef("cqsvkqeuyjzci")
.schemaRef("uchmgqpworewvayionuwydneotyo")
.serializationFormat("Json")
.build())
.build())
.profileRef("juecrpocwpcajelwiwrplvacf")
.build())
.resourceGroupName("rgiotoperations")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
data_flow = azure_native.iotoperations.DataFlow("dataFlow",
dataflow_name="aio-dataflow",
dataflow_profile_name="aio-dataflowprofile",
extended_location={
"name": "ycsyubcxttlusbhfdqaynmkaatnbyv",
"type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
},
instance_name="aio-instance",
properties={
"mode": azure_native.iotoperations.OperationalMode.ENABLED,
"operations": [{
"built_in_transformation_settings": {
"datasets": [{
"description": "a description of this dataset",
"expression": "$2 == $1",
"inputs": [
"machineId",
"$context(dataset-name-user-provided1).machine.details.id",
],
"key": "dataset-name-user-provided1",
"schema_ref": "schemaRef-pointing-to-AIO-schema-registry-instance",
}],
"filter": [{
"description": "this is a user generated string to provide context",
"expression": "$1 == $3 && $2 > $4",
"inputs": [
"machineId",
"temperature",
"$context(dataset-name-user-provided1).machine.details.id",
"$context(dataset-name-user-provided2).machine.location.temperature",
],
"type": azure_native.iotoperations.FilterType.FILTER,
}],
"map": [
{
"description": "this is a user generated string to provide context for the operation",
"expression": "400",
"inputs": [],
"output": "temperatureLimit",
"type": azure_native.iotoperations.DataFlowMappingType.NEW_PROPERTIES,
},
{
"description": "this is a user generated string to provide context for the operation",
"expression": "$1 * 1000",
"inputs": ["speed ? $last"],
"output": "speedLKV",
},
{
"description": "this is a user generated string to provide context for the operation",
"expression": "$1 * 9/5 + 32",
"inputs": ["temperature"],
"output": "temperatureF",
"type": azure_native.iotoperations.DataFlowMappingType.COMPUTE,
},
],
"schema_ref": "kszdaahrhhctjvusgakiz",
"serialization_format": azure_native.iotoperations.TransformationSerializationFormat.DELTA,
},
"destination_settings": {
"data_destination": "hxwohipwddccefqrdz",
"endpoint_ref": "hvexewvu",
},
"name": "hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau",
"operation_type": azure_native.iotoperations.OperationType.SOURCE,
"source_settings": {
"asset_ref": "eswnjlnapfrdeklaivntm",
"data_sources": ["dvncbklqkvjygnjgatioaikaneue"],
"endpoint_ref": "cqsvkqeuyjzci",
"schema_ref": "uchmgqpworewvayionuwydneotyo",
"serialization_format": azure_native.iotoperations.SourceSerializationFormat.JSON,
},
}],
"profile_ref": "juecrpocwpcajelwiwrplvacf",
},
resource_group_name="rgiotoperations")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataFlow = new azure_native.iotoperations.DataFlow("dataFlow", {
dataflowName: "aio-dataflow",
dataflowProfileName: "aio-dataflowprofile",
extendedLocation: {
name: "ycsyubcxttlusbhfdqaynmkaatnbyv",
type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
},
instanceName: "aio-instance",
properties: {
mode: azure_native.iotoperations.OperationalMode.Enabled,
operations: [{
builtInTransformationSettings: {
datasets: [{
description: "a description of this dataset",
expression: "$2 == $1",
inputs: [
"machineId",
"$context(dataset-name-user-provided1).machine.details.id",
],
key: "dataset-name-user-provided1",
schemaRef: "schemaRef-pointing-to-AIO-schema-registry-instance",
}],
filter: [{
description: "this is a user generated string to provide context",
expression: "$1 == $3 && $2 > $4",
inputs: [
"machineId",
"temperature",
"$context(dataset-name-user-provided1).machine.details.id",
"$context(dataset-name-user-provided2).machine.location.temperature",
],
type: azure_native.iotoperations.FilterType.Filter,
}],
map: [
{
description: "this is a user generated string to provide context for the operation",
expression: "400",
inputs: [],
output: "temperatureLimit",
type: azure_native.iotoperations.DataFlowMappingType.NewProperties,
},
{
description: "this is a user generated string to provide context for the operation",
expression: "$1 * 1000",
inputs: ["speed ? $last"],
output: "speedLKV",
},
{
description: "this is a user generated string to provide context for the operation",
expression: "$1 * 9/5 + 32",
inputs: ["temperature"],
output: "temperatureF",
type: azure_native.iotoperations.DataFlowMappingType.Compute,
},
],
schemaRef: "kszdaahrhhctjvusgakiz",
serializationFormat: azure_native.iotoperations.TransformationSerializationFormat.Delta,
},
destinationSettings: {
dataDestination: "hxwohipwddccefqrdz",
endpointRef: "hvexewvu",
},
name: "hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau",
operationType: azure_native.iotoperations.OperationType.Source,
sourceSettings: {
assetRef: "eswnjlnapfrdeklaivntm",
dataSources: ["dvncbklqkvjygnjgatioaikaneue"],
endpointRef: "cqsvkqeuyjzci",
schemaRef: "uchmgqpworewvayionuwydneotyo",
serializationFormat: azure_native.iotoperations.SourceSerializationFormat.Json,
},
}],
profileRef: "juecrpocwpcajelwiwrplvacf",
},
resourceGroupName: "rgiotoperations",
});
resources:
dataFlow:
type: azure-native:iotoperations:DataFlow
properties:
dataflowName: aio-dataflow
dataflowProfileName: aio-dataflowprofile
extendedLocation:
name: ycsyubcxttlusbhfdqaynmkaatnbyv
type: CustomLocation
instanceName: aio-instance
properties:
mode: Enabled
operations:
- builtInTransformationSettings:
datasets:
- description: a description of this dataset
expression: $2 == $1
inputs:
- machineId
- $context(dataset-name-user-provided1).machine.details.id
key: dataset-name-user-provided1
schemaRef: schemaRef-pointing-to-AIO-schema-registry-instance
filter:
- description: this is a user generated string to provide context
expression: $1 == $3 && $2 > $4
inputs:
- machineId
- temperature
- $context(dataset-name-user-provided1).machine.details.id
- $context(dataset-name-user-provided2).machine.location.temperature
type: Filter
map:
- description: this is a user generated string to provide context for the operation
expression: '400'
inputs: []
output: temperatureLimit
type: NewProperties
- description: this is a user generated string to provide context for the operation
expression: $1 * 1000
inputs:
- speed ? $last
output: speedLKV
- description: this is a user generated string to provide context for the operation
expression: $1 * 9/5 + 32
inputs:
- temperature
output: temperatureF
type: Compute
schemaRef: kszdaahrhhctjvusgakiz
serializationFormat: Delta
destinationSettings:
dataDestination: hxwohipwddccefqrdz
endpointRef: hvexewvu
name: hhoeuttlpjucxldumilbdbxsglpfhvamwrasjuroucjzutjamarau
operationType: Source
sourceSettings:
assetRef: eswnjlnapfrdeklaivntm
dataSources:
- dvncbklqkvjygnjgatioaikaneue
endpointRef: cqsvkqeuyjzci
schemaRef: uchmgqpworewvayionuwydneotyo
serializationFormat: Json
profileRef: juecrpocwpcajelwiwrplvacf
resourceGroupName: rgiotoperations
Create DataFlow Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataFlow(name: string, args: DataFlowArgs, opts?: CustomResourceOptions);
@overload
def DataFlow(resource_name: str,
args: DataFlowArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataFlow(resource_name: str,
opts: Optional[ResourceOptions] = None,
dataflow_profile_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
instance_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
dataflow_name: Optional[str] = None,
properties: Optional[DataFlowPropertiesArgs] = None)
func NewDataFlow(ctx *Context, name string, args DataFlowArgs, opts ...ResourceOption) (*DataFlow, error)
public DataFlow(string name, DataFlowArgs args, CustomResourceOptions? opts = null)
public DataFlow(String name, DataFlowArgs args)
public DataFlow(String name, DataFlowArgs args, CustomResourceOptions options)
type: azure-native:iotoperations:DataFlow
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 DataFlowArgs
- 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 DataFlowArgs
- 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 DataFlowArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataFlowArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataFlowArgs
- 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 azure_nativeDataFlowResource = new AzureNative.IoTOperations.DataFlow("azure-nativeDataFlowResource", new()
{
DataflowProfileName = "string",
ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
InstanceName = "string",
ResourceGroupName = "string",
DataflowName = "string",
Properties = new AzureNative.IoTOperations.Inputs.DataFlowPropertiesArgs
{
Operations = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowOperationArgs
{
DestinationSettings = new AzureNative.IoTOperations.Inputs.DataFlowDestinationOperationArgs
{
DataDestination = "string",
EndpointRef = "string",
},
OperationType = "string",
SourceSettings = new AzureNative.IoTOperations.Inputs.DataFlowSourceOperationArgs
{
DataSources = new[]
{
"string",
},
EndpointRef = "string",
AssetRef = "string",
SchemaRef = "string",
SerializationFormat = "string",
},
BuiltInTransformationSettings = new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationArgs
{
Datasets = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationDatasetArgs
{
Inputs = new[]
{
"string",
},
Key = "string",
Description = "string",
Expression = "string",
SchemaRef = "string",
},
},
Filter = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationFilterArgs
{
Expression = "string",
Inputs = new[]
{
"string",
},
Description = "string",
Type = "string",
},
},
Map = new[]
{
new AzureNative.IoTOperations.Inputs.DataFlowBuiltInTransformationMapArgs
{
Inputs = new[]
{
"string",
},
Output = "string",
Description = "string",
Expression = "string",
Type = "string",
},
},
SchemaRef = "string",
SerializationFormat = "string",
},
Name = "string",
},
},
ProfileRef = "string",
Mode = "string",
},
});
example, err := iotoperations.NewDataFlow(ctx, "azure-nativeDataFlowResource", &iotoperations.DataFlowArgs{
DataflowProfileName: pulumi.String("string"),
ExtendedLocation: &iotoperations.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
InstanceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
DataflowName: pulumi.String("string"),
Properties: &iotoperations.DataFlowPropertiesArgs{
Operations: iotoperations.DataFlowOperationArray{
&iotoperations.DataFlowOperationArgs{
DestinationSettings: &iotoperations.DataFlowDestinationOperationArgs{
DataDestination: pulumi.String("string"),
EndpointRef: pulumi.String("string"),
},
OperationType: pulumi.String("string"),
SourceSettings: &iotoperations.DataFlowSourceOperationArgs{
DataSources: pulumi.StringArray{
pulumi.String("string"),
},
EndpointRef: pulumi.String("string"),
AssetRef: pulumi.String("string"),
SchemaRef: pulumi.String("string"),
SerializationFormat: pulumi.String("string"),
},
BuiltInTransformationSettings: &iotoperations.DataFlowBuiltInTransformationArgs{
Datasets: iotoperations.DataFlowBuiltInTransformationDatasetArray{
&iotoperations.DataFlowBuiltInTransformationDatasetArgs{
Inputs: pulumi.StringArray{
pulumi.String("string"),
},
Key: pulumi.String("string"),
Description: pulumi.String("string"),
Expression: pulumi.String("string"),
SchemaRef: pulumi.String("string"),
},
},
Filter: iotoperations.DataFlowBuiltInTransformationFilterArray{
&iotoperations.DataFlowBuiltInTransformationFilterArgs{
Expression: pulumi.String("string"),
Inputs: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Map: iotoperations.DataFlowBuiltInTransformationMapArray{
&iotoperations.DataFlowBuiltInTransformationMapArgs{
Inputs: pulumi.StringArray{
pulumi.String("string"),
},
Output: pulumi.String("string"),
Description: pulumi.String("string"),
Expression: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
SchemaRef: pulumi.String("string"),
SerializationFormat: pulumi.String("string"),
},
Name: pulumi.String("string"),
},
},
ProfileRef: pulumi.String("string"),
Mode: pulumi.String("string"),
},
})
var azure_nativeDataFlowResource = new DataFlow("azure-nativeDataFlowResource", DataFlowArgs.builder()
.dataflowProfileName("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.instanceName("string")
.resourceGroupName("string")
.dataflowName("string")
.properties(DataFlowPropertiesArgs.builder()
.operations(DataFlowOperationArgs.builder()
.destinationSettings(DataFlowDestinationOperationArgs.builder()
.dataDestination("string")
.endpointRef("string")
.build())
.operationType("string")
.sourceSettings(DataFlowSourceOperationArgs.builder()
.dataSources("string")
.endpointRef("string")
.assetRef("string")
.schemaRef("string")
.serializationFormat("string")
.build())
.builtInTransformationSettings(DataFlowBuiltInTransformationArgs.builder()
.datasets(DataFlowBuiltInTransformationDatasetArgs.builder()
.inputs("string")
.key("string")
.description("string")
.expression("string")
.schemaRef("string")
.build())
.filter(DataFlowBuiltInTransformationFilterArgs.builder()
.expression("string")
.inputs("string")
.description("string")
.type("string")
.build())
.map(DataFlowBuiltInTransformationMapArgs.builder()
.inputs("string")
.output("string")
.description("string")
.expression("string")
.type("string")
.build())
.schemaRef("string")
.serializationFormat("string")
.build())
.name("string")
.build())
.profileRef("string")
.mode("string")
.build())
.build());
azure_native_data_flow_resource = azure_native.iotoperations.DataFlow("azure-nativeDataFlowResource",
dataflow_profile_name="string",
extended_location={
"name": "string",
"type": "string",
},
instance_name="string",
resource_group_name="string",
dataflow_name="string",
properties={
"operations": [{
"destinationSettings": {
"dataDestination": "string",
"endpointRef": "string",
},
"operationType": "string",
"sourceSettings": {
"dataSources": ["string"],
"endpointRef": "string",
"assetRef": "string",
"schemaRef": "string",
"serializationFormat": "string",
},
"builtInTransformationSettings": {
"datasets": [{
"inputs": ["string"],
"key": "string",
"description": "string",
"expression": "string",
"schemaRef": "string",
}],
"filter": [{
"expression": "string",
"inputs": ["string"],
"description": "string",
"type": "string",
}],
"map": [{
"inputs": ["string"],
"output": "string",
"description": "string",
"expression": "string",
"type": "string",
}],
"schemaRef": "string",
"serializationFormat": "string",
},
"name": "string",
}],
"profileRef": "string",
"mode": "string",
})
const azure_nativeDataFlowResource = new azure_native.iotoperations.DataFlow("azure-nativeDataFlowResource", {
dataflowProfileName: "string",
extendedLocation: {
name: "string",
type: "string",
},
instanceName: "string",
resourceGroupName: "string",
dataflowName: "string",
properties: {
operations: [{
destinationSettings: {
dataDestination: "string",
endpointRef: "string",
},
operationType: "string",
sourceSettings: {
dataSources: ["string"],
endpointRef: "string",
assetRef: "string",
schemaRef: "string",
serializationFormat: "string",
},
builtInTransformationSettings: {
datasets: [{
inputs: ["string"],
key: "string",
description: "string",
expression: "string",
schemaRef: "string",
}],
filter: [{
expression: "string",
inputs: ["string"],
description: "string",
type: "string",
}],
map: [{
inputs: ["string"],
output: "string",
description: "string",
expression: "string",
type: "string",
}],
schemaRef: "string",
serializationFormat: "string",
},
name: "string",
}],
profileRef: "string",
mode: "string",
},
});
type: azure-native:iotoperations:DataFlow
properties:
dataflowName: string
dataflowProfileName: string
extendedLocation:
name: string
type: string
instanceName: string
properties:
mode: string
operations:
- builtInTransformationSettings:
datasets:
- description: string
expression: string
inputs:
- string
key: string
schemaRef: string
filter:
- description: string
expression: string
inputs:
- string
type: string
map:
- description: string
expression: string
inputs:
- string
output: string
type: string
schemaRef: string
serializationFormat: string
destinationSettings:
dataDestination: string
endpointRef: string
name: string
operationType: string
sourceSettings:
assetRef: string
dataSources:
- string
endpointRef: string
schemaRef: string
serializationFormat: string
profileRef: string
resourceGroupName: string
DataFlow 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 DataFlow resource accepts the following input properties:
- Dataflow
Profile stringName - Name of Instance dataflowProfile resource
- Extended
Location Pulumi.Azure Native. Io TOperations. Inputs. Extended Location - Edge location of the resource.
- Instance
Name string - Name of instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Dataflow
Name string - Name of Instance dataflowProfile dataflow resource
- Properties
Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Properties - The resource-specific properties for this resource.
- Dataflow
Profile stringName - Name of Instance dataflowProfile resource
- Extended
Location ExtendedLocation Args - Edge location of the resource.
- Instance
Name string - Name of instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Dataflow
Name string - Name of Instance dataflowProfile dataflow resource
- Properties
Data
Flow Properties Args - The resource-specific properties for this resource.
- dataflow
Profile StringName - Name of Instance dataflowProfile resource
- extended
Location ExtendedLocation - Edge location of the resource.
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- dataflow
Name String - Name of Instance dataflowProfile dataflow resource
- properties
Data
Flow Properties - The resource-specific properties for this resource.
- dataflow
Profile stringName - Name of Instance dataflowProfile resource
- extended
Location ExtendedLocation - Edge location of the resource.
- instance
Name string - Name of instance.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- dataflow
Name string - Name of Instance dataflowProfile dataflow resource
- properties
Data
Flow Properties - The resource-specific properties for this resource.
- dataflow_
profile_ strname - Name of Instance dataflowProfile resource
- extended_
location ExtendedLocation Args - Edge location of the resource.
- instance_
name str - Name of instance.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- dataflow_
name str - Name of Instance dataflowProfile dataflow resource
- properties
Data
Flow Properties Args - The resource-specific properties for this resource.
- dataflow
Profile StringName - Name of Instance dataflowProfile resource
- extended
Location Property Map - Edge location of the resource.
- instance
Name String - Name of instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- dataflow
Name String - Name of Instance dataflowProfile dataflow resource
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataFlow resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Io TOperations. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DataFlowBuiltInTransformation, DataFlowBuiltInTransformationArgs
- Datasets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Dataset> - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- Filter
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Filter> - Filters input record or datapoints based on condition.
- Map
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Map> - Maps input to output message.
- Schema
Ref string - Reference to the schema that describes the output of the transformation.
- Serialization
Format string | Pulumi.Azure Native. Io TOperations. Transformation Serialization Format - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- Datasets
[]Data
Flow Built In Transformation Dataset - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- Filter
[]Data
Flow Built In Transformation Filter - Filters input record or datapoints based on condition.
- Map
[]Data
Flow Built In Transformation Map - Maps input to output message.
- Schema
Ref string - Reference to the schema that describes the output of the transformation.
- Serialization
Format string | TransformationSerialization Format - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
List<Data
Flow Built In Transformation Dataset> - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
List<Data
Flow Built In Transformation Filter> - Filters input record or datapoints based on condition.
- map
List<Data
Flow Built In Transformation Map> - Maps input to output message.
- schema
Ref String - Reference to the schema that describes the output of the transformation.
- serialization
Format String | TransformationSerialization Format - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
Data
Flow Built In Transformation Dataset[] - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
Data
Flow Built In Transformation Filter[] - Filters input record or datapoints based on condition.
- map
Data
Flow Built In Transformation Map[] - Maps input to output message.
- schema
Ref string - Reference to the schema that describes the output of the transformation.
- serialization
Format string | TransformationSerialization Format - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
Sequence[Data
Flow Built In Transformation Dataset] - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
Sequence[Data
Flow Built In Transformation Filter] - Filters input record or datapoints based on condition.
- map
Sequence[Data
Flow Built In Transformation Map] - Maps input to output message.
- schema_
ref str - Reference to the schema that describes the output of the transformation.
- serialization_
format str | TransformationSerialization Format - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets List<Property Map>
- Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter List<Property Map>
- Filters input record or datapoints based on condition.
- map List<Property Map>
- Maps input to output message.
- schema
Ref String - Reference to the schema that describes the output of the transformation.
- serialization
Format String | "Delta" | "Json" | "Parquet" - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
DataFlowBuiltInTransformationDataset, DataFlowBuiltInTransformationDatasetArgs
- Inputs List<string>
- List of fields for enriching from the Broker State Store.
- Key string
- The key of the dataset.
- Description string
- A user provided optional description of the dataset.
- Expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- Inputs []string
- List of fields for enriching from the Broker State Store.
- Key string
- The key of the dataset.
- Description string
- A user provided optional description of the dataset.
- Expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs List<String>
- List of fields for enriching from the Broker State Store.
- key String
- The key of the dataset.
- description String
- A user provided optional description of the dataset.
- expression String
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref String - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs string[]
- List of fields for enriching from the Broker State Store.
- key string
- The key of the dataset.
- description string
- A user provided optional description of the dataset.
- expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs Sequence[str]
- List of fields for enriching from the Broker State Store.
- key str
- The key of the dataset.
- description str
- A user provided optional description of the dataset.
- expression str
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema_
ref str - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs List<String>
- List of fields for enriching from the Broker State Store.
- key String
- The key of the dataset.
- description String
- A user provided optional description of the dataset.
- expression String
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref String - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
DataFlowBuiltInTransformationDatasetResponse, DataFlowBuiltInTransformationDatasetResponseArgs
- Inputs List<string>
- List of fields for enriching from the Broker State Store.
- Key string
- The key of the dataset.
- Description string
- A user provided optional description of the dataset.
- Expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- Inputs []string
- List of fields for enriching from the Broker State Store.
- Key string
- The key of the dataset.
- Description string
- A user provided optional description of the dataset.
- Expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs List<String>
- List of fields for enriching from the Broker State Store.
- key String
- The key of the dataset.
- description String
- A user provided optional description of the dataset.
- expression String
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref String - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs string[]
- List of fields for enriching from the Broker State Store.
- key string
- The key of the dataset.
- description string
- A user provided optional description of the dataset.
- expression string
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref string - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs Sequence[str]
- List of fields for enriching from the Broker State Store.
- key str
- The key of the dataset.
- description str
- A user provided optional description of the dataset.
- expression str
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema_
ref str - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
- inputs List<String>
- List of fields for enriching from the Broker State Store.
- key String
- The key of the dataset.
- description String
- A user provided optional description of the dataset.
- expression String
- Condition to enrich data from Broker State Store. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- schema
Ref String - The reference to the schema that describes the dataset. Allowed: JSON Schema/draft-7.
DataFlowBuiltInTransformationFilter, DataFlowBuiltInTransformationFilterArgs
- Expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Inputs List<string>
- List of fields for filtering in JSON path expression.
- Description string
- A user provided optional description of the filter.
- Type
string | Pulumi.
Azure Native. Io TOperations. Filter Type - The type of dataflow operation.
- Expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Inputs []string
- List of fields for filtering in JSON path expression.
- Description string
- A user provided optional description of the filter.
- Type
string | Filter
Type - The type of dataflow operation.
- expression String
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs List<String>
- List of fields for filtering in JSON path expression.
- description String
- A user provided optional description of the filter.
- type
String | Filter
Type - The type of dataflow operation.
- expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs string[]
- List of fields for filtering in JSON path expression.
- description string
- A user provided optional description of the filter.
- type
string | Filter
Type - The type of dataflow operation.
- expression str
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs Sequence[str]
- List of fields for filtering in JSON path expression.
- description str
- A user provided optional description of the filter.
- type
str | Filter
Type - The type of dataflow operation.
- expression String
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs List<String>
- List of fields for filtering in JSON path expression.
- description String
- A user provided optional description of the filter.
- type String | "Filter"
- The type of dataflow operation.
DataFlowBuiltInTransformationFilterResponse, DataFlowBuiltInTransformationFilterResponseArgs
- Expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Inputs List<string>
- List of fields for filtering in JSON path expression.
- Description string
- A user provided optional description of the filter.
- Type string
- The type of dataflow operation.
- Expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- Inputs []string
- List of fields for filtering in JSON path expression.
- Description string
- A user provided optional description of the filter.
- Type string
- The type of dataflow operation.
- expression String
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs List<String>
- List of fields for filtering in JSON path expression.
- description String
- A user provided optional description of the filter.
- type String
- The type of dataflow operation.
- expression string
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs string[]
- List of fields for filtering in JSON path expression.
- description string
- A user provided optional description of the filter.
- type string
- The type of dataflow operation.
- expression str
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs Sequence[str]
- List of fields for filtering in JSON path expression.
- description str
- A user provided optional description of the filter.
- type str
- The type of dataflow operation.
- expression String
- Condition to filter data. Can reference input fields with {n} where n is the index of the input field starting from 1. Example: $1 < 0 || $1 > $2 (Assuming inputs section $1 and $2 are provided)
- inputs List<String>
- List of fields for filtering in JSON path expression.
- description String
- A user provided optional description of the filter.
- type String
- The type of dataflow operation.
DataFlowBuiltInTransformationMap, DataFlowBuiltInTransformationMapArgs
- Inputs List<string>
- List of fields for mapping in JSON path expression.
- Output string
- Where and how the input fields to be organized in the output record.
- Description string
- A user provided optional description of the mapping function.
- Expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- Type
string | Pulumi.
Azure Native. Io TOperations. Data Flow Mapping Type - Type of transformation.
- Inputs []string
- List of fields for mapping in JSON path expression.
- Output string
- Where and how the input fields to be organized in the output record.
- Description string
- A user provided optional description of the mapping function.
- Expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- Type
string | Data
Flow Mapping Type - Type of transformation.
- inputs List<String>
- List of fields for mapping in JSON path expression.
- output String
- Where and how the input fields to be organized in the output record.
- description String
- A user provided optional description of the mapping function.
- expression String
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type
String | Data
Flow Mapping Type - Type of transformation.
- inputs string[]
- List of fields for mapping in JSON path expression.
- output string
- Where and how the input fields to be organized in the output record.
- description string
- A user provided optional description of the mapping function.
- expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type
string | Data
Flow Mapping Type - Type of transformation.
- inputs Sequence[str]
- List of fields for mapping in JSON path expression.
- output str
- Where and how the input fields to be organized in the output record.
- description str
- A user provided optional description of the mapping function.
- expression str
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type
str | Data
Flow Mapping Type - Type of transformation.
- inputs List<String>
- List of fields for mapping in JSON path expression.
- output String
- Where and how the input fields to be organized in the output record.
- description String
- A user provided optional description of the mapping function.
- expression String
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type
String | "New
Properties" | "Rename" | "Compute" | "Pass Through" | "Built In Function" - Type of transformation.
DataFlowBuiltInTransformationMapResponse, DataFlowBuiltInTransformationMapResponseArgs
- Inputs List<string>
- List of fields for mapping in JSON path expression.
- Output string
- Where and how the input fields to be organized in the output record.
- Description string
- A user provided optional description of the mapping function.
- Expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- Type string
- Type of transformation.
- Inputs []string
- List of fields for mapping in JSON path expression.
- Output string
- Where and how the input fields to be organized in the output record.
- Description string
- A user provided optional description of the mapping function.
- Expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- Type string
- Type of transformation.
- inputs List<String>
- List of fields for mapping in JSON path expression.
- output String
- Where and how the input fields to be organized in the output record.
- description String
- A user provided optional description of the mapping function.
- expression String
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type String
- Type of transformation.
- inputs string[]
- List of fields for mapping in JSON path expression.
- output string
- Where and how the input fields to be organized in the output record.
- description string
- A user provided optional description of the mapping function.
- expression string
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type string
- Type of transformation.
- inputs Sequence[str]
- List of fields for mapping in JSON path expression.
- output str
- Where and how the input fields to be organized in the output record.
- description str
- A user provided optional description of the mapping function.
- expression str
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type str
- Type of transformation.
- inputs List<String>
- List of fields for mapping in JSON path expression.
- output String
- Where and how the input fields to be organized in the output record.
- description String
- A user provided optional description of the mapping function.
- expression String
- Modify the inputs field(s) to the final output field. Example: $1 * 2.2 (Assuming inputs section $1 is provided)
- type String
- Type of transformation.
DataFlowBuiltInTransformationResponse, DataFlowBuiltInTransformationResponseArgs
- Datasets
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Dataset Response> - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- Filter
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Filter Response> - Filters input record or datapoints based on condition.
- Map
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Map Response> - Maps input to output message.
- Schema
Ref string - Reference to the schema that describes the output of the transformation.
- Serialization
Format string - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- Datasets
[]Data
Flow Built In Transformation Dataset Response - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- Filter
[]Data
Flow Built In Transformation Filter Response - Filters input record or datapoints based on condition.
- Map
[]Data
Flow Built In Transformation Map Response - Maps input to output message.
- Schema
Ref string - Reference to the schema that describes the output of the transformation.
- Serialization
Format string - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
List<Data
Flow Built In Transformation Dataset Response> - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
List<Data
Flow Built In Transformation Filter Response> - Filters input record or datapoints based on condition.
- map
List<Data
Flow Built In Transformation Map Response> - Maps input to output message.
- schema
Ref String - Reference to the schema that describes the output of the transformation.
- serialization
Format String - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
Data
Flow Built In Transformation Dataset Response[] - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
Data
Flow Built In Transformation Filter Response[] - Filters input record or datapoints based on condition.
- map
Data
Flow Built In Transformation Map Response[] - Maps input to output message.
- schema
Ref string - Reference to the schema that describes the output of the transformation.
- serialization
Format string - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets
Sequence[Data
Flow Built In Transformation Dataset Response] - Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter
Sequence[Data
Flow Built In Transformation Filter Response] - Filters input record or datapoints based on condition.
- map
Sequence[Data
Flow Built In Transformation Map Response] - Maps input to output message.
- schema_
ref str - Reference to the schema that describes the output of the transformation.
- serialization_
format str - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
- datasets List<Property Map>
- Enrich data from Broker State Store. Dataset references a key in Broker State Store.
- filter List<Property Map>
- Filters input record or datapoints based on condition.
- map List<Property Map>
- Maps input to output message.
- schema
Ref String - Reference to the schema that describes the output of the transformation.
- serialization
Format String - Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
DataFlowDestinationOperation, DataFlowDestinationOperationArgs
- Data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- Endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- Data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- Endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination String - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref String - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data_
destination str - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint_
ref str - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination String - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref String - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
DataFlowDestinationOperationResponse, DataFlowDestinationOperationResponseArgs
- Data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- Endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- Data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- Endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination String - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref String - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination string - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref string - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data_
destination str - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint_
ref str - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
- data
Destination String - Destination location, can be a topic or table name. Supports dynamic values with $topic, $systemProperties, $userProperties, $payload, $context, and $subscription.
- endpoint
Ref String - Reference to the Endpoint CR. Can be of Broker, Kafka, Fabric, ADLS, ADX type.
DataFlowMappingType, DataFlowMappingTypeArgs
- New
Properties - NewPropertiesNew Properties type
- Rename
- RenameRename type
- Compute
- ComputeCompute type
- Pass
Through - PassThroughPass-through type
- Built
In Function - BuiltInFunctionBuilt in function type
- Data
Flow Mapping Type New Properties - NewPropertiesNew Properties type
- Data
Flow Mapping Type Rename - RenameRename type
- Data
Flow Mapping Type Compute - ComputeCompute type
- Data
Flow Mapping Type Pass Through - PassThroughPass-through type
- Data
Flow Mapping Type Built In Function - BuiltInFunctionBuilt in function type
- New
Properties - NewPropertiesNew Properties type
- Rename
- RenameRename type
- Compute
- ComputeCompute type
- Pass
Through - PassThroughPass-through type
- Built
In Function - BuiltInFunctionBuilt in function type
- New
Properties - NewPropertiesNew Properties type
- Rename
- RenameRename type
- Compute
- ComputeCompute type
- Pass
Through - PassThroughPass-through type
- Built
In Function - BuiltInFunctionBuilt in function type
- NEW_PROPERTIES
- NewPropertiesNew Properties type
- RENAME
- RenameRename type
- COMPUTE
- ComputeCompute type
- PASS_THROUGH
- PassThroughPass-through type
- BUILT_IN_FUNCTION
- BuiltInFunctionBuilt in function type
- "New
Properties" - NewPropertiesNew Properties type
- "Rename"
- RenameRename type
- "Compute"
- ComputeCompute type
- "Pass
Through" - PassThroughPass-through type
- "Built
In Function" - BuiltInFunctionBuilt in function type
DataFlowOperation, DataFlowOperationArgs
- Destination
Settings Pulumi.Azure Native. Io TOperations. Inputs. Data Flow Destination Operation - Destination configuration.
- Operation
Type string | Pulumi.Azure Native. Io TOperations. Operation Type - Type of operation.
- Source
Settings Pulumi.Azure Native. Io TOperations. Inputs. Data Flow Source Operation - Source configuration.
- Built
In Pulumi.Transformation Settings Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation - Transformation configuration.
- Name string
- Optional user provided name of the transformation.
- Destination
Settings DataFlow Destination Operation - Destination configuration.
- Operation
Type string | OperationType - Type of operation.
- Source
Settings DataFlow Source Operation - Source configuration.
- Built
In DataTransformation Settings Flow Built In Transformation - Transformation configuration.
- Name string
- Optional user provided name of the transformation.
- destination
Settings DataFlow Destination Operation - Destination configuration.
- operation
Type String | OperationType - Type of operation.
- source
Settings DataFlow Source Operation - Source configuration.
- built
In DataTransformation Settings Flow Built In Transformation - Transformation configuration.
- name String
- Optional user provided name of the transformation.
- destination
Settings DataFlow Destination Operation - Destination configuration.
- operation
Type string | OperationType - Type of operation.
- source
Settings DataFlow Source Operation - Source configuration.
- built
In DataTransformation Settings Flow Built In Transformation - Transformation configuration.
- name string
- Optional user provided name of the transformation.
- destination_
settings DataFlow Destination Operation - Destination configuration.
- operation_
type str | OperationType - Type of operation.
- source_
settings DataFlow Source Operation - Source configuration.
- built_
in_ Datatransformation_ settings Flow Built In Transformation - Transformation configuration.
- name str
- Optional user provided name of the transformation.
- destination
Settings Property Map - Destination configuration.
- operation
Type String | "Source" | "Destination" | "BuiltIn Transformation" - Type of operation.
- source
Settings Property Map - Source configuration.
- built
In Property MapTransformation Settings - Transformation configuration.
- name String
- Optional user provided name of the transformation.
DataFlowOperationResponse, DataFlowOperationResponseArgs
- Destination
Settings Pulumi.Azure Native. Io TOperations. Inputs. Data Flow Destination Operation Response - Destination configuration.
- Operation
Type string - Type of operation.
- Source
Settings Pulumi.Azure Native. Io TOperations. Inputs. Data Flow Source Operation Response - Source configuration.
- Built
In Pulumi.Transformation Settings Azure Native. Io TOperations. Inputs. Data Flow Built In Transformation Response - Transformation configuration.
- Name string
- Optional user provided name of the transformation.
- Destination
Settings DataFlow Destination Operation Response - Destination configuration.
- Operation
Type string - Type of operation.
- Source
Settings DataFlow Source Operation Response - Source configuration.
- Built
In DataTransformation Settings Flow Built In Transformation Response - Transformation configuration.
- Name string
- Optional user provided name of the transformation.
- destination
Settings DataFlow Destination Operation Response - Destination configuration.
- operation
Type String - Type of operation.
- source
Settings DataFlow Source Operation Response - Source configuration.
- built
In DataTransformation Settings Flow Built In Transformation Response - Transformation configuration.
- name String
- Optional user provided name of the transformation.
- destination
Settings DataFlow Destination Operation Response - Destination configuration.
- operation
Type string - Type of operation.
- source
Settings DataFlow Source Operation Response - Source configuration.
- built
In DataTransformation Settings Flow Built In Transformation Response - Transformation configuration.
- name string
- Optional user provided name of the transformation.
- destination_
settings DataFlow Destination Operation Response - Destination configuration.
- operation_
type str - Type of operation.
- source_
settings DataFlow Source Operation Response - Source configuration.
- built_
in_ Datatransformation_ settings Flow Built In Transformation Response - Transformation configuration.
- name str
- Optional user provided name of the transformation.
- destination
Settings Property Map - Destination configuration.
- operation
Type String - Type of operation.
- source
Settings Property Map - Source configuration.
- built
In Property MapTransformation Settings - Transformation configuration.
- name String
- Optional user provided name of the transformation.
DataFlowProperties, DataFlowPropertiesArgs
- Operations
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Operation> - List of operations including source and destination references as well as transformation.
- Profile
Ref string - Reference to the DataflowProfile CR.
- Mode
string | Pulumi.
Azure Native. Io TOperations. Operational Mode - Mode for DataFlow. Optional; defaults to Enabled.
- Operations
[]Data
Flow Operation - List of operations including source and destination references as well as transformation.
- Profile
Ref string - Reference to the DataflowProfile CR.
- Mode
string | Operational
Mode - Mode for DataFlow. Optional; defaults to Enabled.
- operations
List<Data
Flow Operation> - List of operations including source and destination references as well as transformation.
- profile
Ref String - Reference to the DataflowProfile CR.
- mode
String | Operational
Mode - Mode for DataFlow. Optional; defaults to Enabled.
- operations
Data
Flow Operation[] - List of operations including source and destination references as well as transformation.
- profile
Ref string - Reference to the DataflowProfile CR.
- mode
string | Operational
Mode - Mode for DataFlow. Optional; defaults to Enabled.
- operations
Sequence[Data
Flow Operation] - List of operations including source and destination references as well as transformation.
- profile_
ref str - Reference to the DataflowProfile CR.
- mode
str | Operational
Mode - Mode for DataFlow. Optional; defaults to Enabled.
- operations List<Property Map>
- List of operations including source and destination references as well as transformation.
- profile
Ref String - Reference to the DataflowProfile CR.
- mode String | "Enabled" | "Disabled"
- Mode for DataFlow. Optional; defaults to Enabled.
DataFlowPropertiesResponse, DataFlowPropertiesResponseArgs
- Operations
List<Pulumi.
Azure Native. Io TOperations. Inputs. Data Flow Operation Response> - List of operations including source and destination references as well as transformation.
- Profile
Ref string - Reference to the DataflowProfile CR.
- Provisioning
State string - The status of the last operation.
- Mode string
- Mode for DataFlow. Optional; defaults to Enabled.
- Operations
[]Data
Flow Operation Response - List of operations including source and destination references as well as transformation.
- Profile
Ref string - Reference to the DataflowProfile CR.
- Provisioning
State string - The status of the last operation.
- Mode string
- Mode for DataFlow. Optional; defaults to Enabled.
- operations
List<Data
Flow Operation Response> - List of operations including source and destination references as well as transformation.
- profile
Ref String - Reference to the DataflowProfile CR.
- provisioning
State String - The status of the last operation.
- mode String
- Mode for DataFlow. Optional; defaults to Enabled.
- operations
Data
Flow Operation Response[] - List of operations including source and destination references as well as transformation.
- profile
Ref string - Reference to the DataflowProfile CR.
- provisioning
State string - The status of the last operation.
- mode string
- Mode for DataFlow. Optional; defaults to Enabled.
- operations
Sequence[Data
Flow Operation Response] - List of operations including source and destination references as well as transformation.
- profile_
ref str - Reference to the DataflowProfile CR.
- provisioning_
state str - The status of the last operation.
- mode str
- Mode for DataFlow. Optional; defaults to Enabled.
- operations List<Property Map>
- List of operations including source and destination references as well as transformation.
- profile
Ref String - Reference to the DataflowProfile CR.
- provisioning
State String - The status of the last operation.
- mode String
- Mode for DataFlow. Optional; defaults to Enabled.
DataFlowSourceOperation, DataFlowSourceOperationArgs
- Data
Sources List<string> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- Endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- Asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- Schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- Serialization
Format string | Pulumi.Azure Native. Io TOperations. Source Serialization Format - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- Data
Sources []string - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- Endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- Asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- Schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- Serialization
Format string | SourceSerialization Format - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources List<String> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref String - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref String - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref String - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format String | SourceSerialization Format - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources string[] - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format string | SourceSerialization Format - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data_
sources Sequence[str] - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint_
ref str - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset_
ref str - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema_
ref str - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization_
format str | SourceSerialization Format - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources List<String> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref String - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref String - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref String - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format String | "Json" - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
DataFlowSourceOperationResponse, DataFlowSourceOperationResponseArgs
- Data
Sources List<string> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- Endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- Asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- Schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- Serialization
Format string - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- Data
Sources []string - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- Endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- Asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- Schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- Serialization
Format string - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources List<String> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref String - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref String - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref String - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format String - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources string[] - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref string - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref string - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref string - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format string - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data_
sources Sequence[str] - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint_
ref str - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset_
ref str - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema_
ref str - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization_
format str - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
- data
Sources List<String> - List of source locations. Can be Broker or Kafka topics. Supports wildcards # and +.
- endpoint
Ref String - Reference to the Dataflow Endpoint resource. Can only be of Broker and Kafka type.
- asset
Ref String - Reference to the resource in Azure Device Registry where the data in the endpoint originates from.
- schema
Ref String - Schema CR reference. Data will be deserialized according to the schema, and dropped if it doesn't match.
- serialization
Format String - Content is a JSON Schema. Allowed: JSON Schema/draft-7.
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Io TOperations. Extended Location Type - Type of ExtendedLocation.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Type - Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | Extended
Location Type - Type of ExtendedLocation.
- name string
- The name of the extended location.
- type
string | Extended
Location Type - Type of ExtendedLocation.
- name str
- The name of the extended location.
- type
str | Extended
Location Type - Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - Type of ExtendedLocation.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationType, ExtendedLocationTypeArgs
- Custom
Location - CustomLocationCustomLocation type
- Extended
Location Type Custom Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- Custom
Location - CustomLocationCustomLocation type
- CUSTOM_LOCATION
- CustomLocationCustomLocation type
- "Custom
Location" - CustomLocationCustomLocation type
FilterType, FilterTypeArgs
- Filter
- FilterFilter type
- Filter
Type Filter - FilterFilter type
- Filter
- FilterFilter type
- Filter
- FilterFilter type
- FILTER
- FilterFilter type
- "Filter"
- FilterFilter type
OperationType, OperationTypeArgs
- Source
- SourceDataFlow Source Operation
- Destination
- DestinationDataFlow Destination Operation
- Built
In Transformation - BuiltInTransformationDataFlow BuiltIn Transformation Operation
- Operation
Type Source - SourceDataFlow Source Operation
- Operation
Type Destination - DestinationDataFlow Destination Operation
- Operation
Type Built In Transformation - BuiltInTransformationDataFlow BuiltIn Transformation Operation
- Source
- SourceDataFlow Source Operation
- Destination
- DestinationDataFlow Destination Operation
- Built
In Transformation - BuiltInTransformationDataFlow BuiltIn Transformation Operation
- Source
- SourceDataFlow Source Operation
- Destination
- DestinationDataFlow Destination Operation
- Built
In Transformation - BuiltInTransformationDataFlow BuiltIn Transformation Operation
- SOURCE
- SourceDataFlow Source Operation
- DESTINATION
- DestinationDataFlow Destination Operation
- BUILT_IN_TRANSFORMATION
- BuiltInTransformationDataFlow BuiltIn Transformation Operation
- "Source"
- SourceDataFlow Source Operation
- "Destination"
- DestinationDataFlow Destination Operation
- "Built
In Transformation" - BuiltInTransformationDataFlow BuiltIn Transformation Operation
OperationalMode, OperationalModeArgs
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- Operational
Mode Enabled - EnabledEnabled is equivalent to True
- Operational
Mode Disabled - DisabledDisabled is equivalent to False.
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- Enabled
- EnabledEnabled is equivalent to True
- Disabled
- DisabledDisabled is equivalent to False.
- ENABLED
- EnabledEnabled is equivalent to True
- DISABLED
- DisabledDisabled is equivalent to False.
- "Enabled"
- EnabledEnabled is equivalent to True
- "Disabled"
- DisabledDisabled is equivalent to False.
SourceSerializationFormat, SourceSerializationFormatArgs
- Json
- JsonJSON Format
- Source
Serialization Format Json - JsonJSON Format
- Json
- JsonJSON Format
- Json
- JsonJSON Format
- JSON
- JsonJSON Format
- "Json"
- JsonJSON Format
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TransformationSerializationFormat, TransformationSerializationFormatArgs
- Delta
- DeltaDelta Format
- Json
- JsonJSON Format
- Parquet
- ParquetParquet Format
- Transformation
Serialization Format Delta - DeltaDelta Format
- Transformation
Serialization Format Json - JsonJSON Format
- Transformation
Serialization Format Parquet - ParquetParquet Format
- Delta
- DeltaDelta Format
- Json
- JsonJSON Format
- Parquet
- ParquetParquet Format
- Delta
- DeltaDelta Format
- Json
- JsonJSON Format
- Parquet
- ParquetParquet Format
- DELTA
- DeltaDelta Format
- JSON
- JsonJSON Format
- PARQUET
- ParquetParquet Format
- "Delta"
- DeltaDelta Format
- "Json"
- JsonJSON Format
- "Parquet"
- ParquetParquet Format
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:iotoperations:DataFlow gyhhonqupjblolottsc /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/dataflowProfiles/{dataflowProfileName}/dataflows/{dataflowName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0