Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update web readme and readme.python #15488

Merged
merged 5 commits into from
Aug 3, 2021
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 @@ -59,7 +59,7 @@ directive:

These settings apply only when `--tag=package-2021-01-15` is specified on the command line.

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

### Tag: package-2021-01-15-only and python

These settings apply only when `--tag=package-2021-01-15-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-2021-01-15-only' && $(python)
namespace: azure.mgmt.web.v2021_01_15
output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2021_01_15
```

### Tag: package-2021-01-only and python

These settings apply only when `--tag=package-2021-01-only --python` is specified on the command line.
Expand Down