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 Communication Identity for Python
> see https://aka.ms/autorest
### Setup
```ps
npm install -g autorest
```
### Generation
```ps
cd <swagger-folder>
autorest ./SWAGGER.md
```
### Settings
``` yaml
tag: package-2023-10
require:
- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/5797d78f04cd8ca773be82d2c99a3294009b3f0a/specification/communication/data-plane/Identity/readme.md
output-folder: ../azure/communication/identity/_generated/
namespace: azure.communication.identity
title: Communication Identity Client
license-header: MICROSOFT_MIT_NO_VERSION
payload-flattening-threshold: 3
no-namespace-folders: true
clear-output-folder: true
v3: true
python: true
models-mode: msrest
```
### Rename CommunicationIdentityTokenScope to CommunicationTokenScope
```yaml
directive:
- from: swagger-document
where: $.definitions.CommunicationIdentityTokenScope
transform: >
$["x-ms-enum"].name = "CommunicationTokenScope";
```
###### Regenerating the service layer with a new version of the autorest(DPG), introduced a breaking change by changing the format of property "expires_on" from string to datetime. In order to avoid this breaking change, we added this directive to remove the format datetime from the expires_on property.
### Removes the "format": "date-time" from property expiresOn
```yaml
directive:
- from: swagger-document
where: $["definitions"]
transform: >
delete $["CommunicationIdentityAccessToken"]["properties"]["expiresOn"]["format"];
```
|