forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating readme.md for latest version for AML
- Loading branch information
Manoj Soni
committed
Jan 3, 2019
1 parent
46ce386
commit 727f279
Showing
2 changed files
with
166 additions
and
166 deletions.
There are no files selected for viewing
52 changes: 26 additions & 26 deletions
52
specification/machinelearningservices/resource-manager/readme.go.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
## Go | ||
|
||
These settings apply only when `--go` is specified on the command line. | ||
|
||
```yaml $(go) | ||
go: | ||
license-header: MICROSOFT_APACHE_NO_VERSION | ||
clear-output-folder: true | ||
namespace: services | ||
``` | ||
### Go multi-api | ||
```yaml $(go) && $(multiapi) | ||
batch: | ||
- tag: package-2018-03-preview | ||
``` | ||
### Tag: package-2018-03-preview and go | ||
These settings apply only when `--tag=package-2018-03-preview --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-03-preview' && $(go) | ||
output-folder: $(go-sdk-folder)/services/preview/machinelearning/mgmt/2018-03-01-preview/$(namespace) | ||
``` | ||
## Go | ||
|
||
These settings apply only when `--go` is specified on the command line. | ||
|
||
```yaml $(go) | ||
go: | ||
license-header: MICROSOFT_APACHE_NO_VERSION | ||
clear-output-folder: true | ||
namespace: services | ||
``` | ||
### Go multi-api | ||
```yaml $(go) && $(multiapi) | ||
batch: | ||
- tag: package-2018-11-19 | ||
``` | ||
### Tag: package-2018-11-19 and go | ||
These settings apply only when `--tag=package-2018-11-19 --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-19' && $(go) | ||
output-folder: $(go-sdk-folder)/services/stable/machinelearning/mgmt/2018-11-19/$(namespace) | ||
``` |
280 changes: 140 additions & 140 deletions
280
specification/machinelearningservices/resource-manager/readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,140 +1,140 @@ | ||
# MachineLearningServices | ||
|
||
> see https://aka.ms/autorest | ||
This is the AutoRest configuration file for Machine Learning Services. | ||
|
||
|
||
|
||
--- | ||
## Getting Started | ||
To build the SDK for EventHub, simply [Install AutoRest](https://aka.ms/autorest/install) and in this folder, run: | ||
|
||
> `autorest` | ||
To see additional help and options, run: | ||
|
||
> `autorest --help` | ||
--- | ||
|
||
## Configuration | ||
|
||
|
||
|
||
### Basic Information | ||
These are the global settings for the Machine Learning Services API. | ||
|
||
``` yaml | ||
openapi-type: arm | ||
tag: package-2018-03-preview | ||
``` | ||
### Tag: package-2018-03-preview | ||
These settings apply only when `--tag=package-2018-03-preview` is specified on the command line. | ||
|
||
``` yaml $(tag) == 'package-2018-03-preview' | ||
input-file: | ||
- Microsoft.MachineLearningServices/preview/2018-03-01-preview/machineLearningServices.json | ||
``` | ||
|
||
--- | ||
# Code Generation | ||
|
||
|
||
## Swagger to SDK | ||
|
||
This section describes what SDK should be generated by the automatic system. | ||
This is not used by Autorest itself. | ||
|
||
``` yaml $(swagger-to-sdk) | ||
swagger-to-sdk: | ||
- repo: azure-sdk-for-go | ||
- repo: azure-sdk-for-python | ||
- repo: azure-sdk-for-js | ||
- repo: azure-sdk-for-node | ||
``` | ||
|
||
|
||
## C# | ||
|
||
These settings apply only when `--csharp` is specified on the command line. | ||
Please also specify `--csharp-sdks-folder=<path to "SDKs" directory of your azure-sdk-for-net clone>`. | ||
|
||
``` yaml $(csharp) | ||
csharp: | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
namespace: Microsoft.Azure.Management.MachineLearningServices | ||
output-folder: $(csharp-sdks-folder)/MachineLearningServices/Management.MachineLearningServices/Generated | ||
clear-output-folder: true | ||
``` | ||
|
||
## Python | ||
|
||
These settings apply only when `--python` is specified on the command line. | ||
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`. | ||
Use `--python-mode=update` if you already have a setup.py and just want to update the code itself. | ||
|
||
``` yaml $(python) | ||
python-mode: create | ||
python: | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
payload-flattening-threshold: 2 | ||
namespace: azure.mgmt.machinelearningservices | ||
package-name: azure-mgmt-machinelearningservices | ||
package-version: 0.1.0 | ||
clear-output-folder: true | ||
``` | ||
``` yaml $(python) && $(python-mode) == 'update' | ||
python: | ||
no-namespace-folders: true | ||
output-folder: $(python-sdks-folder)/azure-mgmt-machinelearningservices/azure/mgmt/machinelearningservices | ||
``` | ||
``` yaml $(python) && $(python-mode) == 'create' | ||
python: | ||
basic-setup-py: true | ||
output-folder: $(python-sdks-folder)/azure-mgmt-machinelearningservices | ||
``` | ||
|
||
## Go | ||
|
||
See configuration in [readme.go.md](./readme.go.md) | ||
|
||
## Java | ||
|
||
These settings apply only when `--java` is specified on the command line. | ||
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-libraries-for-java clone>`. | ||
|
||
``` yaml $(java) | ||
azure-arm: true | ||
fluent: true | ||
namespace: com.microsoft.azure.management.machinelearning.services | ||
license-header: MICROSOFT_MIT_NO_CODEGEN | ||
payload-flattening-threshold: 1 | ||
output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-machinelearning/services | ||
``` | ||
|
||
### Java multi-api | ||
|
||
``` yaml $(java) && $(multiapi) | ||
batch: | ||
- tag: package-2018-03-preview | ||
``` | ||
|
||
### Tag: package-2018-03-preview and java | ||
|
||
These settings apply only when `--tag=package-2018-03-preview --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-03-preview' && $(java) && $(multiapi) | ||
java: | ||
namespace: com.microsoft.azure.management.machinelearningservices.v2018_03_01_preview | ||
output-folder: $(azure-libraries-for-java-folder)/machinelearningservices/resource-manager/v2018_03_01_preview | ||
regenerate-manager: true | ||
generate-interface: true | ||
``` | ||
|
||
|
||
# MachineLearningServices | ||
|
||
> see https://aka.ms/autorest | ||
This is the AutoRest configuration file for Machine Learning Services. | ||
|
||
|
||
|
||
--- | ||
## Getting Started | ||
To build the SDK for EventHub, simply [Install AutoRest](https://aka.ms/autorest/install) and in this folder, run: | ||
|
||
> `autorest` | ||
To see additional help and options, run: | ||
|
||
> `autorest --help` | ||
--- | ||
|
||
## Configuration | ||
|
||
|
||
|
||
### Basic Information | ||
These are the global settings for the Machine Learning Services API. | ||
|
||
``` yaml | ||
openapi-type: arm | ||
tag: package-2018-11-19 | ||
``` | ||
### Tag: package-2018-11-19 | ||
These settings apply only when `--tag=package-2018-11-19` is specified on the command line. | ||
|
||
``` yaml $(tag) == 'package-2018-11-19' | ||
input-file: | ||
- Microsoft.MachineLearningServices/stable/2018-11-19/machineLearningServices.json | ||
``` | ||
|
||
--- | ||
# Code Generation | ||
|
||
|
||
## Swagger to SDK | ||
|
||
This section describes what SDK should be generated by the automatic system. | ||
This is not used by Autorest itself. | ||
|
||
``` yaml $(swagger-to-sdk) | ||
swagger-to-sdk: | ||
- repo: azure-sdk-for-go | ||
- repo: azure-sdk-for-python | ||
- repo: azure-sdk-for-js | ||
- repo: azure-sdk-for-node | ||
``` | ||
|
||
|
||
## C# | ||
|
||
These settings apply only when `--csharp` is specified on the command line. | ||
Please also specify `--csharp-sdks-folder=<path to "SDKs" directory of your azure-sdk-for-net clone>`. | ||
|
||
``` yaml $(csharp) | ||
csharp: | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
namespace: Microsoft.Azure.Management.MachineLearningServices | ||
output-folder: $(csharp-sdks-folder)/MachineLearningServices/Management.MachineLearningServices/Generated | ||
clear-output-folder: true | ||
``` | ||
|
||
## Python | ||
|
||
These settings apply only when `--python` is specified on the command line. | ||
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`. | ||
Use `--python-mode=update` if you already have a setup.py and just want to update the code itself. | ||
|
||
``` yaml $(python) | ||
python-mode: create | ||
python: | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
payload-flattening-threshold: 2 | ||
namespace: azure.mgmt.machinelearningservices | ||
package-name: azure-mgmt-machinelearningservices | ||
package-version: 0.1.0 | ||
clear-output-folder: true | ||
``` | ||
``` yaml $(python) && $(python-mode) == 'update' | ||
python: | ||
no-namespace-folders: true | ||
output-folder: $(python-sdks-folder)/azure-mgmt-machinelearningservices/azure/mgmt/machinelearningservices | ||
``` | ||
``` yaml $(python) && $(python-mode) == 'create' | ||
python: | ||
basic-setup-py: true | ||
output-folder: $(python-sdks-folder)/azure-mgmt-machinelearningservices | ||
``` | ||
|
||
## Go | ||
|
||
See configuration in [readme.go.md](./readme.go.md) | ||
|
||
## Java | ||
|
||
These settings apply only when `--java` is specified on the command line. | ||
Please also specify `--azure-libraries-for-java-folder=<path to the root directory of your azure-libraries-for-java clone>`. | ||
|
||
``` yaml $(java) | ||
azure-arm: true | ||
fluent: true | ||
namespace: com.microsoft.azure.management.machinelearning.services | ||
license-header: MICROSOFT_MIT_NO_CODEGEN | ||
payload-flattening-threshold: 1 | ||
output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-machinelearning/services | ||
``` | ||
|
||
### Java multi-api | ||
|
||
``` yaml $(java) && $(multiapi) | ||
batch: | ||
- tag: package-2018-11-19 | ||
``` | ||
|
||
### Tag: package-2018-11-19 and java | ||
|
||
These settings apply only when `--tag=package-2018-11-19 --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-19' && $(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 | ||
``` | ||
|
||
|