Skip to content

Commit

Permalink
python sdk generation for ops management (Azure#8226)
Browse files Browse the repository at this point in the history
* python sdk generation for ops management

* missing change
  • Loading branch information
Zim Kalinowski authored and ssripadham committed Feb 21, 2020
1 parent ea14f0a commit bfc96f2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions specification/operationsmanagement/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ swagger-to-sdk:
- repo: azure-sdk-for-go
- repo: azure-sdk-for-js
- repo: azure-sdk-for-node
- repo: azure-sdk-for-python
```


Expand All @@ -80,6 +81,10 @@ csharp:

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

## Python

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

## Java

These settings apply only when `--java` is specified on the command line.
Expand Down
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.operationsmanagement
package-name: azure-mgmt-operationsmanagement
package-version: 0.1.0
clear-output-folder: true
```
``` yaml $(python) && $(python-mode) == 'update'
python:
no-namespace-folders: true
output-folder: $(python-sdks-folder)/operationsmanagement/azure-mgmt-operationsmanagement/azure/mgmt/operationsmanagement
```
``` yaml $(python) && $(python-mode) == 'create'
python:
basic-setup-py: true
output-folder: $(python-sdks-folder)/operationsmanagement/azure-mgmt-operationsmanagement
```

0 comments on commit bfc96f2

Please sign in to comment.