Extension for AutoRest (https://github.com/Azure/autorest) that generates Azure resource schemas
Перейти к файлу
Garrett Serack 1ed137a909 tweaks 2019-02-07 05:11:52 -08:00
.gulp Use common as submodule (#21) 2018-06-15 09:17:33 -07:00
.vscode initial (#1) 2017-08-25 14:10:20 -07:00
autorest.common@e2d26ff7d0 tweaking modeler still 2019-01-22 13:10:05 -08:00
src tweaking modeler still 2019-01-22 13:10:05 -08:00
test AutoRest v3 work 2019-01-14 14:09:33 -08:00
.gitignore tweaking modeler still 2019-01-22 13:10:05 -08:00
.gitmodules Use common as submodule (#21) 2018-06-15 09:17:33 -07:00
.npmignore Publish With Yarn (#6) 2017-09-22 17:57:21 -07:00
LICENSE Initial commit 2017-08-14 15:49:06 -07:00
README.md tweaks 2019-02-07 05:11:52 -08:00
autorest.azureresourceschema.sln Use common as submodule (#21) 2018-06-15 09:17:33 -07:00
gulpfile.js initial (#1) 2017-08-25 14:10:20 -07:00
package.json tweaks 2019-02-07 05:11:52 -08:00

README.md

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

IMPORTANT NOTE

This project uses a git submodule for dependent code. When cloning this repository use git clone --recursive ... or perform a git submodule init after the project is cloned.

AutoRest extension configuration

load-priority: 1000
enable-multi-api: true
try-require:
  - ./readme.enable-multi-api.md

pipeline:
  azureresourceschema/imodeler2:
    input: openapi-document/multi-api/identity
    output-artifact: code-model-v1
    scope: azureresourceschema
  azureresourceschema/commonmarker:
    input: imodeler2
    output-artifact: code-model-v1
  azureresourceschema/cm/transform:
    input: commonmarker
    output-artifact: code-model-v1
  azureresourceschema/cm/emitter:
    input: transform
    scope: scope-cm/emitter
  azureresourceschema/generate:
    plugin: azureresourceschema
    input: cm/transform
    output-artifact: source-file-azureresourceschema
  azureresourceschema/transform:
    input: generate
    output-artifact: source-file-azureresourceschema
    scope: scope-transform-string
  azureresourceschema/emitter:
    input: transform
    scope: scope-azureresourceschema/emitter

scope-azureresourceschema/emitter:
  input-artifact: source-file-azureresourceschema
  output-uri-expr: $key

scope-transform-string:
  is-object: false

output-artifact:
- source-file-azureresourceschema

scope-cm/emitter:
  input-artifact: code-model-v1
  is-object: true
  output-uri-expr: |
    "code-model-v1"    

scope-cm-yaml/emitter:
  input-artifact: code-model-v1-yaml
  is-object: true
  output-uri-expr: |
    "code-model-v1-yaml"