Skip to content

Commit 690247b

Browse files
Merge pull request #257209 from mikehang-msft/mhang/UpdateReadymePublicPreview
Added Public Preview to Rooms QuickStarts
2 parents 10ec984 + 20dadc1 commit 690247b

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ The table below lists the main properties of `room` objects:
2626
| `roomId` | Unique `room` identifier. |
2727
| `validFrom` | Earliest time a `room` can be used. |
2828
| `validUntil` | Latest time a `room` can be used. |
29-
| `pstnDialOutEnabled` | Enable or disable dialing out to a PSTN number in a room.|
29+
| `pstnDialOutEnabled`* | Enable or disable dialing out to a PSTN number in a room.|
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/support/legal/preview-supplemental-terms/)
3334

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

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,9 +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/support/legal/preview-supplemental-terms/)
188+
187189
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.
188190

189-
### Enable PSTN Dial Out Capability for a Room
191+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
190192
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.
191193

192194
```java

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,10 +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/support/legal/preview-supplemental-terms/)
150151

151152
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.
152153

153-
### Enable PSTN Dial Out Capability for a Room
154+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
154155
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.
155156

156157
```javascript

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,10 +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/support/legal/preview-supplemental-terms/)
153154

154155
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.
155156

156-
### Enable PSTN Dial Out Capability for a Room
157+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
157158
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.
158159

159160
```csharp

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,10 +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/support/legal/preview-supplemental-terms/)
136137

137138
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.
138139

139-
### Enable PSTN Dial Out Capability for a Room
140+
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
140141
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.
141142

142143
```python

0 commit comments

Comments
 (0)