File tree Expand file tree Collapse file tree 4 files changed +42
-1
lines changed
specification/containerservice/resource-manager Expand file tree Collapse file tree 4 files changed +42
-1
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-preview-2022-03
23
24
- tag : package-2022-02
24
25
- tag : package-preview-2022-02
25
26
- tag : package-2022-01
@@ -56,6 +57,16 @@ batch:
56
57
- tag : package-2017-07
57
58
` ` `
58
59
60
+ ### Tag: package-preview-2022-03 and go
61
+
62
+ These settings apply only when ` --package-preview-2022-03 --go` is specified on the command line.
63
+ Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
64
+
65
+ ` ` ` yaml $(tag)=='package-preview-2022-03' && $(go)
66
+ namespace: containerservice
67
+ output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2022-03-02-preview/$(namespace)
68
+ ` ` `
69
+
59
70
# ## Tag: package-2022-02 and go
60
71
61
72
These settings apply only when `--package-2022-02 --go` is specified on the command line.
Original file line number Diff line number Diff line change @@ -50,6 +50,20 @@ batch:
50
50
- tag: package-2022-01
51
51
- tag: package-preview-2022-02
52
52
- tag: package-2022-02
53
+ - tag: package-preview-2022-03
54
+ ` ` `
55
+
56
+ # ## Tag: package-preview-2022-03 and java
57
+
58
+ These settings apply only when `--tag=package-preview-2022-03` is specified on the command line.
59
+ Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-sdk-for-java clone>`.
60
+
61
+ ` ` ` yaml $(tag) == 'package-preview-2022-03' && $(java) && $(multiapi)
62
+ java:
63
+ namespace: com.microsoft.azure.management.containerservice.v2022_03_02_preview
64
+ output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2022_03_02_preview
65
+ regenerate-manager: true
66
+ generate-interface: true
53
67
` ` `
54
68
55
69
# ## Tag: package-2022-02 and java
Original file line number Diff line number Diff line change @@ -42,10 +42,15 @@ tag: package-preview-2022-03
42
42
43
43
These settings apply only when ` --tag=package-preview-2022-03` is specified on the command line.
44
44
45
- ` ` ` yaml $(tag) == 'package-preview-2022-03'
45
+ ` ` ` yaml $(tag) == 'package-preview-2022-03'
46
46
input-file:
47
47
- Microsoft.ContainerService/preview/2022-03-02-preview/managedClusters.json
48
+ directive:
49
+ - suppress: DefinitionsPropertiesNamesCamelCase
50
+ where: $.definitions.ManagedClusterProperties.properties.autoScalerProfile
51
+ reason: Cluster-autoscaler settings are not camel-cased
48
52
` ` `
53
+
49
54
# ## Tag: package-2022-02
50
55
51
56
These settings apply only when `--tag=package-2022-02` is specified on the command line.
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ Generate all API versions currently shipped for this package
17
17
18
18
` ` ` yaml $(python) && $(multiapi)
19
19
batch :
20
+ - tag : package-preview-2022-03
20
21
- tag : package-2022-02
21
22
- tag : package-preview-2022-02
22
23
- tag : package-2022-01
@@ -59,6 +60,16 @@ output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservic
59
60
perform-load : false
60
61
` ` `
61
62
63
+ ### Tag: package-preview-2022-03 and python
64
+
65
+ These settings apply only when ` --tag=package-preview-2022-03 --python` is specified on the command line.
66
+ Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
67
+
68
+ ` ` ` yaml $(tag) == 'package-preview-2022-03' && $(python)
69
+ namespace: azure.mgmt.containerservice.v2022_03_02_preview
70
+ output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2022_03_02_preview
71
+ ` ` `
72
+
62
73
# ## Tag: package-2022-02 and python
63
74
64
75
These settings apply only when `--tag=package-2022-02 --python` is specified on the command line.
You can’t perform that action at this time.
0 commit comments