1. Packages
  2. Azure Native v2
  3. API Docs
  4. azuredatatransfer
  5. Pipeline
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.azuredatatransfer.Pipeline

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The pipeline resource definition. Azure REST API version: 2023-10-11-preview.

Other available API versions: 2024-01-25, 2024-05-07, 2024-09-11, 2024-09-27.

Example Usage

Creates or updates the pipeline resource

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var pipeline = new AzureNative.AzureDataTransfer.Pipeline("pipeline", new()
    {
        Location = "East US",
        PipelineName = "testPipeline",
        Properties = new AzureNative.AzureDataTransfer.Inputs.PipelinePropertiesArgs
        {
            RemoteCloud = "testdc",
        },
        ResourceGroupName = "testRG",
    });

});
Copy
package main

import (
	azuredatatransfer "github.com/pulumi/pulumi-azure-native-sdk/azuredatatransfer/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azuredatatransfer.NewPipeline(ctx, "pipeline", &azuredatatransfer.PipelineArgs{
			Location:     pulumi.String("East US"),
			PipelineName: pulumi.String("testPipeline"),
			Properties: &azuredatatransfer.PipelinePropertiesArgs{
				RemoteCloud: pulumi.String("testdc"),
			},
			ResourceGroupName: pulumi.String("testRG"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.azuredatatransfer.Pipeline;
import com.pulumi.azurenative.azuredatatransfer.PipelineArgs;
import com.pulumi.azurenative.azuredatatransfer.inputs.PipelinePropertiesArgs;
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()
            .location("East US")
            .pipelineName("testPipeline")
            .properties(PipelinePropertiesArgs.builder()
                .remoteCloud("testdc")
                .build())
            .resourceGroupName("testRG")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const pipeline = new azure_native.azuredatatransfer.Pipeline("pipeline", {
    location: "East US",
    pipelineName: "testPipeline",
    properties: {
        remoteCloud: "testdc",
    },
    resourceGroupName: "testRG",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

pipeline = azure_native.azuredatatransfer.Pipeline("pipeline",
    location="East US",
    pipeline_name="testPipeline",
    properties={
        "remote_cloud": "testdc",
    },
    resource_group_name="testRG")
Copy
resources:
  pipeline:
    type: azure-native:azuredatatransfer:Pipeline
    properties:
      location: East US
      pipelineName: testPipeline
      properties:
        remoteCloud: testdc
      resourceGroupName: testRG
Copy

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,
             resource_group_name: Optional[str] = None,
             location: Optional[str] = None,
             pipeline_name: Optional[str] = None,
             properties: Optional[PipelinePropertiesArgs] = 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:azuredatatransfer:Pipeline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PipelineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. PipelineArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PipelineArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 pipelineResource = new AzureNative.Azuredatatransfer.Pipeline("pipelineResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    PipelineName = "string",
    Properties = 
    {
        { "remoteCloud", "string" },
        { "displayName", "string" },
        { "flowTypes", new[]
        {
            "string",
        } },
        { "policies", new[]
        {
            "string",
        } },
        { "subscribers", new[]
        {
            
            {
                { "email", "string" },
                { "notifications", 0 },
            },
        } },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := azuredatatransfer.NewPipeline(ctx, "pipelineResource", &azuredatatransfer.PipelineArgs{
	ResourceGroupName: "string",
	Location:          "string",
	PipelineName:      "string",
	Properties: map[string]interface{}{
		"remoteCloud": "string",
		"displayName": "string",
		"flowTypes": []string{
			"string",
		},
		"policies": []string{
			"string",
		},
		"subscribers": []map[string]interface{}{
			map[string]interface{}{
				"email":         "string",
				"notifications": 0,
			},
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var pipelineResource = new com.pulumi.azurenative.azuredatatransfer.Pipeline("pipelineResource", com.pulumi.azurenative.azuredatatransfer.PipelineArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .pipelineName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
pipeline_resource = azure_native.azuredatatransfer.Pipeline("pipelineResource",
    resource_group_name=string,
    location=string,
    pipeline_name=string,
    properties={
        remoteCloud: string,
        displayName: string,
        flowTypes: [string],
        policies: [string],
        subscribers: [{
            email: string,
            notifications: 0,
        }],
    },
    tags={
        string: string,
    })
Copy
const pipelineResource = new azure_native.azuredatatransfer.Pipeline("pipelineResource", {
    resourceGroupName: "string",
    location: "string",
    pipelineName: "string",
    properties: {
        remoteCloud: "string",
        displayName: "string",
        flowTypes: ["string"],
        policies: ["string"],
        subscribers: [{
            email: "string",
            notifications: 0,
        }],
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:azuredatatransfer:Pipeline
properties:
    location: string
    pipelineName: string
    properties:
        displayName: string
        flowTypes:
            - string
        policies:
            - string
        remoteCloud: string
        subscribers:
            - email: string
              notifications: 0
    resourceGroupName: string
    tags:
        string: string
Copy

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:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
PipelineName Changes to this property will trigger replacement. string
The name for the pipeline that is to be requested.
Properties Pulumi.AzureNative.AzureDataTransfer.Inputs.PipelineProperties
Properties of pipeline
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
PipelineName Changes to this property will trigger replacement. string
The name for the pipeline that is to be requested.
Properties PipelinePropertiesArgs
Properties of pipeline
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
pipelineName Changes to this property will trigger replacement. String
The name for the pipeline that is to be requested.
properties PipelineProperties
Properties of pipeline
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
pipelineName Changes to this property will trigger replacement. string
The name for the pipeline that is to be requested.
properties PipelineProperties
Properties of pipeline
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
pipeline_name Changes to this property will trigger replacement. str
The name for the pipeline that is to be requested.
properties PipelinePropertiesArgs
Properties of pipeline
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
pipelineName Changes to this property will trigger replacement. String
The name for the pipeline that is to be requested.
properties Property Map
Properties of pipeline
tags 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
SystemData Pulumi.AzureNative.AzureDataTransfer.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"
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"
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"
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"
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"
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

FlowType
, FlowTypeArgs

Unknown
Unknown
Complex
Complex
DevSecOps
DevSecOps
Messaging
Messaging
Mission
Mission
MicrosoftInternal
MicrosoftInternal
BasicFiles
BasicFiles
Data
Data
FlowTypeUnknown
Unknown
FlowTypeComplex
Complex
FlowTypeDevSecOps
DevSecOps
FlowTypeMessaging
Messaging
FlowTypeMission
Mission
FlowTypeMicrosoftInternal
MicrosoftInternal
FlowTypeBasicFiles
BasicFiles
FlowTypeData
Data
Unknown
Unknown
Complex
Complex
DevSecOps
DevSecOps
Messaging
Messaging
Mission
Mission
MicrosoftInternal
MicrosoftInternal
BasicFiles
BasicFiles
Data
Data
Unknown
Unknown
Complex
Complex
DevSecOps
DevSecOps
Messaging
Messaging
Mission
Mission
MicrosoftInternal
MicrosoftInternal
BasicFiles
BasicFiles
Data
Data
UNKNOWN
Unknown
COMPLEX
Complex
DEV_SEC_OPS
DevSecOps
MESSAGING
Messaging
MISSION
Mission
MICROSOFT_INTERNAL
MicrosoftInternal
BASIC_FILES
BasicFiles
DATA
Data
"Unknown"
Unknown
"Complex"
Complex
"DevSecOps"
DevSecOps
"Messaging"
Messaging
"Mission"
Mission
"MicrosoftInternal"
MicrosoftInternal
"BasicFiles"
BasicFiles
"Data"
Data

InternalMetadataPropertiesResponse
, InternalMetadataPropertiesResponseArgs

StatusSetBy This property is required. string
User that last set the approved status for this connection
OperationStatus Pulumi.AzureNative.AzureDataTransfer.Inputs.OperationStatusPropertiesResponse
Operation status associated with the last patch request
StatusSetBy This property is required. string
User that last set the approved status for this connection
OperationStatus OperationStatusPropertiesResponse
Operation status associated with the last patch request
statusSetBy This property is required. String
User that last set the approved status for this connection
operationStatus OperationStatusPropertiesResponse
Operation status associated with the last patch request
statusSetBy This property is required. string
User that last set the approved status for this connection
operationStatus OperationStatusPropertiesResponse
Operation status associated with the last patch request
status_set_by This property is required. str
User that last set the approved status for this connection
operation_status OperationStatusPropertiesResponse
Operation status associated with the last patch request
statusSetBy This property is required. String
User that last set the approved status for this connection
operationStatus Property Map
Operation status associated with the last patch request

OperationStatusPropertiesResponse
, OperationStatusPropertiesResponseArgs

Id This property is required. string
Operation status ID of the last patch request for this connection.
Message This property is required. string
Message for the operation for the last patch request for this connection.
Status This property is required. string
Operation status for the last patch request for this connection.
Id This property is required. string
Operation status ID of the last patch request for this connection.
Message This property is required. string
Message for the operation for the last patch request for this connection.
Status This property is required. string
Operation status for the last patch request for this connection.
id This property is required. String
Operation status ID of the last patch request for this connection.
message This property is required. String
Message for the operation for the last patch request for this connection.
status This property is required. String
Operation status for the last patch request for this connection.
id This property is required. string
Operation status ID of the last patch request for this connection.
message This property is required. string
Message for the operation for the last patch request for this connection.
status This property is required. string
Operation status for the last patch request for this connection.
id This property is required. str
Operation status ID of the last patch request for this connection.
message This property is required. str
Message for the operation for the last patch request for this connection.
status This property is required. str
Operation status for the last patch request for this connection.
id This property is required. String
Operation status ID of the last patch request for this connection.
message This property is required. String
Message for the operation for the last patch request for this connection.
status This property is required. String
Operation status for the last patch request for this connection.

PipelineConnectionResponse
, PipelineConnectionResponseArgs

Etag This property is required. string
Connection etag inside pipeline
Id This property is required. string
Connection id inside pipeline
Location This property is required. string
Connection location inside pipeline
Name This property is required. string
Connection name inside pipeline
SystemData This property is required. Pulumi.AzureNative.AzureDataTransfer.Inputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type This property is required. string
Connection type inside pipeline
Properties Pulumi.AzureNative.AzureDataTransfer.Inputs.PipelineConnectionResponseProperties
Connection properties inside pipeline
Etag This property is required. string
Connection etag inside pipeline
Id This property is required. string
Connection id inside pipeline
Location This property is required. string
Connection location inside pipeline
Name This property is required. string
Connection name inside pipeline
SystemData This property is required. SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type This property is required. string
Connection type inside pipeline
Properties PipelineConnectionResponseProperties
Connection properties inside pipeline
etag This property is required. String
Connection etag inside pipeline
id This property is required. String
Connection id inside pipeline
location This property is required. String
Connection location inside pipeline
name This property is required. String
Connection name inside pipeline
systemData This property is required. SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type This property is required. String
Connection type inside pipeline
properties PipelineConnectionResponseProperties
Connection properties inside pipeline
etag This property is required. string
Connection etag inside pipeline
id This property is required. string
Connection id inside pipeline
location This property is required. string
Connection location inside pipeline
name This property is required. string
Connection name inside pipeline
systemData This property is required. SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type This property is required. string
Connection type inside pipeline
properties PipelineConnectionResponseProperties
Connection properties inside pipeline
etag This property is required. str
Connection etag inside pipeline
id This property is required. str
Connection id inside pipeline
location This property is required. str
Connection location inside pipeline
name This property is required. str
Connection name inside pipeline
system_data This property is required. SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type This property is required. str
Connection type inside pipeline
properties PipelineConnectionResponseProperties
Connection properties inside pipeline
etag This property is required. String
Connection etag inside pipeline
id This property is required. String
Connection id inside pipeline
location This property is required. String
Connection location inside pipeline
name This property is required. String
Connection name inside pipeline
systemData This property is required. Property Map
Metadata pertaining to creation and last modification of the resource.
type This property is required. String
Connection type inside pipeline
properties Property Map
Connection properties inside pipeline

PipelineConnectionResponseProperties
, PipelineConnectionResponsePropertiesArgs

InternalMetadata InternalMetadataPropertiesResponse
Internal metadata of the connection inside pipeline.
internalMetadata InternalMetadataPropertiesResponse
Internal metadata of the connection inside pipeline.
internalMetadata InternalMetadataPropertiesResponse
Internal metadata of the connection inside pipeline.
internal_metadata InternalMetadataPropertiesResponse
Internal metadata of the connection inside pipeline.
internalMetadata Property Map
Internal metadata of the connection inside pipeline.

PipelineProperties
, PipelinePropertiesArgs

RemoteCloud This property is required. string
Remote cloud of the data to be transferred or received
DisplayName string
Display name of this pipeline
FlowTypes List<Union<string, Pulumi.AzureNative.AzureDataTransfer.FlowType>>
The flow types allowed for this pipeline
Policies List<string>
The policies for this pipeline
Subscribers List<Pulumi.AzureNative.AzureDataTransfer.Inputs.Subscriber>
Subscribers of this resource
RemoteCloud This property is required. string
Remote cloud of the data to be transferred or received
DisplayName string
Display name of this pipeline
FlowTypes []string
The flow types allowed for this pipeline
Policies []string
The policies for this pipeline
Subscribers []Subscriber
Subscribers of this resource
remoteCloud This property is required. String
Remote cloud of the data to be transferred or received
displayName String
Display name of this pipeline
flowTypes List<Either<String,FlowType>>
The flow types allowed for this pipeline
policies List<String>
The policies for this pipeline
subscribers List<Subscriber>
Subscribers of this resource
remoteCloud This property is required. string
Remote cloud of the data to be transferred or received
displayName string
Display name of this pipeline
flowTypes (string | FlowType)[]
The flow types allowed for this pipeline
policies string[]
The policies for this pipeline
subscribers Subscriber[]
Subscribers of this resource
remote_cloud This property is required. str
Remote cloud of the data to be transferred or received
display_name str
Display name of this pipeline
flow_types Sequence[Union[str, FlowType]]
The flow types allowed for this pipeline
policies Sequence[str]
The policies for this pipeline
subscribers Sequence[Subscriber]
Subscribers of this resource
remoteCloud This property is required. String
Remote cloud of the data to be transferred or received
displayName String
Display name of this pipeline
flowTypes List<String | "Unknown" | "Complex" | "DevSecOps" | "Messaging" | "Mission" | "MicrosoftInternal" | "BasicFiles" | "Data">
The flow types allowed for this pipeline
policies List<String>
The policies for this pipeline
subscribers List<Property Map>
Subscribers of this resource

PipelinePropertiesResponse
, PipelinePropertiesResponseArgs

Connections This property is required. List<Pulumi.AzureNative.AzureDataTransfer.Inputs.PipelineConnectionResponse>
Connections associated with pipeline
ProvisioningState This property is required. string
Provisioning state of the pipeline
RemoteCloud This property is required. string
Remote cloud of the data to be transferred or received
DisplayName string
Display name of this pipeline
FlowTypes List<string>
The flow types allowed for this pipeline
Policies List<string>
The policies for this pipeline
Subscribers List<Pulumi.AzureNative.AzureDataTransfer.Inputs.SubscriberResponse>
Subscribers of this resource
Connections This property is required. []PipelineConnectionResponse
Connections associated with pipeline
ProvisioningState This property is required. string
Provisioning state of the pipeline
RemoteCloud This property is required. string
Remote cloud of the data to be transferred or received
DisplayName string
Display name of this pipeline
FlowTypes []string
The flow types allowed for this pipeline
Policies []string
The policies for this pipeline
Subscribers []SubscriberResponse
Subscribers of this resource
connections This property is required. List<PipelineConnectionResponse>
Connections associated with pipeline
provisioningState This property is required. String
Provisioning state of the pipeline
remoteCloud This property is required. String
Remote cloud of the data to be transferred or received
displayName String
Display name of this pipeline
flowTypes List<String>
The flow types allowed for this pipeline
policies List<String>
The policies for this pipeline
subscribers List<SubscriberResponse>
Subscribers of this resource
connections This property is required. PipelineConnectionResponse[]
Connections associated with pipeline
provisioningState This property is required. string
Provisioning state of the pipeline
remoteCloud This property is required. string
Remote cloud of the data to be transferred or received
displayName string
Display name of this pipeline
flowTypes string[]
The flow types allowed for this pipeline
policies string[]
The policies for this pipeline
subscribers SubscriberResponse[]
Subscribers of this resource
connections This property is required. Sequence[PipelineConnectionResponse]
Connections associated with pipeline
provisioning_state This property is required. str
Provisioning state of the pipeline
remote_cloud This property is required. str
Remote cloud of the data to be transferred or received
display_name str
Display name of this pipeline
flow_types Sequence[str]
The flow types allowed for this pipeline
policies Sequence[str]
The policies for this pipeline
subscribers Sequence[SubscriberResponse]
Subscribers of this resource
connections This property is required. List<Property Map>
Connections associated with pipeline
provisioningState This property is required. String
Provisioning state of the pipeline
remoteCloud This property is required. String
Remote cloud of the data to be transferred or received
displayName String
Display name of this pipeline
flowTypes List<String>
The flow types allowed for this pipeline
policies List<String>
The policies for this pipeline
subscribers List<Property Map>
Subscribers of this resource

Subscriber
, SubscriberArgs

Email string
Email of the subscriber
Notifications double
Number specifying what notifications to receive
Email string
Email of the subscriber
Notifications float64
Number specifying what notifications to receive
email String
Email of the subscriber
notifications Double
Number specifying what notifications to receive
email string
Email of the subscriber
notifications number
Number specifying what notifications to receive
email str
Email of the subscriber
notifications float
Number specifying what notifications to receive
email String
Email of the subscriber
notifications Number
Number specifying what notifications to receive

SubscriberResponse
, SubscriberResponseArgs

Email string
Email of the subscriber
Notifications double
Number specifying what notifications to receive
Email string
Email of the subscriber
Notifications float64
Number specifying what notifications to receive
email String
Email of the subscriber
notifications Double
Number specifying what notifications to receive
email string
Email of the subscriber
notifications number
Number specifying what notifications to receive
email str
Email of the subscriber
notifications float
Number specifying what notifications to receive
email String
Email of the subscriber
notifications Number
Number specifying what notifications to receive

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:azuredatatransfer:Pipeline myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureDataTransfer/pipelines/{pipelineName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi