Skip to content

Commit 811b907

Browse files
author
Wolfgang Manousek
committed
update reference to Region identifier in the regions.md page
1 parent 584feea commit 811b907

File tree

40 files changed

+42
-65
lines changed

40 files changed

+42
-65
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/cpp/linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Before you get started, make sure to:
3030

3131
1. In this new file, replace the string `YourSubscriptionKey` with your Speech service subscription key.
3232

33-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
33+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3434

3535
1. Replace the string `whatstheweatherlike.wav` with your own filename.
3636

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/cpp/macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Before you get started, make sure to:
3030

3131
1. In this new file, replace the string `YourSubscriptionKey` with your Speech service subscription key.
3232

33-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
33+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3434

3535
1. Replace the string `whatstheweatherlike.wav` with your own filename.
3636

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/cpp/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Before you get started, make sure to:
3232

3333
1. In the same file, replace the string `YourSubscriptionKey` with your subscription key.
3434

35-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
35+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3636

3737
1. Replace the string `whatstheweatherlike.wav` with your own filename.
3838

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/csharp/dotnet.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ Before you can initialize a `SpeechRecognizer` object, you need to create a conf
7070
> The Speech SDK will default to recognizing using en-us for the language, see [Specify source language for speech to text](../../../../how-to-specify-source-language.md) for information on choosing the source language.
7171
7272
```csharp
73-
// Replace with your own subscription key and service region (e.g., "westus", use the one of SpeechSDKParameters
74-
// from here: https://aka.ms/speech/sdkregion).
73+
// Replace with your own subscription key and region identifier from here: https://aka.ms/speech/sdkregion
7574
var config = SpeechConfig.FromSubscription("YourSubscriptionKey", "YourServiceRegion");
7675
```
7776

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/java/jre.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ ms.author: erhopf
4444
// Replace below with your own subscription key
4545
String speechSubscriptionKey = "YourSubscriptionKey";
4646

47-
// Replace with your own subscription key and service region (e.g., "westus", use the one of SpeechSDKParameters
48-
// from here: https://aka.ms/speech/sdkregion).
47+
// Replace with your own subscription key and region identifier from here: https://aka.ms/speech/sdkregion
4948
String serviceRegion = "YourServiceRegion";
5049

5150
// Replace below with your own filename.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/python/python.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ Or you can download this quickstart tutorial as a [Jupyter](https://jupyter.org)
5252
import azure.cognitiveservices.speech as speechsdk
5353

5454
# Creates an instance of a speech config with specified subscription key and service region.
55-
# Replace with your own subscription key and service region (e.g., "westus", use the one of SpeechSDKParameters
56-
# from here: https://aka.ms/speech/sdkregion).
55+
# Replace with your own subscription key and region identifier from here: https://aka.ms/speech/sdkregion
5756
speech_key, service_region = "YourSubscriptionKey", "YourServiceRegion"
5857
speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region)
5958

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/cpp/linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Before you get started:
2929

3030
1. In this new file, replace the string `YourSubscriptionKey` with your Speech service subscription key.
3131

32-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
32+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3333

3434
> [!NOTE]
3535
> The Speech SDK will default to recognizing using en-us for the language, see [Specify source language for speech to text](../../../../how-to-specify-source-language.md) for information on choosing the source language.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/cpp/macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Before you get started:
2929

3030
1. In this new file, replace the string `YourSubscriptionKey` with your Speech service subscription key.
3131

32-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
32+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3333

3434
> [!NOTE]
3535
> The Speech SDK will default to recognizing using en-us for the language, see [Specify source language for speech to text](../../../../how-to-specify-source-language.md) for information on choosing the source language.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/cpp/windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Before you get started:
3232

3333
1. In the same file, replace the string `YourSubscriptionKey` with your subscription key.
3434

35-
1. Replace the string `YourServiceRegion` with the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
35+
1. Replace the string `YourServiceRegion` with the **Region identifier** from [region](https://aka.ms/speech/sdkregion) associated with your subscription (for example, `westus` for the free trial subscription).
3636

3737
1. From the menu bar, choose **File** > **Save All**.
3838

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/csharp/dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Let's add some code that works as a skeleton for our project. Make note that you
3535

3636
## Create a Speech configuration
3737

38-
Before you can initialize a `SpeechRecognizer` object, you need to create a configuration that uses your subscription key and subscription region (choose the "Speech SDK Parameter" from [region](https://aka.ms/speech/sdkregion). Insert this code in the `RecognizeSpeechAsync()` method.
38+
Before you can initialize a `SpeechRecognizer` object, you need to create a configuration that uses your subscription key and subscription region (choose the **Region identifier** from [region](https://aka.ms/speech/sdkregion). Insert this code in the `RecognizeSpeechAsync()` method.
3939

4040
> [!NOTE]
4141
> This sample uses the `FromSubscription()` method to build the `SpeechConfig`. For a full list of available methods, see [SpeechConfig Class](https://docs.microsoft.com/dotnet/api/microsoft.cognitiveservices.speech.speechconfig?view=azure-dotnet).

0 commit comments

Comments
 (0)