Skip to content

Commit 4f48037

Browse files
authored
add automation track2 config (#11628)
* add automation track2 config * update config
1 parent a5377b0 commit 4f48037

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

specification/automation/resource-manager/readme.python.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ These settings apply only when `--python` is specified on the command line.
44
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
55
Use `--python-mode=update` if you already have a setup.py and just want to update the code itself.
66

7-
``` yaml $(python)
7+
``` yaml $(python) && !$(track2)
88
python-mode: create
99
python:
1010
azure-arm: true
@@ -15,13 +15,36 @@ python:
1515
package-version: 0.1.1
1616
clear-output-folder: true
1717
```
18-
``` yaml $(python) && $(python-mode) == 'update'
18+
``` yaml $(python) && $(track2)
19+
python-mode: create
20+
azure-arm: true
21+
license-header: MICROSOFT_MIT_NO_VERSION
22+
namespace: azure.mgmt.automation
23+
package-name: azure-mgmt-automation
24+
package-version: 1.0.0b1
25+
clear-output-folder: true
26+
modelerfour:
27+
lenient-model-deduplication: true
28+
```
29+
30+
``` yaml $(python) && $(python-mode) == 'update' && !$(track2)
1931
python:
2032
no-namespace-folders: true
2133
output-folder: $(python-sdks-folder)/automation/azure-mgmt-automation/azure/mgmt/automation
2234
```
23-
``` yaml $(python) && $(python-mode) == 'create'
35+
36+
``` yaml $(python) && $(python-mode) == 'update' && $(track2)
37+
no-namespace-folders: true
38+
output-folder: $(python-sdks-folder)/automation/azure-mgmt-automation/azure/mgmt/automation
39+
```
40+
41+
``` yaml $(python) && $(python-mode) == 'create' && !$(track2)
2442
python:
2543
basic-setup-py: true
2644
output-folder: $(python-sdks-folder)/automation/azure-mgmt-automation
2745
```
46+
47+
``` yaml $(python) && $(python-mode) == 'create' && $(track2)
48+
basic-setup-py: true
49+
output-folder: $(python-sdks-folder)/automation/azure-mgmt-automation
50+
```

0 commit comments

Comments
 (0)