Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Commands/data-transfer/connection/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ Create the connection resource.

- Creates a receive side connection
```bash
data-transfer connection create --resource-group testRG --connection-name testConnection --flow-types Mission API --location East US --justification justification --pipeline testdc --requirement-id id --direction Receive --remote-subscription-id 00000000-0000-0000-0000-000000000000
data-transfer connection create --resource-group testRG --connection-name testConnection --flow-types Mission API --location eastus --justification justification --pipeline testdc --requirement-id id --direction Receive --remote-subscription-id 00000000-0000-0000-0000-000000000000
data-transfer connection create --resource-group testRG --connection-name testConnection --flow-types ["Mission", "API"] --location eastus --justification justification --pipeline testdc --requirement-id id --direction Receive --remote-subscription-id 00000000-0000-0000-0000-000000000000
```

- Creates a send side connection
```bash
data-transfer connection create --resource-group testRG --connection-name testConnection --location East US --pipeline testdc --pin 1234
data-transfer connection create --resource-group testRG --connection-name testConnection --location eastus --pipeline testdc --pin '$-pe3' --flow-types Api Mission --direction Send
data-transfer connection create --resource-group testRG --connection-name testConnection --location 'East US' --pipeline testdc --pin 12345 --flow-types Api Mission --direction Send
```
3 changes: 3 additions & 0 deletions Commands/data-transfer/connection/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Delete the connection resource.

Deletes the connection specified by ids or by name and resource group

## Versions

### [2025-05-21](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5henVyZWRhdGF0cmFuc2Zlci9jb25uZWN0aW9ucy97fQ==/2025-05-21.xml) **Preview**
Expand All @@ -13,4 +15,5 @@ Delete the connection resource.
- Deletes the connection resource
```bash
data-transfer connection delete --resource-group testRG --connection-name testConnection
data-transfer connection delete --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection2
```
1 change: 1 addition & 0 deletions Commands/data-transfer/connection/_link.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ Links the connection to its pending connection.
- Links the specified connection
```bash
data-transfer connection link --resource-group testRG --connection-name receiveConnection --pending-connection-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/sendConnection
data-transfer connection link --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/recieveConnection --pending-connection-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/sendConnection
```
2 changes: 1 addition & 1 deletion Commands/data-transfer/connection/_list.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection list_

List connections in a resource group.
List all the connections.

## Versions

Expand Down
3 changes: 3 additions & 0 deletions Commands/data-transfer/connection/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

Get connection resource.

Get connection with specified ids or name.

## Versions

### [2025-05-21](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5henVyZWRhdGF0cmFuc2Zlci9jb25uZWN0aW9ucy97fQ==/2025-05-21.xml) **Preview**
Expand All @@ -13,4 +15,5 @@ Get connection resource.
- Gets connection resource
```bash
data-transfer connection show --resource-group testRG --connection-name testConnection
data-transfer connection show --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection
```
2 changes: 1 addition & 1 deletion Commands/data-transfer/connection/flow/_create.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection flow create_

Create the flow resource.
Create data flow for the approved connection

## Versions

Expand Down
5 changes: 4 additions & 1 deletion Commands/data-transfer/connection/flow/_delete.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# [Command] _data-transfer connection flow delete_

Delete the flow resource.
Delete data flow for the approved connection

Deletes the flow specified by ids or by name along with its associated connection name and resouce group.

## Versions

Expand All @@ -13,4 +15,5 @@ Delete the flow resource.
- Deletes the flow resource
```bash
data-transfer connection flow delete --resource-group testRG --connection-name testConnection --flow-name testFlow
data-transfer connection flow delete --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection/flows/testFlow
```
3 changes: 2 additions & 1 deletion Commands/data-transfer/connection/flow/_disable.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection flow disable_

Disables the specified flow
Disables the specified flow in the connection

## Versions

Expand All @@ -13,4 +13,5 @@ Disables the specified flow
- Disables the specified flow
```bash
data-transfer connection flow disable --resource-group testRG --connection-name testConnection --flow-name testFlow
data-transfer connection flow disable --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection/flows/testFlow
```
3 changes: 2 additions & 1 deletion Commands/data-transfer/connection/flow/_enable.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection flow enable_

Enables the specified flow.
Enables the specified flow in the connection

## Versions

Expand All @@ -13,4 +13,5 @@ Enables the specified flow.
- Enables the specified flow
```bash
data-transfer connection flow enable --resource-group testRG --connection-name testConnection --flow-name testFlow
data-transfer connection flow enable --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection/flows/testFlow
```
5 changes: 3 additions & 2 deletions Commands/data-transfer/connection/flow/_link.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection flow link_

Links the specified flow.
Links the specified flow in the connection

## Versions

Expand All @@ -12,5 +12,6 @@ Links the specified flow.

- Links the specified flow
```bash
data-transfer connection flow link --resource-group testRG --connection-name testConnection --flow-name testFlow --id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection/flows/testFlow
data-transfer connection flow link --resource-group testRG --connection-name receiveConnection --flow-name receiveFlow --id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/sendConnection/flows/sendFlow
data-transfer connection flow link --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/receiveConnection/testConnection/flows/receiveFlow --pending-flow-id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/sendConnection/flows/sendFlow
```
2 changes: 1 addition & 1 deletion Commands/data-transfer/connection/flow/_list.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer connection flow list_

List flows in a connection.
List all the flows in a connection.

## Versions

Expand Down
5 changes: 4 additions & 1 deletion Commands/data-transfer/connection/flow/_show.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# [Command] _data-transfer connection flow show_

Get flow resource.
Show a specific flow in the connection.

Show specific flow with given ids or name.

## Versions

Expand All @@ -13,4 +15,5 @@ Get flow resource.
- Gets flow resource
```bash
data-transfer connection flow show --resource-group testRG --connection-name testConnection --flow-name testFlow
data-transfer connection flow show --ids /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRG/providers/Microsoft.AzureDataTransfer/connections/testConnection/flows/testFlow
```
14 changes: 7 additions & 7 deletions Commands/data-transfer/connection/flow/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ Data transfer flow commands
## Commands

- [create](/Commands/data-transfer/connection/flow/_create.md)
: Create the flow resource.
: Create data flow for the approved connection

- [delete](/Commands/data-transfer/connection/flow/_delete.md)
: Delete the flow resource.
: Delete data flow for the approved connection

- [disable](/Commands/data-transfer/connection/flow/_disable.md)
: Disables the specified flow
: Disables the specified flow in the connection

- [enable](/Commands/data-transfer/connection/flow/_enable.md)
: Enables the specified flow.
: Enables the specified flow in the connection

- [link](/Commands/data-transfer/connection/flow/_link.md)
: Links the specified flow.
: Links the specified flow in the connection

- [list](/Commands/data-transfer/connection/flow/_list.md)
: List flows in a connection.
: List all the flows in a connection.

- [show](/Commands/data-transfer/connection/flow/_show.md)
: Get flow resource.
: Show a specific flow in the connection.

- [update](/Commands/data-transfer/connection/flow/_update.md)
: Update the flow resource.
2 changes: 1 addition & 1 deletion Commands/data-transfer/connection/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Data transfer connection commands
: Links the connection to its pending connection.

- [list](/Commands/data-transfer/connection/_list.md)
: List connections in a resource group.
: List all the connections.

- [list-pending-connection](/Commands/data-transfer/connection/_list-pending-connection.md)
: Lists all pending remote connections that are linkable to this connection.
Expand Down
9 changes: 9 additions & 0 deletions Commands/data-transfer/pipeline/_execute-action.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# [Command] _data-transfer pipeline execute-action_

Executes a privileged action for a pipeline.

## Versions

### [2025-05-21](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5henVyZWRhdGF0cmFuc2Zlci9waXBlbGluZXMve30vZXhlY3V0ZWFjdGlvbg==/2025-05-21.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.azuredatatransfer/pipelines/{}/executeaction 2025-05-21 -->
2 changes: 1 addition & 1 deletion Commands/data-transfer/pipeline/_list.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Command] _data-transfer pipeline list_

List Pipeline resource by Subscription or Resource Group
List all the pipelines

## Versions

Expand Down
5 changes: 4 additions & 1 deletion Commands/data-transfer/pipeline/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ Data transfer pipeline commands
- [delete](/Commands/data-transfer/pipeline/_delete.md)
: Delete the pipeline resource.

- [execute-action](/Commands/data-transfer/pipeline/_execute-action.md)
: Executes a privileged action for a pipeline.

- [list](/Commands/data-transfer/pipeline/_list.md)
: List Pipeline resource by Subscription or Resource Group
: List all the pipelines

- [reject-connection](/Commands/data-transfer/pipeline/_reject-connection.md)
: Rejects the specified connection request in a pipeline.
Expand Down
2 changes: 1 addition & 1 deletion Commands/data-transfer/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [Group] _data-transfer_

Data transfer commands
Commands for cross domain Service that enables customers to transfer data across security domains.

## Subgroups

Expand Down
2 changes: 1 addition & 1 deletion Commands/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
: data boundary operations

- [data-transfer](/Commands/data-transfer/readme.md)
: Data transfer commands
: Commands for cross domain Service that enables customers to transfer data across security domains.

- [databox](/Commands/databox/readme.md)
: Manage data box
Expand Down
Loading
Loading