Skip to content

Commit 8f5c0dc

Browse files
authored
aks: update readme tag for 1101 (#11472)
* aks: update readme tag * aks: add `2020-11-01-only`
1 parent 79d1d7c commit 8f5c0dc

File tree

5 files changed

+69
-5
lines changed

5 files changed

+69
-5
lines changed

specification/containerservice/resource-manager/readme.azureresourceschema.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ These settings apply only when `--azureresourceschema` is specified on the comma
66

77
``` yaml $(azureresourceschema) && $(multiapi)
88
batch:
9+
- tag: schema-containerservice-2020-11-01
910
- tag: schema-containerservice-2020-09-01
1011
- tag: schema-containerservice-2020-07-01
1112
- tag: schema-containerservice-2020-06-01
@@ -36,6 +37,17 @@ batch:
3637

3738
Please also specify `--azureresourceschema-folder=<path to the root directory of your azure-resource-manager-schemas clone>`.
3839

40+
### Tag: schema-containerservice-2020-11-01 and azureresourceschema
41+
42+
``` yaml $(tag) == 'schema-containerservice-2020-11-01' && $(azureresourceschema)
43+
output-folder: $(azureresourceschema-folder)/schemas
44+
45+
# all the input files in this apiVersion
46+
input-file:
47+
- Microsoft.ContainerService/stable/2020-11-01/managedClusters.json
48+
49+
```
50+
3951
### Tag: schema-containerservice-2020-09-01 and azureresourceschema
4052

4153
``` yaml $(tag) == 'schema-containerservice-2020-09-01' && $(azureresourceschema)

specification/containerservice/resource-manager/readme.go.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ go:
1212
1313
``` yaml $(go) && $(multiapi)
1414
batch:
15+
- tag: package-2020-11
1516
- tag: package-2020-09
1617
- tag: package-2020-07
1718
- tag: package-2020-06
@@ -34,6 +35,17 @@ batch:
3435
- tag: package-2017-08
3536
- tag: package-2017-07
3637
```
38+
39+
### Tag: package-2020-11 and go
40+
41+
These settings apply only when `--package-2020-11 --go` is specified on the command line.
42+
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
43+
44+
``` yaml $(tag)=='package-2020-11' && $(go)
45+
namespace: containerservice
46+
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-11-01/$(namespace)
47+
```
48+
3749
### Tag: package-2020-09 and go
3850

3951
These settings apply only when `--package-2020-09 --go` is specified on the command line.

specification/containerservice/resource-manager/readme.java.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,22 @@ batch:
2727
- tag: package-2020-06
2828
- tag: package-2020-07
2929
- tag: package-2020-09
30+
- tag: package-2020-11
3031
```
3132
32-
### Tag: package-2020-07 and java
33+
### Tag: package-2020-11 and java
3334
34-
These settings apply only when `--tag=package-2020-07` is specified on the command line.
35+
These settings apply only when `--tag=package-2020-11` is specified on the command line.
3536
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-sdk-for-java clone>`.
3637

37-
``` yaml $(tag) == 'package-2020-07' && $(java) && $(multiapi)
38+
``` yaml $(tag) == 'package-2020-11' && $(java) && $(multiapi)
3839
java:
39-
namespace: com.microsoft.azure.management.containerservice.v2020_07_01
40-
output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2020_07_01
40+
namespace: com.microsoft.azure.management.containerservice.v2020_11_01
41+
output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2020_11_01
4142
regenerate-manager: true
4243
generate-interface: true
4344
```
45+
4446
### Tag: package-2020-09 and java
4547

4648
These settings apply only when `--tag=package-2020-09` is specified on the command line.
@@ -54,6 +56,19 @@ regenerate-manager: true
5456
generate-interface: true
5557
```
5658

59+
### Tag: package-2020-07 and java
60+
61+
These settings apply only when `--tag=package-2020-07` is specified on the command line.
62+
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-sdk-for-java clone>`.
63+
64+
``` yaml $(tag) == 'package-2020-07' && $(java) && $(multiapi)
65+
java:
66+
namespace: com.microsoft.azure.management.containerservice.v2020_07_01
67+
output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2020_07_01
68+
regenerate-manager: true
69+
generate-interface: true
70+
```
71+
5772
### Tag: package-2020-06 and java
5873

5974
These settings apply only when `--tag=package-2020-06` is specified on the command line.

specification/containerservice/resource-manager/readme.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,19 @@ input-file:
292292
293293
```
294294

295+
### Tag: package-2020-11-01-only
296+
297+
These settings apply only when `--tag=package-2020-11-01-only` is specified on the command line.
298+
299+
``` yaml $(tag) == 'package-2020-11-01-only'
300+
input-file:
301+
- Microsoft.ContainerService/stable/2020-11-01/managedClusters.json
302+
directive:
303+
- suppress: DefinitionsPropertiesNamesCamelCase
304+
where: $.definitions.ManagedClusterProperties.properties.autoScalerProfile
305+
reason: Cluster-autoscaler settings are not camel-cased
306+
```
307+
295308
### Tag: package-2020-09-01-only
296309

297310
These settings apply only when `--tag=package-2020-09-01-only` is specified on the command line.

specification/containerservice/resource-manager/readme.python.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Generate all API versions currently shipped for this package
1818
1919
```yaml $(python) && $(multiapi)
2020
batch:
21+
- tag: package-2020-11-01-only
2122
- tag: package-2020-09-01-only
2223
- tag: package-2020-07-01-only
2324
- tag: package-2020-06-01-only
@@ -40,6 +41,17 @@ batch:
4041
- tag: package-2017-07-only-extended
4142
```
4243
44+
### Tag: package-2020-11-01-only and python
45+
46+
These settings apply only when `--tag=package-2020-11-01-only --python` is specified on the command line.
47+
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
48+
49+
``` yaml $(tag) == 'package-2020-11-01-only' && $(python)
50+
python:
51+
namespace: azure.mgmt.containerservice.v2020_11_01
52+
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01
53+
```
54+
4355
### Tag: package-2020-09-01-only and python
4456

4557
These settings apply only when `--tag=package-2020-09-01-only --python` is specified on the command line.

0 commit comments

Comments
 (0)