1. Packages
  2. Azure Native
  3. API Docs
  4. azuredatatransfer
  5. Connection
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.44.0 published on Tuesday, Jun 4, 2024 by Pulumi

azure-native.azuredatatransfer.Connection

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.44.0 published on Tuesday, Jun 4, 2024 by Pulumi

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

    Other available API versions: 2024-01-25.

    Example Usage

    Creates or updates the connection resource

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var connection = new AzureNative.AzureDataTransfer.Connection("connection", new()
        {
            ConnectionName = "testConnection",
            Location = "East US",
            Properties = new AzureNative.AzureDataTransfer.Inputs.ConnectionPropertiesArgs
            {
                Justification = "justification",
                Pipeline = "testdc",
                RequirementId = "id",
            },
            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.NewConnection(ctx, "connection", &azuredatatransfer.ConnectionArgs{
    			ConnectionName: pulumi.String("testConnection"),
    			Location:       pulumi.String("East US"),
    			Properties: &azuredatatransfer.ConnectionPropertiesArgs{
    				Justification: pulumi.String("justification"),
    				Pipeline:      pulumi.String("testdc"),
    				RequirementId: pulumi.String("id"),
    			},
    			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.Connection;
    import com.pulumi.azurenative.azuredatatransfer.ConnectionArgs;
    import com.pulumi.azurenative.azuredatatransfer.inputs.ConnectionPropertiesArgs;
    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 connection = new Connection("connection", ConnectionArgs.builder()
                .connectionName("testConnection")
                .location("East US")
                .properties(ConnectionPropertiesArgs.builder()
                    .justification("justification")
                    .pipeline("testdc")
                    .requirementId("id")
                    .build())
                .resourceGroupName("testRG")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    connection = azure_native.azuredatatransfer.Connection("connection",
        connection_name="testConnection",
        location="East US",
        properties=azure_native.azuredatatransfer.ConnectionPropertiesArgs(
            justification="justification",
            pipeline="testdc",
            requirement_id="id",
        ),
        resource_group_name="testRG")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const connection = new azure_native.azuredatatransfer.Connection("connection", {
        connectionName: "testConnection",
        location: "East US",
        properties: {
            justification: "justification",
            pipeline: "testdc",
            requirementId: "id",
        },
        resourceGroupName: "testRG",
    });
    
    resources:
      connection:
        type: azure-native:azuredatatransfer:Connection
        properties:
          connectionName: testConnection
          location: East US
          properties:
            justification: justification
            pipeline: testdc
            requirementId: id
          resourceGroupName: testRG
    

    Create Connection Resource

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

    Constructor syntax

    new Connection(name: string, args: ConnectionArgs, opts?: CustomResourceOptions);
    @overload
    def Connection(resource_name: str,
                   args: ConnectionArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Connection(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   connection_name: Optional[str] = None,
                   location: Optional[str] = None,
                   properties: Optional[ConnectionPropertiesArgs] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewConnection(ctx *Context, name string, args ConnectionArgs, opts ...ResourceOption) (*Connection, error)
    public Connection(string name, ConnectionArgs args, CustomResourceOptions? opts = null)
    public Connection(String name, ConnectionArgs args)
    public Connection(String name, ConnectionArgs args, CustomResourceOptions options)
    
    type: azure-native:azuredatatransfer:Connection
    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 ConnectionArgs
    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 ConnectionArgs
    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 ConnectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectionArgs
    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 azure_nativeConnectionResource = new AzureNative.AzureDataTransfer.Connection("azure-nativeConnectionResource", new()
    {
        ResourceGroupName = "string",
        ConnectionName = "string",
        Location = "string",
        Properties = new AzureNative.AzureDataTransfer.Inputs.ConnectionPropertiesArgs
        {
            Pipeline = "string",
            Direction = "string",
            FlowTypes = new[]
            {
                "string",
            },
            Justification = "string",
            Pin = "string",
            Policies = new[]
            {
                "string",
            },
            PrimaryContact = "string",
            RemoteSubscriptionId = "string",
            RequirementId = "string",
            Schemas = new[]
            {
                new AzureNative.AzureDataTransfer.Inputs.SchemaArgs
                {
                    ConnectionId = "string",
                    Content = "string",
                    Id = "string",
                    Name = "string",
                    Status = "string",
                },
            },
            SecondaryContacts = new[]
            {
                "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azuredatatransfer.NewConnection(ctx, "azure-nativeConnectionResource", &azuredatatransfer.ConnectionArgs{
    ResourceGroupName: pulumi.String("string"),
    ConnectionName: pulumi.String("string"),
    Location: pulumi.String("string"),
    Properties: &azuredatatransfer.ConnectionPropertiesArgs{
    Pipeline: pulumi.String("string"),
    Direction: pulumi.String("string"),
    FlowTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Justification: pulumi.String("string"),
    Pin: pulumi.String("string"),
    Policies: pulumi.StringArray{
    pulumi.String("string"),
    },
    PrimaryContact: pulumi.String("string"),
    RemoteSubscriptionId: pulumi.String("string"),
    RequirementId: pulumi.String("string"),
    Schemas: azuredatatransfer.SchemaArray{
    &azuredatatransfer.SchemaArgs{
    ConnectionId: pulumi.String("string"),
    Content: pulumi.String("string"),
    Id: pulumi.String("string"),
    Name: pulumi.String("string"),
    Status: pulumi.String("string"),
    },
    },
    SecondaryContacts: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var azure_nativeConnectionResource = new Connection("azure-nativeConnectionResource", ConnectionArgs.builder()
        .resourceGroupName("string")
        .connectionName("string")
        .location("string")
        .properties(ConnectionPropertiesArgs.builder()
            .pipeline("string")
            .direction("string")
            .flowTypes("string")
            .justification("string")
            .pin("string")
            .policies("string")
            .primaryContact("string")
            .remoteSubscriptionId("string")
            .requirementId("string")
            .schemas(SchemaArgs.builder()
                .connectionId("string")
                .content("string")
                .id("string")
                .name("string")
                .status("string")
                .build())
            .secondaryContacts("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    azure_native_connection_resource = azure_native.azuredatatransfer.Connection("azure-nativeConnectionResource",
        resource_group_name="string",
        connection_name="string",
        location="string",
        properties=azure_native.azuredatatransfer.ConnectionPropertiesArgs(
            pipeline="string",
            direction="string",
            flow_types=["string"],
            justification="string",
            pin="string",
            policies=["string"],
            primary_contact="string",
            remote_subscription_id="string",
            requirement_id="string",
            schemas=[azure_native.azuredatatransfer.SchemaArgs(
                connection_id="string",
                content="string",
                id="string",
                name="string",
                status="string",
            )],
            secondary_contacts=["string"],
        ),
        tags={
            "string": "string",
        })
    
    const azure_nativeConnectionResource = new azure_native.azuredatatransfer.Connection("azure-nativeConnectionResource", {
        resourceGroupName: "string",
        connectionName: "string",
        location: "string",
        properties: {
            pipeline: "string",
            direction: "string",
            flowTypes: ["string"],
            justification: "string",
            pin: "string",
            policies: ["string"],
            primaryContact: "string",
            remoteSubscriptionId: "string",
            requirementId: "string",
            schemas: [{
                connectionId: "string",
                content: "string",
                id: "string",
                name: "string",
                status: "string",
            }],
            secondaryContacts: ["string"],
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azuredatatransfer:Connection
    properties:
        connectionName: string
        location: string
        properties:
            direction: string
            flowTypes:
                - string
            justification: string
            pin: string
            pipeline: string
            policies:
                - string
            primaryContact: string
            remoteSubscriptionId: string
            requirementId: string
            schemas:
                - connectionId: string
                  content: string
                  id: string
                  name: string
                  status: string
            secondaryContacts:
                - string
        resourceGroupName: string
        tags:
            string: string
    

    Connection 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 Connection resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConnectionName string
    The name for the connection that is to be requested.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.AzureDataTransfer.Inputs.ConnectionProperties
    Properties of connection
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConnectionName string
    The name for the connection that is to be requested.
    Location string
    The geo-location where the resource lives
    Properties ConnectionPropertiesArgs
    Properties of connection
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    connectionName String
    The name for the connection that is to be requested.
    location String
    The geo-location where the resource lives
    properties ConnectionProperties
    Properties of connection
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    connectionName string
    The name for the connection that is to be requested.
    location string
    The geo-location where the resource lives
    properties ConnectionProperties
    Properties of connection
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    connection_name str
    The name for the connection that is to be requested.
    location str
    The geo-location where the resource lives
    properties ConnectionPropertiesArgs
    Properties of connection
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    connectionName String
    The name for the connection that is to be requested.
    location String
    The geo-location where the resource lives
    properties Property Map
    Properties of connection
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Connection 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

    ConnectionProperties, ConnectionPropertiesArgs

    Pipeline string
    Pipeline to use to transfer data
    Direction string | Pulumi.AzureNative.AzureDataTransfer.Direction
    Direction of data movement
    FlowTypes List<Union<string, Pulumi.AzureNative.AzureDataTransfer.FlowType>>
    The flow types being requested for this connection
    Justification string
    Justification for the connection request
    Pin string
    PIN to link requests together
    Policies List<string>
    The policies for this connection
    PrimaryContact string
    The primary contact for this connection request
    RemoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    RequirementId string
    Requirement ID of the connection
    Schemas List<Pulumi.AzureNative.AzureDataTransfer.Inputs.Schema>
    The schemas for this connection
    SecondaryContacts List<string>
    The secondary contacts for this connection request
    Pipeline string
    Pipeline to use to transfer data
    Direction string | Direction
    Direction of data movement
    FlowTypes []string
    The flow types being requested for this connection
    Justification string
    Justification for the connection request
    Pin string
    PIN to link requests together
    Policies []string
    The policies for this connection
    PrimaryContact string
    The primary contact for this connection request
    RemoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    RequirementId string
    Requirement ID of the connection
    Schemas []Schema
    The schemas for this connection
    SecondaryContacts []string
    The secondary contacts for this connection request
    pipeline String
    Pipeline to use to transfer data
    direction String | Direction
    Direction of data movement
    flowTypes List<Either<String,FlowType>>
    The flow types being requested for this connection
    justification String
    Justification for the connection request
    pin String
    PIN to link requests together
    policies List<String>
    The policies for this connection
    primaryContact String
    The primary contact for this connection request
    remoteSubscriptionId String
    Subscription ID to link cloud subscriptions together
    requirementId String
    Requirement ID of the connection
    schemas List<Schema>
    The schemas for this connection
    secondaryContacts List<String>
    The secondary contacts for this connection request
    pipeline string
    Pipeline to use to transfer data
    direction string | Direction
    Direction of data movement
    flowTypes (string | FlowType)[]
    The flow types being requested for this connection
    justification string
    Justification for the connection request
    pin string
    PIN to link requests together
    policies string[]
    The policies for this connection
    primaryContact string
    The primary contact for this connection request
    remoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    requirementId string
    Requirement ID of the connection
    schemas Schema[]
    The schemas for this connection
    secondaryContacts string[]
    The secondary contacts for this connection request
    pipeline str
    Pipeline to use to transfer data
    direction str | Direction
    Direction of data movement
    flow_types Sequence[Union[str, FlowType]]
    The flow types being requested for this connection
    justification str
    Justification for the connection request
    pin str
    PIN to link requests together
    policies Sequence[str]
    The policies for this connection
    primary_contact str
    The primary contact for this connection request
    remote_subscription_id str
    Subscription ID to link cloud subscriptions together
    requirement_id str
    Requirement ID of the connection
    schemas Sequence[Schema]
    The schemas for this connection
    secondary_contacts Sequence[str]
    The secondary contacts for this connection request
    pipeline String
    Pipeline to use to transfer data
    direction String | "Send" | "Receive"
    Direction of data movement
    flowTypes List<String | "Unknown" | "Complex" | "DevSecOps" | "Messaging" | "Mission" | "MicrosoftInternal" | "BasicFiles" | "Data">
    The flow types being requested for this connection
    justification String
    Justification for the connection request
    pin String
    PIN to link requests together
    policies List<String>
    The policies for this connection
    primaryContact String
    The primary contact for this connection request
    remoteSubscriptionId String
    Subscription ID to link cloud subscriptions together
    requirementId String
    Requirement ID of the connection
    schemas List<Property Map>
    The schemas for this connection
    secondaryContacts List<String>
    The secondary contacts for this connection request

    ConnectionPropertiesResponse, ConnectionPropertiesResponseArgs

    Approver string
    Approver of this connection request
    DateSubmitted string
    The timestamp that this connection request was submitted at
    LinkStatus string
    Link status of the current connection
    LinkedConnectionId string
    Resource ID of the linked connection
    Pipeline string
    Pipeline to use to transfer data
    ProvisioningState string
    Provisioning state of the connection
    Status string
    Status of the connection
    StatusReason string
    Reason for status
    Direction string
    Direction of data movement
    FlowTypes List<string>
    The flow types being requested for this connection
    Justification string
    Justification for the connection request
    Pin string
    PIN to link requests together
    Policies List<string>
    The policies for this connection
    PrimaryContact string
    The primary contact for this connection request
    RemoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    RequirementId string
    Requirement ID of the connection
    Schemas List<Pulumi.AzureNative.AzureDataTransfer.Inputs.SchemaResponse>
    The schemas for this connection
    SecondaryContacts List<string>
    The secondary contacts for this connection request
    Approver string
    Approver of this connection request
    DateSubmitted string
    The timestamp that this connection request was submitted at
    LinkStatus string
    Link status of the current connection
    LinkedConnectionId string
    Resource ID of the linked connection
    Pipeline string
    Pipeline to use to transfer data
    ProvisioningState string
    Provisioning state of the connection
    Status string
    Status of the connection
    StatusReason string
    Reason for status
    Direction string
    Direction of data movement
    FlowTypes []string
    The flow types being requested for this connection
    Justification string
    Justification for the connection request
    Pin string
    PIN to link requests together
    Policies []string
    The policies for this connection
    PrimaryContact string
    The primary contact for this connection request
    RemoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    RequirementId string
    Requirement ID of the connection
    Schemas []SchemaResponse
    The schemas for this connection
    SecondaryContacts []string
    The secondary contacts for this connection request
    approver String
    Approver of this connection request
    dateSubmitted String
    The timestamp that this connection request was submitted at
    linkStatus String
    Link status of the current connection
    linkedConnectionId String
    Resource ID of the linked connection
    pipeline String
    Pipeline to use to transfer data
    provisioningState String
    Provisioning state of the connection
    status String
    Status of the connection
    statusReason String
    Reason for status
    direction String
    Direction of data movement
    flowTypes List<String>
    The flow types being requested for this connection
    justification String
    Justification for the connection request
    pin String
    PIN to link requests together
    policies List<String>
    The policies for this connection
    primaryContact String
    The primary contact for this connection request
    remoteSubscriptionId String
    Subscription ID to link cloud subscriptions together
    requirementId String
    Requirement ID of the connection
    schemas List<SchemaResponse>
    The schemas for this connection
    secondaryContacts List<String>
    The secondary contacts for this connection request
    approver string
    Approver of this connection request
    dateSubmitted string
    The timestamp that this connection request was submitted at
    linkStatus string
    Link status of the current connection
    linkedConnectionId string
    Resource ID of the linked connection
    pipeline string
    Pipeline to use to transfer data
    provisioningState string
    Provisioning state of the connection
    status string
    Status of the connection
    statusReason string
    Reason for status
    direction string
    Direction of data movement
    flowTypes string[]
    The flow types being requested for this connection
    justification string
    Justification for the connection request
    pin string
    PIN to link requests together
    policies string[]
    The policies for this connection
    primaryContact string
    The primary contact for this connection request
    remoteSubscriptionId string
    Subscription ID to link cloud subscriptions together
    requirementId string
    Requirement ID of the connection
    schemas SchemaResponse[]
    The schemas for this connection
    secondaryContacts string[]
    The secondary contacts for this connection request
    approver str
    Approver of this connection request
    date_submitted str
    The timestamp that this connection request was submitted at
    link_status str
    Link status of the current connection
    linked_connection_id str
    Resource ID of the linked connection
    pipeline str
    Pipeline to use to transfer data
    provisioning_state str
    Provisioning state of the connection
    status str
    Status of the connection
    status_reason str
    Reason for status
    direction str
    Direction of data movement
    flow_types Sequence[str]
    The flow types being requested for this connection
    justification str
    Justification for the connection request
    pin str
    PIN to link requests together
    policies Sequence[str]
    The policies for this connection
    primary_contact str
    The primary contact for this connection request
    remote_subscription_id str
    Subscription ID to link cloud subscriptions together
    requirement_id str
    Requirement ID of the connection
    schemas Sequence[SchemaResponse]
    The schemas for this connection
    secondary_contacts Sequence[str]
    The secondary contacts for this connection request
    approver String
    Approver of this connection request
    dateSubmitted String
    The timestamp that this connection request was submitted at
    linkStatus String
    Link status of the current connection
    linkedConnectionId String
    Resource ID of the linked connection
    pipeline String
    Pipeline to use to transfer data
    provisioningState String
    Provisioning state of the connection
    status String
    Status of the connection
    statusReason String
    Reason for status
    direction String
    Direction of data movement
    flowTypes List<String>
    The flow types being requested for this connection
    justification String
    Justification for the connection request
    pin String
    PIN to link requests together
    policies List<String>
    The policies for this connection
    primaryContact String
    The primary contact for this connection request
    remoteSubscriptionId String
    Subscription ID to link cloud subscriptions together
    requirementId String
    Requirement ID of the connection
    schemas List<Property Map>
    The schemas for this connection
    secondaryContacts List<String>
    The secondary contacts for this connection request

    Direction, DirectionArgs

    Send
    Send
    Receive
    Receive
    DirectionSend
    Send
    DirectionReceive
    Receive
    Send
    Send
    Receive
    Receive
    Send
    Send
    Receive
    Receive
    SEND
    Send
    RECEIVE
    Receive
    "Send"
    Send
    "Receive"
    Receive

    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

    Schema, SchemaArgs

    ConnectionId string
    Connection ID associated with this schema
    Content string
    Content of the schema
    Id string
    ID associated with this schema
    Name string
    Name of the schema
    Status string | Pulumi.AzureNative.AzureDataTransfer.SchemaStatus
    Status of the schema
    ConnectionId string
    Connection ID associated with this schema
    Content string
    Content of the schema
    Id string
    ID associated with this schema
    Name string
    Name of the schema
    Status string | SchemaStatus
    Status of the schema
    connectionId String
    Connection ID associated with this schema
    content String
    Content of the schema
    id String
    ID associated with this schema
    name String
    Name of the schema
    status String | SchemaStatus
    Status of the schema
    connectionId string
    Connection ID associated with this schema
    content string
    Content of the schema
    id string
    ID associated with this schema
    name string
    Name of the schema
    status string | SchemaStatus
    Status of the schema
    connection_id str
    Connection ID associated with this schema
    content str
    Content of the schema
    id str
    ID associated with this schema
    name str
    Name of the schema
    status str | SchemaStatus
    Status of the schema
    connectionId String
    Connection ID associated with this schema
    content String
    Content of the schema
    id String
    ID associated with this schema
    name String
    Name of the schema
    status String | "New" | "Approved"
    Status of the schema

    SchemaResponse, SchemaResponseArgs

    ConnectionId string
    Connection ID associated with this schema
    Content string
    Content of the schema
    Id string
    ID associated with this schema
    Name string
    Name of the schema
    Status string
    Status of the schema
    ConnectionId string
    Connection ID associated with this schema
    Content string
    Content of the schema
    Id string
    ID associated with this schema
    Name string
    Name of the schema
    Status string
    Status of the schema
    connectionId String
    Connection ID associated with this schema
    content String
    Content of the schema
    id String
    ID associated with this schema
    name String
    Name of the schema
    status String
    Status of the schema
    connectionId string
    Connection ID associated with this schema
    content string
    Content of the schema
    id string
    ID associated with this schema
    name string
    Name of the schema
    status string
    Status of the schema
    connection_id str
    Connection ID associated with this schema
    content str
    Content of the schema
    id str
    ID associated with this schema
    name str
    Name of the schema
    status str
    Status of the schema
    connectionId String
    Connection ID associated with this schema
    content String
    Content of the schema
    id String
    ID associated with this schema
    name String
    Name of the schema
    status String
    Status of the schema

    SchemaStatus, SchemaStatusArgs

    New
    New
    Approved
    Approved
    SchemaStatusNew
    New
    SchemaStatusApproved
    Approved
    New
    New
    Approved
    Approved
    New
    New
    Approved
    Approved
    NEW
    New
    APPROVED
    Approved
    "New"
    New
    "Approved"
    Approved

    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:Connection myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureDataTransfer/connections/{connectionName} 
    

    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.44.0 published on Tuesday, Jun 4, 2024 by Pulumi