Skip to content

Commit da45dee

Browse files
author
Jill Grant
authored
Merge pull request #256137 from Saisang/sai-removeacronymACS-3
Bulk replace eacronym word ACS with Azure Communication Services 231025-3
2 parents 665d9f6 + 9f700b7 commit da45dee

20 files changed

Lines changed: 45 additions & 45 deletions

articles/communication-services/how-tos/call-automation/actions-for-call-control.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To place a call to a Communication Services user, you need to provide a Communic
6464

6565
```csharp
6666
Uri callbackUri = new Uri("https://<myendpoint>/Events"); //the callback endpoint where you want to receive subsequent events
67-
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
67+
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
6868
var callThisPerson = new CallInvite(new PhoneNumberIdentifier("+16041234567"), callerIdNumber); // person to call
6969
CreateCallResult response = await client.CreateCallAsync(callThisPerson, callbackUri);
7070
```
@@ -73,7 +73,7 @@ CreateCallResult response = await client.CreateCallAsync(callThisPerson, callbac
7373

7474
```java
7575
String callbackUri = "https://<myendpoint>/Events"; //the callback endpoint where you want to receive subsequent events
76-
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+18001234567"); // This is the ACS provisioned phone number for the caller
76+
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+18001234567"); // This is the Azure Communication Services provisioned phone number for the caller
7777
CallInvite callInvite = new CallInvite(new PhoneNumberIdentifier("+16471234567"), callerIdNumber); // person to call
7878
CreateCallResult response = client.createCall(callInvite, callbackUri).block();
7979
```
@@ -83,7 +83,7 @@ CreateCallResult response = client.createCall(callInvite, callbackUri).block();
8383
```javascript
8484
const callInvite = {
8585
targetParticipant: { phoneNumber: "+18008008800" }, // person to call
86-
sourceCallIdNumber: { phoneNumber: "+18888888888" } // This is the ACS provisioned phone number for the caller
86+
sourceCallIdNumber: { phoneNumber: "+18888888888" } // This is the Azure Communication Services provisioned phone number for the caller
8787
};
8888
const callbackUri = "https://<myendpoint>/Events"; // the callback endpoint where you want to receive subsequent events
8989
const response = await client.createCall(callInvite, callbackUri);
@@ -95,7 +95,7 @@ const response = await client.createCall(callInvite, callbackUri);
9595
callback_uri = "https://<myendpoint>/Events" # the callback endpoint where you want to receive subsequent events
9696
caller_id_number = PhoneNumberIdentifier(
9797
"+18001234567"
98-
) # This is the ACS provisioned phone number for the caller
98+
) # This is the Azure Communication Services provisioned phone number for the caller
9999
call_invite = CallInvite(
100100
target=PhoneNumberIdentifier("+16471234567"),
101101
source_caller_id_number=caller_id_number,
@@ -114,7 +114,7 @@ var pstnEndpoint = new PhoneNumberIdentifier("+16041234567");
114114
var voipEndpoint = new CommunicationUserIdentifier("<user_id_of_target>"); //user id looks like 8:a1b1c1-...
115115
var groupCallOptions = new CreateGroupCallOptions(new List<CommunicationIdentifier>{ pstnEndpoint, voipEndpoint }, callbackUri)
116116
{
117-
SourceCallerIdNumber = new PhoneNumberIdentifier("+16044561234"), // This is the ACS provisioned phone number for the caller
117+
SourceCallerIdNumber = new PhoneNumberIdentifier("+16044561234"), // This is the Azure Communication Services provisioned phone number for the caller
118118
};
119119
CreateCallResult response = await client.CreateGroupCallAsync(groupCallOptions);
120120
```
@@ -123,7 +123,7 @@ CreateCallResult response = await client.CreateGroupCallAsync(groupCallOptions);
123123

124124
```java
125125
String callbackUri = "https://<myendpoint>/Events"; //the callback endpoint where you want to receive subsequent events
126-
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+18001234567"); // This is the ACS provisioned phone number for the caller
126+
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+18001234567"); // This is the Azure Communication Services provisioned phone number for the caller
127127
List<CommunicationIdentifier> targets = new ArrayList<>(Arrays.asList(new PhoneNumberIdentifier("+16471234567"), new CommunicationUserIdentifier("<user_id_of_target>")));
128128
CreateGroupCallOptions groupCallOptions = new CreateGroupCallOptions(targets, callbackUri);
129129
groupCallOptions.setSourceCallIdNumber(callerIdNumber);
@@ -139,7 +139,7 @@ const participants = [
139139
{ communicationUserId: "<user_id_of_target>" }, //user id looks like 8:a1b1c1-...
140140
];
141141
const createCallOptions = {
142-
sourceCallIdNumber: { phoneNumber: "+18888888888" }, // This is the ACS provisioned phone number for the caller
142+
sourceCallIdNumber: { phoneNumber: "+18888888888" }, // This is the Azure Communication Services provisioned phone number for the caller
143143
};
144144
const response = await client.createGroupCall(participants, callbackUri, createCallOptions);
145145
```
@@ -150,7 +150,7 @@ const response = await client.createGroupCall(participants, callbackUri, createC
150150
callback_uri = "https://<myendpoint>/Events" # the callback endpoint where you want to receive subsequent events
151151
caller_id_number = PhoneNumberIdentifier(
152152
"+18888888888"
153-
) # This is the ACS provisioned phone number for the caller
153+
) # This is the Azure Communication Services provisioned phone number for the caller
154154
pstn_endpoint = PhoneNumberIdentifier("+18008008800")
155155
voip_endpoint = CommunicationUserIdentifier(
156156
"<user_id_of_target>"
@@ -313,14 +313,14 @@ To redirect the call to a phone number, construct the target and caller ID with
313313
# [csharp](#tab/csharp)
314314

315315
```csharp
316-
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
316+
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
317317
var target = new CallInvite(new PhoneNumberIdentifier("+16041234567"), callerIdNumber);
318318
```
319319

320320
# [Java](#tab/java)
321321

322322
```java
323-
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
323+
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
324324
CallInvite target = new CallInvite(new PhoneNumberIdentifier("+18001234567"), callerIdNumber);
325325
```
326326

@@ -339,7 +339,7 @@ const target = {
339339
```python
340340
caller_id_number = PhoneNumberIdentifier(
341341
"+18888888888"
342-
) # This is the ACS provisioned phone number for the caller
342+
) # This is the Azure Communication Services provisioned phone number for the caller
343343
call_invite = CallInvite(
344344
target=PhoneNumberIdentifier("+16471234567"),
345345
source_caller_id_number=caller_id_number,
@@ -397,15 +397,15 @@ You can add a participant (Communication Services user or phone number) to an ex
397397
# [csharp](#tab/csharp)
398398

399399
```csharp
400-
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
400+
var callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
401401
var addThisPerson = new CallInvite(new PhoneNumberIdentifier("+16041234567"), callerIdNumber);
402402
AddParticipantsResult result = await callConnection.AddParticipantAsync(addThisPerson);
403403
```
404404

405405
# [Java](#tab/java)
406406

407407
```java
408-
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
408+
PhoneNumberIdentifier callerIdNumber = new PhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
409409
CallInvite callInvite = new CallInvite(new PhoneNumberIdentifier("+16041234567"), callerIdNumber);
410410
AddParticipantOptions addParticipantOptions = new AddParticipantOptions(callInvite);
411411
Response<AddParticipantResult> addParticipantResultResponse = callConnectionAsync.addParticipantWithResponse(addParticipantOptions).block();
@@ -414,7 +414,7 @@ Response<AddParticipantResult> addParticipantResultResponse = callConnectionAsyn
414414
# [JavaScript](#tab/javascript)
415415

416416
```javascript
417-
const callerIdNumber = { phoneNumber: "+16044561234" }; // This is the ACS provisioned phone number for the caller
417+
const callerIdNumber = { phoneNumber: "+16044561234" }; // This is the Azure Communication Services provisioned phone number for the caller
418418
const addThisPerson = {
419419
targetParticipant: { phoneNumber: "+16041234567" },
420420
sourceCallIdNumber: callerIdNumber,
@@ -427,7 +427,7 @@ const addParticipantResult = await callConnection.addParticipant(addThisPerson);
427427
```python
428428
caller_id_number = PhoneNumberIdentifier(
429429
"+18888888888"
430-
) # This is the ACS provisioned phone number for the caller
430+
) # This is the Azure Communication Services provisioned phone number for the caller
431431
call_invite = CallInvite(
432432
target=PhoneNumberIdentifier("+18008008800"),
433433
source_caller_id_number=caller_id_number,

articles/communication-services/how-tos/call-automation/control-mid-call-media-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ app.logger.info("Started continuous DTMF recognition")
198198
```
199199
-----
200200
201-
When your application no longer wishes to receive DTMF tones from the participant anymore, you can use the `StopContinuousDtmfRecognitionAsync` method to let ACS know to stop detecting DTMF tones.
201+
When your application no longer wishes to receive DTMF tones from the participant anymore, you can use the `StopContinuousDtmfRecognitionAsync` method to let Azure Communication Services know to stop detecting DTMF tones.
202202
203203
### StopContinuousDtmfRecognitionAsync
204204
Stop detecting DTMF tones sent by participant.
@@ -279,7 +279,7 @@ if event.type == "Microsoft.Communication.ContinuousDtmfRecognitionToneReceived"
279279
```
280280
-----
281281
282-
ACS provides you with a `SequenceId` as part of the `ContinuousDtmfRecognitionToneReceived` event, which your application can use to reconstruct the order in which the participant entered the DTMF tones.
282+
Azure Communication Services provides you with a `SequenceId` as part of the `ContinuousDtmfRecognitionToneReceived` event, which your application can use to reconstruct the order in which the participant entered the DTMF tones.
283283
284284
### ContinuousDtmfRecognitionFailed Event
285285
Example of how you can handle when DTMF tone detection fails.

articles/communication-services/how-tos/call-automation/mute-participants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ zone_pivot_groups: acs-csharp-java
2121
2222
With Azure Communication Services Call Automation SDK, developers can now mute participants through server based API requests. This feature can be useful when you want your application to mute participants after they've joined the meeting to avoid any interruptions or distractions to ongoing meetings.
2323

24-
If you’re interested in abilities to allow participants to mute/unmute themselves on the call when they’ve joined with ACS Client Libraries, you can use our [mute/unmute function](../../../communication-services/how-tos/calling-sdk/manage-calls.md) provided through our Calling Library.
24+
If you’re interested in abilities to allow participants to mute/unmute themselves on the call when they’ve joined with Azure Communication Services Client Libraries, you can use our [mute/unmute function](../../../communication-services/how-tos/calling-sdk/manage-calls.md) provided through our Calling Library.
2525

2626
## Common use cases
2727

articles/communication-services/how-tos/calling-sdk/call-transcription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ zone_pivot_groups: acs-plat-ios-android-windows
1717
# Display call transcription state on the client
1818

1919
> [!NOTE]
20-
> Call transcription state is only available from Teams meetings. Currently there's no support for call transcription state for ACS to ACS calls.
20+
> Call transcription state is only available from Teams meetings. Currently there's no support for call transcription state for Azure Communication Services to Azure Communication Services calls.
2121
2222
When using call transcription you may want to let your users know that a call is being transcribe. Here's how.
2323

articles/communication-services/how-tos/calling-sdk/manage-calls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 08/10/2021
1111
ms.custom: template-how-to
1212
zone_pivot_groups: acs-plat-web-ios-android-windows
1313

14-
#Customer intent: As a developer, I want to manage calls with the acs sdks so that I can create a calling application that manages calls.
14+
#Customer intent: As a developer, I want to manage calls with the Azure Communication Services sdks so that I can create a calling application that manages calls.
1515
---
1616

1717
# Manage calls

articles/communication-services/how-tos/calling-sdk/manage-video.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 08/10/2021
1111
ms.custom: template-how-to
1212
zone_pivot_groups: acs-plat-web-ios-android-windows
1313

14-
#Customer intent: As a developer, I want to manage video calls with the acs sdks so that I can create a calling application that provides video capabilities.
14+
#Customer intent: As a developer, I want to manage video calls with the Azure Communication Services sdks so that I can create a calling application that provides video capabilities.
1515
---
1616

1717
# Manage video during calls

articles/communication-services/how-tos/calling-sdk/push-notifications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 08/10/2021
1111
ms.custom: template-how-to
1212
zone_pivot_groups: acs-plat-web-ios-android
1313

14-
#Customer intent: As a developer, I want to enable push notifications with the acs sdks so that I can create a calling application that provides push notifications to its users.
14+
#Customer intent: As a developer, I want to enable push notifications with the Azure Communication Services sdks so that I can create a calling application that provides push notifications to its users.
1515
---
1616

1717
# Enable push notifications for calls

articles/communication-services/how-tos/event-grid/local-testing-event-grid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ngrok http 7071
5050
"MessageId": "Incoming_20200918002745d29ebbea-3341-4466-9690-0a03af35228e",
5151
"From": "15555555555",
5252
"To": "15555555555",
53-
"Message": "Great to connect with ACS events",
53+
"Message": "Great to connect with Azure Communication Services events",
5454
"ReceivedTimestamp": "2020-09-18T00:27:45.32Z"
5555
},
5656
"eventType": "Microsoft.Communication.SMSReceived",

articles/communication-services/how-tos/telephony/domain-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To use direct routing in Azure Communication Services, you need to validate that
2323
When you're verifying the ownership of the SBC FQDN, keep in mind that the `*.onmicrosoft.com` and `*.azure.com` domain names aren't supported. For example, if you have two domain names, `contoso.com` and `contoso.onmicrosoft.com`, use `sbc.contoso.com` as the SBC name.
2424

2525
Validating domain part makes sense if you plan to add multiple SBCs from the same domain name space. For example if you're using `sbc-eu.contoso.com`, `sbc-us.contoso.com`, and `sbc-af.contoso.com` you can validate `contoso.com` domain once and add SBCs from that domain later without extra validation.
26-
Validating entire FQDN is helpful if you're a service provider and don't want to validate your base domain ownership with every customer. For example if you're running SBCs `customer1.acs.adatum.biz`, `customer2.acs.adatum.biz`, and `customer3.acs.adatum.biz`, you don't need to validate `acs.adatum.biz` for every Communication resource, instead you validate the entire FQDN each time. This option provides more granular security approach.
26+
Validating entire FQDN is helpful if you're a service provider and don't want to validate your base domain ownership with every customer. For example if you're running SBCs `customer1.Azure Communication Services.adatum.biz`, `customer2.Azure Communication Services.adatum.biz`, and `customer3.Azure Communication Services.adatum.biz`, you don't need to validate `acs.adatum.biz` for every Communication resource, instead you validate the entire FQDN each time. This option provides more granular security approach.
2727

2828

2929
## Add a new domain name

articles/communication-services/quickstarts/chat/quickstart-botframework-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ When you have a Communication Services resource, you can set up a Communication
153153

154154
:::image type="content" source="./media/smaller-bot-choose-resource.png" alt-text="Screenshot that shows how to save the selected Communication Service resource to create a new Communication Services user ID." lightbox="./media/bot-choose-resource.png":::
155155

156-
1. When the resource details are verified, a bot ID is shown in the **Bot ACS Id** column. You can use the bot ID to represent the bot in a chat thread by using the Communication Services Chat AddParticipant API. After you add the bot to a chat as participant, the bot starts to receive chat-related activities, and it can respond in the chat thread.
156+
1. When the resource details are verified, a bot ID is shown in the **Bot Azure Communication Services Id** column. You can use the bot ID to represent the bot in a chat thread by using the Communication Services Chat AddParticipant API. After you add the bot to a chat as participant, the bot starts to receive chat-related activities, and it can respond in the chat thread.
157157

158158
:::image type="content" source="./media/smaller-acs-chat-channel-saved.png" alt-text="Screenshot that shows the new Communication Services user ID assigned to the bot." lightbox="./media/acs-chat-channel-saved.png":::
159159

0 commit comments

Comments
 (0)