Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion specification/web/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ directive:

These settings apply only when `--tag=package-2022-03` is specified on the command line.

```yaml $(tag) == 'package-2022-03'
```yaml $(tag) == 'package-2022-03' || $(tag) == 'package-2022-03-only'
input-file:
- Microsoft.CertificateRegistration/stable/2022-03-01/AppServiceCertificateOrders.json
- Microsoft.CertificateRegistration/stable/2022-03-01/CertificateOrdersDiagnostics.json
Expand Down
12 changes: 12 additions & 0 deletions specification/web/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Generate all API versions currently shipped for this package
multiapi: true
clear-output-folder: true
batch:
- tag: package-2022-03-only
- tag: package-2021-03-only
- tag: package-2021-01-15-only
- tag: package-2021-01-only
Expand All @@ -43,6 +44,17 @@ batch:
output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/
perform-load: false

```
### Tag: package-2022-03-only and python

These settings apply only when `--tag=package-2022-03-only --python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.

``` yaml $(tag) == 'package-2022-03-only' && $(python)
namespace: azure.mgmt.web.v2022_03_01
output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2022_03_01
```

```
### Tag: package-2021-03-only and python

Expand Down