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 @@ -42,5 +42,5 @@ These settings apply only when `--tag=release_3_0 --go` is specified on the comm
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

``` yaml $(tag) == 'release_3_0' && $(go)
output-folder: $(go-sdk-folder)/services/preview/cognitiveservices/v3.0-preview/$(namespace)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.0/$(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_2_1`.
The current release is `release_3_0`.

``` yaml

tag: release_2_1
tag: release_3_0
add-credentials: true
openapi-type: data-plane
```
Expand All @@ -32,12 +32,21 @@ input-file:
- stable/v2.1/Ocr.json
```

### Release 3.0-preview
These settings apply only when `--tag=release_3_0_preview` is specified on the command line.

``` yaml $(tag) == 'release_3_0_preview'
input-file:
- preview/v3.0-preview/Ocr.json
```

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

``` yaml $(tag) == 'release_3_0'
input-file:
- preview/v3.0-preview/Ocr.json
- stable/v3.0/ComputerVision.json
- stable/v3.0/Ocr.json
```

## Swagger to SDK
Expand Down Expand Up @@ -155,7 +164,8 @@ input-file:
- $(this-folder)/stable/v2.1/ComputerVision.json
- $(this-folder)/stable/v2.1/Ocr.json
- $(this-folder)/preview/v3.0-preview/Ocr.json

- $(this-folder)/stable/v3.0/ComputerVision.json
- $(this-folder)/stable/v3.0/Ocr.json
```

If there are files that should not be in the `all-api-versions` set,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,14 @@ namespace: "Azure::CognitiveServices::ComputerVision::V2_1"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_computervision/lib
title: "ComputerVisionClient"
```

### Tag: release_3_0 and ruby

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