diff --git a/specification/web/resource-manager/readme.md b/specification/web/resource-manager/readme.md index d727866708e9..f0d71f47baa8 100644 --- a/specification/web/resource-manager/readme.md +++ b/specification/web/resource-manager/readme.md @@ -1152,6 +1152,7 @@ swagger-to-sdk: after_scripts: - python ./scripts/multiapi_init_gen.py azure-mgmt-web - python ./scripts/trim_aio.py ./sdk/appservice/azure-mgmt-web + - repo: azure-sdk-for-python-track2 - repo: azure-sdk-for-java - repo: azure-sdk-for-go - repo: azure-sdk-for-node diff --git a/specification/web/resource-manager/readme.python.md b/specification/web/resource-manager/readme.python.md index 187ad61c66aa..75e16c98995b 100644 --- a/specification/web/resource-manager/readme.python.md +++ b/specification/web/resource-manager/readme.python.md @@ -32,6 +32,8 @@ Generate all API versions currently shipped for this package ```yaml $(python) && $(multiapi) && !$(track2) batch: + - tag: package-2020-09-only + - tag: package-2020-06-only - tag: package-2019-08-only - tag: package-2018-11-only - tag: package-2018-02-only @@ -44,6 +46,8 @@ batch: ```yaml $(python) && $(multiapi) && $(track2) batch: + - tag: package-2020-09-only + - tag: package-2020-06-only - tag: package-2019-08-only - tag: package-2018-11-only - tag: package-2018-02-only @@ -60,6 +64,32 @@ output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/ perform-load: false ``` +### Tag: package-2020-09-only and python + +These settings apply only when `--tag=package-2020-09-only --python` is specified on the command line. +Please also specify `--python-sdks-folder=`. + +``` yaml $(tag) == 'package-2020-09-only' && $(python) +namespace: azure.mgmt.web.v2020_09_01 +output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2020_09_01 +python: + namespace: azure.mgmt.web.v2020_09_01 + output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2020_09_01 +``` + +### Tag: package-2020-06-only and python + +These settings apply only when `--tag=package-2020-06-only --python` is specified on the command line. +Please also specify `--python-sdks-folder=`. + +``` yaml $(tag) == 'package-2020-06-only' && $(python) +namespace: azure.mgmt.web.v2020_06_01 +output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2020_06_01 +python: + namespace: azure.mgmt.web.v2020_06_01 + output-folder: $(python-sdks-folder)/appservice/azure-mgmt-web/azure/mgmt/web/v2020_06_01 +``` + ### Tag: package-2019-08-only and python These settings apply only when `--tag=package-2019-08-only --python` is specified on the command line.