Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sdk/appconfiguration/app-configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Use the client library for App Configuration to:

[Source code](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/appconfiguration/app-configuration/) |
[Package (NPM)](https://www.npmjs.com/package/@azure/app-configuration) |
[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/app-configuration) |
[API reference documentation](https://aka.ms/azsdk/js/docs/ref/app-configuration) |
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we creating this as an aka? If the doc links right to docs.microsoft.com, then I don't see a need for an aka. I've only been using akas for links that point off plat, like GH pages.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jongio Hi! I will be making a new PR and closing this one. I believe this list gets closer to those links that should be moved to aka.ms: https://gist.github.com/sadasant/7f4f00f433577b66fd016136c4312e7e Do you mind helping me know if this list is correct? or if I could narrow it even further? I will do the PR from your feedback, for sure.

[Product documentation](https://docs.microsoft.com/en-us/azure/azure-app-configuration/) |
[Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples)

Expand Down Expand Up @@ -80,12 +80,12 @@ const client = new AppConfigurationClient("<connection string>");

## Key concepts

The [`AppConfigurationClient`](https://docs.microsoft.com/javascript/api/@azure/app-configuration/appconfigurationclient) has some terminology changes from App Configuration in the portal.
The [`AppConfigurationClient`](https://aka.ms/azsdk/js/docs/ref/app-configuration/appconfigurationclient) has some terminology changes from App Configuration in the portal.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, I can see doing this for type/method docs would require us to create and maintain many aka.ms links. I feel it would be fine to only use aka.ms links for landing pages but would like to know what others think.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yea, good question. @jongio I think you wanted to keep these links just for general docs, this many layers deep seems to be a bit much and a pain to maintain

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should do one for each landing page.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mind providing some guidance on the naming of the links for these landing pages? The one referenced in this thread happened automatically.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirmed with Jeremy and I will proceed to focus on links like:

[API reference documentation](https://aka.ms/azsdk/js/docs/ref/app-configuration)

Not like:

[`AppConfigurationClient`](https://aka.ms/azsdk/js/docs/ref/app-configuration/appconfigurationclient)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So this will be for general ref docs but not for that particular client, right? Will you keep the links for client the way they were before?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, latest directions: Jon says that docs.microsoft.com don't need aka . I'll only do aka links to non-docs.microsoft links.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kaerm Hi! I will be making a new PR and closing this one. I believe this list gets closer to those links that should be moved to aka.ms: https://gist.github.com/sadasant/7f4f00f433577b66fd016136c4312e7e Do you mind helping me know if this list is correct? or if I could narrow it even further? I will do the PR from your feedback, for sure.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So you are planning to aka.ms the links in that list, correct?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kaerm yep! I'm doing other things, but I will get back to this asap.


- Key/Value pairs are represented as [`ConfigurationSetting`](https://docs.microsoft.com/javascript/api/@azure/app-configuration/configurationsetting) objects
- Key/Value pairs are represented as [`ConfigurationSetting`](https://aka.ms/azsdk/js/docs/ref/app-configuration/configurationsetting) objects
- Locking and unlocking a setting is represented in the `isReadOnly` field, which you can toggle using `setReadOnly`.

The client follows a simple design methodology - [`ConfigurationSetting`](https://docs.microsoft.com/javascript/api/@azure/app-configuration/configurationsetting) can be passed into any method that takes a [`ConfigurationSettingParam`](https://docs.microsoft.com/javascript/api/@azure/app-configuration/configurationsettingparam) or [`ConfigurationSettingId`](https://docs.microsoft.com/javascript/api/@azure/app-configuration/configurationsettingid).
The client follows a simple design methodology - [`ConfigurationSetting`](https://aka.ms/azsdk/js/docs/ref/app-configuration/configurationsetting) can be passed into any method that takes a [`ConfigurationSettingParam`](https://aka.ms/azsdk/js/docs/ref/app-configuration/configurationsettingparam) or [`ConfigurationSettingId`](https://aka.ms/azsdk/js/docs/ref/app-configuration/configurationsettingid).

This means this pattern works:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[setreadonlysample]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/javascript/setReadOnlySample.js
[getsettingonlyifchanged]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/javascript/getSettingOnlyIfChanged.js
[listrevisions]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/javascript/listRevisions.js
[apiref]: https://docs.microsoft.com/javascript/api/@azure/app-configuration
[apiref]: https://aka.ms/azsdk/js/docs/ref/app-configuration
[azappconfig]: https://docs.microsoft.com/azure/azure-app-configuration/
[freesub]: https://azure.microsoft.com/free/
[package]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[setreadonlysample]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/typescript/src/setReadOnlySample.ts
[getsettingonlyifchanged]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/typescript/src/getSettingOnlyIfChanged.ts
[listrevisions]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/samples/typescript/src/listRevisions.ts
[apiref]: https://docs.microsoft.com/javascript/api/@azure/app-configuration
[apiref]: https://aka.ms/azsdk/js/docs/ref/app-configuration
[azappconfig]: https://docs.microsoft.com/azure/azure-app-configuration/
[freesub]: https://azure.microsoft.com/free/
[package]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appconfiguration/app-configuration/README.md
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-lro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

`@azure/core-lro` is made following our [Long Running Operations guidelines](https://azure.github.io/azure-sdk/typescript_design.html#ts-lro)

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-lro) | [Package (npm)](https://www.npmjs.com/package/@azure/core-lro) | [API Reference Documentation](https://docs.microsoft.com/javascript/api/@azure/core-lro) | [Samples](./samples)
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/core/core-lro) | [Package (npm)](https://www.npmjs.com/package/@azure/core-lro) | [API Reference Documentation](https://aka.ms/azsdk/js/docs/ref/core-lro) | [Samples](./samples)

## Getting started

Expand Down
14 changes: 7 additions & 7 deletions sdk/eventhub/event-hubs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Azure Event Hubs client library allows you to send and receive events in you

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs) |
[Package (npm)](https://www.npmjs.com/package/@azure/event-hubs) |
[API Reference Documentation](https://docs.microsoft.com/javascript/api/@azure/event-hubs) |
[API Reference Documentation](https://aka.ms/azsdk/js/docs/ref/event-hubs) |
[Product documentation](https://azure.microsoft.com/en-us/services/event-hubs/) |
[Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples)

Expand Down Expand Up @@ -46,8 +46,8 @@ You also need to enable `compilerOptions.allowSyntheticDefaultImports` in your t
### Authenticate the client

Interaction with Event Hubs starts with either an instance of the
[EventHubConsumerClient](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventhubconsumerclient) class
or an instance of the [EventHubProducerClient](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventhubproducerclient) class.
[EventHubConsumerClient](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventhubconsumerclient) class
or an instance of the [EventHubProducerClient](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventhubproducerclient) class.
There are constructor overloads to support different ways of instantiating these classes as shown below:

#### Use connection string for the Event Hubs namespace
Expand Down Expand Up @@ -179,10 +179,10 @@ In order to publish events, you'll need to create an `EventHubProducerClient`. W

You may publish events to a specific partition, or allow the Event Hubs service to decide which partition events should be published to. It is recommended to use automatic routing when the publishing of events needs to be highly available or when event data should be distributed evenly among the partitions. In the example below, we will take advantage of automatic routing.

- Create an `EventDataBatch` object using the [createBatch](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventhubproducerclient#createbatch-createbatchoptions-)
- Add events to the batch using the [tryAdd](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventdatabatch#tryadd-eventdata--tryaddoptions-)
- Create an `EventDataBatch` object using the [createBatch](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventhubproducerclient#createbatch-createbatchoptions-)
- Add events to the batch using the [tryAdd](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventdatabatch#tryadd-eventdata--tryaddoptions-)
method. You can do this until the maximum batch size limit is reached or until you are done adding the number of events you liked, whichever comes first. This method would return `false` to indicate that no more events can be added to the batch due to the max batch size being reached.
- Send the batch of events using the [sendBatch](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventhubproducerclient#sendbatch-eventdatabatch--sendbatchoptions-) method.
- Send the batch of events using the [sendBatch](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventhubproducerclient#sendbatch-eventdatabatch--sendbatchoptions-) method.

In the below example, we attempt to send 10 events to Azure Event Hubs.

Expand Down Expand Up @@ -224,7 +224,7 @@ For example: `body: { "message": "Hello World" }`
### Consume events from an Event Hub

To consume events from an Event Hub instance, you also need to know which consumer group you want to target.
Once you know this, you are ready to create an [EventHubConsumerClient](https://docs.microsoft.com/javascript/api/@azure/event-hubs/eventhubconsumerclient). While the below example shows one way to create the client, see the
Once you know this, you are ready to create an [EventHubConsumerClient](https://aka.ms/azsdk/js/docs/ref/event-hubs/eventhubconsumerclient). While the below example shows one way to create the client, see the
[Authenticate the client](#authenticate-the-client) section to learn other ways to instantiate the client.

The `subscribe` method on the client has overloads which, combined with the constructor, can cater to several
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/samples/browserSample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[configuration]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/browserSample/src/configuration.js
[app]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/browserSample/src/index.js
[htmlpage]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/browserSample/index.html
[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs
[apiref]: https://aka.ms/azsdk/js/docs/ref/event-hubs
[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send
[aziothub]: https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-node-node-module-twin-getstarted
[freesub]: https://azure.microsoft.com/free/
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/samples/javascript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[websockets]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/javascript/websockets.js
[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js
[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/javascript/receiveEvents.js
[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs
[apiref]: https://aka.ms/azsdk/js/docs/ref/event-hubs
[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/javascript/receiveEventsUsingCheckpointStore.js
[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send
[aziothub]: https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-node-node-module-twin-getstarted
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/samples/javascript/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IOTHUB_EH_COMPATIBLE_CONNECTION_STRING=<connection string with EntityPath>
# in the `usingAadAuth` sample.
#
# See the documentation for `EnvironmentCredential` at the following link:
# https://docs.microsoft.com/javascript/api/@azure/identity/environmentcredential
# https://aka.ms/azsdk/js/docs/ref/identity/environmentcredential
AZURE_CLIENT_ID=
AZURE_TENANT_ID=
AZURE_CLIENT_SECRET=
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/samples/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[websockets]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/typescript/src/websockets.ts
[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts
[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts
[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs
[apiref]: https://aka.ms/azsdk/js/docs/ref/event-hubs
[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/typescript/src/receiveEventsUsingCheckpointStore.ts
[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send
[aziothub]: https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-node-node-module-twin-getstarted
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/samples/typescript/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IOTHUB_EH_COMPATIBLE_CONNECTION_STRING=<connection string with EntityPath>
# in the `usingAadAuth` sample.
#
# See the documentation for `EnvironmentCredential` at the following link:
# https://docs.microsoft.com/javascript/api/@azure/identity/environmentcredential
# https://aka.ms/azsdk/js/docs/ref/identity/environmentcredential
AZURE_CLIENT_ID=
AZURE_TENANT_ID=
AZURE_CLIENT_SECRET=
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ node receiveEventsUsingCheckpointStore.js
Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients.

[azstorage]: https://docs.microsoft.com/azure/storage/common/storage-account-overview
[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs
[apiref]: https://aka.ms/azsdk/js/docs/ref/event-hubs
[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/javascript/receiveEventsUsingCheckpointStore.js
[apispecificstorage]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/javascript/receiveEventsWithApiSpecificStorage.js
[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ node dist/receiveEventsUsingCheckpointStore.js
Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients.

[azstorage]: https://docs.microsoft.com/azure/storage/common/storage-account-overview
[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs
[apiref]: https://aka.ms/azsdk/js/docs/ref/event-hubs
[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/typescript/src/receiveEventsUsingCheckpointStore.ts
[apispecificstorage]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/eventhub/eventhubs-checkpointstore-blob/samples/typescript/src/receiveEventsWithApiSpecificStorage.ts
[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send
Expand Down
2 changes: 1 addition & 1 deletion sdk/formrecognizer/ai-form-recognizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ from form documents. It includes the following main functionalities:

[Source code](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/formrecognizer/ai-form-recognizer/) |
[Package (NPM)](https://www.npmjs.com/package/@azure/ai-form-recognizer) |
[API reference documentation](https://aka.ms/azsdk-js-formrecognizer-ref-docs) |
[API reference documentation](https://aka.ms/azsdk/js/docs/ref/ai-form-recognizer) |
[Product documentation](https://docs.microsoft.com/azure/cognitive-services/form-recognizer/) |
[Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[iteratorModels]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/javascript/iteratorModels.js
[getBoundingBoxes]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/javascript/getBoundingBoxes.js
[differentiateLabeledUnlabeled]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/javascript/differentiateLabeledUnlabeled.js
[apiref]: https://docs.microsoft.com/javascript/api/@azure/ai-form-recognizer
[apiref]: https://aka.ms/azsdk/js/docs/ref/ai-form-recognizer
[azcogsvc]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account
[freesub]: https://azure.microsoft.com/free/
[package]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[iteratorModels]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/typescript/src/iteratorModels.ts
[getBoundingBoxes]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/typescript/src/getBoundingBoxes.ts
[differentiateLabeledUnlabeled]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/formrecognizer/ai-form-recognizer/samples/typescript/src/differentiateLabeledUnlabeled.ts
[apiref]: https://docs.microsoft.com/javascript/api/@azure/ai-text-analytics
[apiref]: https://aka.ms/azsdk/js/docs/ref/ai-text-analytics
[azcogsvc]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account
[freesub]: https://azure.microsoft.com/free/
[package]: https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/textanalytics/ai-text-analytics/README.md
Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/identity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Credentials raise `AuthenticationError` when they fail to authenticate. This cla

### Read the documentation

API documentation for this library can be found on our [documentation site](https://docs.microsoft.com/javascript/api/@azure/identity).
API documentation for this library can be found on our [documentation site](https://aka.ms/azsdk/js/docs/ref/identity).

### Provide Feedback

Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/keyvault-certificates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Use the client library for Azure Key Vault Certificates in your Node.js applicat
- Get all certificates.
- Get all deleted certificates.

[Source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/keyvault-certificates) | [Package (npm)](https://www.npmjs.com/package/@azure/keyvault-certificates) | [API Reference Documentation](https://docs.microsoft.com/javascript/api/@azure/keyvault-certificates) | [Product documentation](https://azure.microsoft.com/en-us/services/key-vault/) | [Samples](./samples)
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/keyvault-certificates) | [Package (npm)](https://www.npmjs.com/package/@azure/keyvault-certificates) | [API Reference Documentation](https://aka.ms/azsdk/js/docs/ref/keyvault-certificates) | [Product documentation](https://azure.microsoft.com/en-us/services/key-vault/) | [Samples](./samples)

## Getting started

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[mergecertificate]: ./mergeCertificate.js
[operations]: ./operations.js
[purgeAllCertificates]: ./purgeAllCertificates.js
[apiref]: https://docs.microsoft.com/javascript/api/@azure/keyvault-certificates
[apiref]: https://aka.ms/azsdk/js/docs/ref/keyvault-certificates
[azkeyvault]: https://docs.microsoft.com/azure/key-vault/quick-create-portal
[kvsoftdelete]: https://docs.microsoft.com/azure/key-vault/key-vault-soft-delete-cli
[freesub]: https://azure.microsoft.com/free/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ KEYVAULT_NAME=<key-vault-name>
# Used to authenticate using Azure AD as a service principal for role-based authentication.
#
# See the documentation for `EnvironmentCredential` at the following link:
# https://docs.microsoft.com/javascript/api/@azure/identity/environmentcredential
# https://aka.ms/azsdk/js/docs/ref/identity/environmentcredential
AZURE_TENANT_ID=<AD tenant id or name>
AZURE_CLIENT_ID=<ID of the user/service principal to authenticate as>
AZURE_CLIENT_SECRET=<client secret used to authenticate to Azure AD>
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Take a look at our [API Documentation][apiref] for more information about the AP
[mergecertificate]: ./src/mergeCertificate.ts
[operations]: ./src/operations.ts
[purgeAllCertificates]: ./src/purgeAllCertificates.ts
[apiref]: https://docs.microsoft.com/javascript/api/@azure/keyvault-certificates
[apiref]: https://aka.ms/azsdk/js/docs/ref/keyvault-certificates
[azkeyvault]: https://docs.microsoft.com/azure/key-vault/quick-create-portal
[kvsoftdelete]: https://docs.microsoft.com/azure/key-vault/key-vault-soft-delete-cli
[freesub]: https://azure.microsoft.com/free/
Expand Down
Loading