Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PostgreSQL] Update readme.typescript.md file to release SDK for PostgreSQL flexible server #14532

Merged
5 changes: 5 additions & 0 deletions specification/postgresql/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ description: The Microsoft Azure management API provides create, read, update, a
openapi-type: arm
tag: package-2020-01-01
```

### Tag: package-2021-06-01

These settings apply only when `--tag=package-2021-06-01` is specified on the command line.
Expand Down Expand Up @@ -238,6 +239,10 @@ See configuration in [readme.go.md](./readme.go.md)

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

## TypeScript

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



## Multi-API/Profile support for AutoRest v3 generators
Expand Down
23 changes: 21 additions & 2 deletions specification/postgresql/resource-manager/readme.typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,27 @@ Please also specify `--typescript-sdks-folder=<path to root folder of your azure
``` yaml $(typescript)
typescript:
azure-arm: true
package-name: "@azure/arm-postgresql"
output-folder: "$(typescript-sdks-folder)/sdk/postgresql/arm-postgresql"
clear-output-folder: true
generate-metadata: true
```

### Tag: package-2021-04-10-privatepreview and TypeScript

These settings apply only when `--tag=package-2021-04-10-privatepreview --typescript` is specified on the command line.
Please also specify `--typescript-sdks-folder=<path to the root directory of your azure-sdk-for-typescript clone>`.

``` yaml $(tag) == 'package-2021-04-10-privatepreview' && $(typescript)
title: PostgreSQLManagementFlexibleServerClient
DaeunYim marked this conversation as resolved.
Show resolved Hide resolved
package-name: "@azure/arm-postgresql-flexible"
output-folder: "$(typescript-sdks-folder)/sdk/postgresql/arm-postgresql-flexible/"
```

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

These settings apply only when `--tag=package-2020-01-01 --typescript` is specified on the command line.
Please also specify `--typescript-sdks-folder=<path to the root directory of your azure-sdk-for-typescript clone>`.

``` yaml $(tag) == 'package-2020-01-01' && $(typescript)
package-name: "@azure/arm-postgresql"
output-folder: "$(typescript-sdks-folder)/sdk/postgresql/arm-postgresql/"
DaeunYim marked this conversation as resolved.
Show resolved Hide resolved
```