-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move Cdn to main * Add exceptions * Add exceptions Co-authored-by: azure-powershell-bot <65331932+azure-powershell-bot@users.noreply.github.com>
- Loading branch information
1 parent
04cea46
commit 6b2487b
Showing
1,154 changed files
with
8,929 additions
and
10,542 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# Generated by: Microsoft Corporation | ||
# | ||
# Generated on: 5/19/2022 | ||
# Generated on: 6/27/2022 | ||
# | ||
|
||
@{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,7 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Get content of an AzureCDN Endpoint under the AzureCDN profile | ||
```powershell | ||
{{ Add code here }} | ||
Clear-AzCdnEndpointContent -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -EndpointName endptest001 -ContentPath @("/movies/*","/pictures/pic1.jpg") | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
Get content of an AzureCDN Endpoint under the AzureCDN profile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,8 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Clear the content of an AzureFrontDoor endpoint | ||
```powershell | ||
{{ Add code here }} | ||
Clear-AzFrontDoorCdnEndpointContent -ResourceGroupName testps-rg-da16jm -ProfileName fdp-v542q6 -EndpointName end001 -ContentPath /a | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,8 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Disable an AzureCDN custom domain under the AzureCDN endpoint | ||
```powershell | ||
{{ Add code here }} | ||
Disable-AzCdnCustomDomainCustomHttps -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -EndpointName endptest001 -CustomDomainName customdomain001 | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
Disable an AzureCDN custom domain under the AzureCDN endpoint | ||
|
||
{{ Add description here }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,16 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: Enable an AzureCDN custom domain under the AzureCDN endpoint | ||
```powershell | ||
{{ Add code here }} | ||
$customDomainHttpsParameter = New-AzCdnManagedHttpsParametersObject -CertificateSourceParameterCertificateType Dedicated -CertificateSource Cdn -ProtocolType TLS12 | ||
Enable-AzCdnCustomDomainCustomHttps -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -EndpointName endptest001 -CustomDomainName customdomain001 -CustomDomainHttpsParameter $customDomainHttpsParameter | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Name ResourceGroupName | ||
---- ----------------- | ||
customdomain001 testps-rg-da16jm | ||
``` | ||
|
||
{{ Add description here }} | ||
Enable an AzureCDN custom domain under the AzureCDN endpoint | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: List AzureCDN custom domains under the AzureCDN endpoint | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzCdnCustomDomain -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -EndpointName endptest001 | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Name ResourceGroupName | ||
---- ----------------- | ||
customdomain001 testps-rg-da16jm | ||
customdomain002 testps-rg-da16jm | ||
``` | ||
|
||
{{ Add description here }} | ||
List AzureCDN custom domains under the AzureCDN endpoint | ||
|
||
### Example 2: {{ Add title here }} | ||
### Example 2: Get an AzureCDN custom domain under the AzureCDN endpoint | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzCdnCustomDomain -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -EndpointName endptest001 -Name customdomain001 | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Name ResourceGroupName | ||
---- ----------------- | ||
customdomain001 testps-rg-da16jm | ||
``` | ||
|
||
{{ Add description here }} | ||
Get an AzureCDN custom domain under the AzureCDN endpoint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: List AzureCDN Edge Noes | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzCdnEdgeNode | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Name | ||
---- | ||
Standard_Verizon | ||
Premium_Verizon | ||
Custom_Verizon | ||
``` | ||
|
||
{{ Add description here }} | ||
|
||
### Example 2: {{ Add title here }} | ||
```powershell | ||
{{ Add code here }} | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
``` | ||
|
||
{{ Add description here }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
### Example 1: {{ Add title here }} | ||
### Example 1: List AzureCDN Endpoints under the AzureCDN profile | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzCdnEndpoint -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Location Name ResourceGroupName | ||
-------- ---- ----------------- | ||
WestUs endptest001 testps-rg-da16jm | ||
WestUs endptest002 testps-rg-da16jm | ||
``` | ||
|
||
{{ Add description here }} | ||
List AzureCDN Endpoints under the AzureCDN profile | ||
|
||
### Example 2: {{ Add title here }} | ||
### Example 2: Get an AzureCDN Endpoint under the AzureCDN profile | ||
```powershell | ||
{{ Add code here }} | ||
Get-AzCdnEndpoint -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -Name endptest001 | ||
``` | ||
|
||
```output | ||
{{ Add output here }} | ||
Location Name ResourceGroupName | ||
-------- ---- ----------------- | ||
WestUs endptest001 testps-rg-da16jm | ||
``` | ||
|
||
{{ Add description here }} | ||
Get an AzureCDN Endpoint under the AzureCDN profile | ||
|
Oops, something went wrong.