Skip to content

Commit

Permalink
Databricks Python configuration (#5670)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel authored Apr 16, 2019
1 parent 19478fd commit ee5685b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
7 changes: 6 additions & 1 deletion specification/databricks/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,16 @@ This is not used by Autorest itself.

``` yaml $(swagger-to-sdk)
swagger-to-sdk:
- repo: azure-sdk-for-python
- repo: azure-sdk-for-go
- repo: azure-sdk-for-js
- repo: azure-sdk-for-node
```

## Go

See configuration in [readme.go.md](./readme.go.md)
See configuration in [readme.go.md](./readme.go.md)

## Python

See configuration in [readme.python.md](./readme.python.md)
27 changes: 27 additions & 0 deletions specification/databricks/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## 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.databricks
package-name: azure-mgmt-databricks
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-databricks/azure/mgmt/databricks
```
``` yaml $(python) && $(python-mode) == 'create'
python:
basic-setup-py: true
output-folder: $(python-sdks-folder)/azure-mgmt-databricks
```

0 comments on commit ee5685b

Please sign in to comment.