Skip to content

Commit fb61d72

Browse files
authored
Merge pull request #307471 from MicrosoftDocs/main
[Publishing] [Out of Band Publish] <azure-docs-pr> - 10/28 - 13:30
2 parents b5f0cf0 + 4253f01 commit fb61d72

191 files changed

Lines changed: 4560 additions & 4440 deletions

File tree

Some content is hidden

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

.openpublishing.redirection.json

Lines changed: 1947 additions & 3856 deletions
Large diffs are not rendered by default.

articles/api-management/service-limits.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn about service limits in Azure API Management, including their
44
author: dlepow
55
ms.service: azure-api-management
66
ms.topic: concept-article
7-
ms.date: 09/09/2025
7+
ms.date: 10/22/2025
88
ms.author: danlep
99
ai-usage: ai-assisted
1010
---
@@ -27,7 +27,9 @@ Resource limits are interrelated and tuned to work together. They prevent any si
2727

2828
## Changes to service limits in Classic tiers
2929

30-
Starting in November 2025, Azure API Management is updating the service limits in the Classic (Developer, Basic, Standard, and Premium) and Consumption tiers to better reflect the capabilities of the service and help customers make decisions when choosing an API Management tier for their needs. Limits for Classic tiers are published [here](/azure/azure-resource-manager/management/azure-subscription-service-limits?toc=%2Fazure%2Fapi-management%2Ftoc.json&bc=%2Fazure%2Fapi-management%2Fbreadcrumb%2Ftoc.json#limits---api-management-classic-tiers).
30+
Starting March 2026, Azure API Management will apply updated limits to instances in the Classic tiers (Developer, Basic, Standard, and Premium) and the Consumption tier. These updates align with each tier’s capabilities and help customers choose the right option for their needs.
31+
32+
Current limits for Classic tiers are published [here](/azure/azure-resource-manager/management/azure-subscription-service-limits?toc=%2Fazure%2Fapi-management%2Ftoc.json&bc=%2Fazure%2Fapi-management%2Fbreadcrumb%2Ftoc.json#limits---api-management-classic-tiers). By March 2026, the scope of entities with limits could be reduced.
3133

3234
### What's changing
3335

@@ -55,7 +57,7 @@ If you're approaching or have reached certain resource limits, consider these st
5557

5658
### Optimize API and operation organization
5759

58-
When counting the number of APIs and API-related resource (such as API operations, backends, tags, and so on), API Management also includes API versions and revisions. Consider the following strategies when approaching limits for these resources:
60+
When counting the number of APIs and API-related resources (such as API operations, backends, tags, and so on), API Management also includes API versions and revisions. Consider the following strategies when approaching limits for these resources:
5961

6062
* Remove unused API versions or revisions
6163
* Consolidate or remove operations where appropriate
@@ -73,10 +75,9 @@ If you're consistently hitting resource limits, it may be worth evaluating your
7375

7476
In some cases, you may want to request an increase to certain service limits. Before doing so, note the following guidelines:
7577

78+
* Explore strategies to address the issue proactively before requesting a limit increase. See the preceding [Strategies to manage resources](#strategies-to-manage-resources) section for more information.
7679

77-
* Explore strategies to address the issue proactively before requesting a limit increase. See the [Strategies to manage resources](#strategies-to-manage-resources) section for more information.
78-
79-
* Consider potential impacts of the limit increase on overall service performance and stability. Increasing a limit might affect service capacity or cause increased latency in some service operations.
80+
* Consider potential impacts of the limit increase on overall service performance and stability. Increasing a limit might affect your service's capacity or cause increased latency in some service operations.
8081

8182
### Requesting a limit increase
8283

articles/azure-functions/functions-how-to-azure-devops.md

Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Choose your task version at the top of the article.
4040
* If you plan to use GitHub instead of Azure Repos, you also need a GitHub repository. If you don't have a GitHub account, you can [create one for free](https://github.com).
4141

4242
* An existing function app in Azure that has its source code in a supported repository. If you don't yet have an Azure Functions code project, you can create one by completing the following language-specific article:
43+
4344
### [C\#](#tab/csharp)
4445

4546
[Quickstart: Create a C# function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-csharp)
@@ -56,9 +57,13 @@ Choose your task version at the top of the article.
5657

5758
[Quickstart: Create a PowerShell function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-powershell)
5859

60+
### [Java](#tab/java)
61+
62+
[Quickstart: Create a Java function in Azure using Visual Studio Code](how-to-create-function-vs-code.md?pivot=programming-language-java)
63+
5964
---
6065

61-
Remember to upload the local code project to your GitHub or Azure Repos repository after you publish it to your function app.
66+
Remember to upload the local code project to your GitHub or Azure Repos repository after you publish it to your function app.
6267

6368
## Build your app
6469

@@ -74,6 +79,7 @@ Choose your task version at the top of the article.
7479
### Example YAML build pipelines
7580

7681
The following language-specific pipelines can be used for building apps.
82+
7783
#### [C\#](#tab/csharp)
7884

7985
You can use the following sample to create a YAML file to build a .NET app:
@@ -190,6 +196,39 @@ steps:
190196
PathtoPublish: '$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip'
191197
artifactName: 'drop'
192198
```
199+
#### [Java](#tab/java)
200+
201+
You can use the following sample to create a YAML file to build a Java app:
202+
203+
```yaml
204+
pool:
205+
vmImage: 'ubuntu-latest'
206+
steps:
207+
- task: JavaToolInstaller@0
208+
displayName: 'Install Java 17'
209+
inputs:
210+
versionSpec: '17'
211+
jdkArchitectureOption: 'x64'
212+
jdkSourceOption: 'PreInstalled'
213+
- task: Maven@3
214+
displayName: 'Build with Maven'
215+
inputs:
216+
mavenPomFile: 'pom.xml'
217+
goals: 'clean package'
218+
options: '-DskipTests=true'
219+
publishJUnitResults: false
220+
- task: ArchiveFiles@2
221+
displayName: "Archive files"
222+
inputs:
223+
rootFolderOrFile: "$(System.DefaultWorkingDirectory)/target"
224+
includeRootFolder: false
225+
archiveFile: "$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip"
226+
- task: PublishBuildArtifacts@1
227+
inputs:
228+
PathtoPublish: '$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip'
229+
artifactName: 'drop'
230+
```
231+
193232
---
194233
195234
::: zone-end
@@ -324,6 +363,37 @@ steps:
324363
PathtoPublish: '$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip'
325364
artifactName: 'drop'
326365
```
366+
#### [Java](#tab/java)
367+
368+
```yaml
369+
pool:
370+
vmImage: 'ubuntu-latest'
371+
steps:
372+
- task: JavaToolInstaller@0
373+
displayName: 'Install Java 17'
374+
inputs:
375+
versionSpec: '17'
376+
jdkArchitectureOption: 'x64'
377+
jdkSourceOption: 'PreInstalled'
378+
- task: Maven@3
379+
displayName: 'Build with Maven'
380+
inputs:
381+
mavenPomFile: 'pom.xml'
382+
goals: 'clean package'
383+
options: '-DskipTests=true'
384+
publishJUnitResults: false
385+
- task: ArchiveFiles@2
386+
displayName: "Archive files"
387+
inputs:
388+
rootFolderOrFile: "$(System.DefaultWorkingDirectory)/target"
389+
includeRootFolder: false
390+
archiveFile: "$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip"
391+
- task: PublishBuildArtifacts@1
392+
inputs:
393+
PathtoPublish: '$(System.DefaultWorkingDirectory)/build$(Build.BuildId).zip'
394+
artifactName: 'drop'
395+
```
396+
327397
---
328398
329399
::: zone-end

articles/cloud-services-extended-support/available-sizes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Available sizes for Azure Cloud Services (extended support)
33
description: Available sizes for Azure Cloud Services (extended support) deployments
44
ms.topic: concept-article
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

articles/cloud-services-extended-support/certificates-and-key-vault.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Store and use certificates in Azure Cloud Services (extended support)
33
description: Processes for storing and using certificates in Azure Cloud Services (extended support)
44
ms.topic: how-to
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

articles/cloud-services-extended-support/cloud-services-model-and-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: What is the Azure Cloud Service (extended support) model and package
33
description: Describes the cloud service (extended support) model (.csdef, .cscfg) and package (.cspkg) in Azure
44
ms.topic: concept-article
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

articles/cloud-services-extended-support/configure-scaling.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
title: Configure scaling for Azure Cloud Services (extended support)
33
description: How to enable scaling options for Azure Cloud Services (extended support)
44
ms.topic: how-to
5-
ms.service: azure-cloud-services-extended-support
6-
ms.subservice: autoscale
5+
ms.service: azure-virtual-machines
76
author: gachandw
87
ms.author: gachandw
98
ms.reviewer: mimckitt

articles/cloud-services-extended-support/deploy-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Deploy Azure Cloud Services (extended support) - Azure portal
33
description: Deploy Azure Cloud Services (extended support) by using the Azure portal.
44
ms.topic: quickstart
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

articles/cloud-services-extended-support/deploy-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Deploy Azure Cloud Services (extended support) - Azure PowerShell
33
description: Deploy Azure Cloud Services (extended support) by using Azure PowerShell.
44
ms.topic: quickstart
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

articles/cloud-services-extended-support/deploy-prerequisite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Prerequisites for deploying Cloud Services (extended support)
33
description: Learn about the prerequisites for deploying Azure Cloud Services (extended support).
44
ms.topic: concept-article
5-
ms.service: azure-cloud-services-extended-support
5+
ms.service: azure-virtual-machines
66
author: gachandw
77
ms.author: gachandw
88
ms.reviewer: mimckitt

0 commit comments

Comments
 (0)