You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you are using Visual Studio as your editor, restart Visual Studio before running the example.
45
+
After you add the environment variable, you may need to restart any running programs that will need to read the environment variable, including the console window. For example, if you're using Visual Studio as your editor, restart Visual Studio before running the example.
46
46
47
47
##### [macOS](#tab/unix)
48
48
@@ -82,7 +82,7 @@ az communication rooms create --presenter-participants "<participantId>" --consu
82
82
- Use `<validFrom>` optionally to specify the timestamp when the room is open for joining, in ISO8601 format, ex: 2022-07-14T10:21.
83
83
- Use `<validUntil>` optionally to specify the timestamp when the room can no longer be joined, in ISO8601 format, ex: 2022-07-14T10:21.
84
84
85
-
If you have stored the connection string in environment variables as stated above, you won't need to pass them to the command.
85
+
If you've stored the connection string in environment variables as stated above, you won't need to pass them to the command.
86
86
87
87
```azurecli-interactive
88
88
az communication rooms create
@@ -93,7 +93,7 @@ az communication rooms create
93
93
94
94
### Get the rooms
95
95
96
-
The `rooms get` command returns the attributes of an exisiting room.
96
+
The `rooms get` command returns the attributes of an existing room.
97
97
98
98
```azurecli-interactive
99
99
az communication rooms get --room "<roomId>"
@@ -129,8 +129,8 @@ You can update the timestamp of a room. Before calling the `room update` command
129
129
az communication rooms update --validFrom "<validFrom>" --validUntil "<validUntil>" --room "<roomId>"
130
130
```
131
131
132
-
- Replace `<validFrom>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room is open for joining. Should be used together with --valid-until.
133
-
- Replace `<validUntil>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room can no longer be joined. Should be used together with --valid-from.
132
+
- Replace `<validFrom>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room is open for joining. Should be used together with `--valid-until`.
133
+
- Replace `<validUntil>` with the timestamp in ISO8601 format, ex: 2022-07-14T10:21, to specify when the room can no longer be joined. Should be used together with `--valid-from`.
0 commit comments