azure-native.azuredatatransfer.Pipeline
Explore with Pulumi AI
The pipeline resource definition. Azure REST API version: 2023-10-11-preview.
Other available API versions: 2024-01-25, 2024-05-07, 2024-09-11.
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 (
azuredatatransfer "github.com/pulumi/pulumi-azure-native-sdk/azuredatatransfer/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azuredatatransfer.NewPipeline(ctx, "pipeline", &azuredatatransfer.PipelineArgs{
Location: pulumi.String("East US"),
PipelineName: pulumi.String("testPipeline"),
Properties: &azuredatatransfer.PipelinePropertiesArgs{
RemoteCloud: pulumi.String("testdc"),
},
ResourceGroupName: pulumi.String("testRG"),
})
if err != nil {
return err
}
return nil
})
}
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={
"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.
Constructor example
The following reference example uses placeholder values for all input properties.
var pipelineResource = new AzureNative.AzureDataTransfer.Pipeline("pipelineResource", new()
{
ResourceGroupName = "string",
Location = "string",
PipelineName = "string",
Properties = 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={
"remoteCloud": "string",
"displayName": "string",
"flowTypes": ["string"],
"policies": ["string"],
"subscribers": [{
"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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Pipeline
Name string - The name for the pipeline that is to be requested.
- Properties
Pulumi.
Azure Native. Azure Data Transfer. Inputs. Pipeline Properties - Properties of pipeline
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Pipeline
Name string - The name for the pipeline that is to be requested.
- Properties
Pipeline
Properties Args - Properties of pipeline
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- pipeline
Name String - The name for the pipeline that is to be requested.
- properties
Pipeline
Properties - Properties of pipeline
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- pipeline
Name string - The name for the pipeline that is to be requested.
- properties
Pipeline
Properties - Properties of pipeline
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - 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
Pipeline
Properties Args - Properties of pipeline
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- pipeline
Name String - The name for the pipeline that is to be requested.
- properties Property Map
- Properties of pipeline
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Pipeline resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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
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
InternalMetadataPropertiesResponse, InternalMetadataPropertiesResponseArgs
- Status
Set stringBy - User that last set the approved status for this connection
- Operation
Status Pulumi.Azure Native. Azure Data Transfer. Inputs. Operation Status Properties Response - Operation status associated with the last patch request
- Status
Set stringBy - User that last set the approved status for this connection
- Operation
Status OperationStatus Properties Response - Operation status associated with the last patch request
- status
Set StringBy - User that last set the approved status for this connection
- operation
Status OperationStatus Properties Response - Operation status associated with the last patch request
- status
Set stringBy - User that last set the approved status for this connection
- operation
Status OperationStatus Properties Response - Operation status associated with the last patch request
- status_
set_ strby - User that last set the approved status for this connection
- operation_
status OperationStatus Properties Response - Operation status associated with the last patch request
- status
Set StringBy - User that last set the approved status for this connection
- operation
Status Property Map - Operation status associated with the last patch request
OperationStatusPropertiesResponse, OperationStatusPropertiesResponseArgs
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
- System
Data Pulumi.Azure Native. Azure Data Transfer. Inputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Connection type inside pipeline
- Properties
Pulumi.
Azure Native. Azure Data Transfer. Inputs. Pipeline Connection Response Properties - 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
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Connection type inside pipeline
- Properties
Pipeline
Connection Response Properties - 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
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Connection type inside pipeline
- properties
Pipeline
Connection Response Properties - 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
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Connection type inside pipeline
- properties
Pipeline
Connection Response Properties - 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 SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Connection type inside pipeline
- properties
Pipeline
Connection Response Properties - 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
- system
Data 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
- Internal
Metadata Pulumi.Azure Native. Azure Data Transfer. Inputs. Internal Metadata Properties Response - Internal metadata of the connection inside pipeline.
- Internal
Metadata InternalMetadata Properties Response - Internal metadata of the connection inside pipeline.
- internal
Metadata InternalMetadata Properties Response - Internal metadata of the connection inside pipeline.
- internal
Metadata InternalMetadata Properties Response - Internal metadata of the connection inside pipeline.
- internal_
metadata InternalMetadata Properties Response - Internal metadata of the connection inside pipeline.
- internal
Metadata Property Map - Internal metadata of the connection inside pipeline.
PipelineProperties, PipelinePropertiesArgs
- Remote
Cloud string - Remote cloud of the data to be transferred or received
- Display
Name string - Display name of this pipeline
- Flow
Types List<Union<string, Pulumi.Azure Native. Azure Data Transfer. Flow Type>> - The flow types allowed for this pipeline
- Policies List<string>
- The policies for this pipeline
- Subscribers
List<Pulumi.
Azure Native. Azure Data Transfer. Inputs. Subscriber> - Subscribers of this resource
- Remote
Cloud string - Remote cloud of the data to be transferred or received
- Display
Name string - Display name of this pipeline
- Flow
Types []string - The flow types allowed for this pipeline
- Policies []string
- The policies for this pipeline
- Subscribers []Subscriber
- Subscribers of this resource
- remote
Cloud String - Remote cloud of the data to be transferred or received
- display
Name String - Display name of this pipeline
- flow
Types 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
- remote
Cloud string - Remote cloud of the data to be transferred or received
- display
Name string - Display name of this pipeline
- flow
Types (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
- remote
Cloud String - Remote cloud of the data to be transferred or received
- display
Name String - Display name of this pipeline
- flow
Types List<String | "Unknown" | "Complex" | "DevSec Ops" | "Messaging" | "Mission" | "Microsoft Internal" | "Basic Files" | "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.
Azure Native. Azure Data Transfer. Inputs. Pipeline Connection Response> - Connections associated with pipeline
- Provisioning
State string - Provisioning state of the pipeline
- Remote
Cloud string - Remote cloud of the data to be transferred or received
- Display
Name string - Display name of this pipeline
- Flow
Types List<string> - The flow types allowed for this pipeline
- Policies List<string>
- The policies for this pipeline
- Subscribers
List<Pulumi.
Azure Native. Azure Data Transfer. Inputs. Subscriber Response> - Subscribers of this resource
- Connections
[]Pipeline
Connection Response - Connections associated with pipeline
- Provisioning
State string - Provisioning state of the pipeline
- Remote
Cloud string - Remote cloud of the data to be transferred or received
- Display
Name string - Display name of this pipeline
- Flow
Types []string - The flow types allowed for this pipeline
- Policies []string
- The policies for this pipeline
- Subscribers
[]Subscriber
Response - Subscribers of this resource
- connections
List<Pipeline
Connection Response> - Connections associated with pipeline
- provisioning
State String - Provisioning state of the pipeline
- remote
Cloud String - Remote cloud of the data to be transferred or received
- display
Name String - Display name of this pipeline
- flow
Types List<String> - The flow types allowed for this pipeline
- policies List<String>
- The policies for this pipeline
- subscribers
List<Subscriber
Response> - Subscribers of this resource
- connections
Pipeline
Connection Response[] - Connections associated with pipeline
- provisioning
State string - Provisioning state of the pipeline
- remote
Cloud string - Remote cloud of the data to be transferred or received
- display
Name string - Display name of this pipeline
- flow
Types string[] - The flow types allowed for this pipeline
- policies string[]
- The policies for this pipeline
- subscribers
Subscriber
Response[] - Subscribers of this resource
- connections
Sequence[Pipeline
Connection Response] - 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[Subscriber
Response] - Subscribers of this resource
- connections List<Property Map>
- Connections associated with pipeline
- provisioning
State String - Provisioning state of the pipeline
- remote
Cloud String - Remote cloud of the data to be transferred or received
- display
Name String - Display name of this pipeline
- flow
Types 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
- 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: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