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
### Packages impacted by this PR
@azure/cosmos
### Issues associated with this PR
Azure#33769
### Describe the problem that is addressed by this PR
### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?
### Are there test cases added in this PR? _(If not, why?)_
### Provide a list of related PRs _(if any)_
### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_
### Checklists
- [ ] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so,
create an Issue in the
[Autorest/typescript](https://github.com/Azure/autorest.typescript)
repository and link it here)_
- [ ] Added a changelog (if necessary)
|[AADAuth.js][aadauth]| Uses AAD credentials to authenticate with the CosmosClient.|
16
+
|[EntraAuth.js][entraauth]| Uses Entra Auth credentials to authenticate with the CosmosClient. |
17
17
|[AlterQueryThroughput.js][alterquerythroughput]| Updates a container offer to change query throughput. |
18
18
|[Bulk.js][bulk]| Shows a simple bulk call with each BulkOperation type. |
19
19
|[BulkUpdateWithSproc.js][bulkupdatewithsproc]| Bulk Updates documents with a Stored Procedure. Prefer `container.items().bulk()` to this behavior. |
@@ -53,20 +53,20 @@ npm install
53
53
3. Run whichever samples you like (note that some samples may require additional setup, see the table above):
54
54
55
55
```bash
56
-
node AADAuth.js
56
+
node EntraAuth.js
57
57
```
58
58
59
59
Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
|[AADAuth.ts][aadauth]| Uses AAD credentials to authenticate with the CosmosClient.|
16
+
|[EntraAuth.ts][entraauth]| Uses Entra Auth credentials to authenticate with the CosmosClient. |
17
17
|[AlterQueryThroughput.ts][alterquerythroughput]| Updates a container offer to change query throughput. |
18
18
|[Bulk.ts][bulk]| Shows a simple bulk call with each BulkOperation type. |
19
19
|[BulkUpdateWithSproc.ts][bulkupdatewithsproc]| Bulk Updates documents with a Stored Procedure. Prefer `container.items().bulk()` to this behavior. |
@@ -65,20 +65,20 @@ npm run build
65
65
4. Run whichever samples you like (note that some samples may require additional setup, see the table above):
66
66
67
67
```bash
68
-
node dist/AADAuth.js
68
+
node dist/EntraAuth.js
69
69
```
70
70
71
71
Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
0 commit comments