Skip to content

Commit 2fb641a

Browse files
committed
update rooms quickstarts to remove pstnDialOutEnabled public preview status
1 parent fe172bb commit 2fb641a

File tree

6 files changed

+5
-14
lines changed

6 files changed

+5
-14
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ 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/support/legal/preview-supplemental-terms/)
34-
3533
::: zone pivot="platform-azcli"
3634
[!INCLUDE[Use rooms with Azure CLI](./includes/rooms-quickstart-az-cli.md)]
3735
::: zone-end

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-az-cli.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,13 @@ az communication rooms create --presenter-participants "<participantId>" --consu
8282
- Use `<valid-until>` optionally to specify the timestamp when the room can no longer be joined, in ISO8601 format, ex: 2022-07-14T10:21.
8383
- Use `<pstn-dial-out-enabled>`* optionally by setting this flag ("True" or "False") to enable or disable PSTN dial out for a room. By default, this flag is set to "False" when creating a room.
8484

85-
*`<pstn-dial-out-enabled>` is currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/)
86-
8785
If you've stored the connection string in environment variables as stated above, you won't need to pass them to the command.
8886

8987
```azurecli-interactive
9088
az communication rooms create
9189
```
9290

93-
### Enable PSTN Dial Out Capability for a Room (Currently in [public preview](https://azure.microsoft.com/support/legal/preview-supplemental-terms/))
91+
### Enable PSTN Dial Out Capability for a Room
9492
The PSTN dial out can be enabled during `rooms create` by defining the `--pstn-dial-out-enabled` parameter as "True". This capability may also be modified during `rooms update` by specifying the `--pstn-dial-out-enabled` parameter.
9593

9694
```azurecli-interactive

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,9 @@ 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-
189187
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.
190188

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

194192
```java

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,10 @@ 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/)
151150

152151
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.
153152

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

157156
```javascript

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,10 @@ 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/)
154153

155154
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.
156155

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

160159
```csharp

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,10 @@ 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/)
137136

138137
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.
139138

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

143142
```python

0 commit comments

Comments
 (0)