File tree Expand file tree Collapse file tree 2 files changed +42
-1
lines changed
specification/resourcehealth/resource-manager Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ swagger-to-sdk:
82
82
- repo: azure-sdk-for-go
83
83
- repo: azure-sdk-for-js
84
84
- repo: azure-sdk-for-node
85
- - repo: azure-sdk-for-python
85
+ - repo: azure-sdk-for-python-track2
86
86
- repo: azure-sdk-for-java
87
87
- repo: azure-sdk-for-net
88
88
- repo: azure-sdk-for-ruby
@@ -95,6 +95,10 @@ swagger-to-sdk:
95
95
96
96
See configuration in [readme.go.md](./readme.go.md)
97
97
98
+ # # Python
99
+
100
+ See configuration in [readme.python.md](./readme.python.md)
101
+
98
102
# # Java
99
103
100
104
These settings apply only when `--java` is specified on the command line.
Original file line number Diff line number Diff line change
1
+ ## Python
2
+
3
+ These settings apply only when ` --track2 ` is specified on the command line.
4
+
5
+ ``` yaml $(track2)
6
+ azure-arm : true
7
+ license-header : MICROSOFT_MIT_NO_VERSION
8
+ package-name : azure-mgmt-resourcehealth
9
+ no-namespace-folders : true
10
+ package-version : 1.0.0b1
11
+ ` ` `
12
+
13
+ ### Python multi-api
14
+
15
+ Generate all API versions currently shipped for this package
16
+
17
+ ` ` ` yaml $(multiapi)
18
+ clear-output-folder : true
19
+ batch :
20
+ - tag : package-2015-01
21
+ - multiapiscript : true
22
+ ` ` `
23
+
24
+ ` ` ` yaml $(multiapiscript)
25
+ output-folder : $(python-sdks-folder)/resourcehealth/azure-mgmt-resourcehealth/azure/mgmt/resourcehealth/
26
+ clear-output-folder : false
27
+ perform-load : false
28
+ ` ` `
29
+ ### Tag: package-2015-01 and python
30
+
31
+ These settings apply only when ` --tag=package-2015-01 --python` is specified on the command line.
32
+ Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
33
+
34
+ ` ` ` yaml $(tag) == 'package-2015-01'
35
+ namespace: azure.mgmt.resourcehealth.v2015_01_01
36
+ output-folder: $(python-sdks-folder)/resourcehealth/azure-mgmt-resourcehealth/azure/mgmt/resourcehealth/v2015_01_01
37
+ ` ` `
You can’t perform that action at this time.
0 commit comments