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

Fix Key Vault secrets doc references #8647

Merged
merged 1 commit into from Nov 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions samples/README.MD
Expand Up @@ -39,8 +39,7 @@ This section lists **main** how-to guides for the most commonly used APIs and mo
- [How to **create and delete keys**](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/keyvault/Azure.Security.KeyVault.Keys/samples/Sample1_HelloWorld.cs)
- [How to **encrypt and decrypt keys**](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/keyvault/Azure.Security.KeyVault.Keys/samples/Sample4_EncryptDecrypt.cs)
- [How to **backup and restore keys**](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/keyvault/Azure.Security.KeyVault.Keys/samples/Sample2_BackupAndRestore.cs)
- [How to **backup and restore secrets**](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/keyvault/Azure.Security.KeyVault.Secrets/samples/Sample2_BackupAndRestore.cs)
- [How to **backup and restore secrets**](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/keyvault/Azure.Security.KeyVault.Secrets/samples/Sample2_BackupAndRestore.md)

#### Azure.Storage.Blobs
- [How to **upload and download** a blob](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs/samples/Sample01a_HelloWorld.cs)

15 changes: 6 additions & 9 deletions sdk/keyvault/Azure.Security.KeyVault.Secrets/README.md
Expand Up @@ -283,16 +283,16 @@ Headers:

## Next steps
Several Key Vault Secrets client library samples are available to you in this GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Key Vault:
* [HelloWorld.cs][hello_world_sync] and [HelloWorldAsync.cs][hello_world_async] - for working with Azure Key Vault, including:
* [Sample1_HelloWorld.md][hello_world_sample] - for working with Azure Key Vault, including:
* Create a secret
* Get an existing secret
* Update an existing secret
* Delete secret

* [BackupAndRestore.cs][backup_and_restore_sync] and [BackupAndRestoreAsync.cs][backup_and_restore_async] - Contains the code snippets working with Key Vault secrets, including:
* [Sample2_BackupAndRestore.md][backup_and_restore_sample] - contains the code snippets working with Key Vault secrets, including:
* Backup and recover a secret

* [GetSecrets.cs][get_secrets_sync] and [GetSecretsAsync.cs][get_secrets_async] - Example code for working with Key Vault secrets, including:
* [Sample3_GetSecrets.md][get_secrets_sample] - example code for working with Key Vault secrets, including:
* Create secrets
* List all secrets in the Key Vault
* Update secrets in the Key Vault
Expand All @@ -317,14 +317,11 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
[azure_cli]: https://docs.microsoft.com/cli/azure
[azure_identity]: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/identity/Azure.Identity
[azure_sub]: https://azure.microsoft.com/free/
[backup_and_restore_async]:samples/Sample2_BackupAndRestoreAsync.cs
[backup_and_restore_sync]:samples/Sample2_BackupAndRestore.cs
[backup_and_restore_sample]: samples/Sample2_BackupAndRestore.md
[certificates_client_library]: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/keyvault/Azure.Security.KeyVault.Certificates
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/
[get_secrets_async]: samples/Sample3_GetSecretsAsync.cs
[get_secrets_sync]: samples/Sample3_GetSecrets.cs
[hello_world_async]: samples/Sample1_HelloWorldAsync.cs
[hello_world_sync]: samples/Sample1_HelloWorld.cs
[get_secrets_sample]: samples/Sample3_GetSecrets.md
[hello_world_sample]: samples/Sample1_HelloWorld.md
[keys_client_library]: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/keyvault/Azure.Security.KeyVault.Keys
[keyvault_docs]: https://docs.microsoft.com/en-us/azure/key-vault/
[keyvault_rest]: https://docs.microsoft.com/en-us/rest/api/keyvault/
Expand Down