1. Packages
  2. Azure Native
  3. API Docs
  4. azuredatatransfer
  5. Pipeline
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.azuredatatransfer.Pipeline

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

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

    Other available API versions: 2024-01-25.

    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",
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    pipeline = azure_native.azuredatatransfer.Pipeline("pipeline",
        location="East US",
        pipeline_name="testPipeline",
        properties=azure_native.azuredatatransfer.PipelinePropertiesArgs(
            remote_cloud="testdc",
        ),
        resource_group_name="testRG")
    
    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",
    });
    
    resources:
      pipeline:
        type: azure-native:azuredatatransfer:Pipeline
        properties:
          location: East US
          pipelineName: testPipeline
          properties:
            remoteCloud: testdc
          resourceGroupName: testRG
    

    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 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.

    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 = new AzureNative.AzureDataTransfer.Inputs.PipelinePropertiesArgs
        {
            RemoteCloud = "string",
            DisplayName = "string",
            FlowTypes = new[]
            {
                "string",
            },
            Policies = new[]
            {
                "string",
            },
            Subscribers = new[]
            {
                new AzureNative.AzureDataTransfer.Inputs.SubscriberArgs
                {
                    Email = "string",
                    Notifications = 0,
                },
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azuredatatransfer.NewPipeline(ctx, "pipelineResource", &azuredatatransfer.PipelineArgs{
    ResourceGroupName: pulumi.String("string"),
    Location: pulumi.String("string"),
    PipelineName: pulumi.String("string"),
    Properties: &azuredatatransfer.PipelinePropertiesArgs{
    RemoteCloud: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    FlowTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Policies: pulumi.StringArray{
    pulumi.String("string"),
    },
    Subscribers: azuredatatransfer.SubscriberArray{
    &azuredatatransfer.SubscriberArgs{
    Email: pulumi.String("string"),
    Notifications: pulumi.Float64(0),
    },
    },
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var pipelineResource = new Pipeline("pipelineResource", PipelineArgs.builder()        
        .resourceGroupName("string")
        .location("string")
        .pipelineName("string")
        .properties(PipelinePropertiesArgs.builder()
            .remoteCloud("string")
            .displayName("string")
            .flowTypes("string")
            .policies("string")
            .subscribers(SubscriberArgs.builder()
                .email("string")
                .notifications(0)
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    pipeline_resource = azure_native.azuredatatransfer.Pipeline("pipelineResource",
        resource_group_name="string",
        location="string",
        pipeline_name="string",
        properties=azure_native.azuredatatransfer.PipelinePropertiesArgs(
            remote_cloud="string",
            display_name="string",
            flow_types=["string"],
            policies=["string"],
            subscribers=[azure_native.azuredatatransfer.SubscriberArgs(
                email="string",
                notifications=0,
            )],
        ),
        tags={
            "string": "string",
        })
    
    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",
        },
    });
    
    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
    

    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

    The Pipeline resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    PipelineName 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 string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    PipelineName string
    The name for the pipeline that is to be requested.
    Properties PipelinePropertiesArgs
    Properties of pipeline
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    pipelineName String
    The name for the pipeline that is to be requested.
    properties PipelineProperties
    Properties of pipeline
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    pipelineName 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 str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    pipeline_name str
    The name for the pipeline that is to be requested.
    properties PipelinePropertiesArgs
    Properties of pipeline
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    pipelineName 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 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 string
    User that last set the approved status for this connection
    OperationStatus OperationStatusPropertiesResponse
    Operation status associated with the last patch request
    statusSetBy String
    User that last set the approved status for this connection
    operationStatus OperationStatusPropertiesResponse
    Operation status associated with the last patch request
    statusSetBy string
    User that last set the approved status for this connection
    operationStatus OperationStatusPropertiesResponse
    Operation status associated with the last patch request
    status_set_by str
    User that last set the approved status for this connection
    operation_status OperationStatusPropertiesResponse
    Operation status associated with the last patch request
    statusSetBy 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 string
    Operation status ID of the last patch request for this connection.
    Message string
    Message for the operation for the last patch request for this connection.
    Status string
    Operation status for the last patch request for this connection.
    Id string
    Operation status ID of the last patch request for this connection.
    Message string
    Message for the operation for the last patch request for this connection.
    Status string
    Operation status for the last patch request for this connection.
    id String
    Operation status ID of the last patch request for this connection.
    message String
    Message for the operation for the last patch request for this connection.
    status String
    Operation status for the last patch request for this connection.
    id string
    Operation status ID of the last patch request for this connection.
    message string
    Message for the operation for the last patch request for this connection.
    status string
    Operation status for the last patch request for this connection.
    id str
    Operation status ID of the last patch request for this connection.
    message str
    Message for the operation for the last patch request for this connection.
    status str
    Operation status for the last patch request for this connection.
    id String
    Operation status ID of the last patch request for this connection.
    message String
    Message for the operation for the last patch request for this connection.
    status String
    Operation status for the last patch request for this connection.

    PipelineConnectionResponse, PipelineConnectionResponseArgs

    Etag string
    Connection etag inside pipeline
    Id string
    Connection id inside pipeline
    Location string
    Connection location inside pipeline
    Name string
    Connection name inside pipeline
    SystemData Pulumi.AzureNative.AzureDataTransfer.Inputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    Connection type inside pipeline
    Properties Pulumi.AzureNative.AzureDataTransfer.Inputs.PipelineConnectionResponseProperties
    Connection properties inside pipeline
    Etag string
    Connection etag inside pipeline
    Id string
    Connection id inside pipeline
    Location string
    Connection location inside pipeline
    Name string
    Connection name inside pipeline
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    Connection type inside pipeline
    Properties PipelineConnectionResponseProperties
    Connection properties inside pipeline
    etag String
    Connection etag inside pipeline
    id String
    Connection id inside pipeline
    location String
    Connection location inside pipeline
    name String
    Connection name inside pipeline
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    Connection type inside pipeline
    properties PipelineConnectionResponseProperties
    Connection properties inside pipeline
    etag string
    Connection etag inside pipeline
    id string
    Connection id inside pipeline
    location string
    Connection location inside pipeline
    name string
    Connection name inside pipeline
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    Connection type inside pipeline
    properties PipelineConnectionResponseProperties
    Connection properties inside pipeline
    etag str
    Connection etag inside pipeline
    id str
    Connection id inside pipeline
    location str
    Connection location inside pipeline
    name str
    Connection name inside pipeline
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    Connection type inside pipeline
    properties PipelineConnectionResponseProperties
    Connection properties inside pipeline
    etag String
    Connection etag inside pipeline
    id String
    Connection id inside pipeline
    location String
    Connection location inside pipeline
    name String
    Connection name inside pipeline
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type 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 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 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 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 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 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 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 List<Pulumi.AzureNative.AzureDataTransfer.Inputs.PipelineConnectionResponse>
    Connections associated with pipeline
    ProvisioningState string
    Provisioning state of the pipeline
    RemoteCloud 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 []PipelineConnectionResponse
    Connections associated with pipeline
    ProvisioningState string
    Provisioning state of the pipeline
    RemoteCloud 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 List<PipelineConnectionResponse>
    Connections associated with pipeline
    provisioningState String
    Provisioning state of the pipeline
    remoteCloud 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 PipelineConnectionResponse[]
    Connections associated with pipeline
    provisioningState string
    Provisioning state of the pipeline
    remoteCloud 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 Sequence[PipelineConnectionResponse]
    Connections associated with pipeline
    provisioning_state str
    Provisioning state of the pipeline
    remote_cloud 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 List<Property Map>
    Connections associated with pipeline
    provisioningState String
    Provisioning state of the pipeline
    remoteCloud 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi