azure-native.iotoperationsdataprocessor.Pipeline
Explore with Pulumi AI
A Pipeline resource belonging to an Instance resource. Azure REST API version: 2023-10-04-preview.
Example Usage
Pipelines create or update - generated by [MaximumSet] rule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var pipeline = new AzureNative.IoTOperationsDataProcessor.Pipeline("pipeline", new()
    {
        Description = "vayzklhg",
        Enabled = true,
        ExtendedLocation = new AzureNative.IoTOperationsDataProcessor.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space",
            Type = "CustomLocation",
        },
        Input = new AzureNative.IoTOperationsDataProcessor.Inputs.PipelineInputArgs
        {
            Next = new[]
            {
                "umnuwjk",
            },
            Type = "xrnubjkvzajxjzb",
        },
        InstanceName = "056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8",
        Location = "westus",
        PipelineName = "j8-8--3",
        ResourceGroupName = "rgopenapi",
        Stages = 
        {
            { "stageId", new AzureNative.IoTOperationsDataProcessor.Inputs.PipelineStageArgs
            {
                Next = new[]
                {
                    "gxqgqh",
                },
                Type = "cxqgblrzqniowabexbztempdpkuib",
            } },
        },
        Tags = null,
    });
});
package main
import (
	iotoperationsdataprocessor "github.com/pulumi/pulumi-azure-native-sdk/iotoperationsdataprocessor/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iotoperationsdataprocessor.NewPipeline(ctx, "pipeline", &iotoperationsdataprocessor.PipelineArgs{
			Description: pulumi.String("vayzklhg"),
			Enabled:     pulumi.Bool(true),
			ExtendedLocation: &iotoperationsdataprocessor.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space"),
				Type: pulumi.String("CustomLocation"),
			},
			Input: &iotoperationsdataprocessor.PipelineInputTypeArgs{
				Next: pulumi.StringArray{
					pulumi.String("umnuwjk"),
				},
				Type: pulumi.String("xrnubjkvzajxjzb"),
			},
			InstanceName:      pulumi.String("056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8"),
			Location:          pulumi.String("westus"),
			PipelineName:      pulumi.String("j8-8--3"),
			ResourceGroupName: pulumi.String("rgopenapi"),
			Stages: iotoperationsdataprocessor.PipelineStageMap{
				"stageId": &iotoperationsdataprocessor.PipelineStageArgs{
					Next: pulumi.StringArray{
						pulumi.String("gxqgqh"),
					},
					Type: pulumi.String("cxqgblrzqniowabexbztempdpkuib"),
				},
			},
			Tags: pulumi.StringMap{},
		})
		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.iotoperationsdataprocessor.Pipeline;
import com.pulumi.azurenative.iotoperationsdataprocessor.PipelineArgs;
import com.pulumi.azurenative.iotoperationsdataprocessor.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.iotoperationsdataprocessor.inputs.PipelineInputArgs;
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 pipeline = new Pipeline("pipeline", PipelineArgs.builder()
            .description("vayzklhg")
            .enabled(true)
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space")
                .type("CustomLocation")
                .build())
            .input(PipelineInputArgs.builder()
                .next("umnuwjk")
                .type("xrnubjkvzajxjzb")
                .build())
            .instanceName("056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8")
            .location("westus")
            .pipelineName("j8-8--3")
            .resourceGroupName("rgopenapi")
            .stages(Map.of("stageId", Map.ofEntries(
                Map.entry("next", "gxqgqh"),
                Map.entry("type", "cxqgblrzqniowabexbztempdpkuib")
            )))
            .tags()
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const pipeline = new azure_native.iotoperationsdataprocessor.Pipeline("pipeline", {
    description: "vayzklhg",
    enabled: true,
    extendedLocation: {
        name: "/subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space",
        type: "CustomLocation",
    },
    input: {
        next: ["umnuwjk"],
        type: "xrnubjkvzajxjzb",
    },
    instanceName: "056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8",
    location: "westus",
    pipelineName: "j8-8--3",
    resourceGroupName: "rgopenapi",
    stages: {
        stageId: {
            next: ["gxqgqh"],
            type: "cxqgblrzqniowabexbztempdpkuib",
        },
    },
    tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
pipeline = azure_native.iotoperationsdataprocessor.Pipeline("pipeline",
    description="vayzklhg",
    enabled=True,
    extended_location={
        "name": "/subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space",
        "type": "CustomLocation",
    },
    input={
        "next": ["umnuwjk"],
        "type": "xrnubjkvzajxjzb",
    },
    instance_name="056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8",
    location="westus",
    pipeline_name="j8-8--3",
    resource_group_name="rgopenapi",
    stages={
        "stageId": {
            "next": ["gxqgqh"],
            "type": "cxqgblrzqniowabexbztempdpkuib",
        },
    },
    tags={})
resources:
  pipeline:
    type: azure-native:iotoperationsdataprocessor:Pipeline
    properties:
      description: vayzklhg
      enabled: true
      extendedLocation:
        name: /subscriptions/e0aaa3df-e9a4-456a-9824-3c3b5c438110/resourceGroups/IoTOperationsDataProcessor-rg/providers/Microsoft.ExtendedLocation/customLocations/dev-space
        type: CustomLocation
      input:
        next:
          - umnuwjk
        type: xrnubjkvzajxjzb
      instanceName: 056k5pl8t7761-2--ej25u2l28ttb-22mh79-75-2ch-t8
      location: westus
      pipelineName: j8-8--3
      resourceGroupName: rgopenapi
      stages:
        stageId:
          next:
            - gxqgqh
          type: cxqgblrzqniowabexbztempdpkuib
      tags: {}
Create Pipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Pipeline(name: string, args: PipelineArgs, opts?: CustomResourceOptions);@overload
def Pipeline(resource_name: str,
             args: PipelineArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def Pipeline(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             enabled: Optional[bool] = None,
             extended_location: Optional[ExtendedLocationArgs] = None,
             input: Optional[PipelineInputArgs] = None,
             instance_name: Optional[str] = None,
             resource_group_name: Optional[str] = None,
             stages: Optional[Mapping[str, PipelineStageArgs]] = None,
             description: Optional[str] = None,
             location: Optional[str] = None,
             pipeline_name: Optional[str] = None,
             tags: Optional[Mapping[str, str]] = None)func NewPipeline(ctx *Context, name string, args PipelineArgs, opts ...ResourceOption) (*Pipeline, error)public Pipeline(string name, PipelineArgs args, CustomResourceOptions? opts = null)
public Pipeline(String name, PipelineArgs args)
public Pipeline(String name, PipelineArgs args, CustomResourceOptions options)
type: azure-native:iotoperationsdataprocessor:Pipeline
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 PipelineArgs
- 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 PipelineArgs
- 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 PipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PipelineArgs
- 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 examplepipelineResourceResourceFromIotoperationsdataprocessor = new AzureNative.IoTOperationsDataProcessor.Pipeline("examplepipelineResourceResourceFromIotoperationsdataprocessor", new()
{
    Enabled = false,
    ExtendedLocation = new AzureNative.IoTOperationsDataProcessor.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    Input = new AzureNative.IoTOperationsDataProcessor.Inputs.PipelineInputArgs
    {
        Next = new[]
        {
            "string",
        },
        Type = "string",
        Description = "string",
    },
    InstanceName = "string",
    ResourceGroupName = "string",
    Stages = 
    {
        { "string", new AzureNative.IoTOperationsDataProcessor.Inputs.PipelineStageArgs
        {
            Type = "string",
            Description = "string",
            Next = new[]
            {
                "string",
            },
        } },
    },
    Description = "string",
    Location = "string",
    PipelineName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := iotoperationsdataprocessor.NewPipeline(ctx, "examplepipelineResourceResourceFromIotoperationsdataprocessor", &iotoperationsdataprocessor.PipelineArgs{
	Enabled: pulumi.Bool(false),
	ExtendedLocation: &iotoperationsdataprocessor.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	Input: &iotoperationsdataprocessor.PipelineInputTypeArgs{
		Next: pulumi.StringArray{
			pulumi.String("string"),
		},
		Type:        pulumi.String("string"),
		Description: pulumi.String("string"),
	},
	InstanceName:      pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Stages: iotoperationsdataprocessor.PipelineStageMap{
		"string": &iotoperationsdataprocessor.PipelineStageArgs{
			Type:        pulumi.String("string"),
			Description: pulumi.String("string"),
			Next: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	Description:  pulumi.String("string"),
	Location:     pulumi.String("string"),
	PipelineName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var examplepipelineResourceResourceFromIotoperationsdataprocessor = new Pipeline("examplepipelineResourceResourceFromIotoperationsdataprocessor", PipelineArgs.builder()
    .enabled(false)
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .input(PipelineInputArgs.builder()
        .next("string")
        .type("string")
        .description("string")
        .build())
    .instanceName("string")
    .resourceGroupName("string")
    .stages(Map.of("string", Map.ofEntries(
        Map.entry("type", "string"),
        Map.entry("description", "string"),
        Map.entry("next", "string")
    )))
    .description("string")
    .location("string")
    .pipelineName("string")
    .tags(Map.of("string", "string"))
    .build());
examplepipeline_resource_resource_from_iotoperationsdataprocessor = azure_native.iotoperationsdataprocessor.Pipeline("examplepipelineResourceResourceFromIotoperationsdataprocessor",
    enabled=False,
    extended_location={
        "name": "string",
        "type": "string",
    },
    input={
        "next": ["string"],
        "type": "string",
        "description": "string",
    },
    instance_name="string",
    resource_group_name="string",
    stages={
        "string": {
            "type": "string",
            "description": "string",
            "next": ["string"],
        },
    },
    description="string",
    location="string",
    pipeline_name="string",
    tags={
        "string": "string",
    })
const examplepipelineResourceResourceFromIotoperationsdataprocessor = new azure_native.iotoperationsdataprocessor.Pipeline("examplepipelineResourceResourceFromIotoperationsdataprocessor", {
    enabled: false,
    extendedLocation: {
        name: "string",
        type: "string",
    },
    input: {
        next: ["string"],
        type: "string",
        description: "string",
    },
    instanceName: "string",
    resourceGroupName: "string",
    stages: {
        string: {
            type: "string",
            description: "string",
            next: ["string"],
        },
    },
    description: "string",
    location: "string",
    pipelineName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:iotoperationsdataprocessor:Pipeline
properties:
    description: string
    enabled: false
    extendedLocation:
        name: string
        type: string
    input:
        description: string
        next:
            - string
        type: string
    instanceName: string
    location: string
    pipelineName: string
    resourceGroupName: string
    stages:
        string:
            description: string
            next:
                - string
            type: string
    tags:
        string: string
Pipeline 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 Pipeline resource accepts the following input properties:
- Enabled bool
- Flag indicating whether the pipeline should be running or not.
- ExtendedLocation Pulumi.Azure Native. Io TOperations Data Processor. Inputs. Extended Location 
- Edge location of the resource.
- Input
Pulumi.Azure Native. Io TOperations Data Processor. Inputs. Pipeline Input 
- Information about where to pull input data from.
- InstanceName string
- Name of instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Stages
Dictionary<string, Pulumi.Azure Native. Io TOperations Data Processor. Inputs. Pipeline Stage Args> 
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- Description string
- Detailed description of the Pipeline.
- Location string
- The geo-location where the resource lives
- PipelineName string
- Name of pipeline
- Dictionary<string, string>
- Resource tags.
- Enabled bool
- Flag indicating whether the pipeline should be running or not.
- ExtendedLocation ExtendedLocation Args 
- Edge location of the resource.
- Input
PipelineInput Type Args 
- Information about where to pull input data from.
- InstanceName string
- Name of instance.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Stages
map[string]PipelineStage Args 
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- Description string
- Detailed description of the Pipeline.
- Location string
- The geo-location where the resource lives
- PipelineName string
- Name of pipeline
- map[string]string
- Resource tags.
- enabled Boolean
- Flag indicating whether the pipeline should be running or not.
- extendedLocation ExtendedLocation 
- Edge location of the resource.
- input
PipelineInput 
- Information about where to pull input data from.
- instanceName String
- Name of instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- stages
Map<String,PipelineStage Args> 
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- description String
- Detailed description of the Pipeline.
- location String
- The geo-location where the resource lives
- pipelineName String
- Name of pipeline
- Map<String,String>
- Resource tags.
- enabled boolean
- Flag indicating whether the pipeline should be running or not.
- extendedLocation ExtendedLocation 
- Edge location of the resource.
- input
PipelineInput 
- Information about where to pull input data from.
- instanceName string
- Name of instance.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- stages
{[key: string]: PipelineStage Args} 
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- description string
- Detailed description of the Pipeline.
- location string
- The geo-location where the resource lives
- pipelineName string
- Name of pipeline
- {[key: string]: string}
- Resource tags.
- enabled bool
- Flag indicating whether the pipeline should be running or not.
- extended_location ExtendedLocation Args 
- Edge location of the resource.
- input
PipelineInput Args 
- Information about where to pull input data from.
- instance_name str
- Name of instance.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- stages
Mapping[str, PipelineStage Args] 
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- description str
- Detailed description of the Pipeline.
- location str
- The geo-location where the resource lives
- pipeline_name str
- Name of pipeline
- Mapping[str, str]
- Resource tags.
- enabled Boolean
- Flag indicating whether the pipeline should be running or not.
- extendedLocation Property Map
- Edge location of the resource.
- input Property Map
- Information about where to pull input data from.
- instanceName String
- Name of instance.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- stages Map<Property Map>
- Map of stage ids to stage configurations for all pipeline processing and output stages.
- description String
- Detailed description of the Pipeline.
- location String
- The geo-location where the resource lives
- pipelineName String
- Name of pipeline
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pipeline resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- The status of the last operation.
- SystemData Pulumi.Azure Native. Io TOperations Data Processor. 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
- ProvisioningState string
- The status of the last operation.
- 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
- provisioningState String
- The status of the last operation.
- 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
- provisioningState string
- The status of the last operation.
- 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
- provisioning_state str
- The status of the last operation.
- 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
- provisioningState String
- The status of the last operation.
- 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
ExtendedLocation, ExtendedLocationArgs    
ExtendedLocationResponse, ExtendedLocationResponseArgs      
PipelineInput, PipelineInputArgs    
- Next List<string>
- Next stage in the pipeline.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next []string
- Next stage in the pipeline.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- next List<String>
- Next stage in the pipeline.
- type String
- ARM resource type.
- description String
- Description for stage.
- next string[]
- Next stage in the pipeline.
- type string
- ARM resource type.
- description string
- Description for stage.
- next Sequence[str]
- Next stage in the pipeline.
- type str
- ARM resource type.
- description str
- Description for stage.
- next List<String>
- Next stage in the pipeline.
- type String
- ARM resource type.
- description String
- Description for stage.
PipelineInputResponse, PipelineInputResponseArgs      
- Next List<string>
- Next stage in the pipeline.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next []string
- Next stage in the pipeline.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- next List<String>
- Next stage in the pipeline.
- type String
- ARM resource type.
- description String
- Description for stage.
- next string[]
- Next stage in the pipeline.
- type string
- ARM resource type.
- description string
- Description for stage.
- next Sequence[str]
- Next stage in the pipeline.
- type str
- ARM resource type.
- description str
- Description for stage.
- next List<String>
- Next stage in the pipeline.
- type String
- ARM resource type.
- description String
- Description for stage.
PipelineStage, PipelineStageArgs    
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next List<string>
- Next stage in the pipeline. Not required if output stage.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next []string
- Next stage in the pipeline. Not required if output stage.
- type String
- ARM resource type.
- description String
- Description for stage.
- next List<String>
- Next stage in the pipeline. Not required if output stage.
- type string
- ARM resource type.
- description string
- Description for stage.
- next string[]
- Next stage in the pipeline. Not required if output stage.
- type str
- ARM resource type.
- description str
- Description for stage.
- next Sequence[str]
- Next stage in the pipeline. Not required if output stage.
- type String
- ARM resource type.
- description String
- Description for stage.
- next List<String>
- Next stage in the pipeline. Not required if output stage.
PipelineStageResponse, PipelineStageResponseArgs      
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next List<string>
- Next stage in the pipeline. Not required if output stage.
- Type string
- ARM resource type.
- Description string
- Description for stage.
- Next []string
- Next stage in the pipeline. Not required if output stage.
- type String
- ARM resource type.
- description String
- Description for stage.
- next List<String>
- Next stage in the pipeline. Not required if output stage.
- type string
- ARM resource type.
- description string
- Description for stage.
- next string[]
- Next stage in the pipeline. Not required if output stage.
- type str
- ARM resource type.
- description str
- Description for stage.
- next Sequence[str]
- Next stage in the pipeline. Not required if output stage.
- type String
- ARM resource type.
- description String
- Description for stage.
- next List<String>
- Next stage in the pipeline. Not required if output stage.
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:iotoperationsdataprocessor:Pipeline IoTOperationsDataProcessor-pipeline-name /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IoTOperationsDataProcessor/instances/{instanceName}/pipelines/{pipelineName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0