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 @@ -16,6 +16,7 @@ batch:
- tag: release_2_0
- tag: release_2_1
- tag: release_3_0
- tag: release_3_1
```

### Tag: release_2_0 and go
Expand Down Expand Up @@ -45,11 +46,20 @@ Please also specify `--go-sdk-folder=<path to the root directory of your azure-s
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.0/$(namespace)
```

### Tag: release_3_1_preview and go

These settings apply only when `--tag=release_3_1_preview_2 --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) == 'release_3_1_preview_2' && $(go)
output-folder: $(go-sdk-folder)/services/preview/cognitiveservices/v3.1-preview.2/$(namespace)
```

### Tag: release_3_1 and go

These settings apply only when `--tag=release_3_1 --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) == 'release_3_1' && $(go)
output-folder: $(go-sdk-folder)/services/preview/cognitiveservices/v3.1-preview.2/$(namespace)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.1/$(namespace)
```
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

Configuration for generating Computer Vision SDK.

The current release is `release_3_0`.
The current release is `release_3_1`.

``` yaml

tag: release_3_0
tag: release_3_1
add-credentials: true
openapi-type: data-plane
```
Expand Down Expand Up @@ -57,6 +57,15 @@ input-file:
- preview/v3.1-preview.2/Ocr.json
```

### Release 3.1
These settings apply only when `--tag=release_3_1` is specified on the command line.

``` yaml $(tag) == 'release_3_1'
input-file:
- stable/v3.1/ComputerVision.json
- stable/v3.1/Ocr.json
```

## Swagger to SDK

This section describes what SDK should be generated by the automatic system.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,15 @@ Please also specify `--ruby-sdks-folder=<path to the root directory of your azur
namespace: "Azure::CognitiveServices::ComputerVision::V3_0"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_computervision/lib
title: "ComputerVisionClient"
```

### Tag: release_3_1 and ruby

These settings apply only when `--tag=release_3_1 --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) == 'release_3_1' && $(ruby)
namespace: "Azure::CognitiveServices::ComputerVision::V3_1"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_computervision/lib
title: "ComputerVisionClient"
```
Loading