Skip to content

Commit 1315829

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/azure-docs-pr (branch live)
2 parents 22191e2 + 78f8444 commit 1315829

40 files changed

Lines changed: 123 additions & 217 deletions

File tree

articles/azure-functions/functions-bindings-openai-assistantpost-input.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ This example demonstrates the creation process, where the HTTP POST function tha
4949
This example demonstrates the creation process, where the HTTP POST function that sends user prompts to the assistant chat bot. The response to the prompt is returned in the HTTP response.
5050
::: zone-end
5151
::: zone pivot="programming-language-javascript"
52-
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/javascript/src/functions/assistantApis.js" range="4-5,36-60":::
52+
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/javascript/src/functions/assistantApis.js" range="4-5,36-61":::
5353

5454
::: zone-end
5555
::: zone pivot="programming-language-typescript"
5656

57-
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="4-5,36-60":::
57+
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="4-5,36-61":::
5858

5959
::: zone-end
6060
::: zone pivot="programming-language-powershell"
@@ -73,7 +73,7 @@ For more information about *function.json* file properties, see the [Configurati
7373
::: zone pivot="programming-language-python"
7474
This example demonstrates the creation process, where the HTTP POST function that sends user prompts to the assistant chat bot. The response to the prompt is returned in the HTTP response.
7575

76-
:::code language="python" source="~/functions-openai-extension/samples/assistant/python/assistant_apis.py" range="34-52":::
76+
:::code language="python" source="~/functions-openai-extension/samples/assistant/python/assistant_apis.py" range="34-53":::
7777

7878
::: zone-end
7979
<!--- End code examples section -->

articles/azure-functions/functions-bindings-openai-assistantquery-input.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ This example demonstrates the creation process, where the HTTP GET function that
5252
::: zone-end
5353
::: zone pivot="programming-language-javascript"
5454

55-
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/javascript/src/functions/assistantApis.js" range="4-5,63-79":::
55+
:::code language="javascript" source="~/functions-openai-extension/samples/assistant/javascript/src/functions/assistantApis.js" range="4-5,64-80":::
5656

5757
::: zone-end
5858
::: zone pivot="programming-language-typescript"
5959

6060
This example demonstrates the creation process, where the HTTP GET function that queries the conversation history of the assistant chat bot. The response to the prompt is returned in the HTTP response.
6161

62-
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="4-5,63-79":::
62+
:::code language="typescript" source="~/functions-openai-extension/samples/assistant/typescript/src/functions/assistantApis.ts" range="4-5,64-80":::
6363

6464
::: zone-end
6565
::: zone pivot="programming-language-powershell"
@@ -78,7 +78,7 @@ For more information about *function.json* file properties, see the [Configurati
7878
::: zone pivot="programming-language-python"
7979
This example demonstrates the creation process, where the HTTP GET function that queries the conversation history of the assistant chat bot. The response to the prompt is returned in the HTTP response.
8080

81-
:::code language="python" source="~/functions-openai-extension/samples/assistant/python/assistant_apis.py" range="55-65":::
81+
:::code language="python" source="~/functions-openai-extension/samples/assistant/python/assistant_apis.py" range="56-66":::
8282

8383
::: zone-end
8484
<!--- End code examples section -->

articles/azure-functions/functions-bindings-openai-embeddings-input.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,25 +57,25 @@ This example shows how to generate embeddings for a raw text string.
5757
::: zone-end
5858
::: zone pivot="programming-language-javascript"
5959

60-
:::code language="javascript" source="~/functions-openai-extension/samples/embeddings/javascript/src/app.js" range="3-27":::
60+
:::code language="javascript" source="~/functions-openai-extension/samples/embeddings/javascript/src/app.js" range="3-28":::
6161

6262
::: zone-end
6363
::: zone pivot="programming-language-typescript"
6464

65-
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="3-31":::
65+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="3-32":::
6666

6767
::: zone-end
6868
::: zone pivot="programming-language-javascript,programming-language-typescript"
6969
This example shows how to generate embeddings for a raw text string.
7070
::: zone-end
7171
::: zone pivot="programming-language-javascript"
7272

73-
:::code language="javascript" source="~/functions-openai-extension/samples/embeddings/javascript/src/app.js" range="29-54":::
73+
:::code language="javascript" source="~/functions-openai-extension/samples/embeddings/javascript/src/app.js" range="29-56":::
7474

7575
::: zone-end
7676
::: zone pivot="programming-language-typescript"
7777

78-
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="33-62":::
78+
:::code language="typescript" source="~/functions-openai-extension/samples/embeddings/typescript/src/app.ts" range="33-64":::
7979

8080
::: zone-end
8181
::: zone pivot="programming-language-powershell"
@@ -92,7 +92,7 @@ For more information about *function.json* file properties, see the [Configurati
9292
::: zone pivot="programming-language-python"
9393
This example shows how to generate embeddings for a raw text string.
9494

95-
:::code language="python" source="~/functions-openai-extension/samples/embeddings/python/function_app.py" range="8-27":::
95+
:::code language="python" source="~/functions-openai-extension/samples/embeddings/python/function_app.py" range="8-28":::
9696

9797
::: zone-end
9898
<!--- End code examples section -->

articles/azure-functions/functions-bindings-openai-embeddingsstore-output.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ This example writes an HTTP input stream to a semantic document store at the pro
4949
::: zone-end
5050
::: zone pivot="programming-language-javascript"
5151

52-
:::code language="javascript" source="~/functions-openai-extension/samples/rag-aisearch/javascript/src/app.js" range="5-37":::
52+
:::code language="javascript" source="~/functions-openai-extension/samples/rag-aisearch/javascript/src/app.js" range="5-38":::
5353

5454
::: zone-end
5555
::: zone pivot="programming-language-typescript"
5656

57-
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/typescript/src/app.ts" range="4-40":::
57+
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/typescript/src/app.ts" range="4-41":::
5858

5959
::: zone-end
6060
::: zone pivot="programming-language-powershell"
@@ -72,7 +72,7 @@ For more information about *function.json* file properties, see the [Configurati
7272
::: zone pivot="programming-language-python"
7373
This example writes an HTTP input stream to a semantic document store at the provided URL.
7474

75-
:::code language="python" source="~/functions-openai-extension/samples/rag-aisearch/python/function_app.py" range="8-35":::
75+
:::code language="python" source="~/functions-openai-extension/samples/rag-aisearch/python/function_app.py" range="8-36":::
7676

7777
::: zone-end
7878
<!--- End code examples section -->

articles/azure-functions/functions-bindings-openai-semanticsearch-input.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Go support isn't currently available for this binding.
3434
::: zone pivot="programming-language-csharp"
3535
This example shows how to perform a semantic search on a file.
3636

37-
:::code language="csharp" source="~/functions-openai-extension/samples/rag-aisearch/csharp-ooproc/FilePrompt.cs" range="76-82":::
37+
:::code language="csharp" source="~/functions-openai-extension/samples/rag-aisearch/csharp-ooproc/FilePrompt.cs" range="77-83":::
3838

3939
::: zone-end
4040
::: zone pivot="programming-language-java"
@@ -48,12 +48,12 @@ This example shows how to perform a semantic search on a file.
4848
::: zone-end
4949
::: zone pivot="programming-language-javascript"
5050

51-
:::code language="javascript" source="~/functions-openai-extension/samples/rag-aisearch/javascript/src/app.js" range="39-57":::
51+
:::code language="javascript" source="~/functions-openai-extension/samples/rag-aisearch/javascript/src/app.js" range="40-59":::
5252

5353
::: zone-end
5454
::: zone pivot="programming-language-typescript"
5555

56-
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/typescript/src/app.ts" range="42-60":::
56+
:::code language="typescript" source="~/functions-openai-extension/samples/rag-aisearch/typescript/src/app.ts" range="43-62":::
5757

5858
::: zone-end
5959
::: zone pivot="programming-language-powershell"
@@ -73,7 +73,7 @@ For more information about *function.json* file properties, see the [Configurati
7373
::: zone pivot="programming-language-python"
7474

7575
This example shows how to perform a semantic search on a file.
76-
:::code language="python" source="~/functions-openai-extension/samples/rag-aisearch/python/function_app.py" range="38-56":::
76+
:::code language="python" source="~/functions-openai-extension/samples/rag-aisearch/python/function_app.py" range="39-58":::
7777

7878
::: zone-end
7979
<!--- End code examples section -->

articles/azure-functions/functions-bindings-openai-textcompletion-input.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ The code simply returns the text from the completion API as the response:
8383
::: zone pivot="programming-language-python"
8484
This example demonstrates the _templating_ pattern, where the HTTP trigger function takes a `name` parameter and embeds it into a text prompt, which is then sent to the Azure OpenAI completions API by the extension. The response to the prompt is returned in the HTTP response.
8585

86-
:::code language="python" source="~/functions-openai-extension/samples/textcompletion/python/function_app.py" range="7-16" :::
86+
:::code language="python" source="~/functions-openai-extension/samples/textcompletion/python/function_app.py" range="7-17" :::
8787

8888
This example takes a prompt as input, sends it directly to the completions API, and returns the response as the output.
8989

90-
:::code language="python" source="~/functions-openai-extension/samples/textcompletion/python/function_app.py" range="19-30" :::
90+
:::code language="python" source="~/functions-openai-extension/samples/textcompletion/python/function_app.py" range="19-32" :::
9191

9292
::: zone-end
9393
<!--- End code examples section -->

articles/azure-vmware/ecosystem-disaster-recovery-vms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can find more information about their solutions in the following links:
3030
| Supported Version in Azure VMware Solution Gen 1 | Supported Version in Azure VMware Solution Gen 2 | Links | Support |
3131
|-------------------------------------------|-------------------------------------------|------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|
3232
| VMware Live Site Recovery 9.0.2.1 | VMware Live Site Recovery 9.0.2.1 | [Deploy VMware Live Site Recovery](/azure/azure-vmware/disaster-recovery-using-vmware-site-recovery-manager) | Azure VMware Solution owns only install, Uninstall & Upgrade of Live Site Recovery. Customers should create Broadcom support tickets for all other areas. |
33-
| Zerto 10.8 GA| Zerto 10.9 *preview | [Deploying Zerto on Azure VMware Solution](https://help.zerto.com/category/AVS) | All Zerto related issues and RunCommand errors, Customers are requested to reach [Zerto Support](https://www.zerto.com/myzerto/support/create-case/
33+
| Zerto 10.9 VAIO only GA| Zerto 10.9 VAIO *preview | [Deploying Zerto on Azure VMware Solution](https://help.zerto.com/category/AVS) | All Zerto related issues and RunCommand errors, customers are requested to reach [Zerto Support](https://www.zerto.com/myzerto/support/create-case/
3434
| JetStream version: 5.0 GA | JetStream version: 5.0 GA | [Deploy JetStream](https://www.jetstreamsoft.com/2020/09/28/disaster-recovery-for-avs/) | All support—including install, uninstall, upgrade, configuration, replication—is handled by the JetStream support team. Contact [JetStream Support](https://jetstreamsoft.com/about/contact/). |
3535
|Veeam Backup & Replication 12 for VCD Azure VMware Solution |Timeline - TBD | [Veeam Backup for VMware Cloud Director on Azure VMware Solution](https://helpcenter.veeam.com/docs/backup/vsphere/vcloud_director_backup.html?ver=120) |Veeam Backup and Recovery solution for Azure VMware Solution supports VMware Cloud Director multi-tenancy|
3636
|Refer to Backup Recovery Partner Compatibility Guidance |Refer to Backup Recovery Partner Compatibility Guidance | [Backup solutions for Azure VMware Solution VMs](/azure/azure-vmware/ecosystem-back-up-vms) | Kindly reach out to the Backup and Recovery Product team for all support cases. |
@@ -46,11 +46,11 @@ Customers aren't permitted to open Microsoft support tickets for partner product
4646
| Solution | Limitations / Unsupported Features |
4747
|---------------------|------------------------------------------------------------------------------------------------------------------------------|
4848
| **VMware Live Site Recovery** | Array-based replication and storage policy protection groups <br>VCDR on Azure VMware Solution is not supported.<br> VMware vVOLs Protection Groups<br> VMware SRM IP customization using SRM command-line tools <br> Shared Site Recovery (One-to-Many and Many-to-One topologies) <br> Custom VMware SRM plug-in identifier or extension ID <br> Encrypted VMs unsupported <br> Azure VMware Solution-Live Site Recovery currently supports vSAN datastores. Support for external datastores is under testing.<br> Currently, vSAN Data Protection is unsupported|
49-
| **Zerto on Azure VMware Solution** | Zerto supports version 10.9 VAIO onwards [z-driver based solution is unsupported]<br>DNS and network configuration changes for Zerto Virtual Machine aren't supported after installation.<br> SSH or web console access for ZVML Virtual machine is restricted.<br> Service account credentials aren't shared with customers<br> A minimum of four hosts per cluster is required.<br> Backup and Snapshot features are unavailable for ZVML VM. <br> Customers are advised to coordinate directly with Zerto for timelines any fixes<br> Stretched cluster is not supported<br> Installation of the VRA and VM protection on Cluster#1 in Azure VMware Solution Gen 2 is not supported in the preview release |
49+
| **Zerto on Azure VMware Solution** | Zerto supports version 10.9 VAIO onwards [z-driver based solution is unsupported]<br>DNS and network configuration changes for Zerto Virtual Machine aren't supported after installation.<br> SSH or web console access for ZVML Virtual machine is restricted.<br> Service account credentials aren't shared with customers<br> A minimum of four hosts per cluster is required.<br> Backup and Snapshot features are unavailable for ZVML VM. <br> Customers are advised to coordinate directly with Zerto for timelines any fixes<br> Stretched cluster isn't supported<br> Installation of the VRA and VM protection on Cluster #1 in Azure VMware Solution Gen2 isn't supported in the current preview release. |
5050
| **JetStream on Azure VMware Solution**| Requires a minimum of four hosts per cluster for upgrade |
5151
| **Backup and Recovery Partners**|[Azure VMware Solution third Party BCDR](/azure/azure-vmware/ecosystem-back-up-vms) was tested with the CloudAdmin role. Azure VMware Solution can't provide more than [Cloud admin permissions](/azure/azure-vmware/architecture-identity). For further support, Contact the respective BCDR partners directly|
5252

5353

5454

5555

56-
Last Updated: **June 2026** – Updated monthly with the latest information. Visit Partner onboarding sites for timelines and details. Partners keep their products up to date.
56+
Last Updated: **July 2026** – Updated monthly with the latest information. Visit Partner onboarding sites for timelines and details. Partners keep their products up to date.

articles/cost-management-billing/enterprise-agreement-faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
author: hkrupani1
77
ms.reviewer: shapathak
88
ms.service: cost-management-billing
9-
ms.subservice: enterprise
9+
ms.subservice: enterprise-agreement
1010
ms.topic: faq
1111
ms.date: 12/05/2025
1212
ms.author: shapathak

articles/cost-management-billing/manage/assign-roles-azure-service-principals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: This article helps you assign EA roles to service principals by usi
44
author: prashantsaini4
55
ms.reviewer: prsaini
66
ms.service: cost-management-billing
7-
ms.subservice: enterprise
7+
ms.subservice: enterprise-agreement
88
ms.topic: how-to
99
ms.date: 12/12/2025
1010
ms.author: prsaini

articles/cost-management-billing/manage/direct-ea-administration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: prsaini
66
ms.date: 04/21/2026
77
ms.topic: how-to
88
ms.service: cost-management-billing
9-
ms.subservice: enterprise
9+
ms.subservice: enterprise-agreement
1010
ms.reviewer: prsaini
1111
ms.custom:
1212
- sfi-image-nochange

0 commit comments

Comments
 (0)