Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating latest version in readme for AML #4973

Closed
wants to merge 4 commits into from
Closed
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 @@ -13,7 +13,16 @@ go:

```yaml $(go) && $(multiapi)
batch:
- tag: package-2018-03-preview
- tag: package-2018-11
```

### Tag: package-2018-11 and go

These settings apply only when `--tag=package-2018-11 --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-2018-11' && $(go)
output-folder: $(go-sdk-folder)/services/stable/machinelearning/mgmt/2018-11-19/$(namespace)
```

### Tag: package-2018-03-preview and go
Expand Down
26 changes: 23 additions & 3 deletions specification/machinelearningservices/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ These are the global settings for the Machine Learning Services API.

``` yaml
openapi-type: arm
tag: package-2018-03-preview
tag: package-2018-11
```

### Tag: package-2018-11

These settings apply only when `--tag=package-2018-11` is specified on the command line.

``` yaml $(tag) == 'package-2018-11'
input-file:
- Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json
```

### Tag: package-2018-03-preview

Expand Down Expand Up @@ -121,7 +129,20 @@ output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-machinelearning/ser

``` yaml $(java) && $(multiapi)
batch:
- tag: package-2018-03-preview
- tag: package-2018-11
```

### Tag: package-2018-11 and java

These settings apply only when `--tag=package-2018-11 --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-2018-11' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.machinelearningservices.v2018_11_19
output-folder: $(azure-libraries-for-java-folder)/machinelearningservices/resource-manager/v2018_11_19
regenerate-manager: true
generate-interface: true
```

### Tag: package-2018-03-preview and java
Expand All @@ -137,4 +158,3 @@ regenerate-manager: true
generate-interface: true
```