Skip to content

Commit 0bd99b3

Browse files
authored
Merge branch 'main' into jinpei/main/Databricks-v4
2 parents 838993b + 055d995 commit 0bd99b3

File tree

691 files changed

+122171
-14980
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

691 files changed

+122171
-14980
lines changed

.azure-pipelines/PipelineSteps/test-steps.ps1

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,18 @@ if ($PowerShellPlatform) {
3131
$preference = $ErrorActionPreference
3232
$ErrorActionPreference = 'Continue'
3333
$buildProjPath = Join-Path $RepoRoot 'build.proj'
34-
dotnet msbuild $buildProjPath /t:Test "/p:Configuration=$Configuration;TestFramework=$TestFramework"
34+
35+
$buildArgs = "/p:Configuration=$Configuration;TestFramework=$TestFramework"
36+
37+
if ($IsLinux) {
38+
# Applying various parallelism/heap restriction behaviors to prevent OOM issues on Ubuntu 24.04
39+
Write-Host -ForegroundColor Yellow "Detected Linux agent - applying memory tuning for tests"
40+
$env:DOTNET_gcServer = "0"
41+
$env:DOTNET_gcHeapCount = "2"
42+
}
43+
44+
dotnet msbuild $buildProjPath /t:Test $buildArgs
45+
3546
Write-Host -ForegroundColor DarkGreen "-------------------- End testing ... --------------------`n`n`n`n`n"
3647

3748
# Test AutoGen Modules With PowerShell Core
@@ -74,4 +85,4 @@ if ($FailedModuleList.Length -ne 0)
7485
}
7586

7687
Set-Location $currentPath
77-
Write-Host -ForegroundColor DarkGreen "-------------------- End checking test status ... --------------------`n`n`n`n`n"
88+
Write-Host -ForegroundColor DarkGreen "-------------------- End checking test status ... --------------------`n`n`n`n`n"

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @wyunchi-ms @dolauli @isra-fel are from the Azure PowerShell team. Adding them ensures they can merge the PR for those modules.
22
# To make sure Network PRs go to the right branch, e.g. network-april
3-
/src/Compute/ @EdwinBernal1 @grizzlytheodore @ntangy @sandido @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi
3+
/src/Compute/ @ookoka @haagha @audreyttt @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi
44
/src/PolicyInsights/ @pilor @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi
55
/src/Batch/ @wiboris @dpwatrous @wyunchi-ms @dolauli @isra-fel @VeryEarly @YanaXu @vidai-msft @NoriZC @notyashhh @Pan-Qi
66

NuGet.Config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939

4040

41+
42+
4143

4244

4345

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,26 @@
1-
// ----------------------------------------------------------------------------------
2-
//
3-
// Copyright Microsoft Corporation
4-
// Licensed under the Apache License, Version 2.0 (the "License");
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0 (the ""License"");
53
// you may not use this file except in compliance with the License.
64
// You may obtain a copy of the License at
75
// http://www.apache.org/licenses/LICENSE-2.0
86
// Unless required by applicable law or agreed to in writing, software
9-
// distributed under the License is distributed on an "AS IS" BASIS,
7+
// distributed under the License is distributed on an ""AS IS"" BASIS,
108
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
119
// See the License for the specific language governing permissions and
1210
// limitations under the License.
13-
// ----------------------------------------------------------------------------------
11+
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
12+
// is regenerated.
1413

1514
using System;
1615
using System.Reflection;
16+
using System.Runtime.CompilerServices;
1717
using System.Runtime.InteropServices;
1818

19-
[assembly: AssemblyTitle("Microsoft Azure Powershell - Databricks")]
20-
[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)]
21-
[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)]
22-
[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)]
23-
24-
[assembly: ComVisible(false)]
25-
[assembly: CLSCompliant(false)]
26-
[assembly: Guid("99704333-b263-4023-a5e5-ec66c7f5ac99")]
27-
[assembly: AssemblyVersion("1.10.0")]
28-
[assembly: AssemblyFileVersion("1.10.0")]
19+
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
20+
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
21+
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
22+
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Databricks")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.10.0")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("1.10.0")]
25+
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
26+
[assembly: System.CLSCompliantAttribute(false)]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "aff01ef6-81b9-4db2-a5bb-6579a31029f4"
2+
"generate_Id": "f0f93d0b-510f-4af1-bbd5-2622edd7b89d"
33
}

generated/Databricks/Databricks.Autorest/generated/cmdlets/GetAzDatabricksAccessConnector_Get.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets
1313
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/accessConnectors/{connectorName}"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksAccessConnector_Get")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector", "15.0.0", "2.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"ReferedBy"}, NewOutputProperties=new string[] {"ReferedBy"}, ChangeDescription="The types of the properties 'ReferedBy' will be changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'")]
1617
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector))]
1718
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets an Azure Databricks Access Connector.")]
1819
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated]

generated/Databricks/Databricks.Autorest/generated/cmdlets/GetAzDatabricksAccessConnector_GetViaIdentity.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets
1313
/// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/accessConnectors/{connectorName}"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksAccessConnector_GetViaIdentity")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector", "15.0.0", "2.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"ReferedBy"}, NewOutputProperties=new string[] {"ReferedBy"}, ChangeDescription="The types of the properties 'ReferedBy' will be changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'")]
1617
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector))]
1718
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets an Azure Databricks Access Connector.")]
1819
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated]

generated/Databricks/Databricks.Autorest/generated/cmdlets/GetAzDatabricksAccessConnector_List.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets
1313
/// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/accessConnectors"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksAccessConnector_List")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector", "15.0.0", "2.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"ReferedBy"}, NewOutputProperties=new string[] {"ReferedBy"}, ChangeDescription="The types of the properties 'ReferedBy' will be changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'")]
1617
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector))]
1718
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets all the Azure Databricks Access Connectors within a resource group.")]
1819
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated]

generated/Databricks/Databricks.Autorest/generated/cmdlets/GetAzDatabricksAccessConnector_List1.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets
1313
/// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.Databricks/accessConnectors"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksAccessConnector_List1")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector", "15.0.0", "2.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"ReferedBy"}, NewOutputProperties=new string[] {"ReferedBy"}, ChangeDescription="The types of the properties 'ReferedBy' will be changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'")]
1617
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IAccessConnector))]
1718
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets all the Azure Databricks Access Connectors within a subscription.")]
1819
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated]

generated/Databricks/Databricks.Autorest/generated/cmdlets/GetAzDatabricksOutboundNetworkDependenciesEndpoint_List.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.Databricks.Cmdlets
1616
/// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/outboundNetworkDependenciesEndpoints"
1717
/// </remarks>
1818
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzDatabricksOutboundNetworkDependenciesEndpoint_List")]
19+
[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IOutboundEnvironmentEndpoint", "15.0.0", "2.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"Endpoint"}, NewOutputProperties=new string[] {"Endpoint"}, ChangeDescription="The types of the properties 'Endpoint' will be changed from 'Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IEndpointDependency' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.IEndpointDependency]'")]
1920
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.Databricks.Models.Api20240501.IOutboundEnvironmentEndpoint))]
2021
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Description(@"Gets the list of endpoints that VNET Injected Workspace calls Azure Databricks Control Plane. You must configure outbound access with these endpoints. For more information, see https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/udr")]
2122
[global::Microsoft.Azure.PowerShell.Cmdlets.Databricks.Generated]

0 commit comments

Comments
 (0)