File tree Expand file tree Collapse file tree 4 files changed +42
-4
lines changed
specification/containerservice/resource-manager Expand file tree Collapse file tree 4 files changed +42
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ azure-arm: true
20
20
21
21
` ` ` yaml $(go) && $(multiapi)
22
22
batch :
23
+ - tag : package-2021-10
23
24
- tag : package-2021-09
24
25
- tag : package-2021-08
25
26
- tag : package-2021-07
@@ -51,6 +52,16 @@ batch:
51
52
- tag : package-2017-07
52
53
` ` `
53
54
55
+ ### Tag: package-2021-10 and go
56
+
57
+ These settings apply only when ` --package-2021-10 --go` is specified on the command line.
58
+ Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
59
+
60
+ ` ` ` yaml $(tag)=='package-2021-10' && $(go)
61
+ namespace: containerservice
62
+ output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-10-01/$(namespace)
63
+ ` ` `
64
+
54
65
# ## Tag: package-2021-09 and go
55
66
56
67
These settings apply only when `--package-2021-09 --go` is specified on the command line.
Original file line number Diff line number Diff line change @@ -45,6 +45,20 @@ batch:
45
45
- tag: package-2021-07
46
46
- tag: package-2021-08
47
47
- tag: package-2021-09
48
+ - tag: package-2021-10
49
+ ` ` `
50
+
51
+ # ## Tag: package-2021-10 and java
52
+
53
+ These settings apply only when `--tag=package-2021-10` is specified on the command line.
54
+ Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-sdk-for-java clone>`.
55
+
56
+ ` ` ` yaml $(tag) == 'package-2021-10' && $(java) && $(multiapi)
57
+ java:
58
+ namespace: com.microsoft.azure.management.containerservice.v2021_10_01
59
+ output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2021_10_01
60
+ regenerate-manager: true
61
+ generate-interface: true
48
62
` ` `
49
63
50
64
# ## Tag: package-2021-09 and java
Original file line number Diff line number Diff line change @@ -364,6 +364,19 @@ input-file:
364
364
365
365
` ` `
366
366
367
+ # ## Tag: package-2021-10-01-only
368
+
369
+ These settings apply only when `--tag=package-2021-10-01-only` is specified on the command line.
370
+
371
+ ` ` ` yaml $(tag) == 'package-2021-10-01-only'
372
+ input-file:
373
+ - Microsoft.ContainerService/stable/2021-10-01/managedClusters.json
374
+ directive:
375
+ - suppress: DefinitionsPropertiesNamesCamelCase
376
+ where: $.definitions.ManagedClusterProperties.properties.autoScalerProfile
377
+ reason: Cluster-autoscaler settings are not camel-cased
378
+ ` ` `
379
+
367
380
# ## Tag: package-2021-09-01-only
368
381
369
382
These settings apply only when `--tag=package-2021-09-01-only` is specified on the command line.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Generate all API versions currently shipped for this package
17
17
18
18
` ` ` yaml $(python) && $(multiapi) && $(track2)
19
19
batch :
20
- - tag : package-2021-10
20
+ - tag : package-2021-10-01-only
21
21
- tag : package-2021-09-01-only
22
22
- tag : package-2021-08-01-only
23
23
- tag : package-2021-07-01-only
@@ -54,12 +54,12 @@ output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservic
54
54
clear-output-folder : false
55
55
perform-load : false
56
56
` ` `
57
- ### Tag: package-2021-10 and python
57
+ ### Tag: package-2021-10-01-only and python
58
58
59
- These settings apply only when ` --tag=package-2021-10 --python` is specified on the command line.
59
+ These settings apply only when ` --tag=package-2021-10-01-only --python` is specified on the command line.
60
60
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
61
61
62
- ` ` ` yaml $(tag) == 'package-2021-10' && $(python)
62
+ ` ` ` yaml $(tag) == 'package-2021-10-01-only ' && $(python)
63
63
namespace: azure.mgmt.containerservice.v2021_10_01
64
64
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2021_10_01
65
65
` ` `
You can’t perform that action at this time.
0 commit comments