Skip to content

Commit

Permalink
add customproviders track2 version (Azure#11940)
Browse files Browse the repository at this point in the history
  • Loading branch information
00Kai0 authored and giromm2ms committed Dec 20, 2020
1 parent a085647 commit 4f466f7
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions specification/customproviders/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
These settings apply only when `--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 $(python)
```yaml $(python) && !$(track2)
python-mode: create
python:
azure-arm: true
Expand All @@ -14,14 +14,32 @@ python:
package-version: 2018-09-01-preview
clear-output-folder: true
```
```yaml $(python) && $(track2)
python-mode: create
azure-arm: true
license-header: MICROSOFT_MIT_NO_VERSION
namespace: azure.mgmt.customproviders
package-name: azure-mgmt-customproviders
package-version: 2018-09-01-preview
clear-output-folder: true
```
```yaml $(python) && $(python-mode) == 'create'
```yaml $(python) && $(python-mode) == 'create' && !$(track2)
python:
basic-setup-py: true
output-folder: $(python-sdks-folder)/customproviders/azure-mgmt-customproviders
```
``` yaml $(python) && $(python-mode) == 'update'
``` yaml $(python) && $(python-mode) == 'update' && !$(track2)
python:
no-namespace-folders: true
output-folder: $(python-sdks-folder)/customproviders/azure-mgmt-customproviders/azure/mgmt/customproviders
```
```
```yaml $(python) && $(python-mode) == 'create' && $(track2)
basic-setup-py: true
output-folder: $(python-sdks-folder)/customproviders/azure-mgmt-customproviders
```
``` yaml $(python) && $(python-mode) == 'update' && $(track2)
no-namespace-folders: true
output-folder: $(python-sdks-folder)/customproviders/azure-mgmt-customproviders/azure/mgmt/customproviders
```

0 comments on commit 4f466f7

Please sign in to comment.