Skip to content

Commit 20dadc1

Browse files
committed
Remove US locale in the URLs
1 parent 5b9a9f2 commit 20dadc1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

articles/communication-services/quickstarts/rooms/get-started-rooms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The table below lists the main properties of `room` objects:
3030
| `participants` | List of participants to a `room`. Specified as a `CommunicationIdentifier`. |
3131
| `roleType` | The role of a room participant. Can be either `Presenter`, `Attendee`, or `Consumer`. |
3232

33-
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)
33+
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
3434

3535
::: zone pivot="platform-azcli"
3636
[!INCLUDE[Use rooms with Azure CLI](./includes/rooms-quickstart-az-cli.md)]

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ System.out.println("\nCreated a room with id: " + roomCreated.getRoomId());
184184

185185
```
186186

187-
*setPstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)
187+
*setPstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
188188

189189
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
190190

191-
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/))
191+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
192192
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
193193

194194
```java

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ const createRoom = await roomsClient.createRoom(createRoomOptions);
147147
const roomId = createRoom.id;
148148
console.log("\nCreated a room with id: ", roomId);
149149
```
150-
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)
150+
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
151151

152152
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
153153

154-
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/))
154+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
155155
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
156156

157157
```javascript

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ string roomId = createdRoom.Id;
150150
Console.WriteLine("\nCreated room with id: " + roomId);
151151

152152
```
153-
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)
153+
*pstnDialOutEnabled is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
154154

155155
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
156156

157-
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/))
157+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
158158
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstnDialOutEnabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstnDialOutEnabled` parameter.
159159

160160
```csharp

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,11 @@ try:
133133
except HttpResponseError as ex:
134134
print(ex)
135135
```
136-
*pstn_dial_out_enabled is currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/)
136+
*pstn_dial_out_enabled is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
137137

138138
Since `rooms` are server-side entities, you may want to keep track of and persist the `room.id` in the storage medium of choice. You can reference the `id` to view or update the properties of a `room` object.
139139

140-
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/en-us/support/legal/preview-supplemental-terms/))
140+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
141141
Each `room` has PSTN dial out disabled by default. The PSTN dial out can be enabled for a `room` at creation, by defining the `pstn_dial_out_enabled` parameter as true. This capability may also be modified for a `room` by issuing an update request for the `pstn_dial_out_enabled` parameter.
142142

143143
```python

0 commit comments

Comments
 (0)