Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
david-msft committed Dec 24, 2020
1 parent 01c60b4 commit c434161
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ These settings apply only when `--azureresourceschema` is specified on the comma
``` yaml $(azureresourceschema) && $(multiapi)
batch:
- tag: schema-powerbidedicated-2017-10-01

- tag: schema-powerbidedicated-2020-12-28
```
Please also specify `--azureresourceschema-folder=<path to the root directory of your azure-resource-manager-schemas clone>`.
Expand All @@ -22,3 +22,14 @@ input-file:
- Microsoft.PowerBIdedicated/stable/2017-10-01/powerbidedicated.json
```

### Tag: schema-powerbidedicated-2020-12-28 and azureresourceschema

``` yaml $(tag) == 'schema-powerbidedicated-2020-12-28' && $(azureresourceschema)
output-folder: $(azureresourceschema-folder)/schemas
# all the input files in this apiVersion
input-file:
- Microsoft.PowerBIdedicated/stable/2020-12-28/powerbidedicated.json
```
10 changes: 10 additions & 0 deletions specification/powerbidedicated/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ go:
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2017-10-01
- tag: package-2020-12-28
```
### Tag: package-2017-10-01 and go
Expand All @@ -23,4 +24,13 @@ Please also specify `--go-sdk-folder=<path to the root directory of your azure-s

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

### Tag: package-2020-12-28 and go

These settings apply only when `--tag=package-2020-12-28 --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-12-28' && $(go)
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-12-28/$(namespace)
```
25 changes: 24 additions & 1 deletion specification/powerbidedicated/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,19 @@ These are the global settings for the PowerBIDedicated API.

``` yaml
openapi-type: arm
tag: package-2017-10-01
tag: package-2020-12-28
```
### Tag: package-2020-12-28
These settings apply only when `--tag=package-2020-12-28` is specified on the command line.

``` yaml $(tag) == 'package-2020-12-28'
input-file:
- Microsoft.PowerBIdedicated/stable/2020-12-28/powerbidedicated.json
```

### Tag: package-2017-10-01

These settings apply only when `--tag=package-2017-10-01` is specified on the command line.
Expand Down Expand Up @@ -97,6 +106,7 @@ output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-powerbidedicated
``` yaml $(java) && $(multiapi)
batch:
- tag: package-2017-10-01
- tag: package-2020-12-28
```

### Tag: package-2017-10-01 and java
Expand All @@ -112,6 +122,19 @@ regenerate-manager: true
generate-interface: true
```

### Tag: package-2020-12-28 and java

These settings apply only when `--tag=package-2020-12-28 --java` is specified on the command line.
Please also specify `--azure-libraries-for-java=<path to the root directory of your azure-sdk-for-java clone>`.

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

## Python

See configuration in [readme.python.md](./readme.python.md)
Expand Down

0 comments on commit c434161

Please sign in to comment.