Azure CLI Code Generator
Перейти к файлу
t-yuminghe 88d99979b4 report the key error when user is using action 2020-10-23 10:55:23 +08:00
.scripts Enable Clear Output In Relase Pipeline (#540) 2020-09-07 12:54:39 +08:00
azure-pipelines extend e2e time limit (#531) 2020-08-28 12:49:40 +08:00
common build failure 2020-01-07 13:29:33 +08:00
doc added doc for how to add a new command group (#575) 2020-10-15 10:39:26 +08:00
src report the key error when user is using action 2020-10-23 10:55:23 +08:00
.gitignore Add Sample for Release Test (#447) 2020-06-19 17:43:37 +08:00
CODE_OF_CONDUCT.md normalize-the-eol-in-file (#410) 2020-06-08 10:04:24 +08:00
LICENSE normalize-the-eol-in-file (#410) 2020-06-08 10:04:24 +08:00
README.md support az for cli core (#528) 2020-09-09 14:09:47 +08:00
SECURITY.md normalize-the-eol-in-file (#410) 2020-06-08 10:04:24 +08:00
package.json Upgrade Version to 1.6.1 (#573) 2020-10-14 00:00:02 +08:00
readme.az.common.md support az for cli core (#528) 2020-09-09 14:09:47 +08:00
rush.json first version of az examples 2019-12-06 14:41:59 +08:00
tsconfig.json add test 2020-01-20 14:52:56 +08:00

README.md

configuration

See documentation here


python:
    reason: 'make sure python flag exists to load config in python.md'
azure-arm: true

output-folder: $(az-output-folder)
debug-output-folder: $(az-output-folder)/_az_debug

use-extension:
  "@autorest/python": "5.1.0-preview.4"
  "@autorest/clicommon": "0.5.2"
  #"@autorest/python": "latest"

require:
  - ./readme.python.md
  - ./readme.cli.md
  - $(this-folder)/readme.az.common.md

pipeline-model: v3

scope-clicommon:
    output-folder: $(debug-output-folder)

scope-az:
    is-object: false
    output-artifact:
        #- source-file-az-hider
        #- source-file-pynamer
        #- source-file-aznamer
        #- source-file-modifiers
        #- source-file-merger
        - source-file-extension
    output-folder: $(az-output-folder)

cli:
    reason: 'make sure cli flag exists to load config in cli.md'
    naming:
        default:
            parameter: 'snake'
            property: 'snake'
            operation: 'snake'
            operationGroup:  'pascal'
            choice:  'pascal'
            choiceValue:  'snake'
            constant:  'snake'
            type:  'pascal'

modelerfour:
    lenient-model-deduplication: true
    group-parameters: true
    flatten-models: true
    flatten-payloads: true
#payload-flattening-threshold: 4
#recursive-payload-flattening: true

pipeline:
    python/m2r:
        input: clicommon/identity
    az/hider:
        input: python/namer
        #output-artifact: source-file-az-hider
    python/codegen:
        input: az/hider
    az/merger:
        input: python/namer
        #output-artifact: source-file-merger
    az/aznamer:
        input: az/merger
        #output-artifact: source-file-aznamer
    az/modifiers:
        input: az/aznamer
        #output-artifact: source-file-modifiers
    az/azgenerator:
        input: az/modifiers
        output-artifact: source-file-extension
    az/emitter:
        input:
            #- az/hider
            #- az/clicommon
            #- az/merger
            #- az/aznamer
            #- az/modifiers
            - az/azgenerator
        scope: scope-az

#payload-flattening-threshold: 4
#recursive-payload-flattening: true

cli:
    naming:
        m4:
            parameter: 'snake'
            property: 'snake'
            operation: 'snake'
            operationGroup:  'snake'
            choice:  'pascal'
            choiceValue:  'pascal'
            constant:  'snake'
            type:  'snake'

pipeline:
    python/m2r:
        input: clicommon/cli-m4namer
    az/renamer:
        input: clicommon/identity
    az/merger:
        input:
            - az/renamer
            - python/namer
        #output-artifact: source-file-merger
    az/aznamer:
        input: az/merger
        #output-artifact: source-file-aznamer
    az/modifiers:
        input: az/aznamer
        #output-artifact: source-file-modifiers
    az/azgenerator:
        input: az/modifiers
        output-artifact: source-file-extension
    az/emitter:
        input:
            #- az/hider
            #- az/clicommon
            #- az/merger
            #- az/aznamer
            #- az/modifiers
            - az/azgenerator
        scope: scope-az