azure-native.iotoperations.DataFlowProfile
Explore with Pulumi AI
Instance dataflowProfile resource
Uses Azure REST API version 2024-07-01-preview.
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 = "aio-dataflowprofile",
        ExtendedLocation = new AzureNative.IoTOperations.Inputs.ExtendedLocationArgs
        {
            Name = "ycsyubcxttlusbhfdqaynmkaatnbyv",
            Type = AzureNative.IoTOperations.ExtendedLocationType.CustomLocation,
        },
        InstanceName = "aio-instance",
        Properties = new AzureNative.IoTOperations.Inputs.DataFlowProfilePropertiesArgs
        {
            Diagnostics = new AzureNative.IoTOperations.Inputs.ProfileDiagnosticsArgs
            {
                Logs = new AzureNative.IoTOperations.Inputs.DiagnosticsLogsArgs
                {
                    Level = "tpjixxzdjmkvfnctjbkycswmyrnskf",
                    OpentelemetryExportConfig = new AzureNative.IoTOperations.Inputs.OpenTelemetryLogExportConfigArgs
                    {
                        IntervalSeconds = 23,
                        Level = "tmcrcih",
                        OtlpGrpcEndpoint = "oyembrvhzogggkodr",
                    },
                },
                Metrics = new AzureNative.IoTOperations.Inputs.MetricsArgs
                {
                    OpentelemetryExportConfig = new AzureNative.IoTOperations.Inputs.OpenTelemetryExportConfigArgs
                    {
                        IntervalSeconds = 207,
                        OtlpGrpcEndpoint = "dngpjdmfecwmrheyzc",
                    },
                    PrometheusPort = 87,
                },
            },
            InstanceCount = 18,
        },
        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.NewDataFlowProfile(ctx, "dataFlowProfile", &iotoperations.DataFlowProfileArgs{
			DataflowProfileName: pulumi.String("aio-dataflowprofile"),
			ExtendedLocation: &iotoperations.ExtendedLocationArgs{
				Name: pulumi.String("ycsyubcxttlusbhfdqaynmkaatnbyv"),
				Type: pulumi.String(iotoperations.ExtendedLocationTypeCustomLocation),
			},
			InstanceName: pulumi.String("aio-instance"),
			Properties: &iotoperations.DataFlowProfilePropertiesArgs{
				Diagnostics: &iotoperations.ProfileDiagnosticsArgs{
					Logs: &iotoperations.DiagnosticsLogsArgs{
						Level: pulumi.String("tpjixxzdjmkvfnctjbkycswmyrnskf"),
						OpentelemetryExportConfig: &iotoperations.OpenTelemetryLogExportConfigArgs{
							IntervalSeconds:  pulumi.Int(23),
							Level:            pulumi.String("tmcrcih"),
							OtlpGrpcEndpoint: pulumi.String("oyembrvhzogggkodr"),
						},
					},
					Metrics: &iotoperations.MetricsArgs{
						OpentelemetryExportConfig: &iotoperations.OpenTelemetryExportConfigArgs{
							IntervalSeconds:  pulumi.Int(207),
							OtlpGrpcEndpoint: pulumi.String("dngpjdmfecwmrheyzc"),
						},
						PrometheusPort: pulumi.Int(87),
					},
				},
				InstanceCount: pulumi.Int(18),
			},
			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.OpenTelemetryLogExportConfigArgs;
import com.pulumi.azurenative.iotoperations.inputs.MetricsArgs;
import com.pulumi.azurenative.iotoperations.inputs.OpenTelemetryExportConfigArgs;
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("ycsyubcxttlusbhfdqaynmkaatnbyv")
                .type("CustomLocation")
                .build())
            .instanceName("aio-instance")
            .properties(DataFlowProfilePropertiesArgs.builder()
                .diagnostics(ProfileDiagnosticsArgs.builder()
                    .logs(DiagnosticsLogsArgs.builder()
                        .level("tpjixxzdjmkvfnctjbkycswmyrnskf")
                        .opentelemetryExportConfig(OpenTelemetryLogExportConfigArgs.builder()
                            .intervalSeconds(23)
                            .level("tmcrcih")
                            .otlpGrpcEndpoint("oyembrvhzogggkodr")
                            .build())
                        .build())
                    .metrics(MetricsArgs.builder()
                        .opentelemetryExportConfig(OpenTelemetryExportConfigArgs.builder()
                            .intervalSeconds(207)
                            .otlpGrpcEndpoint("dngpjdmfecwmrheyzc")
                            .build())
                        .prometheusPort(87)
                        .build())
                    .build())
                .instanceCount(18)
                .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: "ycsyubcxttlusbhfdqaynmkaatnbyv",
        type: azure_native.iotoperations.ExtendedLocationType.CustomLocation,
    },
    instanceName: "aio-instance",
    properties: {
        diagnostics: {
            logs: {
                level: "tpjixxzdjmkvfnctjbkycswmyrnskf",
                opentelemetryExportConfig: {
                    intervalSeconds: 23,
                    level: "tmcrcih",
                    otlpGrpcEndpoint: "oyembrvhzogggkodr",
                },
            },
            metrics: {
                opentelemetryExportConfig: {
                    intervalSeconds: 207,
                    otlpGrpcEndpoint: "dngpjdmfecwmrheyzc",
                },
                prometheusPort: 87,
            },
        },
        instanceCount: 18,
    },
    resourceGroupName: "rgiotoperations",
});
import pulumi
import pulumi_azure_native as azure_native
data_flow_profile = azure_native.iotoperations.DataFlowProfile("dataFlowProfile",
    dataflow_profile_name="aio-dataflowprofile",
    extended_location={
        "name": "ycsyubcxttlusbhfdqaynmkaatnbyv",
        "type": azure_native.iotoperations.ExtendedLocationType.CUSTOM_LOCATION,
    },
    instance_name="aio-instance",
    properties={
        "diagnostics": {
            "logs": {
                "level": "tpjixxzdjmkvfnctjbkycswmyrnskf",
                "opentelemetry_export_config": {
                    "interval_seconds": 23,
                    "level": "tmcrcih",
                    "otlp_grpc_endpoint": "oyembrvhzogggkodr",
                },
            },
            "metrics": {
                "opentelemetry_export_config": {
                    "interval_seconds": 207,
                    "otlp_grpc_endpoint": "dngpjdmfecwmrheyzc",
                },
                "prometheus_port": 87,
            },
        },
        "instance_count": 18,
    },
    resource_group_name="rgiotoperations")
resources:
  dataFlowProfile:
    type: azure-native:iotoperations:DataFlowProfile
    properties:
      dataflowProfileName: aio-dataflowprofile
      extendedLocation:
        name: ycsyubcxttlusbhfdqaynmkaatnbyv
        type: CustomLocation
      instanceName: aio-instance
      properties:
        diagnostics:
          logs:
            level: tpjixxzdjmkvfnctjbkycswmyrnskf
            opentelemetryExportConfig:
              intervalSeconds: 23
              level: tmcrcih
              otlpGrpcEndpoint: oyembrvhzogggkodr
          metrics:
            opentelemetryExportConfig:
              intervalSeconds: 207
              otlpGrpcEndpoint: dngpjdmfecwmrheyzc
            prometheusPort: 87
        instanceCount: 18
      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",
                OpentelemetryExportConfig = new AzureNative.IoTOperations.Inputs.OpenTelemetryLogExportConfigArgs
                {
                    OtlpGrpcEndpoint = "string",
                    IntervalSeconds = 0,
                    Level = "string",
                },
            },
            Metrics = new AzureNative.IoTOperations.Inputs.MetricsArgs
            {
                OpentelemetryExportConfig = new AzureNative.IoTOperations.Inputs.OpenTelemetryExportConfigArgs
                {
                    OtlpGrpcEndpoint = "string",
                    IntervalSeconds = 0,
                },
                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"),
				OpentelemetryExportConfig: &iotoperations.OpenTelemetryLogExportConfigArgs{
					OtlpGrpcEndpoint: pulumi.String("string"),
					IntervalSeconds:  pulumi.Int(0),
					Level:            pulumi.String("string"),
				},
			},
			Metrics: &iotoperations.MetricsArgs{
				OpentelemetryExportConfig: &iotoperations.OpenTelemetryExportConfigArgs{
					OtlpGrpcEndpoint: pulumi.String("string"),
					IntervalSeconds:  pulumi.Int(0),
				},
				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")
                .opentelemetryExportConfig(OpenTelemetryLogExportConfigArgs.builder()
                    .otlpGrpcEndpoint("string")
                    .intervalSeconds(0)
                    .level("string")
                    .build())
                .build())
            .metrics(MetricsArgs.builder()
                .opentelemetryExportConfig(OpenTelemetryExportConfigArgs.builder()
                    .otlpGrpcEndpoint("string")
                    .intervalSeconds(0)
                    .build())
                .prometheusPort(0)
                .build())
            .build())
        .instanceCount(0)
        .build())
    .build());
data_flow_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",
                "opentelemetry_export_config": {
                    "otlp_grpc_endpoint": "string",
                    "interval_seconds": 0,
                    "level": "string",
                },
            },
            "metrics": {
                "opentelemetry_export_config": {
                    "otlp_grpc_endpoint": "string",
                    "interval_seconds": 0,
                },
                "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",
                opentelemetryExportConfig: {
                    otlpGrpcEndpoint: "string",
                    intervalSeconds: 0,
                    level: "string",
                },
            },
            metrics: {
                opentelemetryExportConfig: {
                    otlpGrpcEndpoint: "string",
                    intervalSeconds: 0,
                },
                prometheusPort: 0,
            },
        },
        instanceCount: 0,
    },
});
type: azure-native:iotoperations:DataFlowProfile
properties:
    dataflowProfileName: string
    extendedLocation:
        name: string
        type: string
    instanceName: string
    properties:
        diagnostics:
            logs:
                level: string
                opentelemetryExportConfig:
                    intervalSeconds: 0
                    level: string
                    otlpGrpcEndpoint: string
            metrics:
                opentelemetryExportConfig:
                    intervalSeconds: 0
                    otlpGrpcEndpoint: string
                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.Azure Native. Io TOperations. Inputs. Extended Location 
- Edge location of the resource.
- InstanceName string
- Name of instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DataflowProfile stringName 
- Name of Instance dataflowProfile resource
- Properties
Pulumi.Azure Native. Io TOperations. Inputs. Data Flow Profile Properties 
- The resource-specific properties for this resource.
- ExtendedLocation ExtendedLocation Args 
- Edge location of the resource.
- InstanceName string
- Name of instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DataflowProfile stringName 
- Name of Instance dataflowProfile resource
- Properties
DataFlow Profile Properties Args 
- The resource-specific properties for this resource.
- extendedLocation ExtendedLocation 
- Edge location of the resource.
- instanceName String
- Name of instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- dataflowProfile StringName 
- Name of Instance dataflowProfile resource
- properties
DataFlow Profile Properties 
- The resource-specific properties for this resource.
- extendedLocation ExtendedLocation 
- Edge location of the resource.
- instanceName string
- Name of instance.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- dataflowProfile stringName 
- Name of Instance dataflowProfile resource
- properties
DataFlow Profile Properties 
- The resource-specific properties for this 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_profile_ strname 
- Name of Instance dataflowProfile resource
- properties
DataFlow Profile Properties Args 
- The resource-specific properties for this resource.
- extendedLocation Property Map
- Edge location of the resource.
- instanceName String
- Name of instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- dataflowProfile StringName 
- 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:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData 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
- SystemData 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
- systemData 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
- systemData 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
- 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.Azure Native. Io TOperations. Inputs. Profile Diagnostics 
- 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.Azure Native. Io TOperations. Inputs. Profile Diagnostics Response 
- 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
ProfileDiagnostics Response 
- 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
ProfileDiagnostics Response 
- 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
ProfileDiagnostics Response 
- 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
ProfileDiagnostics Response 
- 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'.
- OpentelemetryExport Pulumi.Config Azure Native. Io TOperations. Inputs. Open Telemetry Log Export Config 
- The open telemetry export configuration.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- OpentelemetryExport OpenConfig Telemetry Log Export Config 
- The open telemetry export configuration.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport OpenConfig Telemetry Log Export Config 
- The open telemetry export configuration.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport OpenConfig Telemetry Log Export Config 
- The open telemetry export configuration.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetry_export_ Openconfig Telemetry Log Export Config 
- The open telemetry export configuration.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport Property MapConfig 
- The open telemetry export configuration.
DiagnosticsLogsResponse, DiagnosticsLogsResponseArgs      
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- OpentelemetryExport Pulumi.Config Azure Native. Io TOperations. Inputs. Open Telemetry Log Export Config Response 
- The open telemetry export configuration.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- OpentelemetryExport OpenConfig Telemetry Log Export Config Response 
- The open telemetry export configuration.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport OpenConfig Telemetry Log Export Config Response 
- The open telemetry export configuration.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport OpenConfig Telemetry Log Export Config Response 
- The open telemetry export configuration.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetry_export_ Openconfig Telemetry Log Export Config Response 
- The open telemetry export configuration.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- opentelemetryExport Property MapConfig 
- The open telemetry export configuration.
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 | ExtendedLocation Type 
- Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Type 
- Type of ExtendedLocation.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Type 
- Type of ExtendedLocation.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Type 
- Type of ExtendedLocation.
- name String
- The name of the extended location.
- type
String | "CustomLocation" 
- Type of ExtendedLocation.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationType, ExtendedLocationTypeArgs      
- CustomLocation 
- CustomLocationCustomLocation type
- ExtendedLocation Type Custom Location 
- CustomLocationCustomLocation type
- CustomLocation 
- CustomLocationCustomLocation type
- CustomLocation 
- CustomLocationCustomLocation type
- CUSTOM_LOCATION
- CustomLocationCustomLocation type
- "CustomLocation" 
- CustomLocationCustomLocation type
Metrics, MetricsArgs  
- OpentelemetryExport Pulumi.Config Azure Native. Io TOperations. Inputs. Open Telemetry Export Config 
- The open telemetry export configuration.
- PrometheusPort int
- The prometheus port to expose the metrics.
- OpentelemetryExport OpenConfig Telemetry Export Config 
- The open telemetry export configuration.
- PrometheusPort int
- The prometheus port to expose the metrics.
- opentelemetryExport OpenConfig Telemetry Export Config 
- The open telemetry export configuration.
- prometheusPort Integer
- The prometheus port to expose the metrics.
- opentelemetryExport OpenConfig Telemetry Export Config 
- The open telemetry export configuration.
- prometheusPort number
- The prometheus port to expose the metrics.
- opentelemetry_export_ Openconfig Telemetry Export Config 
- The open telemetry export configuration.
- prometheus_port int
- The prometheus port to expose the metrics.
- opentelemetryExport Property MapConfig 
- The open telemetry export configuration.
- prometheusPort Number
- The prometheus port to expose the metrics.
MetricsResponse, MetricsResponseArgs    
- OpentelemetryExport Pulumi.Config Azure Native. Io TOperations. Inputs. Open Telemetry Export Config Response 
- The open telemetry export configuration.
- PrometheusPort int
- The prometheus port to expose the metrics.
- OpentelemetryExport OpenConfig Telemetry Export Config Response 
- The open telemetry export configuration.
- PrometheusPort int
- The prometheus port to expose the metrics.
- opentelemetryExport OpenConfig Telemetry Export Config Response 
- The open telemetry export configuration.
- prometheusPort Integer
- The prometheus port to expose the metrics.
- opentelemetryExport OpenConfig Telemetry Export Config Response 
- The open telemetry export configuration.
- prometheusPort number
- The prometheus port to expose the metrics.
- opentelemetry_export_ Openconfig Telemetry Export Config Response 
- The open telemetry export configuration.
- prometheus_port int
- The prometheus port to expose the metrics.
- opentelemetryExport Property MapConfig 
- The open telemetry export configuration.
- prometheusPort Number
- The prometheus port to expose the metrics.
OpenTelemetryExportConfig, OpenTelemetryExportConfigArgs        
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Integer
- How often to export the metrics to the open telemetry collector.
- otlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds number
- How often to export the metrics to the open telemetry collector.
- otlp_grpc_ strendpoint 
- The open telemetry collector endpoint to export to.
- interval_seconds int
- How often to export the metrics to the open telemetry collector.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Number
- How often to export the metrics to the open telemetry collector.
OpenTelemetryExportConfigResponse, OpenTelemetryExportConfigResponseArgs          
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Integer
- How often to export the metrics to the open telemetry collector.
- otlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds number
- How often to export the metrics to the open telemetry collector.
- otlp_grpc_ strendpoint 
- The open telemetry collector endpoint to export to.
- interval_seconds int
- How often to export the metrics to the open telemetry collector.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Number
- How often to export the metrics to the open telemetry collector.
OpenTelemetryLogExportConfig, OpenTelemetryLogExportConfigArgs          
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Integer
- How often to export the metrics to the open telemetry collector.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds number
- How often to export the metrics to the open telemetry collector.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlp_grpc_ strendpoint 
- The open telemetry collector endpoint to export to.
- interval_seconds int
- How often to export the metrics to the open telemetry collector.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Number
- How often to export the metrics to the open telemetry collector.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
OpenTelemetryLogExportConfigResponse, OpenTelemetryLogExportConfigResponseArgs            
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- OtlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- IntervalSeconds int
- How often to export the metrics to the open telemetry collector.
- Level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Integer
- How often to export the metrics to the open telemetry collector.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc stringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds number
- How often to export the metrics to the open telemetry collector.
- level string
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlp_grpc_ strendpoint 
- The open telemetry collector endpoint to export to.
- interval_seconds int
- How often to export the metrics to the open telemetry collector.
- level str
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
- otlpGrpc StringEndpoint 
- The open telemetry collector endpoint to export to.
- intervalSeconds Number
- How often to export the metrics to the open telemetry collector.
- level String
- The log level. Examples - 'debug', 'info', 'warn', 'error', 'trace'.
ProfileDiagnostics, ProfileDiagnosticsArgs    
- Logs
Pulumi.Azure Native. Io TOperations. Inputs. Diagnostics Logs 
- Diagnostic log settings for the resource.
- Metrics
Pulumi.Azure Native. Io TOperations. 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
Pulumi.Azure Native. Io TOperations. Inputs. Diagnostics Logs Response 
- Diagnostic log settings for the resource.
- Metrics
Pulumi.Azure Native. Io TOperations. Inputs. Metrics Response 
- The metrics settings for the resource.
- Logs
DiagnosticsLogs Response 
- Diagnostic log settings for the resource.
- Metrics
MetricsResponse 
- The metrics settings for the resource.
- logs
DiagnosticsLogs Response 
- Diagnostic log settings for the resource.
- metrics
MetricsResponse 
- The metrics settings for the resource.
- logs
DiagnosticsLogs Response 
- Diagnostic log settings for the resource.
- metrics
MetricsResponse 
- The metrics settings for the resource.
- logs
DiagnosticsLogs Response 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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 qoettseeorbtnsqzdzkmj /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