Skip to content

Commit 4c9e786

Browse files
committed
Change command to cmdlet for PS.
1 parent 03b70f2 commit 4c9e786

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/key-vault/certificates/quick-create-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ To read a certificate from Key Vault, use the [get_certificate](/python/api/azur
197197
retrieved_certificate = client.get_certificate(certificateName)
198198
```
199199

200-
You can also verify that the certificate has been set with the Azure CLI command [az keyvault certificate show](/cli/azure/keyvault/certificate?#az-keyvault-certificate-show) or the Azure PowerShell command [Get-AzKeyVaultCertificate](/powershell/module/az.keyvault/get-azkeyvaultcertificate)
200+
You can also verify that the certificate has been set with the Azure CLI command [az keyvault certificate show](/cli/azure/keyvault/certificate?#az-keyvault-certificate-show) or the Azure PowerShell cmdlet [Get-AzKeyVaultCertificate](/powershell/module/az.keyvault/get-azkeyvaultcertificate)
201201

202202
### Delete a certificate
203203

articles/key-vault/secrets/quick-create-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ retrieved_secret = client.get_secret(secretName)
193193

194194
The secret value is contained in `retrieved_secret.value`.
195195

196-
You can also retrieve a secret with the Azure CLI command [az keyvault secret show](/cli/azure/keyvault/secret?#az-keyvault-secret-show) or the Azure PowerShell command [Get-AzKeyVaultSecret](/powershell/module/az.keyvault/get-azkeyvaultsecret).
196+
You can also retrieve a secret with the Azure CLI command [az keyvault secret show](/cli/azure/keyvault/secret?#az-keyvault-secret-show) or the Azure PowerShell cmdlet [Get-AzKeyVaultSecret](/powershell/module/az.keyvault/get-azkeyvaultsecret).
197197

198198
### Delete a secret
199199

@@ -206,7 +206,7 @@ deleted_secret = poller.result()
206206

207207
The `begin_delete_secret` method is asynchronous and returns a poller object. Calling the poller's `result` method waits for its completion.
208208

209-
You can verify that the secret had been removed with the Azure CLI command [az keyvault secret show](/cli/azure/keyvault/secret?#az-keyvault-secret-show) or the Azure PowerShell command [Get-AzKeyVaultSecret](/powershell/module/az.keyvault/get-azkeyvaultsecret).
209+
You can verify that the secret had been removed with the Azure CLI command [az keyvault secret show](/cli/azure/keyvault/secret?#az-keyvault-secret-show) or the Azure PowerShell cmdlet [Get-AzKeyVaultSecret](/powershell/module/az.keyvault/get-azkeyvaultsecret).
210210

211211
Once deleted, a secret remains in a deleted but recoverable state for a time. If you run the code again, use a different secret name.
212212

0 commit comments

Comments
 (0)