diff --git a/specification/containerservice/resource-manager/readme.go.md b/specification/containerservice/resource-manager/readme.go.md index 4b25b47f1bd5..40c1916373bd 100644 --- a/specification/containerservice/resource-manager/readme.go.md +++ b/specification/containerservice/resource-manager/readme.go.md @@ -20,6 +20,7 @@ azure-arm: true ``` yaml $(go) && $(multiapi) batch: + - tag: package-2021-10 - tag: package-2021-09 - tag: package-2021-08 - tag: package-2021-07 @@ -51,6 +52,16 @@ batch: - tag: package-2017-07 ``` +### Tag: package-2021-10 and go + +These settings apply only when `--package-2021-10 --go` is specified on the command line. +Please also specify `--go-sdk-folder=`. + +``` yaml $(tag)=='package-2021-10' && $(go) +namespace: containerservice +output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-10-01/$(namespace) +``` + ### Tag: package-2021-09 and go These settings apply only when `--package-2021-09 --go` is specified on the command line. diff --git a/specification/containerservice/resource-manager/readme.java.md b/specification/containerservice/resource-manager/readme.java.md index eb80d87d3cd3..d6130d6af0ed 100644 --- a/specification/containerservice/resource-manager/readme.java.md +++ b/specification/containerservice/resource-manager/readme.java.md @@ -45,6 +45,20 @@ batch: - tag: package-2021-07 - tag: package-2021-08 - tag: package-2021-09 + - tag: package-2021-10 +``` + +### Tag: package-2021-10 and java + +These settings apply only when `--tag=package-2021-10` is specified on the command line. +Please also specify `--azure-libraries-for-java-folder=`. + +``` yaml $(tag) == 'package-2021-10' && $(java) && $(multiapi) +java: + namespace: com.microsoft.azure.management.containerservice.v2021_10_01 + output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2021_10_01 +regenerate-manager: true +generate-interface: true ``` ### Tag: package-2021-09 and java diff --git a/specification/containerservice/resource-manager/readme.md b/specification/containerservice/resource-manager/readme.md index 532ad72fc7f1..8ad225e01146 100644 --- a/specification/containerservice/resource-manager/readme.md +++ b/specification/containerservice/resource-manager/readme.md @@ -364,6 +364,19 @@ input-file: ``` +### Tag: package-2021-10-01-only + +These settings apply only when `--tag=package-2021-10-01-only` is specified on the command line. + +``` yaml $(tag) == 'package-2021-10-01-only' +input-file: +- Microsoft.ContainerService/stable/2021-10-01/managedClusters.json +directive: + - suppress: DefinitionsPropertiesNamesCamelCase + where: $.definitions.ManagedClusterProperties.properties.autoScalerProfile + reason: Cluster-autoscaler settings are not camel-cased +``` + ### Tag: package-2021-09-01-only These settings apply only when `--tag=package-2021-09-01-only` is specified on the command line. diff --git a/specification/containerservice/resource-manager/readme.python.md b/specification/containerservice/resource-manager/readme.python.md index 291985ad6b0c..a413c9ed92a4 100644 --- a/specification/containerservice/resource-manager/readme.python.md +++ b/specification/containerservice/resource-manager/readme.python.md @@ -17,7 +17,7 @@ Generate all API versions currently shipped for this package ```yaml $(python) && $(multiapi) && $(track2) batch: - - tag: package-2021-10 + - tag: package-2021-10-01-only - tag: package-2021-09-01-only - tag: package-2021-08-01-only - tag: package-2021-07-01-only @@ -54,12 +54,12 @@ output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservic clear-output-folder: false perform-load: false ``` -### Tag: package-2021-10 and python +### Tag: package-2021-10-01-only and python -These settings apply only when `--tag=package-2021-10 --python` is specified on the command line. +These settings apply only when `--tag=package-2021-10-01-only --python` is specified on the command line. Please also specify `--python-sdks-folder=`. -``` yaml $(tag) == 'package-2021-10' && $(python) +``` yaml $(tag) == 'package-2021-10-01-only' && $(python) namespace: azure.mgmt.containerservice.v2021_10_01 output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2021_10_01 ```