Skip to content

Commit 411d815

Browse files
authored
update appconfiguration (#19330)
* update appconfiguration * Update readme.python.md * Update readme.python.md * Update readme.python.md * Update readme.python.md * Update readme.python.md * Update readme.python.md * Update readme.python.md
1 parent 7a33b79 commit 411d815

File tree

1 file changed

+37
-5
lines changed

1 file changed

+37
-5
lines changed
Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,49 @@
11
## Python
22

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.
44

55
``` yaml $(python)
66
azure-arm: true
77
license-header: MICROSOFT_MIT_NO_VERSION
88
package-name: azure-mgmt-appconfiguration
9-
namespace: azure.mgmt.appconfiguration
109
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)
1118
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
1224
```
1325
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
1749
```

0 commit comments

Comments
 (0)