|
1 | 1 | ## Python |
2 | 2 |
|
3 | | -These settings apply only when `--track2` is specified on the command line. |
| 3 | +These settings apply only when `--python` is specified on the command line. |
4 | 4 |
|
5 | 5 | ``` yaml $(python) |
6 | 6 | azure-arm: true |
7 | 7 | license-header: MICROSOFT_MIT_NO_VERSION |
8 | 8 | package-name: azure-mgmt-appconfiguration |
9 | | -namespace: azure.mgmt.appconfiguration |
10 | 9 | package-version: 1.0.0b1 |
| 10 | +no-namespace-folders: true |
| 11 | +``` |
| 12 | +
|
| 13 | +### Python multi-api |
| 14 | +
|
| 15 | +Generate all API versions currently shipped for this package |
| 16 | +
|
| 17 | +```yaml $(python) |
11 | 18 | clear-output-folder: true |
| 19 | +multiapi: true |
| 20 | +batch: |
| 21 | + - tag: package-2022-05-01 |
| 22 | + - tag: package-2022-03-01-preview |
| 23 | + - multiapiscript: true |
12 | 24 | ``` |
13 | 25 |
|
14 | | -``` yaml $(python) |
15 | | -no-namespace-folders: true |
16 | | -output-folder: $(python-sdks-folder)/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration |
| 26 | +``` yaml $(multiapiscript) |
| 27 | +output-folder: $(python-sdks-folder)/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/ |
| 28 | +perform-load: false |
| 29 | +``` |
| 30 | +
|
| 31 | +### Tag: package-2022-05-01 and python |
| 32 | +
|
| 33 | +These settings apply only when `--tag=package-2022-05-01 --python` is specified on the command line. |
| 34 | +Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`. |
| 35 | + |
| 36 | +``` yaml $(tag) == 'package-2022-05-01' && $(python) |
| 37 | +namespace: azure.mgmt.appconfiguration.v2022_05_01 |
| 38 | +output-folder: $(python-sdks-folder)/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/v2022_05_01 |
| 39 | +``` |
| 40 | + |
| 41 | +### Tag: package-2022-03-01-preview and python |
| 42 | + |
| 43 | +These settings apply only when `--tag=package-2022-03-01-preview --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>`. |
| 45 | + |
| 46 | +``` yaml $(tag) == 'package-2022-03-01-preview' && $(python) |
| 47 | +namespace: azure.mgmt.appconfiguration.v2022_03_01_preview |
| 48 | +output-folder: $(python-sdks-folder)/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/v2022_03_01_preview |
17 | 49 | ``` |
0 commit comments