Skip to content

Commit 81ca5d0

Browse files
committed
fix blocking issues
1 parent 47e88df commit 81ca5d0

9 files changed

+18
-18
lines changed

articles/service-connector/how-to-integrate-aiservices.md renamed to articles/service-connector/how-to-integrate-ai-services.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Integrate Azure AI Services with Service Connector
2+
title: Integrate Azure AI services with service connector
33
description: In this document, learn how to integrate Azure AI Services into your application with Service Connector
44
author: wchigit
55
ms.author: wchi
@@ -9,7 +9,7 @@ ms.date: 06/14/2024
99
ms.collection: ce-skilling-ai-copilot
1010
---
1111

12-
# Integrate Azure AI Services with Service Connector
12+
# Integrate Azure AI services with Service Connector
1313

1414
This page shows supported authentication methods and clients, and shows sample code you can use to connect Azure AI Services to other cloud services using Service Connector. You might still be able to connect to Azure AI Services using other methods. This page also shows default environment variable names and values you get when you create the service connection.
1515

@@ -51,7 +51,7 @@ Use the connection details below to connect compute services to Azure AI Service
5151

5252
#### Sample code
5353
Refer to the steps and code below to connect to Azure AI Services using a system-assigned managed identity.
54-
[!INCLUDE [code sample for app config](./includes/code-aiservices-me-id.md)]
54+
[!INCLUDE [code sample for app config](./includes/code-ai-services-microsoft-entra-id.md)]
5555

5656
### User-assigned managed identity
5757

@@ -64,7 +64,7 @@ Refer to the steps and code below to connect to Azure AI Services using a system
6464

6565
#### Sample code
6666
Refer to the steps and code below to connect to Azure AI Services using a user-assigned managed identity.
67-
[!INCLUDE [code sample for azure AI Services](./includes/code-aiservices-me-id.md)]
67+
[!INCLUDE [code sample for azure AI Services](./includes/code-ai-services-microsoft-entra-id.md)]
6868

6969
### Connection string
7070

@@ -78,7 +78,7 @@ Refer to the steps and code below to connect to Azure AI Services using a user-a
7878
7979
#### Sample Code
8080
Refer to the steps and code below to connect to Azure AI Services using a connection string.
81-
[!INCLUDE [code sample for azure AI Services](./includes/code-aiservices-secret.md)]
81+
[!INCLUDE [code sample for azure AI Services](./includes/code-ai-services-secret.md)]
8282

8383

8484
### Service principal
@@ -94,7 +94,7 @@ Refer to the steps and code below to connect to Azure AI Services using a connec
9494

9595
#### Sample code
9696
Refer to the steps and code below to connect to Azure AI Services using a service principaL.
97-
[!INCLUDE [code sample for azure AI Services](./includes/code-aiservices-me-id.md)]
97+
[!INCLUDE [code sample for azure AI Services](./includes/code-ai-services-microsoft-entra-id.md)]
9898

9999
## Next steps
100100

articles/service-connector/how-to-integrate-cognitive-services.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Integrate an Azure AI multi-service resource with Service Connector
2+
title: Integrate an Azure AI multi-service resource with service connector
33
description: In this document, learn how to integrate an Azure AI multi-service resource into your application with Service Connector
44
author: wchigit
55
ms.author: wchi
@@ -49,7 +49,7 @@ Use the connection details below to connect compute services to an Azure AI mult
4949

5050
#### Sample code
5151
Refer to the steps and code below to connect to an Azure AI multi-service resource using a system-assigned managed identity.
52-
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-me-id.md)]
52+
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
5353

5454
### User-assigned managed identity
5555

@@ -60,7 +60,7 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
6060

6161
#### Sample code
6262
Refer to the steps and code below to connect to an Azure AI multi-service resource using a user-assigned managed identity.
63-
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-me-id.md)]
63+
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
6464

6565
### Connection string
6666

@@ -86,7 +86,7 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
8686

8787
#### Sample code
8888
Refer to the steps and code below to connect to an Azure AI multi-service resource using a service principaL.
89-
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-me-id.md)]
89+
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
9090

9191
## Next steps
9292

articles/service-connector/how-to-integrate-openai.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Integrate Azure OpenAI Service with Service Connector
2+
title: Integrate Azure OpenAI Service with service connector
33
description: In this document, learn how to integrate Azure OpenAI Service into your application with Service Connector
44
author: wchigit
55
ms.author: wchi
@@ -49,7 +49,7 @@ Use the connection details below to connect compute services to Azure OpenAI Ser
4949

5050
#### Sample code
5151
Refer to the steps and code below to connect to Azure OpenAI Service using a system-assigned managed identity.
52-
[!INCLUDE [code sample for app config](./includes/code-openai-me-id.md)]
52+
[!INCLUDE [code sample for app config](./includes/code-openai-microsoft-entra-id.md)]
5353

5454
### User-assigned managed identity
5555

@@ -60,7 +60,7 @@ Refer to the steps and code below to connect to Azure OpenAI Service using a sys
6060

6161
#### Sample code
6262
Refer to the steps and code below to connect to Azure OpenAI Service using a user-assigned managed identity.
63-
[!INCLUDE [code sample for azure openai service](./includes/code-openai-me-id.md)]
63+
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
6464

6565
### Connection string
6666

@@ -86,7 +86,7 @@ Refer to the steps and code below to connect to Azure OpenAI Service using a con
8686

8787
#### Sample code
8888
Refer to the steps and code below to connect to Azure OpenAI Service using a service principaL.
89-
[!INCLUDE [code sample for azure openai service](./includes/code-openai-me-id.md)]
89+
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
9090

9191
## Next steps
9292

File renamed without changes.
File renamed without changes.
File renamed without changes.

articles/service-connector/includes/code-queue-me-id.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ms.author: wchi
8686
```
8787
8888
### [SpringBoot](#tab/springBoot)
89-
The authentication type is not supported by Spring Boot client type.
89+
Spring Boot client type doesn't support the authentication type.
9090
9191
### [Python](#tab/python)
9292
1. Install dependencies.

articles/service-connector/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ items:
138138
href: how-to-troubleshoot-front-end-error.md
139139
- name: Samples
140140
items:
141-
- name: Azure AI Services
142-
href: how-to-integrate-aiservices.md
141+
- name: Azure AI services
142+
href: how-to-integrate-ai-services.md
143143
- name: Azure App Configuration
144144
href: how-to-integrate-app-configuration.md
145145
- name: Azure Blob Storage
@@ -166,7 +166,7 @@ items:
166166
href: how-to-integrate-storage-file.md
167167
- name: Azure Key Vault
168168
href: how-to-integrate-key-vault.md
169-
- name: Azure Multi-service Cognitive Services
169+
- name: Azure multi-service Cognitive Services
170170
href: how-to-integrate-cognitive-services.md
171171
- name: Azure OpenAI
172172
href: how-to-integrate-openai.md

0 commit comments

Comments
 (0)