1. Packages
  2. Azure Native
  3. API Docs
  4. iotoperations
  5. DataflowProfile
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.iotoperations.DataflowProfile

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Instance dataflowProfile resource

    Uses Azure REST API version 2024-11-01.

    Other available API versions: 2024-08-15-preview, 2024-09-15-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native iotoperations [ApiVersion]. See the version guide for details.

    Example Usage

    DataflowProfile_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dataflowProfile = new AzureNative.IoTOperations.DataflowProfile("dataflowProfile", new()
        {
            DataflowProfileName = "resource-name123",
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "qmbrfwcpwwhggszhrdjv",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "resource-name123",
            Properties = new AzureNative.IoTOperations.Inputs.DataflowProfilePropertiesArgs
            {
                Diagnostics = new AzureNative.IoTOperations.Inputs.ProfileDiagnosticsArgs
                {
                    Logs = new AzureNative.IoTOperations.Inputs.DiagnosticsLogsArgs
                    {
                        Level = "rnmwokumdmebpmfxxxzvvjfdywotav",
                    },
                    Metrics = new AzureNative.IoTOperations.Inputs.MetricsArgs
                    {
                        PrometheusPort = 7581,
                    },
                },
                InstanceCount = 14,
            },
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewDataflowProfile(ctx, "dataflowProfile", &iotoperations.DataflowProfileArgs{
    			DataflowProfileName: pulumi.String("resource-name123"),
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("qmbrfwcpwwhggszhrdjv"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("resource-name123"),
    			Properties: &iotoperations.DataflowProfilePropertiesArgs{
    				Diagnostics: &iotoperations.ProfileDiagnosticsArgs{
    					Logs: &iotoperations.DiagnosticsLogsArgs{
    						Level: pulumi.String("rnmwokumdmebpmfxxxzvvjfdywotav"),
    					},
    					Metrics: &iotoperations.MetricsArgs{
    						PrometheusPort: pulumi.Int(7581),
    					},
    				},
    				InstanceCount: pulumi.Int(14),
    			},
    			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.DataflowProfile;
    import com.pulumi.azurenative.iotoperations.DataflowProfileArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.DataflowProfilePropertiesArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ProfileDiagnosticsArgs;
    import com.pulumi.azurenative.iotoperations.inputs.DiagnosticsLogsArgs;
    import com.pulumi.azurenative.iotoperations.inputs.MetricsArgs;
    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 dataflowProfile = new DataflowProfile("dataflowProfile", DataflowProfileArgs.builder()
                .dataflowProfileName("resource-name123")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("qmbrfwcpwwhggszhrdjv")
                    .type("CustomLocation")
                    .build())
                .instanceName("resource-name123")
                .properties(DataflowProfilePropertiesArgs.builder()
                    .diagnostics(ProfileDiagnosticsArgs.builder()
                        .logs(DiagnosticsLogsArgs.builder()
                            .level("rnmwokumdmebpmfxxxzvvjfdywotav")
                            .build())
                        .metrics(MetricsArgs.builder()
                            .prometheusPort(7581)
                            .build())
                        .build())
                    .instanceCount(14)
                    .build())
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dataflowProfile = new azure_native.iotoperations.DataflowProfile("dataflowProfile", {
        dataflowProfileName: "resource-name123",
        extendedLocation: {
            name: "qmbrfwcpwwhggszhrdjv",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "resource-name123",
        properties: {
            diagnostics: {
                logs: {
                    level: "rnmwokumdmebpmfxxxzvvjfdywotav",
                },
                metrics: {
                    prometheusPort: 7581,
                },
            },
            instanceCount: 14,
        },
        resourceGroupName: "rgiotoperations",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dataflow_profile = azure_native.iotoperations.DataflowProfile("dataflowProfile",
        dataflow_profile_name="resource-name123",
        extended_location={
            "name": "qmbrfwcpwwhggszhrdjv",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="resource-name123",
        properties={
            "diagnostics": {
                "logs": {
                    "level": "rnmwokumdmebpmfxxxzvvjfdywotav",
                },
                "metrics": {
                    "prometheus_port": 7581,
                },
            },
            "instance_count": 14,
        },
        resource_group_name="rgiotoperations")
    
    resources:
      dataflowProfile:
        type: azure-native:iotoperations:DataflowProfile
        properties:
          dataflowProfileName: resource-name123
          extendedLocation:
            name: qmbrfwcpwwhggszhrdjv
            type: CustomLocation
          instanceName: resource-name123
          properties:
            diagnostics:
              logs:
                level: rnmwokumdmebpmfxxxzvvjfdywotav
              metrics:
                prometheusPort: 7581
            instanceCount: 14
          resourceGroupName: rgiotoperations
    

    DataflowProfile_CreateOrUpdate_Minimal

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dataflowProfile = new AzureNative.IoTOperations.DataflowProfile("dataflowProfile", new()
        {
            DataflowProfileName = "aio-dataflowprofile",
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "qmbrfwcpwwhggszhrdjv",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "resource-name123",
            Properties = new AzureNative.IoTOperations.Inputs.DataflowProfilePropertiesArgs
            {
                InstanceCount = 1,
            },
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewDataflowProfile(ctx, "dataflowProfile", &iotoperations.DataflowProfileArgs{
    			DataflowProfileName: pulumi.String("aio-dataflowprofile"),
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("qmbrfwcpwwhggszhrdjv"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("resource-name123"),
    			Properties: &iotoperations.DataflowProfilePropertiesArgs{
    				InstanceCount: pulumi.Int(1),
    			},
    			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.DataflowProfile;
    import com.pulumi.azurenative.iotoperations.DataflowProfileArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.DataflowProfilePropertiesArgs;
    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 dataflowProfile = new DataflowProfile("dataflowProfile", DataflowProfileArgs.builder()
                .dataflowProfileName("aio-dataflowprofile")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("qmbrfwcpwwhggszhrdjv")
                    .type("CustomLocation")
                    .build())
                .instanceName("resource-name123")
                .properties(DataflowProfilePropertiesArgs.builder()
                    .instanceCount(1)
                    .build())
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dataflowProfile = new azure_native.iotoperations.DataflowProfile("dataflowProfile", {
        dataflowProfileName: "aio-dataflowprofile",
        extendedLocation: {
            name: "qmbrfwcpwwhggszhrdjv",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "resource-name123",
        properties: {
            instanceCount: 1,
        },
        resourceGroupName: "rgiotoperations",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dataflow_profile = azure_native.iotoperations.DataflowProfile("dataflowProfile",
        dataflow_profile_name="aio-dataflowprofile",
        extended_location={
            "name": "qmbrfwcpwwhggszhrdjv",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="resource-name123",
        properties={
            "instance_count": 1,
        },
        resource_group_name="rgiotoperations")
    
    resources:
      dataflowProfile:
        type: azure-native:iotoperations:DataflowProfile
        properties:
          dataflowProfileName: aio-dataflowprofile
          extendedLocation:
            name: qmbrfwcpwwhggszhrdjv
            type: CustomLocation
          instanceName: resource-name123
          properties:
            instanceCount: 1
          resourceGroupName: rgiotoperations
    

    DataflowProfile_CreateOrUpdate_Multi

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var dataflowProfile = new AzureNative.IoTOperations.DataflowProfile("dataflowProfile", new()
        {
            DataflowProfileName = "aio-dataflowprofile",
            ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
            {
                Name = "qmbrfwcpwwhggszhrdjv",
                Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
            },
            InstanceName = "resource-name123",
            Properties = new AzureNative.IoTOperations.Inputs.DataflowProfilePropertiesArgs
            {
                InstanceCount = 3,
            },
            ResourceGroupName = "rgiotoperations",
        });
    
    });
    
    package main
    
    import (
    	iotoperations "github.com/pulumi/pulumi-azure-native-sdk/iotoperations/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iotoperations.NewDataflowProfile(ctx, "dataflowProfile", &iotoperations.DataflowProfileArgs{
    			DataflowProfileName: pulumi.String("aio-dataflowprofile"),
    			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    				Name: pulumi.String("qmbrfwcpwwhggszhrdjv"),
    				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
    			},
    			InstanceName: pulumi.String("resource-name123"),
    			Properties: &iotoperations.DataflowProfilePropertiesArgs{
    				InstanceCount: pulumi.Int(3),
    			},
    			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.DataflowProfile;
    import com.pulumi.azurenative.iotoperations.DataflowProfileArgs;
    import com.pulumi.azurenative.iotoperations.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.iotoperations.inputs.DataflowProfilePropertiesArgs;
    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 dataflowProfile = new DataflowProfile("dataflowProfile", DataflowProfileArgs.builder()
                .dataflowProfileName("aio-dataflowprofile")
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("qmbrfwcpwwhggszhrdjv")
                    .type("CustomLocation")
                    .build())
                .instanceName("resource-name123")
                .properties(DataflowProfilePropertiesArgs.builder()
                    .instanceCount(3)
                    .build())
                .resourceGroupName("rgiotoperations")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const dataflowProfile = new azure_native.iotoperations.DataflowProfile("dataflowProfile", {
        dataflowProfileName: "aio-dataflowprofile",
        extendedLocation: {
            name: "qmbrfwcpwwhggszhrdjv",
            type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
        },
        instanceName: "resource-name123",
        properties: {
            instanceCount: 3,
        },
        resourceGroupName: "rgiotoperations",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dataflow_profile = azure_native.iotoperations.DataflowProfile("dataflowProfile",
        dataflow_profile_name="aio-dataflowprofile",
        extended_location={
            "name": "qmbrfwcpwwhggszhrdjv",
            "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
        },
        instance_name="resource-name123",
        properties={
            "instance_count": 3,
        },
        resource_group_name="rgiotoperations")
    
    resources:
      dataflowProfile:
        type: azure-native:iotoperations:DataflowProfile
        properties:
          dataflowProfileName: aio-dataflowprofile
          extendedLocation:
            name: qmbrfwcpwwhggszhrdjv
            type: CustomLocation
          instanceName: resource-name123
          properties:
            instanceCount: 3
          resourceGroupName: rgiotoperations
    

    Create DataflowProfile Resource

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

    Constructor syntax

    new DataflowProfile(name: string, args: DataflowProfileArgs, opts?: CustomResourceOptions);
    @overload
    def DataflowProfile(resource_name: str,
                        args: DataflowProfileArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def DataflowProfile(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        extended_location: Optional[ExtendedLocationArgs] = None,
                        instance_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        dataflow_profile_name: Optional[str] = None,
                        properties: Optional[DataflowProfilePropertiesArgs] = None)
    func NewDataflowProfile(ctx *Context, name string, args DataflowProfileArgs, opts ...ResourceOption) (*DataflowProfile, error)
    public DataflowProfile(string name, DataflowProfileArgs args, CustomResourceOptions? opts = null)
    public DataflowProfile(String name, DataflowProfileArgs args)
    public DataflowProfile(String name, DataflowProfileArgs args, CustomResourceOptions options)
    
    type: azure-native:iotoperations:DataflowProfile
    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 DataflowProfileArgs
    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 DataflowProfileArgs
    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 DataflowProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DataflowProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DataflowProfileArgs
    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 dataflowProfileResource = new AzureNative.IoTOperations.DataflowProfile("dataflowProfileResource", new()
    {
        ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        InstanceName = "string",
        ResourceGroupName = "string",
        DataflowProfileName = "string",
        Properties = new AzureNative.IoTOperations.Inputs.DataflowProfilePropertiesArgs
        {
            Diagnostics = new AzureNative.IoTOperations.Inputs.ProfileDiagnosticsArgs
            {
                Logs = new AzureNative.IoTOperations.Inputs.DiagnosticsLogsArgs
                {
                    Level = "string",
                },
                Metrics = new AzureNative.IoTOperations.Inputs.MetricsArgs
                {
                    PrometheusPort = 0,
                },
            },
            InstanceCount = 0,
        },
    });
    
    example, err := iotoperations.NewDataflowProfile(ctx, "dataflowProfileResource", &iotoperations.DataflowProfileArgs{
    	ExtendedLocation: &iotoperations.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	InstanceName:        pulumi.String("string"),
    	ResourceGroupName:   pulumi.String("string"),
    	DataflowProfileName: pulumi.String("string"),
    	Properties: &iotoperations.DataflowProfilePropertiesArgs{
    		Diagnostics: &iotoperations.ProfileDiagnosticsArgs{
    			Logs: &iotoperations.DiagnosticsLogsArgs{
    				Level: pulumi.String("string"),
    			},
    			Metrics: &iotoperations.MetricsArgs{
    				PrometheusPort: pulumi.Int(0),
    			},
    		},
    		InstanceCount: pulumi.Int(0),
    	},
    })
    
    var dataflowProfileResource = new DataflowProfile("dataflowProfileResource", DataflowProfileArgs.builder()
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .instanceName("string")
        .resourceGroupName("string")
        .dataflowProfileName("string")
        .properties(DataflowProfilePropertiesArgs.builder()
            .diagnostics(ProfileDiagnosticsArgs.builder()
                .logs(DiagnosticsLogsArgs.builder()
                    .level("string")
                    .build())
                .metrics(MetricsArgs.builder()
                    .prometheusPort(0)
                    .build())
                .build())
            .instanceCount(0)
            .build())
        .build());
    
    dataflow_profile_resource = azure_native.iotoperations.DataflowProfile("dataflowProfileResource",
        extended_location={
            "name": "string",
            "type": "string",
        },
        instance_name="string",
        resource_group_name="string",
        dataflow_profile_name="string",
        properties={
            "diagnostics": {
                "logs": {
                    "level": "string",
                },
                "metrics": {
                    "prometheus_port": 0,
                },
            },
            "instance_count": 0,
        })
    
    const dataflowProfileResource = new azure_native.iotoperations.DataflowProfile("dataflowProfileResource", {
        extendedLocation: {
            name: "string",
            type: "string",
        },
        instanceName: "string",
        resourceGroupName: "string",
        dataflowProfileName: "string",
        properties: {
            diagnostics: {
                logs: {
                    level: "string",
                },
                metrics: {
                    prometheusPort: 0,
                },
            },
            instanceCount: 0,
        },
    });
    
    type: azure-native:iotoperations:DataflowProfile
    properties:
        dataflowProfileName: string
        extendedLocation:
            name: string
            type: string
        instanceName: string
        properties:
            diagnostics:
                logs:
                    level: string
                metrics:
                    prometheusPort: 0
            instanceCount: 0
        resourceGroupName: string
    

    DataflowProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DataflowProfile resource accepts the following input properties:

    ExtendedLocation Pulumi.AzureNative.IoTOperations.Inputs.ExtendedLocation
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DataflowProfileName string
    Name of Instance dataflowProfile resource
    Properties Pulumi.AzureNative.IoTOperations.Inputs.DataflowProfileProperties
    The resource-specific properties for this resource.
    ExtendedLocation ExtendedLocationArgs
    Edge location of the resource.
    InstanceName string
    Name of instance.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DataflowProfileName string
    Name of Instance dataflowProfile resource
    Properties DataflowProfilePropertiesArgs
    The resource-specific properties for this resource.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dataflowProfileName String
    Name of Instance dataflowProfile resource
    properties DataflowProfileProperties
    The resource-specific properties for this resource.
    extendedLocation ExtendedLocation
    Edge location of the resource.
    instanceName string
    Name of instance.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    dataflowProfileName string
    Name of Instance dataflowProfile resource
    properties DataflowProfileProperties
    The resource-specific properties for this resource.
    extended_location ExtendedLocationArgs
    Edge location of the resource.
    instance_name str
    Name of instance.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    dataflow_profile_name str
    Name of Instance dataflowProfile resource
    properties DataflowProfilePropertiesArgs
    The resource-specific properties for this resource.
    extendedLocation Property Map
    Edge location of the resource.
    instanceName String
    Name of instance.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    dataflowProfileName String
    Name of Instance dataflowProfile resource
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.IoTOperations.Outputs.SystemDataResponse
    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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData 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

    DataflowProfileProperties, DataflowProfilePropertiesArgs

    Diagnostics Pulumi.AzureNative.IoTOperations.Inputs.ProfileDiagnostics
    Spec defines the desired identities of NBC diagnostics settings.
    InstanceCount int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    Diagnostics ProfileDiagnostics
    Spec defines the desired identities of NBC diagnostics settings.
    InstanceCount int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    diagnostics ProfileDiagnostics
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount Integer
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    diagnostics ProfileDiagnostics
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount number
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    diagnostics ProfileDiagnostics
    Spec defines the desired identities of NBC diagnostics settings.
    instance_count int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    diagnostics Property Map
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount Number
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.

    DataflowProfilePropertiesResponse, DataflowProfilePropertiesResponseArgs

    ProvisioningState string
    The status of the last operation.
    Diagnostics Pulumi.AzureNative.IoTOperations.Inputs.ProfileDiagnosticsResponse
    Spec defines the desired identities of NBC diagnostics settings.
    InstanceCount int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    ProvisioningState string
    The status of the last operation.
    Diagnostics ProfileDiagnosticsResponse
    Spec defines the desired identities of NBC diagnostics settings.
    InstanceCount int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    provisioningState String
    The status of the last operation.
    diagnostics ProfileDiagnosticsResponse
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount Integer
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    provisioningState string
    The status of the last operation.
    diagnostics ProfileDiagnosticsResponse
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount number
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    provisioning_state str
    The status of the last operation.
    diagnostics ProfileDiagnosticsResponse
    Spec defines the desired identities of NBC diagnostics settings.
    instance_count int
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.
    provisioningState String
    The status of the last operation.
    diagnostics Property Map
    Spec defines the desired identities of NBC diagnostics settings.
    instanceCount Number
    To manually scale the dataflow profile, specify the maximum number of instances you want to run.

    DiagnosticsLogs, DiagnosticsLogsArgs

    Level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    Level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level String
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level str
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level String
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.

    DiagnosticsLogsResponse, DiagnosticsLogsResponseArgs

    Level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    Level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level String
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level string
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level str
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
    level String
    The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.IoTOperations.ExtendedLocationType
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | ExtendedLocationType
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string | ExtendedLocationType
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str | ExtendedLocationType
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String | "CustomLocation"
    Type of ExtendedLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    Name string
    The name of the extended location.
    Type string
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.
    name string
    The name of the extended location.
    type string
    Type of ExtendedLocation.
    name str
    The name of the extended location.
    type str
    Type of ExtendedLocation.
    name String
    The name of the extended location.
    type String
    Type of ExtendedLocation.

    ExtendedLocationType, ExtendedLocationTypeArgs

    CustomLocation
    CustomLocationCustomLocation type
    ExtendedLocationTypeCustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CustomLocation
    CustomLocationCustomLocation type
    CUSTOM_LOCATION
    CustomLocationCustomLocation type
    "CustomLocation"
    CustomLocationCustomLocation type

    Metrics, MetricsArgs

    PrometheusPort int
    The prometheus port to expose the metrics.
    PrometheusPort int
    The prometheus port to expose the metrics.
    prometheusPort Integer
    The prometheus port to expose the metrics.
    prometheusPort number
    The prometheus port to expose the metrics.
    prometheus_port int
    The prometheus port to expose the metrics.
    prometheusPort Number
    The prometheus port to expose the metrics.

    MetricsResponse, MetricsResponseArgs

    PrometheusPort int
    The prometheus port to expose the metrics.
    PrometheusPort int
    The prometheus port to expose the metrics.
    prometheusPort Integer
    The prometheus port to expose the metrics.
    prometheusPort number
    The prometheus port to expose the metrics.
    prometheus_port int
    The prometheus port to expose the metrics.
    prometheusPort Number
    The prometheus port to expose the metrics.

    ProfileDiagnostics, ProfileDiagnosticsArgs

    Logs Pulumi.AzureNative.IoTOperations.Inputs.DiagnosticsLogs
    Diagnostic log settings for the resource.
    Metrics Pulumi.AzureNative.IoTOperations.Inputs.Metrics
    The metrics settings for the resource.
    Logs DiagnosticsLogs
    Diagnostic log settings for the resource.
    Metrics Metrics
    The metrics settings for the resource.
    logs DiagnosticsLogs
    Diagnostic log settings for the resource.
    metrics Metrics
    The metrics settings for the resource.
    logs DiagnosticsLogs
    Diagnostic log settings for the resource.
    metrics Metrics
    The metrics settings for the resource.
    logs DiagnosticsLogs
    Diagnostic log settings for the resource.
    metrics Metrics
    The metrics settings for the resource.
    logs Property Map
    Diagnostic log settings for the resource.
    metrics Property Map
    The metrics settings for the resource.

    ProfileDiagnosticsResponse, ProfileDiagnosticsResponseArgs

    Logs DiagnosticsLogsResponse
    Diagnostic log settings for the resource.
    Metrics MetricsResponse
    The metrics settings for the resource.
    logs DiagnosticsLogsResponse
    Diagnostic log settings for the resource.
    metrics MetricsResponse
    The metrics settings for the resource.
    logs DiagnosticsLogsResponse
    Diagnostic log settings for the resource.
    metrics MetricsResponse
    The metrics settings for the resource.
    logs DiagnosticsLogsResponse
    Diagnostic log settings for the resource.
    metrics MetricsResponse
    The metrics settings for the resource.
    logs Property Map
    Diagnostic log settings for the resource.
    metrics Property Map
    The metrics settings for the resource.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:iotoperations:DataflowProfile bwhcjsnnfnrmbixamyxjau /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperations/instances/{instanceName}/dataflowProfiles/{dataflowProfileName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi