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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# Azure Digitaltwins for Python
> see https://aka.ms/autorest
### Settings
``` yaml
input-file: https://github.com/Azure/azure-rest-api-specs/blob/3026119ab41bbce77275cfa3a1afbabf43af5aea/specification/digitaltwins/data-plane/Microsoft.DigitalTwins/preview/2021-06-30-preview/digitaltwins.json
output-folder: ../azure/digitaltwins/core/_generated
namespace: azure.digitaltwins.core
no-namespace-folders: true
add-credentials: true
credential-scopes: "https://digitaltwins.azure.net/.default"
license-header: MICROSOFT_MIT_NO_VERSION
enable-xml: true
vanilla: true
clear-output-folder: true
python: true
```
### Replace dtTimestamp with timestamp
```yaml
directive:
- from: swagger-document
where: $.paths..parameters[*]
transform: >
if ($.name === "dt-timestamp") {
$["x-ms-client-name"] = "timestamp";
}
```
### Expose If-None_match header
```yaml
directive:
- from: swagger-document
where: $..[?(@.name=='If-None-Match')]
transform: delete $.enum;
```
### Rename EventRoute
```yaml
directive:
- from: swagger-document
where: $.definitions.EventRoute
transform: >
$["x-ms-client-name"] = "DigitalTwinsEventRoute"
```
|