• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..02-Sep-2021-

CHANGELOG.mdH A D02-Sep-202140 42

README.mdH A D02-Sep-20213.4 KiB7649

autorest.mdH A D02-Sep-2021425 119

build.goH A D02-Sep-2021351 81

ci.ymlH A D02-Sep-2021355 1613

go.modH A D02-Sep-2021256 107

go.sumH A D02-Sep-20212 KiB2120

go_mod_tidy_hack.goH A D02-Sep-2021522 132

zz_generated_checknameavailability_client.goH A D02-Sep-20213.7 KiB9067

zz_generated_configurations_client.goH A D02-Sep-202112.1 KiB278233

zz_generated_constants.goH A D02-Sep-202115 KiB445300

zz_generated_databases_client.goH A D02-Sep-202116.2 KiB387329

zz_generated_firewallrules_client.goH A D02-Sep-202116.8 KiB387329

zz_generated_locationbasedperformancetier_client.goH A D02-Sep-20213.9 KiB9471

zz_generated_logfiles_client.goH A D02-Sep-20213.9 KiB9875

zz_generated_models.goH A D02-Sep-202163.9 KiB1,7461,031

zz_generated_operations_client.goH A D02-Sep-20212.8 KiB8259

zz_generated_pagers.goH A D02-Sep-20217.8 KiB291252

zz_generated_pollers.goH A D02-Sep-202132.8 KiB917688

zz_generated_polymorphic_helpers.goH A D02-Sep-20211.6 KiB5443

zz_generated_privateendpointconnections_client.goH A D02-Sep-202123.6 KiB493422

zz_generated_privatelinkresources_client.goH A D02-Sep-20217.2 KiB165133

zz_generated_recoverableservers_client.goH A D02-Sep-20213.9 KiB9875

zz_generated_replicas_client.goH A D02-Sep-20213.9 KiB9875

zz_generated_response_types.goH A D02-Sep-202129.7 KiB783410

zz_generated_serveradministrators_client.goH A D02-Sep-202116.5 KiB375317

zz_generated_serverbasedperformancetier_client.goH A D02-Sep-20214.1 KiB9875

zz_generated_serverkeys_client.goH A D02-Sep-202115.9 KiB384326

zz_generated_serverparameters_client.goH A D02-Sep-20216.2 KiB138111

zz_generated_servers_client.goH A D02-Sep-202125.6 KiB639546

zz_generated_serversecurityalertpolicies_client.goH A D02-Sep-202112.8 KiB271226

zz_generated_time_rfc3339.goH A D02-Sep-20211.4 KiB5840

zz_generated_virtualnetworkrules_client.goH A D02-Sep-202117 KiB378320

README.md

1# Azure Azure Database for PostgreSQL Module for Go
2
3[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/postgresql/armpostgresql)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/postgresql/armpostgresql)
4
5The `armpostgresql` module provides operations for working with Azure Azure Database for PostgreSQL.
6
7[Source code](https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/postgresql/armpostgresql)
8
9# Getting started
10
11## Prerequisites
12
13- an [Azure subscription](https://azure.microsoft.com/free/)
14- Go 1.13 or above
15
16## Install the package
17
18This project uses [Go modules](https://github.com/golang/go/wiki/Modules) for versioning and dependency management.
19
20Install the Azure Azure Database for PostgreSQL module:
21
22```sh
23go get github.com/Azure/azure-sdk-for-go/sdk/postgresql/armpostgresql
24```
25
26## Authorization
27
28When creating a client, you will need to provide a credential for authenticating with Azure Azure Database for PostgreSQL.  The `azidentity` module provides facilities for various ways of authenticating with Azure including client/secret, certificate, managed identity, and more.
29
30```go
31cred, err := azidentity.NewDefaultAzureCredential(nil)
32```
33
34For more information on authentication, please see the documentation for `azidentity` at [pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity).
35
36## Connecting to Azure Azure Database for PostgreSQL
37
38Once you have a credential, create a connection to the desired ARM endpoint.  The `armcore` module provides facilities for connecting with ARM endpoints including public and sovereign clouds as well as Azure Stack.
39
40```go
41con := armcore.NewDefaultConnection(cred, nil)
42```
43
44For more information on ARM connections, please see the documentation for `armcore` at [pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/armcore](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/armcore).
45
46## Clients
47
48Azure Azure Database for PostgreSQL modules consist of one or more clients.  A client groups a set of related APIs, providing access to its functionality within the specified subscription.  Create one or more clients to access the APIs you require using your `armcore.Connection`.
49
50```go
51client := armpostgresql.NewDatabasesClient(con, "<subscription ID>")
52```
53
54## Provide Feedback
55
56If you encounter bugs or have suggestions, please
57[open an issue](https://github.com/Azure/azure-sdk-for-go/issues) and assign the `Azure Database for PostgreSQL` label.
58
59# Contributing
60
61This project welcomes contributions and suggestions. Most contributions require
62you to agree to a Contributor License Agreement (CLA) declaring that you have
63the right to, and actually do, grant us the rights to use your contribution.
64For details, visit [https://cla.microsoft.com](https://cla.microsoft.com).
65
66When you submit a pull request, a CLA-bot will automatically determine whether
67you need to provide a CLA and decorate the PR appropriately (e.g., label,
68comment). Simply follow the instructions provided by the bot. You will only
69need to do this once across all repos using our CLA.
70
71This project has adopted the
72[Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
73For more information, see the
74[Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
75or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any
76additional questions or comments.