Extension for AutoRest (https://github.com/Azure/autorest) that generates Azure resource schemas
Перейти к файлу
Lei Ni 14a17d2c77
Merge pull request #81 from Azure/fix-dupchild
fix bug
2022-08-10 17:01:00 +08:00
.gulp Remove retired apiversions 2020-09-08 13:07:25 +08:00
.scripts Update publish.yaml 2021-05-12 14:36:41 +08:00
.vscode initial (#1) 2017-08-25 14:10:20 -07:00
autorest.common@deb72a0013 Fix stackoverflow exception when generating logic 2020-03-12 10:20:36 +08:00
src fix bug 2022-08-10 17:00:00 +08:00
test Bump System.Net.Http from 4.3.2 to 4.3.4 in /test 2021-04-21 19:17:24 +00:00
.gitignore gulp regenerate 2020-08-29 00:01:46 +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 merged, updating for v3 work 2019-09-08 13:45:34 -07:00
SECURITY.md Microsoft mandatory file 2022-07-28 16:57:47 +00:00
autorest.azureresourceschema.sln Support overlapping constant-named resources 2019-10-21 14:35:45 -07:00
gulpfile.js initial (#1) 2017-08-25 14:10:20 -07:00
package.json Update package.json 2021-05-12 14:47:18 +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
pipeline-model: v3
title: none

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"