共用方式為


Get-AzCdnEndpoint

取得在指定訂用帳戶、資源群組和配置檔下具有指定端點名稱的現有CDN端點。

語法

Get-AzCdnEndpoint
   -ProfileName <String>
   -ResourceGroupName <String>
   [-SubscriptionId <String[]>]
   [-DefaultProfile <PSObject>]
   [<CommonParameters>]
Get-AzCdnEndpoint
   -Name <String>
   -ProfileName <String>
   -ResourceGroupName <String>
   [-SubscriptionId <String[]>]
   [-DefaultProfile <PSObject>]
   [<CommonParameters>]
Get-AzCdnEndpoint
   -InputObject <ICdnIdentity>
   [-DefaultProfile <PSObject>]
   [<CommonParameters>]

Description

取得在指定訂用帳戶、資源群組和配置檔下具有指定端點名稱的現有CDN端點。

範例

範例 1:列出 AzureCDN 配置檔下的 AzureCDN 端點

Get-AzCdnEndpoint -ResourceGroupName testps-rg-da16jm -ProfileName cdn001

Location Name        ResourceGroupName
-------- ----        -----------------
WestUs   endptest001 testps-rg-da16jm
WestUs   endptest002 testps-rg-da16jm

列出 AzureCDN 配置檔底下的 AzureCDN 端點

範例 2:在 AzureCDN 配置檔底下取得 AzureCDN 端點

Get-AzCdnEndpoint -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -Name endptest001

Location Name        ResourceGroupName
-------- ----        -----------------
WestUs   endptest001 testps-rg-da16jm

在 AzureCDN 配置檔底下取得 AzureCDN 端點

範例 3:透過身分識別取得 AzureCDN 配置檔下的 AzureCDN 端點

$origin = @{
    Name = "origin1"
    HostName = "host1.hello.com"
};

New-AzCdnEndpoint -ResourceGroupName testps-rg-da16jm -ProfileName cdn001 -Name endptest010 -Location global -Origin $origin | Get-AzCdnEndpoint

Location Name        ResourceGroupName
-------- ----        -----------------
Global   endptest010 testps-rg-da16jm

透過身分識別取得 AzureCDN 配置檔底下的 AzureCDN 端點

參數

-DefaultProfile

DefaultProfile 參數無法運作。 如果針對不同的訂用帳戶執行 Cmdlet,請使用 SubscriptionId 參數。

類型:PSObject
別名:AzureRMContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-InputObject

Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

類型:ICdnIdentity
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Name

配置檔底下唯一的端點名稱。

類型:String
別名:EndpointName
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-ProfileName

資源群組內唯一的CDN配置檔名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-ResourceGroupName

Azure 訂用帳戶內的資源組名。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-SubscriptionId

Azure 訂用帳戶標識碼。

類型:String[]
Position:Named
預設值:(Get-AzContext).Subscription.Id
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

ICdnIdentity

輸出

IEndpoint