Skip to content

Commit ed1de72

Browse files
Merge pull request #310930 from Jaxelr/patch-1
Rename az cli commands from 'trustedsigning' to 'artifact-signing'
2 parents abd27fe + 0411567 commit ed1de72

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

articles/artifact-signing/quickstart.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ To register an Artifact Signing resource provider by using the Azure CLI:
104104
9. To add the extension for Artifact Signing, use this command:
105105

106106
```azurecli
107-
az extension add --name trustedsigning
107+
az extension add --name artifact-signing
108108
```
109109

110110
---
@@ -191,30 +191,30 @@ To create an Artifact Signing account by using the Azure CLI:
191191
To create an Artifact Signing account that has a Basic SKU:
192192

193193
```azurecli
194-
az trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Basic
194+
az artifact-signing create -n MyAccount -l eastus -g MyResourceGroup --sku Basic
195195
```
196196

197197
To create an Artifact Signing account that has a Premium SKU:
198198

199199
```azurecli
200-
az trustedsigning create -n MyAccount -l eastus -g MyResourceGroup --sku Premium
200+
az artifact-signing create -n MyAccount -l eastus -g MyResourceGroup --sku Premium
201201
```
202202

203203
3. Verify your Artifact Signing account by using:
204204
```azurecli
205-
az trustedsigning show -g MyResourceGroup -n MyAccount` command.
205+
az artifact-signing show -g MyResourceGroup -n MyAccount` command.
206206
```
207207
> [!NOTE]
208208
> If you use an earlier version of the Azure CLI from the Artifact Signing preview, your account defaults to the Basic SKU. To use the Premium SKU, either upgrade the Azure CLI to the latest version or use the Azure portal to create the account.
209209
210210
The following table lists *helpful commands* to use when you create an Artifact Signing account:
211211

212-
| Command | Description |
213-
|:-----------------------------------------------------------------------------------------|:------------------------------------------|
214-
| `az trustedsigning -h` | Shows help commands and detailed options. |
215-
| `az trustedsigning show -n MyAccount -g MyResourceGroup` | Shows the details of an account. |
216-
| `az trustedsigning update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"` | Updates tags. |
217-
| `az trustedsigning list -g MyResourceGroup` | Lists all accounts that are in a resource group. |
212+
| Command | Description |
213+
|:----------------------------------------------------------------------------------------------|:-------------------------------------------------|
214+
| `az artifact-signing -h` | Shows help commands and detailed options. |
215+
| `az artifact-signing show -n MyAccount -g MyResourceGroup` | Shows the details of an account. |
216+
| `az artifact-signing update -n MyAccount -g MyResourceGroup --tags "key1=value1 key2=value2"` | Updates tags. |
217+
| `az artifact-signing list -g MyResourceGroup` | Lists all accounts that are in a resource group. |
218218

219219
---
220220

@@ -473,7 +473,7 @@ To create a certificate profile by using the Azure CLI:
473473
1. Create a certificate profile by using the following command:
474474

475475
```azurecli
476-
az trustedsigning certificate-profile create -g MyResourceGroup --a
476+
az artifact-signing certificate-profile create -g MyResourceGroup --a
477477
account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
478478
```
479479

@@ -482,22 +482,22 @@ az trustedsigning certificate-profile create -g MyResourceGroup --a
482482
2. Create a certificate profile that includes optional fields (street address or postal code) in the subject name of the certificate by using the following command:
483483

484484
```azurecli
485-
az trustedsigning certificate-profile create -g MyResourceGroup --account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx --include-street true
485+
az artifact-signing certificate-profile create -g MyResourceGroup --account-name MyAccount -n MyProfile --profile-type PublicTrust --identity-validation-id xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx --include-street true
486486
```
487487

488488
3. Verify that you successfully created a certificate profile by using the following command:
489489

490490
```azurecli
491-
az trustedsigning certificate-profile show -g myRG --account-name MyAccount -n MyProfile
491+
az artifact-signing certificate-profile show -g myRG --account-name MyAccount -n MyProfile
492492
```
493493

494494
The following table lists *helpful commands* to use when you create a certificate profile by using the Azure CLI:
495495

496-
| Command | Description |
497-
| :----------------------------------- | :------------------- |
498-
| `az trustedsigning certificate-profile create -–help` | Shows help for sample commands, and shows detailed parameter descriptions. |
499-
| `az trustedsigning certificate-profile list -g MyResourceGroup --account-name MyAccount` | Lists all certificate profiles that are associated with an Artifact Signing account. |
500-
| `az trustedsigning certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile` | Gets the details for a certificate profile. |
496+
| Command | Description |
497+
| :--------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------ |
498+
| `az artifact-signing certificate-profile create -–help` | Shows help for sample commands, and shows detailed parameter descriptions. |
499+
| `az artifact-signing certificate-profile list -g MyResourceGroup --account-name MyAccount` | Lists all certificate profiles that are associated with an Artifact Signing account. |
500+
| `az artifact-signing certificate-profile show -g MyResourceGroup --account-name MyAccount -n MyProfile` | Gets the details for a certificate profile. |
501501

502502
---
503503

@@ -536,7 +536,7 @@ To delete Artifact Signing resources by using the Azure CLI:
536536
To delete an Artifact Signing certificate profile, run this command:
537537

538538
```azurecli
539-
az trustedsigning certificate-profile delete -g MyResourceGroup --account-name MyAccount -n MyProfile
539+
az artifact-signing certificate-profile delete -g MyResourceGroup --account-name MyAccount -n MyProfile
540540
```
541541

542542
> [!NOTE]
@@ -549,7 +549,7 @@ You can use the Azure CLI to delete Artifact Signing resources.
549549
To delete an Artifact Signing account, run this command:
550550

551551
```azurecli
552-
az trustedsigning delete -n MyAccount -g MyResourceGroup
552+
az artifact-signing delete -n MyAccount -g MyResourceGroup
553553
```
554554

555555
> [!NOTE]

0 commit comments

Comments
 (0)