Skip to content
Closed
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
5 changes: 4 additions & 1 deletion src/DataTransfer/DataTransfer.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ For information on how to develop for `Az.DataTransfer`, see [how-to.md](how-to.

```yaml
# pin the swagger version by using the commit id instead of branch name
commit: 3a1833c86fbad00062482b683ee0df83cc2832e6
commit: ab76a9a9cdd1812bf936ccf3b3b2ccf6be89d3de
namespace: ADT
require:
# readme.azure.noprofile.md is the common configuration file
Expand All @@ -38,6 +38,9 @@ require:
# If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally
# - (this-folder)/relative-path-to-your-local-readme.md

# Pin to version
tag: package-2025-05-30-preview

try-require:
- $(repo)/specification/azuredatatransfer/resource-manager/readme.powershell.md

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

### ADT.Models.IFlowProfile

### ADT.Models.IFlowProfileMetadata
### ADT.Models.IFlowProfilesListResult

## NOTES

Expand Down
2 changes: 1 addition & 1 deletion src/DataTransfer/DataTransfer.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "20609426-b92c-4807-a758-9ab12ecd2318"
"generate_Id": "eaea292f-c7e1-4add-b7f3-6a7632ce0e30"
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,25 @@ $testRunId = "09280826"
$getTestFlowProfileName = "test-basic-fp-$testRunId"

Describe 'Get-AzDataTransferFlowProfile' {
It 'List via Provider Action' {
{
# List all FlowProfiles in the pipeline
$flowProfiles = Get-AzDataTransferFlowProfile -PipelineName $env.PipelineName
$flowProfiles.Count | Should -BeGreaterThan 0
$flowProfiles | ForEach-Object {
$_.Name | Should -Not -BeNullOrEmpty
$_.ReplicationScenario | Should -Not -BeNullOrEmpty
$_.Status | Should -Not -BeNullOrEmpty
}

# Verify our test FlowProfile is in the list
$testFlowProfile = $flowProfiles | Where-Object { $_.Name -eq $getTestFlowProfileName }
$testFlowProfile | Should -Not -BeNullOrEmpty
$testFlowProfile.ReplicationScenario | Should -Be "Files"
$testFlowProfile.Status | Should -Be "Enabled"
} | Should -Not -Throw
}

It 'List' {
{
# List all FlowProfiles in the pipeline
Expand Down
28 changes: 14 additions & 14 deletions src/DataTransfer/DataTransfer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataTransfer", "DataTransfe
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DataTransfer.Autorest", "DataTransfer.Autorest", "{E3651BD2-2AAA-41CF-2DFA-F6780C65890A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DataTransfer", "..\..\generated\DataTransfer\DataTransfer.Autorest\Az.DataTransfer.csproj", "{868A853E-2073-412A-AA92-4C8ED18C4919}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DataTransfer", "..\..\generated\DataTransfer\DataTransfer.Autorest\Az.DataTransfer.csproj", "{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -117,18 +117,18 @@ Global
{23D2B465-3259-453B-A927-C5C4E7EE2375}.Release|x64.Build.0 = Release|Any CPU
{23D2B465-3259-453B-A927-C5C4E7EE2375}.Release|x86.ActiveCfg = Release|Any CPU
{23D2B465-3259-453B-A927-C5C4E7EE2375}.Release|x86.Build.0 = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|x64.ActiveCfg = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|x64.Build.0 = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|x86.ActiveCfg = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Debug|x86.Build.0 = Debug|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|Any CPU.Build.0 = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|x64.ActiveCfg = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|x64.Build.0 = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|x86.ActiveCfg = Release|Any CPU
{868A853E-2073-412A-AA92-4C8ED18C4919}.Release|x86.Build.0 = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|x64.ActiveCfg = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|x64.Build.0 = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|x86.ActiveCfg = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Debug|x86.Build.0 = Debug|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|Any CPU.Build.0 = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|x64.ActiveCfg = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|x64.Build.0 = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|x86.ActiveCfg = Release|Any CPU
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -140,6 +140,6 @@ Global
{4BDF5DC6-A518-46E6-99C6-3AF3BFE24451} = {32836310-FB5E-5A92-56B4-44D826EF11F5}
{244454EF-5EAF-40F6-895F-DA49D8681DFF} = {32836310-FB5E-5A92-56B4-44D826EF11F5}
{081B7423-0DAA-462B-ACF1-4C7600C6D131} = {32836310-FB5E-5A92-56B4-44D826EF11F5}
{868A853E-2073-412A-AA92-4C8ED18C4919} = {E3651BD2-2AAA-41CF-2DFA-F6780C65890A}
{DDDFDDE2-7200-4EA5-8D82-40A7136C8099} = {E3651BD2-2AAA-41CF-2DFA-F6780C65890A}
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/DataTransfer/DataTransfer/Az.DataTransfer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 9/28/2025
# Generated on: 10/14/2025
#

@{
Expand Down
3 changes: 3 additions & 0 deletions src/DataTransfer/DataTransfer/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- Additional information about change #1
-->
## Upcoming Release
* Fixed return type for Get-AzDataTransferFlowProfile cmdlet

## Version 2.0.0
* Added commands for FlowProfile creation and management
* Updated commands for using FlowProfiles in Flow/Connection creation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

### ADT.Models.IFlowProfile

### ADT.Models.IFlowProfileMetadata
### ADT.Models.IFlowProfilesListResult

## NOTES

Expand Down