Skip to content
Merged
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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
DotNetFrameworkVersion = '4.7.2'
RequiredAssemblies = './bin/Az.DataTransfer.private.dll'
FormatsToProcess = './Az.DataTransfer.format.ps1xml'
FunctionsToExport = 'Approve-AzDataTransferConnection', 'Deny-AzDataTransferConnection', 'Disable-AzDataTransferConnection', 'Disable-AzDataTransferFlow', 'Disable-AzDataTransferFlowType', 'Disable-AzDataTransferPipeline', 'Enable-AzDataTransferConnection', 'Enable-AzDataTransferFlow', 'Enable-AzDataTransferFlowType', 'Enable-AzDataTransferPipeline', 'Get-AzDataTransferConnection', 'Get-AzDataTransferFlow', 'Get-AzDataTransferPendingConnection', 'Get-AzDataTransferPendingFlow', 'Get-AzDataTransferPipeline', 'Invoke-AzDataTransferLinkPendingConnection', 'Invoke-AzDataTransferLinkPendingFlow', 'New-AzDataTransferConnection', 'New-AzDataTransferFlow', 'Remove-AzDataTransferConnection', 'Remove-AzDataTransferFlow', 'Update-AzDataTransferConnection', 'Update-AzDataTransferFlow'
FunctionsToExport = 'Approve-AzDataTransferConnection', 'Deny-AzDataTransferConnection', 'Disable-AzDataTransferConnection', 'Disable-AzDataTransferFlow', 'Disable-AzDataTransferFlowType', 'Disable-AzDataTransferPipeline', 'Enable-AzDataTransferConnection', 'Enable-AzDataTransferFlow', 'Enable-AzDataTransferFlowType', 'Enable-AzDataTransferPipeline', 'Get-AzDataTransferConnection', 'Get-AzDataTransferFlow', 'Get-AzDataTransferFlowProfile', 'Get-AzDataTransferPendingConnection', 'Get-AzDataTransferPendingFlow', 'Get-AzDataTransferPipeline', 'Invoke-AzDataTransferLinkPendingConnection', 'Invoke-AzDataTransferLinkPendingFlow', 'New-AzDataTransferConnection', 'New-AzDataTransferFlow', 'New-AzDataTransferFlowProfile', 'Remove-AzDataTransferConnection', 'Remove-AzDataTransferFlow', 'Update-AzDataTransferConnection', 'Update-AzDataTransferFlow', 'Update-AzDataTransferFlowProfile'
PrivateData = @{
PSData = @{
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'DataTransfer'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - DataTransfer")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("0.1.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

<#
.Synopsis
Approves the specified connection request in a pipeline.
Approves a pending connection request associated with the specified Pipeline.
.Description
Approves the specified connection request in a pipeline.
Approves a pending connection request associated with the specified Pipeline.
.Example
$connectionToApprove = Get-AzDataTransferConnection -ResourceGroupName ResourceGroup01 -Name Connection01
Approve-AzDataTransferConnection -PipelineName Pipeline01 -ResourceGroupName ResourceGroup01 -ConnectionId $connectionToApprove.Id -StatusReason "Approved for processing" -Confirm:$false
Expand All @@ -41,8 +41,9 @@ CONNECTION <IResourceBody>: The resource to reference.
INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand All @@ -58,7 +59,7 @@ param(
[Parameter(ParameterSetName='ApproveViaJsonString', Mandatory)]
[ADT.Category('Path')]
[System.String]
# The name for the pipeline to perform the operation on.
# The name of the pipeline on which to operate.
${PipelineName},

[Parameter(ParameterSetName='Approve', Mandatory)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

<#
.Synopsis
Rejects the specified connection request in a pipeline.
Rejects a pending connection request associated with the specified Pipeline.
.Description
Rejects the specified connection request in a pipeline.
Rejects a pending connection request associated with the specified Pipeline.
.Example
$connectionToDeny = Get-AzDataTransferConnection -ResourceGroupName ResourceGroup01 -Name Connection01
Deny-AzDataTransferConnection -PipelineName Pipeline01 -ResourceGroupName ResourceGroup01 -ConnectionId $connectionToDeny.Id -StatusReason "Not Authorized for processing" -Confirm:$false
Expand All @@ -41,8 +41,9 @@ CONNECTION <IResourceBody>: The resource to reference.
INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand All @@ -58,7 +59,7 @@ param(
[Parameter(ParameterSetName='RejectViaJsonString', Mandatory)]
[ADT.Category('Path')]
[System.String]
# The name for the pipeline to perform the operation on.
# The name of the pipeline on which to operate.
${PipelineName},

[Parameter(ParameterSetName='Reject', Mandatory)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,18 @@ To create the parameters described below, construct a hash table containing the
CONNECTIONINPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.

INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,18 @@ To create the parameters described below, construct a hash table containing the
CONNECTIONINPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.

INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ To create the parameters described below, construct a hash table containing the
INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,18 @@ To create the parameters described below, construct a hash table containing the
CONNECTIONINPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.

INPUTOBJECT <IDataTransferIdentity>: Identity Parameter
[ConnectionName <String>]: The name for the connection to perform the operation on.
[FlowName <String>]: The name for the flow to perform the operation on.
[FlowProfileName <String>]: The name of the FlowProfile resource to operate on. Must be 3 to 64 characters long and contain only alphanumeric characters or hyphens.
[Id <String>]: Resource identity path
[PipelineName <String>]: The name for the pipeline to perform the operation on.
[PipelineName <String>]: The name of the pipeline on which to operate.
[ResourceGroupName <String>]: The name of the resource group. The name is case insensitive.
[SubscriptionId <String>]: The ID of the target subscription. The value must be an UUID.
.Link
Expand Down
Loading