diff --git a/specification/msi/resource-manager/readme.md b/specification/msi/resource-manager/readme.md index 5641869f7b4b..8719b1a40add 100644 --- a/specification/msi/resource-manager/readme.md +++ b/specification/msi/resource-manager/readme.md @@ -75,6 +75,9 @@ swagger-to-sdk: - repo: azure-resource-manager-schemas ``` +## Pyhton + +See configuration in [readme.python.md](./readme.python.md) ## C# diff --git a/specification/msi/resource-manager/readme.python.md b/specification/msi/resource-manager/readme.python.md index f2381edd14cc..4cdd5e5671b5 100644 --- a/specification/msi/resource-manager/readme.python.md +++ b/specification/msi/resource-manager/readme.python.md @@ -4,7 +4,7 @@ These settings apply only when `--python` is specified on the command line. Please also specify `--python-sdks-folder=`. Use `--python-mode=update` if you already have a setup.py and just want to update the code itself. -``` yaml $(python) $$ &(track2) +``` yaml $(python) && $(track2) azure-arm: true license-header: MICROSOFT_MIT_NO_VERSION package-name: azure-mgmt-msi @@ -12,11 +12,12 @@ no-namespace-folders: true package-version: 1.0.0b1 clear-output-folder: true ``` -``` yaml $(python) && $(python-mode) == 'update' $$ &(track2) + +``` yaml $(python) && $(python-mode) == 'update' && $(track2) no-namespace-folders: true output-folder: $(python-sdks-folder)/resources/azure-mgmt-msi/azure/mgmt/msi ``` -``` yaml $(python) && $(python-mode) == 'create' $$ &(track2) +``` yaml $(python) && $(python-mode) == 'create' && $(track2) basic-setup-py: true output-folder: $(python-sdks-folder)/resources/azure-mgmt-msi ```