Skip to content

Commit

Permalink
Custom vision 3 3 (#9522)
Browse files Browse the repository at this point in the history
* Establish base from previous version to compare against

* Alphabetize paths

* API Updates

* Add missing error messages

* Fix file type

* Spelling fix

* Run prettier

* Update all apis
  • Loading branch information
areddish authored Jun 5, 2020
1 parent 09ac2b3 commit 1467080
Show file tree
Hide file tree
Showing 68 changed files with 8,613 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ go:
batch:
- tag: release_1_0
- tag: release_3_0
- tag: release_3_1
```
### Tag: release_1_0 and go
Expand All @@ -34,3 +35,12 @@ Please also specify `--go-sdk-folder=<path to the root directory of your azure-s
``` yaml $(tag) == 'release_3_0' && $(go)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.0/customvision/$(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_0' && $(go)
output-folder: $(go-sdk-folder)/services/cognitiveservices/v3.1/customvision/$(namespace)
```
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
Configuration for generating Custom Vision Prediction SDK.

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

``` yaml

tag: release_3_0
tag: release_3_1
openapi-type: data-plane
```
# Releases
Expand All @@ -28,6 +28,14 @@ input-file: stable/v3.0/Prediction.json
add-credentials: true
```

### 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/Prediction.json
add-credentials: true
```

# Validation

## Suppression
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ azure-arm: true
batch:
- tag: release_1_0
- tag: release_3_0
- tag: release_3_1
```
### Tag: release_1_0 and ruby
Expand All @@ -37,3 +38,14 @@ namespace: "Azure::CognitiveServices::CustomVision::Prediction::V3_0"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_customvisionprediction/lib
title: "PredictionClient"
```

### 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_1_0' && $(ruby)
namespace: "Azure::CognitiveServices::CustomVision::Prediction::V3_1"
output-folder: $(ruby-sdks-folder)/data/azure_cognitiveservices_customvisionprediction/lib
title: "PredictionClient"
```
Loading

0 comments on commit 1467080

Please sign in to comment.