Skip to content

Commit 838993b

Browse files
committed
update examples and create BreakingChangeIssues.csv
1 parent 6a5b2e9 commit 838993b

File tree

9 files changed

+197
-26
lines changed

9 files changed

+197
-26
lines changed

src/Databricks/Databricks.Autorest/custom/Update-AzDatabricksVNetPeering.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ function Update-AzDatabricksVNetPeering {
3535
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
3636
[Parameter(ParameterSetName='UpdateViaJsonFilePath', Mandatory)]
3737
[Parameter(ParameterSetName='UpdateViaJsonString', Mandatory)]
38+
[Alias('PeeringName')]
3839
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Category('Path')]
3940
[System.String]
4041
# The name of the workspace vNet peering.

src/Databricks/Databricks.Autorest/docs/Update-AzDatabricksVNetPeering.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Update vNet Peering for workspace.
5151

5252
### Example 1: Update AllowForwardedTraffic of vnet peering.
5353
```powershell
54-
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic $True
54+
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic
5555
```
5656

5757
```output
@@ -64,7 +64,7 @@ This command updates AllowForwardedTraffic of vnet peering.
6464

6565
### Example 2: Update AllowForwardedTraffic of vnet peering by object.
6666
```powershell
67-
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true
67+
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit
6868
```
6969

7070
```output
@@ -234,7 +234,7 @@ The name of the workspace vNet peering.
234234
```yaml
235235
Type: System.String
236236
Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString
237-
Aliases:
237+
Aliases: PeeringName
238238

239239
Required: True
240240
Position: Named

src/Databricks/Databricks.Autorest/examples/Update-AzDatabricksVNetPeering.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Example 1: Update AllowForwardedTraffic of vnet peering.
22
```powershell
3-
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic $True
3+
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic
44
```
55

66
```output
@@ -13,7 +13,7 @@ This command updates AllowForwardedTraffic of vnet peering.
1313

1414
### Example 2: Update AllowForwardedTraffic of vnet peering by object.
1515
```powershell
16-
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true
16+
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit
1717
```
1818

1919
```output
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "a49ae66b-01a6-4218-a880-ef040cb5fd2e"
2+
"generate_Id": "e42f4474-3b54-42f7-a8d0-837f000341b4"
33
}

src/Databricks/Databricks.Autorest/test/AzDatabricksVNetPeering.Tests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ Describe 'AzDatabricksVNetPeering' {
3737

3838
It 'UpdateExpanded' -Skip {
3939
{
40-
$config = Update-AzDatabricksVNetPeering -WorkspaceName $env.workSpaceName3 -ResourceGroupName $env.resourceGroup -Name $env.vNetName1 -AllowForwardedTraffic $True
40+
$config = Update-AzDatabricksVNetPeering -WorkspaceName $env.workSpaceName3 -ResourceGroupName $env.resourceGroup -Name $env.vNetName1 -AllowForwardedTraffic
4141
$config.Name | Should -Be $env.vNetName1
4242
} | Should -Not -Throw
4343
}
4444

4545
It 'UpdateViaIdentityExpanded' -Skip {
4646
{
4747
$config = Get-AzDatabricksVNetPeering -WorkspaceName $env.workSpaceName3 -ResourceGroupName $env.resourceGroup -Name $env.vNetName1
48-
$config = Update-AzDatabricksVNetPeering -InputObject $config -AllowForwardedTraffic $True
48+
$config = Update-AzDatabricksVNetPeering -InputObject $config -AllowForwardedTraffic
4949
$config.Name | Should -Be $env.vNetName1
5050
} | Should -Not -Throw
5151
}

src/Databricks/Databricks.sln

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Databricks", "Databricks\Da
2121
EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Databricks.Autorest", "Databricks.Autorest", "{5FE84A12-8651-7F44-066E-17161CDB0E9D}"
2323
EndProject
24-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Databricks", "..\..\generated\Databricks\Databricks.Autorest\Az.Databricks.csproj", "{3944DF1D-7E41-4843-BB32-15CEAB545BE5}"
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Databricks", "..\..\generated\Databricks\Databricks.Autorest\Az.Databricks.csproj", "{CE427F29-8769-48A4-8C10-DE248F9F8316}"
2525
EndProject
2626
Global
2727
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -117,18 +117,18 @@ Global
117117
{78057EB6-1C85-4118-94B4-8021CCD6902E}.Release|x64.Build.0 = Release|Any CPU
118118
{78057EB6-1C85-4118-94B4-8021CCD6902E}.Release|x86.ActiveCfg = Release|Any CPU
119119
{78057EB6-1C85-4118-94B4-8021CCD6902E}.Release|x86.Build.0 = Release|Any CPU
120-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
122-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|x64.ActiveCfg = Debug|Any CPU
123-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|x64.Build.0 = Debug|Any CPU
124-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|x86.ActiveCfg = Debug|Any CPU
125-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Debug|x86.Build.0 = Debug|Any CPU
126-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
127-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|Any CPU.Build.0 = Release|Any CPU
128-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|x64.ActiveCfg = Release|Any CPU
129-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|x64.Build.0 = Release|Any CPU
130-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|x86.ActiveCfg = Release|Any CPU
131-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5}.Release|x86.Build.0 = Release|Any CPU
120+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|Any CPU.Build.0 = Debug|Any CPU
122+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|x64.ActiveCfg = Debug|Any CPU
123+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|x64.Build.0 = Debug|Any CPU
124+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|x86.ActiveCfg = Debug|Any CPU
125+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Debug|x86.Build.0 = Debug|Any CPU
126+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|Any CPU.ActiveCfg = Release|Any CPU
127+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|Any CPU.Build.0 = Release|Any CPU
128+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|x64.ActiveCfg = Release|Any CPU
129+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|x64.Build.0 = Release|Any CPU
130+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|x86.ActiveCfg = Release|Any CPU
131+
{CE427F29-8769-48A4-8C10-DE248F9F8316}.Release|x86.Build.0 = Release|Any CPU
132132
EndGlobalSection
133133
GlobalSection(SolutionProperties) = preSolution
134134
HideSolutionNode = FALSE
@@ -140,6 +140,6 @@ Global
140140
{4F649005-A1C2-4378-A1D0-3BC59432112F} = {745C122A-4486-4B24-B64A-1E5E814E81F9}
141141
{F373CC8C-4673-49B1-957F-C53D7E1D56B5} = {745C122A-4486-4B24-B64A-1E5E814E81F9}
142142
{5DBADD59-014C-4264-9F1E-88563CC48B79} = {745C122A-4486-4B24-B64A-1E5E814E81F9}
143-
{3944DF1D-7E41-4843-BB32-15CEAB545BE5} = {5FE84A12-8651-7F44-066E-17161CDB0E9D}
143+
{CE427F29-8769-48A4-8C10-DE248F9F8316} = {5FE84A12-8651-7F44-066E-17161CDB0E9D}
144144
EndGlobalSection
145145
EndGlobal

src/Databricks/Databricks/Az.Databricks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2025-09-12
6+
# Generated on: 2025-09-15
77
#
88

99
@{

src/Databricks/Databricks/help/Update-AzDatabricksVNetPeering.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Update vNet Peering for workspace.
5252

5353
### Example 1: Update AllowForwardedTraffic of vnet peering.
5454
```powershell
55-
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic $True
55+
Update-AzDatabricksVNetPeering -Name vnet-peering-t1 -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -AllowForwardedTraffic
5656
```
5757

5858
```output
@@ -65,7 +65,7 @@ This command updates AllowForwardedTraffic of vnet peering.
6565

6666
### Example 2: Update AllowForwardedTraffic of vnet peering by object.
6767
```powershell
68-
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit $true
68+
Get-AzDatabricksVNetPeering -WorkspaceName azps-databricks-workspace-t1 -ResourceGroupName azps_test_gp_db -Name vnet-peering-t1 | Update-AzDatabricksVNetPeering -AllowGatewayTransit
6969
```
7070

7171
```output
@@ -235,7 +235,7 @@ The name of the workspace vNet peering.
235235
```yaml
236236
Type: System.String
237237
Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString
238-
Aliases:
238+
Aliases: PeeringName
239239

240240
Required: True
241241
Position: Named

0 commit comments

Comments
 (0)