Skip to content

Commit dbe9ee4

Browse files
Merge pull request #259616 from v-thepet/acs4
[BULK] Spell out ACS acronym #4
2 parents 2f4a94a + c6264b8 commit dbe9ee4

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

articles/communication-services/how-tos/call-automation/includes/play-audio-with-ai-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If you would like to use Text-To-Speech capabilities, then it's required for you
4848
By this point you should be familiar with starting calls, if you need to learn more about making a call, follow our [quickstart](../../../quickstarts/call-automation/callflows-for-customer-interactions.md). In this quickstart, we answer an incoming call.
4949

5050
``` csharp
51-
var callAutomationClient = new CallAutomationClient("<ACS connection string>");
51+
var callAutomationClient = new CallAutomationClient("<Azure Communication Services connection string>");
5252

5353
var answerCallOptions = new AnswerCallOptions("<Incoming call context once call is connected>", new Uri("<https://sample-callback-uri>"))
5454
{

articles/communication-services/how-tos/call-automation/includes/recognize-ai-action-how-to-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ During the preview phase, the NuGet package can be obtained by configuring your
6262
By this point you should be familiar with starting calls, if you need to learn more about how to start a call view our [quickstart](../../../quickstarts/call-automation/callflows-for-customer-interactions.md). In this instance, we'll answer an incoming call.
6363

6464
``` csharp
65-
var callAutomationClient = new CallAutomationClient("<ACS connection string>");
65+
var callAutomationClient = new CallAutomationClient("<Azure Communication Services connection string>");
6666

6767
var answerCallOptions = new AnswerCallOptions("<Incoming call context once call is connected>", new Uri("<https://sample-callback-uri>"))
6868
{

articles/communication-services/quickstarts/voice-video-calling/includes/video-calling/video-calling-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ namespace CallingQuickstart
139139
{
140140
public sealed partial class MainPage : Page
141141
{
142-
private const string authToken = "<ACS auth token>";
142+
private const string authToken = "<Azure Communication Services auth token>";
143143

144144
private CallClient callClient;
145145
private CallTokenRefreshOptions callTokenRefreshOptions;

articles/communication-services/samples/call-automation-ai.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ In this sample, we'll cover off what this sample does and what you need as pre-r
2323

2424

2525
::: zone pivot="programming-language-csharp"
26-
[!INCLUDE [ACS Call Automation OpenAI C# sample](./includes/call-automation-ai-csharp.md)]
26+
[!INCLUDE [Azure Communication Services Call Automation OpenAI C# sample](./includes/call-automation-ai-csharp.md)]
2727
::: zone-end
2828

2929
::: zone pivot="programming-language-java"
30-
[!INCLUDE [ACS Call Automation OpenAI java sample](./includes/call-automation-ai-java.md)]
30+
[!INCLUDE [Azure Communication Services Call Automation OpenAI java sample](./includes/call-automation-ai-java.md)]
3131
::: zone-end

articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ function App() {
101101
/**
102102
* Token for local user.
103103
*/
104-
const token = "<Enter your ACS token here>";
104+
const token = "<Enter your Azure Communication Services token here>";
105105

106106
/**
107107
* User identifier for local user.
108108
*/
109109
const userId: CommunicationIdentifier = {
110-
communicationUserId: "<Enter your ACS ID here>",
110+
communicationUserId: "<Enter your Azure Communication Services ID here>",
111111
};
112112

113113
/**

articles/communication-services/tutorials/includes/url-shortener-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Once the Azure Function is set up, go to the `local.settings.json` file and add
4242
"Values": {
4343
"AzureWebJobsStorage": "",
4444
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
45-
"ACS_CONNECTIONSTRING": "<ACS CONNECTION STRING>",
46-
"ACS_PHONE_NUMBER": "<ACS PHONE NUMBER>",
45+
"ACS_CONNECTIONSTRING": "<AZURE COMMUNICATION SERVICES CONNECTION STRING>",
46+
"ACS_PHONE_NUMBER": "<AZURE COMMUNICATION SERVICES PHONE NUMBER>",
4747
"URL_SHORTENER": "<URL SHORTENER ENDPOINT>"
4848
}
4949
}

articles/communication-services/tutorials/includes/url-shortener-js.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Once the Azure Function is set up, go to the `local.settings.json` file and add
4242
"Values": {
4343
"AzureWebJobsStorage": "",
4444
"FUNCTIONS_WORKER_RUNTIME": "node",
45-
"ACS_CONNECTIONSTRING": "<ACS CONNECTION STRING>",
46-
"ACS_PHONE_NUMBER": "<ACS PHONE NUMBER>",
45+
"ACS_CONNECTIONSTRING": "<AZURE COMMUNICATION SERVICES CONNECTION STRING>",
46+
"ACS_PHONE_NUMBER": "<AZURE COMMUNICATION SERVICES PHONE NUMBER>",
4747
"URL_SHORTENER": "<URL SHORTENER ENDPOINT>"
4848
}
4949
}

articles/event-grid/communication-services-telephony-sms-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This section contains an example of what that data would look like for each even
6969
"MessageId": "Incoming_20200918002745d29ebbea-3341-4466-9690-0a03af35228e",
7070
"From": "15555555555",
7171
"To": "15555555555",
72-
"Message": "Great to connect with ACS events",
72+
"Message": "Great to connect with Azure Communication Services events",
7373
"ReceivedTimestamp": "2020-09-18T00:27:45.32Z"
7474
},
7575
"eventType": "Microsoft.Communication.SMSReceived",

0 commit comments

Comments
 (0)