Skip to content

Commit

Permalink
Update 2020-07-01 for AKS
Browse files Browse the repository at this point in the history
  • Loading branch information
AbelHu committed Jul 7, 2020
1 parent b950d3b commit 22cf8a1
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
11 changes: 11 additions & 0 deletions specification/containerservice/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ go:
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2020-07
- tag: package-2020-06
- tag: package-2020-04
- tag: package-2020-03
Expand All @@ -32,6 +33,16 @@ batch:
- tag: package-2017-08
- tag: package-2017-07
```
### Tag: package-2020-07 and go
These settings apply only when `--package-2020-07 --go` is specified on the command line.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

``` yaml $(tag)=='package-2020-07' && $(go)
namespace: containerservice
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-07-01/$(namespace)
```

### Tag: package-2020-06 and go

These settings apply only when `--package-2020-06 --go` is specified on the command line.
Expand Down
14 changes: 14 additions & 0 deletions specification/containerservice/resource-manager/readme.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@ batch:
- tag: package-2020-03
- tag: package-2020-04
- tag: package-2020-06
- tag: package-2020-07
```
### Tag: package-2020-07 and java
These settings apply only when `--tag=package-2020-07` is specified on the command line.
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-sdk-for-java clone>`.

``` yaml $(tag) == 'package-2020-07' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.containerservice.v2020_07_01
output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2020_07_01
regenerate-manager: true
generate-interface: true
```

### Tag: package-2020-06 and java
Expand Down
17 changes: 17 additions & 0 deletions specification/containerservice/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ These settings apply only when `--tag=package-2020-07` is specified on the comma

```yaml $(tag) == 'package-2020-07'
input-file:
- Microsoft.ContainerService/stable/2019-04-30/openShiftManagedClusters.json
- Microsoft.ContainerService/stable/2017-07-01/containerService.json
- Microsoft.ContainerService/stable/2019-08-01/location.json
- Microsoft.ContainerService/stable/2020-07-01/managedClusters.json
```
### Tag: package-2020-06
Expand Down Expand Up @@ -267,6 +270,19 @@ input-file:
- Microsoft.ContainerService/stable/2017-07-01/containerService.json
```

### Tag: package-2020-07-01-only

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

``` yaml $(tag) == 'package-2020-07-01-only'
input-file:
- Microsoft.ContainerService/stable/2020-07-01/managedClusters.json
directive:
- suppress: DefinitionsPropertiesNamesCamelCase
where: $.definitions.ManagedClusterProperties.properties.autoScalerProfile
reason: Cluster-autoscaler settings are not camel-cased
```

### Tag: package-2020-06-01-only

These settings apply only when `--tag=package-2020-06-01-only` is specified on the command line.
Expand Down Expand Up @@ -569,6 +585,7 @@ input-file:
- $(this-folder)/Microsoft.ContainerService/stable/2019-04-30/openShiftManagedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2017-07-01/containerService.json
- $(this-folder)/Microsoft.ContainerService/stable/2019-08-01/location.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-07-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-06-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-04-01/managedClusters.json
- $(this-folder)/Microsoft.ContainerService/stable/2020-03-01/managedClusters.json
Expand Down
12 changes: 12 additions & 0 deletions specification/containerservice/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Generate all API versions currently shipped for this package
```yaml $(python) && $(multiapi)
batch:
- tag: package-2020-07-01-only
- tag: package-2020-06-01-only
- tag: package-2020-04-01-only
- tag: package-2020-03-01-only
Expand All @@ -38,6 +39,17 @@ batch:
- tag: package-2017-07-only-extended
```
### Tag: package-2020-07-01-only and python
These settings apply only when `--tag=package-2020-07-01-only --python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.

``` yaml $(tag) == 'package-2020-07-01-only' && $(python)
python:
namespace: azure.mgmt.containerservice.v2020_07_01
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01
```

### Tag: package-2020-06-01-only and python

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

0 comments on commit 22cf8a1

Please sign in to comment.