Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions Commands/afd/custom-domain/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,7 @@ Create a new domain within the specified profile.

#### examples

- Create a custom domain that uses AFD managed certificate for SSL/TLS encryption.
- AFDCustomDomains_Create
```bash
afd custom-domain create -g group --custom-domain-name customDomain --profile-name profile --host-name www.contoso.com --minimum-tls-version TLS12 --certificate-type ManagedCertificate
```

- Create a custom domain that uses your own certificate for SSL/TLS encryption, the certificate is stored in Azure Key Vault and referenced by an AFD secret.
```bash
afd custom-domain create -g group --custom-domain-name customDomain --profile-name profile --host-name www.contoso.com --minimum-tls-version TLS12 --certificate-type CustomerCertificate --secret secretName
afd custom-domain create --resource-group RG --profile-name profile1 --custom-domain-name domain1 --azure-dns-zone --host-name www.someDomain.net --mtls-settings "{allowedFqdns:[foo.contoso.com],secrets:[{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name1},{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name2}],client-certificate-required-and-validated:{allowed-fqdns:[foo.contoso.com],secrets:[{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name1},{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name2}]}}" --certificate-type ManagedCertificate --cipher-suite-set-type Customized --customized-cipher-suite-set "{cipher-suite-set-for-tls12:[ECDHE_RSA_AES128_GCM_SHA256],cipher-suite-set-for-tls13:[TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384]}" --minimum-tls-version TLS12
```
4 changes: 2 additions & 2 deletions Commands/afd/custom-domain/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Delete an existing AzureFrontDoor domain with the specified domain name under th

#### examples

- Delete a custom domain.
- AFDCustomDomains_Delete
```bash
afd custom-domain delete -g group --profile-name profile --custom-domain-name customDomainName
afd custom-domain delete --resource-group RG --profile-name profile1 --custom-domain-name domain1
```
4 changes: 2 additions & 2 deletions Commands/afd/custom-domain/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ List existing AzureFrontDoor domains.

#### examples

- List all the custom domains within the specified profile.
- AFDCustomDomains_ListByProfile
```bash
afd custom-domain list -g group --profile-name profile
afd custom-domain list --resource-group RG --profile-name profile1
```
4 changes: 2 additions & 2 deletions Commands/afd/custom-domain/_regenerate-validation-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Updates the domain validation token.

#### examples

- Regenerate the domain validation token.
- AFDCustomDomains_Delete
```bash
afd custom-domain regenerate-validation-token -g MyResourceGroup --profile-name MyProfle --custom-domain-name MyCustomDomain
afd custom-domain regenerate-validation-token --resource-group RG --profile-name profile1 --custom-domain-name domain1
```
4 changes: 2 additions & 2 deletions Commands/afd/custom-domain/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Get an existing AzureFrontDoor domain with the specified domain name under the s

#### examples

- show details of the custom domain within the specified profile.
- AFDCustomDomains_Get
```bash
afd custom-domain show -g group --profile-name profile --custom-domain-name customDomainName
afd custom-domain show --resource-group RG --profile-name profile1 --custom-domain-name domain1
```
9 changes: 2 additions & 7 deletions Commands/afd/custom-domain/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,7 @@ Update a new domain within the specified profile.

#### examples

- Update the custom domain's supported minimum TLS version.
- AFDCustomDomains_Create
```bash
afd custom-domain update -g group --custom-domain-name customDomain --profile-name profile --minimum-tls-version TLS12
```

- Update the custom domain's certificate type to AFD managed certificate.
```bash
afd custom-domain update -g group --custom-domain-name customDomain --profile-name profile --certificate-type ManagedCertificate
afd custom-domain update --resource-group RG --profile-name profile1 --custom-domain-name domain1 --azure-dns-zone --host-name www.someDomain.net --mtls-settings "{allowedFqdns:[foo.contoso.com],scenario:ClientCertificateRequiredAndValidated,secrets:[{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name1},{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/secrets/name2}]}" --certificate-type ManagedCertificate --cipher-suite-set-type Customized --customized-cipher-suite-set "{cipher-suite-set-for-tls12:[ECDHE_RSA_AES128_GCM_SHA256],cipher-suite-set-for-tls13:[TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384]}" --minimum-tls-version TLS12
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Create a new AzureFrontDoor endpoint with the specified endpoint name under the

#### examples

- Creates an enabled endpoint
- AFDEndpoints_Create
```bash
afd endpoint create -g group --endpoint-name endpoint1 --profile-name profile --enabled-state Enabled
afd endpoint create --resource-group RG --profile-name profile1 --endpoint-name endpoint1 --location global --name-reuse-scope TenantReuse --enabled-state Enabled --enforce-mtls Disabled --tags "{}"
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Delete an existing AzureFrontDoor endpoint with the specified endpoint name unde

#### examples

- Delete an endpoint named endpoint1.
- AFDEndpoints_Delete
```bash
afd endpoint delete -g group --profile-name profile --endpoint-name endpoint1
afd endpoint delete --resource-group RG --profile-name profile1 --endpoint-name endpoint1
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ List existing AzureFrontDoor endpoints.

#### examples

- List all the endpoints within the specified profile.
- AFDEndpoints_ListByProfile
```bash
afd endpoint list -g group --profile-name profile
afd endpoint list --resource-group RG --profile-name profile1
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_purge.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Removes a content from AzureFrontDoor.

#### examples

- Remove all cached contents under directory "/script" for domain www.contoso.com
- AFDEndpoints_PurgeContent
```bash
afd endpoint purge -g group --profile-name profile --domains www.contoso.com --content-paths '/scripts/*'
afd endpoint purge --resource-group RG --profile-name profile1 --endpoint-name endpoint1 --content-paths "[/folder1]" --domains "[endpoint1-abcdefghijklmnop.z01.azurefd.net]"
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Get an existing AzureFrontDoor endpoint with the specified endpoint name under t

#### examples

- show details of the endpoint named endpoint1.
- AFDEndpoints_Get
```bash
afd endpoint show -g group --profile-name profile --endpoint-name endpoint1
afd endpoint show --resource-group RG --profile-name profile1 --endpoint-name endpoint1
```
4 changes: 2 additions & 2 deletions Commands/afd/endpoint/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Update a new AzureFrontDoor endpoint with the specified endpoint name under the

#### examples

- Update an endpoint's state to disabled.
- AFDEndpoints_Create
```bash
afd endpoint update -g group --endpoint-name endpoint1 --profile-name profile --enabled-state Disabled
afd endpoint update --resource-group RG --profile-name profile1 --endpoint-name endpoint1 --name-reuse-scope TenantReuse --enabled-state Enabled --enforce-mtls Disabled --tags "{}"
```
7 changes: 7 additions & 0 deletions Commands/afd/log-analytic/location/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Get all available location names for AFD log analytics report.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vZ2V0bG9nYW5hbHl0aWNzbG9jYXRpb25z/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/getloganalyticslocations 2025-09-01-preview -->

#### examples

- LogAnalytics_GetLogAnalyticsLocations
```bash
afd log-analytic location list --resource-group RG --profile-name profile1
```
7 changes: 7 additions & 0 deletions Commands/afd/log-analytic/metric/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Get log report for AFD profile
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vZ2V0bG9nYW5hbHl0aWNzbWV0cmljcw==/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/getloganalyticsmetrics 2025-09-01-preview -->

#### examples

- LogAnalytics_GetLogAnalyticsMetrics
```bash
afd log-analytic metric list --resource-group RG --profile-name profile1 --metrics "[clientRequestCount]" --date-time-begin 2020-11-04T04:30:00.000Z --date-time-end 2020-11-04T05:00:00.000Z --granularity PT5M --group-by "[protocol]" --custom-domains "[customdomain1.azurecdn.net,customdomain2.azurecdn.net]" --protocols "[https]"
```
7 changes: 7 additions & 0 deletions Commands/afd/log-analytic/ranking/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Get log analytics ranking report for AFD profile
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vZ2V0bG9nYW5hbHl0aWNzcmFua2luZ3M=/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/getloganalyticsrankings 2025-09-01-preview -->

#### examples

- LogAnalytics_GetLogAnalyticsRankings
```bash
afd log-analytic ranking list --resource-group RG --profile-name profile1 --rankings "[url]" --metrics "[clientRequestCount]" --max-ranking 5 --date-time-begin 2020-11-04T06:49:27.554Z --date-time-end 2020-11-04T09:49:27.554Z
```
7 changes: 7 additions & 0 deletions Commands/afd/log-analytic/resource/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Get all endpoints and custom domains available for AFD log report
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vZ2V0bG9nYW5hbHl0aWNzcmVzb3VyY2Vz/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/getloganalyticsresources 2025-09-01-preview -->

#### examples

- LogAnalytics_GetLogAnalyticsResources
```bash
afd log-analytic resource list --resource-group RG --profile-name profile1
```
4 changes: 2 additions & 2 deletions Commands/afd/origin-group/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Create a new origin group within the specified profile.

#### examples

- Creates a new origin group within the specified profile.
- AFDOriginGroups_Create
```bash
afd origin-group create -g group --origin-group-name og1 --profile-name profile --probe-request-type GET --probe-protocol Http --probe-interval-in-seconds 120 --probe-path /test1/azure.txt --sample-size 4 --successful-samples-required 3 --additional-latency-in-milliseconds 50
afd origin-group create --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --authentication "{type:UserAssignedIdentity,scope:'https://www.contoso.com/.default',user-assigned-identity:{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user-assigned-id-1}}" --probe-interval-in-seconds 10 --probe-path /path2 --probe-protocol NotSet --probe-request-type NotSet --additional-latency-in-milliseconds 1000 --sample-size 3 --successful-samples-required 3 --traffic-restoration-time-to-healed-or-new-endpoints-in-minutes 5
```
4 changes: 2 additions & 2 deletions Commands/afd/origin-group/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Delete an existing origin group within a profile.

#### examples

- Deletes an existing origin group within a profile.
- AFDOriginGroups_Delete
```bash
afd origin-group delete -g group --origin-group-name og1 --profile-name profile
afd origin-group delete --resource-group RG --profile-name profile1 --origin-group-name origingroup1
```
7 changes: 7 additions & 0 deletions Commands/afd/origin-group/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@ List all of the existing origin groups within a profile.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vb3JpZ2luZ3JvdXBz/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/origingroups 2025-09-01-preview -->

#### examples

- AFDOriginGroups_ListByProfile
```bash
afd origin-group list --resource-group RG --profile-name profile1
```
7 changes: 7 additions & 0 deletions Commands/afd/origin-group/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,10 @@ Get an existing origin group within a profile.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vb3JpZ2luZ3JvdXBzL3t9/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/origingroups/{} 2025-09-01-preview -->

#### examples

- AFDOriginGroups_Get
```bash
afd origin-group show --resource-group RG --profile-name profile1 --origin-group-name origingroup1
```
4 changes: 2 additions & 2 deletions Commands/afd/origin-group/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Update a new origin group within the specified profile.

#### examples

- Update the probe setting of the specified origin group.
- AFDOriginGroups_Create
```bash
afd origin-group update -g group --origin-group-name og1 --profile-name profile --probe-request-type HEAD --probe-protocol Https --probe-interval-in-seconds 120 --probe-path /test1/azure.txt
afd origin-group update --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --authentication "{type:UserAssignedIdentity,scope:'https://www.contoso.com/.default',user-assigned-identity:{id:/subscriptions/subid/resourcegroups/RG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/user-assigned-id-1}}" --probe-interval-in-seconds 10 --probe-path /path2 --probe-protocol NotSet --probe-request-type NotSet --additional-latency-in-milliseconds 1000 --sample-size 3 --successful-samples-required 3 --traffic-restoration-time-to-healed-or-new-endpoints-in-minutes 5
```
9 changes: 2 additions & 7 deletions Commands/afd/origin/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,7 @@ Create a new origin within the specified origin group.

#### examples

- Create an regular origin
- AFDOrigins_Create
```bash
afd origin create -g group --host-name example.contoso.com --profile-name profile --origin-group-name originGroup --origin-name origin1 --origin-host-header example.contoso.com --priority 1 --weight 500 --enabled-state Enabled --http-port 80 --https-port 443 - name: Create a private link origin
```

- Create a private link origin
```bash
afd origin create -g group --host-name example.contoso.com --profile-name profile --origin-group-name originGroup --origin-name origin1 --origin-host-header example.contoso.com --priority 1 --weight 500 --enabled-state Enabled --http-port 80 --https-port 443 --private-link-resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group/providers/Microsoft.Storage/storageAccounts/plstest --private-link-location EastUS --private-link-request-message 'Please approve this request' --private-link-sub-resource-type table
afd origin create --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --origin-name origin1 --enabled-state Enabled --host-name host1.blob.core.windows.net --http-port 80 --https-port 443 --origin-host-header host1.foo.com --origin-capacity-resource "{enabled:Enabled,origin-ingress-rate-threshold:10,origin-request-rate-threshold:1000,region:EastUs}"
```
7 changes: 7 additions & 0 deletions Commands/afd/origin/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Delete an existing origin within an origin group.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vb3JpZ2luZ3JvdXBzL3t9L29yaWdpbnMve30=/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/origingroups/{}/origins/{} 2025-09-01-preview -->

#### examples

- AFDOrigins_Delete
```bash
afd origin delete --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --origin-name origin1
```
7 changes: 7 additions & 0 deletions Commands/afd/origin/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ List all of the existing origins within an origin group.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vb3JpZ2luZ3JvdXBzL3t9L29yaWdpbnM=/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/origingroups/{}/origins 2025-09-01-preview -->

#### examples

- AFDOrigins_ListByOriginGroup
```bash
afd origin list --resource-group RG --profile-name profile1 --origin-group-name origingroup1
```
7 changes: 7 additions & 0 deletions Commands/afd/origin/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ Get an existing origin within an origin group.
### [2025-09-01-preview](/Resources/mgmt-plane/L3N1YnNjcmlwdGlvbnMve30vcmVzb3VyY2Vncm91cHMve30vcHJvdmlkZXJzL21pY3Jvc29mdC5jZG4vcHJvZmlsZXMve30vb3JpZ2luZ3JvdXBzL3t9L29yaWdpbnMve30=/2025-09-01-preview.xml) **Stable**

<!-- mgmt-plane /subscriptions/{}/resourcegroups/{}/providers/microsoft.cdn/profiles/{}/origingroups/{}/origins/{} 2025-09-01-preview -->

#### examples

- AFDOrigins_Get
```bash
afd origin show --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --origin-name origin1
```
9 changes: 2 additions & 7 deletions Commands/afd/origin/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,7 @@ Update a new origin within the specified origin group.

#### examples

- Update the host header and priority of the specified origin.
- AFDOrigins_Create
```bash
afd origin update -g group --host-name example.contoso.com --profile-name profile --origin-group-name originGroup --origin-name origin1 --origin-host-header example.contoso.com --priority 3
```

- Disable private link of the origin.
```bash
afd origin update -g group --host-name example.contoso.com --profile-name profile --origin-group-name originGroup --origin-name origin1 --enable-private-link False
afd origin update --resource-group RG --profile-name profile1 --origin-group-name origingroup1 --origin-name origin1 --enabled-state Enabled --host-name host1.blob.core.windows.net --http-port 80 --https-port 443 --origin-host-header host1.foo.com --origin-capacity-resource "{enabled:Enabled,origin-ingress-rate-threshold:10,origin-request-rate-threshold:1000,region:EastUs}"
```
4 changes: 2 additions & 2 deletions Commands/afd/profile/_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Create a new Azure Front Door Standard or Azure Front Door Premium or CDN profil

#### examples

- Create an AFD profile using Standard SKU.
- Profiles_Create
```bash
afd profile create -g group --profile-name profile --sku Standard_AzureFrontDoor
afd profile create --resource-group RG --profile-name profile1 --location global --sku Premium_AzureFrontDoor
```
4 changes: 2 additions & 2 deletions Commands/afd/profile/_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Delete an existing Azure Front Door Standard or Azure Front Door Premium or CDN

#### examples

- Delete an AFD profile.
- Profiles_Delete
```bash
profile delete -g group --profile-name profile
afd profile delete --resource-group RG --profile-name profile1
```
9 changes: 7 additions & 2 deletions Commands/afd/profile/_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ List all of the Azure Front Door Standard, Azure Front Door Premium, and CDN pro

#### examples

- List AFD profiles in a resource group.
- Profiles_List
```bash
afd profile list -g group
afd profile list
```

- Profiles_ListByResourceGroup
```bash
afd profile list --resource-group RG
```
4 changes: 2 additions & 2 deletions Commands/afd/profile/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Get an Azure Front Door Standard or Azure Front Door Premium or CDN profile with

#### examples

- Show details of an AFD profile.
- Profiles_Get
```bash
afd profile show -g group --profile-name profile
afd profile show --resource-group RG --profile-name profile1
```
4 changes: 2 additions & 2 deletions Commands/afd/profile/_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Update a new Azure Front Door Standard or Azure Front Door Premium or CDN profil

#### examples

- Update an AFD profile with tags.
- Profiles_Create
```bash
afd profile update --profile-name profile --resource-group MyResourceGroup --tags tag1=value1
afd profile update --resource-group RG --profile-name profile1 --sku Premium_AzureFrontDoor
```
4 changes: 2 additions & 2 deletions Commands/afd/profile/_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Checks the quota and actual usage of endpoints under the given Azure Front Door

#### examples

- List resource usage within the specific AFD profile.
- AFDProfiles_ListResourceUsage
```bash
afd profile usage -g group --profile-name profile
afd profile usage --resource-group RG --profile-name profile1
```
Loading
Loading