Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-eventgrid-2020-10-15-preview
- tag: schema-eventgrid-2020-06-01
- tag: schema-eventgrid-2020-04-01-preview
- tag: schema-eventgrid-2020-01-01-preview
Expand All @@ -22,6 +23,17 @@ batch:

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

### Tag: schema-eventgrid-2020-10-15-preview and azureresourceschema

``` yaml $(tag) == 'schema-eventgrid-2020-10-15-preview' && $(azureresourceschema)
output-folder: $(azureresourceschema-folder)/schemas

# all the input files in this apiVersion
input-file:
- Microsoft.EventGrid/preview/2020-10-15-preview/EventGrid.json

```

### Tag: schema-eventgrid-2020-06-01 and azureresourceschema

``` yaml $(tag) == 'schema-eventgrid-2020-06-01' && $(azureresourceschema)
Expand Down
9 changes: 9 additions & 0 deletions specification/eventgrid/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ go:

``` yaml $(go) && $(multiapi)
batch:
- tag: package-2020-10-preview
- tag: package-2020-06
- tag: package-2020-04-preview
- tag: package-2020-01-preview
Expand All @@ -25,6 +26,14 @@ batch:
- tag: package-2017-09-preview
- tag: package-2017-06-preview
```
### Tag: package-2020-10-preview and go

These settings apply only when `--tag=package-2020-10-preview --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-10-preview' && $(go)
output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2020-10-15-preview/$(namespace)
```

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

Expand Down
14 changes: 14 additions & 0 deletions specification/eventgrid/resource-manager/readme.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-eventgrid

``` yaml $(java) && $(multiapi)
batch:
- tag: package-2020-10-preview
- tag: package-2020-06
- tag: package-2020-04-preview
- tag: package-2020-01-preview
Expand All @@ -26,6 +27,19 @@ batch:
- tag: package-2018-05-preview
- tag: package-2018-01
```
### Tag: package-2020-10-preview and java

These settings apply only when `--tag=package-2020-10-preview --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-10-preview' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.eventgrid.v2020_10_15_preview
output-folder: $(azure-libraries-for-java-folder)/sdk/eventgrid/mgmt-v2020_10_15_preview
regenerate-manager: true
generate-interface: true
```

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

Expand Down
10 changes: 10 additions & 0 deletions specification/eventgrid/resource-manager/readme.ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ azure-arm: true

``` yaml $(ruby) && $(multiapi)
batch:
- tag: package-2020-10-preview
- tag: package-2020-06
- tag: package-2020-04-preview
- tag: package-2020-01-preview
Expand All @@ -24,6 +25,15 @@ batch:
- tag: package-2017-09-preview
- tag: package-2017-06-preview
```
### Tag: package-2020-10-preview and ruby
These settings apply only when `--tag=package-2020-10-preview --ruby` is specified on the command line.
Please also specify `--ruby-sdks-folder=<path to the root directory of your azure-sdk-for-ruby clone>`.

``` yaml $(tag) == 'package-2020-10-preview' && $(ruby)

namespace: "Azure::EventGrid::Mgmt::V2020_10_15_preview"
output-folder: $(ruby-sdks-folder)/management/azure_mgmt_event_grid/lib
```

### Tag: package-2020-06 and ruby
These settings apply only when `--tag=package-2020-06 --ruby` is specified on the command line.
Expand Down