Skip to content

Commit

Permalink
config (#15227)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyyc authored Jul 16, 2021
1 parent a2d4dc4 commit 1a22ee0
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions specification/postgresql/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,35 @@ license-header: MICROSOFT_MIT_NO_VERSION
package-name: azure-mgmt-rdbms
no-namespace-folders: true
package-version: 1.0.0b1
```
### Python multi-api
Generate all API versions currently shipped for this package
```yaml $(track2)
clear-output-folder: true
batch:
- tag: package-flexibleserver-2021-06
- tag: package-2020-01-01
```
``` yaml $(python-mode) == 'update' && $(track2)
no-namespace-folders: true
### Tag: package-flexibleserver-2021-06 and python
These settings apply only when `--tag=package-flexibleserver-2021-06 --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>`.

``` yaml $(tag) == 'package-flexibleserver-2021-06' && $(python)
namespace: azure.mgmt.rdbms.postgresql_flexibleservers
output-folder: $(python-sdks-folder)/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/postgresql_flexibleservers
```

### Tag: package-2020-01-01 and python

These settings apply only when `--tag=package-2020-01-01 --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>`.

``` yaml $(tag) == 'package-2020-01-01' && $(python)
namespace: azure.mgmt.rdbms.postgresql
output-folder: $(python-sdks-folder)/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/postgresql
```

0 comments on commit 1a22ee0

Please sign in to comment.