azure-native.azuredatatransfer.Connection
Explore with Pulumi AI
The connection 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 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 (
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.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={
"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.
Constructor 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={
"pipeline": "string",
"direction": "string",
"flow_types": ["string"],
"justification": "string",
"pin": "string",
"policies": ["string"],
"primary_contact": "string",
"remote_subscription_id": "string",
"requirement_id": "string",
"schemas": [{
"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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Connection resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connection
Name string - The name for the connection that is to be requested.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Data Transfer. Inputs. Connection Properties - Properties of connection
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connection
Name string - The name for the connection that is to be requested.
- Location string
- The geo-location where the resource lives
- Properties
Connection
Properties Args - Properties of connection
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connection
Name String - The name for the connection that is to be requested.
- location String
- The geo-location where the resource lives
- properties
Connection
Properties - Properties of connection
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- connection
Name string - The name for the connection that is to be requested.
- location string
- The geo-location where the resource lives
- properties
Connection
Properties - Properties of connection
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - 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
Connection
Properties Args - Properties of connection
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connection
Name 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
- 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
- System
Data Pulumi.Azure Native. Azure Data Transfer. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data 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.
Azure Native. Azure Data Transfer. Direction - Direction of data movement
- Flow
Types List<Union<string, Pulumi.Azure Native. Azure Data Transfer. Flow Type>> - 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
- Primary
Contact string - The primary contact for this connection request
- Remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- Requirement
Id string - Requirement ID of the connection
- Schemas
List<Pulumi.
Azure Native. Azure Data Transfer. Inputs. Schema> - The schemas for this connection
- Secondary
Contacts List<string> - The secondary contacts for this connection request
- Pipeline string
- Pipeline to use to transfer data
- Direction string | Direction
- Direction of data movement
- Flow
Types []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
- Primary
Contact string - The primary contact for this connection request
- Remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- Requirement
Id string - Requirement ID of the connection
- Schemas []Schema
- The schemas for this connection
- Secondary
Contacts []string - The secondary contacts for this connection request
- pipeline String
- Pipeline to use to transfer data
- direction String | Direction
- Direction of data movement
- flow
Types 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
- primary
Contact String - The primary contact for this connection request
- remote
Subscription StringId - Subscription ID to link cloud subscriptions together
- requirement
Id String - Requirement ID of the connection
- schemas List<Schema>
- The schemas for this connection
- secondary
Contacts List<String> - The secondary contacts for this connection request
- pipeline string
- Pipeline to use to transfer data
- direction string | Direction
- Direction of data movement
- flow
Types (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
- primary
Contact string - The primary contact for this connection request
- remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- requirement
Id string - Requirement ID of the connection
- schemas Schema[]
- The schemas for this connection
- secondary
Contacts 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_ strid - 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
- flow
Types List<String | "Unknown" | "Complex" | "DevSec Ops" | "Messaging" | "Mission" | "Microsoft Internal" | "Basic Files" | "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
- primary
Contact String - The primary contact for this connection request
- remote
Subscription StringId - Subscription ID to link cloud subscriptions together
- requirement
Id String - Requirement ID of the connection
- schemas List<Property Map>
- The schemas for this connection
- secondary
Contacts List<String> - The secondary contacts for this connection request
ConnectionPropertiesResponse, ConnectionPropertiesResponseArgs
- Approver string
- Approver of this connection request
- Date
Submitted string - The timestamp that this connection request was submitted at
- Link
Status string - Link status of the current connection
- Linked
Connection stringId - Resource ID of the linked connection
- Pipeline string
- Pipeline to use to transfer data
- Provisioning
State string - Provisioning state of the connection
- Status string
- Status of the connection
- Status
Reason string - Reason for status
- Direction string
- Direction of data movement
- Flow
Types 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
- Primary
Contact string - The primary contact for this connection request
- Remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- Requirement
Id string - Requirement ID of the connection
- Schemas
List<Pulumi.
Azure Native. Azure Data Transfer. Inputs. Schema Response> - The schemas for this connection
- Secondary
Contacts List<string> - The secondary contacts for this connection request
- Approver string
- Approver of this connection request
- Date
Submitted string - The timestamp that this connection request was submitted at
- Link
Status string - Link status of the current connection
- Linked
Connection stringId - Resource ID of the linked connection
- Pipeline string
- Pipeline to use to transfer data
- Provisioning
State string - Provisioning state of the connection
- Status string
- Status of the connection
- Status
Reason string - Reason for status
- Direction string
- Direction of data movement
- Flow
Types []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
- Primary
Contact string - The primary contact for this connection request
- Remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- Requirement
Id string - Requirement ID of the connection
- Schemas
[]Schema
Response - The schemas for this connection
- Secondary
Contacts []string - The secondary contacts for this connection request
- approver String
- Approver of this connection request
- date
Submitted String - The timestamp that this connection request was submitted at
- link
Status String - Link status of the current connection
- linked
Connection StringId - Resource ID of the linked connection
- pipeline String
- Pipeline to use to transfer data
- provisioning
State String - Provisioning state of the connection
- status String
- Status of the connection
- status
Reason String - Reason for status
- direction String
- Direction of data movement
- flow
Types 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
- primary
Contact String - The primary contact for this connection request
- remote
Subscription StringId - Subscription ID to link cloud subscriptions together
- requirement
Id String - Requirement ID of the connection
- schemas
List<Schema
Response> - The schemas for this connection
- secondary
Contacts List<String> - The secondary contacts for this connection request
- approver string
- Approver of this connection request
- date
Submitted string - The timestamp that this connection request was submitted at
- link
Status string - Link status of the current connection
- linked
Connection stringId - Resource ID of the linked connection
- pipeline string
- Pipeline to use to transfer data
- provisioning
State string - Provisioning state of the connection
- status string
- Status of the connection
- status
Reason string - Reason for status
- direction string
- Direction of data movement
- flow
Types 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
- primary
Contact string - The primary contact for this connection request
- remote
Subscription stringId - Subscription ID to link cloud subscriptions together
- requirement
Id string - Requirement ID of the connection
- schemas
Schema
Response[] - The schemas for this connection
- secondary
Contacts 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_ strid - 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_ strid - Subscription ID to link cloud subscriptions together
- requirement_
id str - Requirement ID of the connection
- schemas
Sequence[Schema
Response] - The schemas for this connection
- secondary_
contacts Sequence[str] - The secondary contacts for this connection request
- approver String
- Approver of this connection request
- date
Submitted String - The timestamp that this connection request was submitted at
- link
Status String - Link status of the current connection
- linked
Connection StringId - Resource ID of the linked connection
- pipeline String
- Pipeline to use to transfer data
- provisioning
State String - Provisioning state of the connection
- status String
- Status of the connection
- status
Reason String - Reason for status
- direction String
- Direction of data movement
- flow
Types 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
- primary
Contact String - The primary contact for this connection request
- remote
Subscription StringId - Subscription ID to link cloud subscriptions together
- requirement
Id String - Requirement ID of the connection
- schemas List<Property Map>
- The schemas for this connection
- secondary
Contacts List<String> - The secondary contacts for this connection request
Direction, DirectionArgs
- Send
- Send
- Receive
- Receive
- Direction
Send - Send
- Direction
Receive - Receive
- Send
- Send
- Receive
- Receive
- Send
- Send
- Receive
- Receive
- SEND
- Send
- RECEIVE
- Receive
- "Send"
- Send
- "Receive"
- Receive
FlowType, FlowTypeArgs
- Unknown
- Unknown
- Complex
- Complex
- Dev
Sec Ops - DevSecOps
- Messaging
- Messaging
- Mission
- Mission
- Microsoft
Internal - MicrosoftInternal
- Basic
Files - BasicFiles
- Data
- Data
- Flow
Type Unknown - Unknown
- Flow
Type Complex - Complex
- Flow
Type Dev Sec Ops - DevSecOps
- Flow
Type Messaging - Messaging
- Flow
Type Mission - Mission
- Flow
Type Microsoft Internal - MicrosoftInternal
- Flow
Type Basic Files - BasicFiles
- Flow
Type 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
- Dev
Sec Ops - DevSecOps
- Messaging
- Messaging
- Mission
- Mission
- Microsoft
Internal - MicrosoftInternal
- Basic
Files - 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
- "Dev
Sec Ops" - DevSecOps
- "Messaging"
- Messaging
- "Mission"
- Mission
- "Microsoft
Internal" - MicrosoftInternal
- "Basic
Files" - BasicFiles
- "Data"
- Data
Schema, SchemaArgs
- Connection
Id 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.
Azure Native. Azure Data Transfer. Schema Status - Status of the schema
- Connection
Id 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 | Schema
Status - Status of the schema
- connection
Id 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 | Schema
Status - Status of the schema
- connection
Id 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 | Schema
Status - 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 | Schema
Status - Status of the schema
- connection
Id 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
- Connection
Id 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 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 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 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
- connection
Id 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
- Schema
Status New - New
- Schema
Status Approved - Approved
- New
- New
- Approved
- Approved
- New
- New
- Approved
- Approved
- NEW
- New
- APPROVED
- Approved
- "New"
- New
- "Approved"
- Approved
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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