You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/sql/arm-sql/README.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
## Azure SqlManagementClient SDK for JavaScript
2
2
3
-
This package contains an isomorphic SDK (runs both in Node.js and in browsers) for SqlManagementClient.
3
+
This package contains an isomorphic SDK (runs both in node.js and in browsers) for SqlManagementClient.
4
4
5
5
### Currently supported environments
6
6
7
7
-[LTS versions of Node.js](https://nodejs.org/about/releases/)
8
-
- Latest versions of Safari, Chrome, Edge, and Firefox.
8
+
- Latest versions of Safari, Chrome, Edge and Firefox.
9
9
10
10
### Prerequisites
11
11
@@ -21,7 +21,6 @@ Install both packages using the below command:
21
21
```bash
22
22
npm install --save @azure/arm-sql @azure/identity
23
23
```
24
-
25
24
> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features.
26
25
If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.
27
26
@@ -37,7 +36,6 @@ If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/
37
36
38
37
In the below samples, we pass the credential and the Azure subscription id to instantiate the client.
39
38
Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started.
40
-
41
39
#### nodejs - Authentication, client creation, and get recoverableDatabases as an example written in JavaScript.
42
40
43
41
##### Sample code
@@ -88,7 +86,7 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
88
86
constcredential=newInteractiveBrowserCredential(
89
87
{
90
88
clientId:"<client id for your Azure AD app>",
91
-
tenantId:"<optional tenant for your organization>"
0 commit comments