1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Azure Communication Configuration for Python
> see https://aka.ms/autorest
### Setup
```ps
npm install -g autorest
```
### Generation
```ps
cd <swagger-folder>
autorest SWAGGER.md
```
### Settings
```yaml
require:
- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/e30976f6ccb058a36cd2f9d5160e1fd51f6c5d95/specification/communication/data-plane/Rooms/readme.md
output-folder: ../azure/communication/rooms/_generated
models-mode: msrest
namespace: azure.communication.rooms
package-name: azure-communication-rooms
license-header: MICROSOFT_MIT_NO_VERSION
clear-output-folder: true
no-namespace-folders: true
python: true
title: Azure Communication Rooms Service
add-credential: false
v3: true
no-async: false
```
|