Skip to content
Open
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
4 changes: 4 additions & 0 deletions config/data-plane.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ data_plane "synapse" "2021-06-01-preview" {
swagger_tag = "package-artifacts-2021-06-01-preview"
readme_file_path = "../../swagger/specification/synapse/data-plane/readme.md"
}
data_plane "search" "2023-11-01" {
swagger_tag = "package-2023-11-01"
readme_file_path = "../../config/search/readme.md"
}
39 changes: 39 additions & 0 deletions config/search/readme.go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## Go
These settings apply only when `--go` is specified on the command line.
``` yaml $(go)
go:
license-header: MICROSOFT_MIT_NO_VERSION
clear-output-folder: true
```
### Go multi-api
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2019-05-searchindex
- tag: package-2019-05-searchservice
```
### Tag: package-2023-11-01 and go

These settings apply only when `--tag=package-2023-11-01 --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>`.


### Tag: package-2019-05-searchindex and go

These settings apply only when `--tag=package-2019-05-searchindex --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-2019-05-searchindex' && $(go)
namespace: searchindex
output-folder: $(go-sdk-folder)/services/search/2019-05-01/$(namespace)
```


### Tag: package-2019-05-searchservice and go

These settings apply only when `--tag=package-2019-05-searchservice --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-2019-05-searchservice' && $(go)
namespace: searchservice
output-folder: $(go-sdk-folder)/services/search/2019-05-01/$(namespace)
```
Loading