Skip to content

Commit

Permalink
aks: update readme tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bcho committed Nov 3, 2020
1 parent 3215aab commit 3671ace
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ These settings apply only when `--azureresourceschema` is specified on the comma

``` yaml $(azureresourceschema) && $(multiapi)
batch:
- tag: schema-containerservice-2020-11-01
- tag: schema-containerservice-2020-09-01
- tag: schema-containerservice-2020-07-01
- tag: schema-containerservice-2020-06-01
Expand Down Expand Up @@ -36,6 +37,17 @@ batch:

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

### Tag: schema-containerservice-2020-11-01 and azureresourceschema

``` yaml $(tag) == 'schema-containerservice-2020-11-01' && $(azureresourceschema)
output-folder: $(azureresourceschema-folder)/schemas

# all the input files in this apiVersion
input-file:
- Microsoft.ContainerService/stable/2020-11-01/managedClusters.json

```

### Tag: schema-containerservice-2020-09-01 and azureresourceschema

``` yaml $(tag) == 'schema-containerservice-2020-09-01' && $(azureresourceschema)
Expand Down
12 changes: 12 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-11
- tag: package-2020-09
- tag: package-2020-07
- tag: package-2020-06
Expand All @@ -34,6 +35,17 @@ batch:
- tag: package-2017-08
- tag: package-2017-07
```
### Tag: package-2020-11 and go
These settings apply only when `--package-2020-11 --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-11' && $(go)
namespace: containerservice
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-11-01/$(namespace)
```

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

These settings apply only when `--package-2020-09 --go` is specified on the command line.
Expand Down
25 changes: 20 additions & 5 deletions specification/containerservice/resource-manager/readme.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,22 @@ batch:
- tag: package-2020-06
- tag: package-2020-07
- tag: package-2020-09
- tag: package-2020-11
```
### Tag: package-2020-07 and java
### Tag: package-2020-11 and java
These settings apply only when `--tag=package-2020-07` is specified on the command line.
These settings apply only when `--tag=package-2020-11` 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)
``` yaml $(tag) == 'package-2020-11' && $(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
namespace: com.microsoft.azure.management.containerservice.v2020_11_01
output-folder: $(azure-libraries-for-java-folder)/sdk/containerservice/mgmt-v2020_11_01
regenerate-manager: true
generate-interface: true
```

### Tag: package-2020-09 and java

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

### 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

These settings apply only when `--tag=package-2020-06` is specified on the command line.
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-11-01-only
- tag: package-2020-09-01-only
- tag: package-2020-07-01-only
- tag: package-2020-06-01-only
Expand All @@ -40,6 +41,17 @@ batch:
- tag: package-2017-07-only-extended
```
### Tag: package-2020-11-01-only and python
These settings apply only when `--tag=package-2020-11-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-11-01-only' && $(python)
python:
namespace: azure.mgmt.containerservice.v2020_11_01
output-folder: $(python-sdks-folder)/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01
```

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

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

0 comments on commit 3671ace

Please sign in to comment.