Get-AzureADApplicationProxyApplication
Get-AzureADApplicationProxyApplication コマンドレットは、Azure Active Directory のアプリケーション プロキシ用に構成されたアプリケーションを取得します。
構文
Get-AzureADApplicationProxyApplication
-ObjectId <String>
[<CommonParameters>]
説明
Get-AzureADApplicationProxyApplication コマンドレットは、Azure Active Directory のアプリケーション プロキシ用に構成されたアプリケーションを取得します。
例
例 1
PS C:\> Get-AzureADApplicationProxyApplication -ObjectId 8d6c6684-6f8c-42e2-8914-32ed2adf9ccf
ExternalAuthenticationType : AadPreAuthentication
ApplicationServerTimeout : Default
ExternalUrl : https://travel.cycles.adventure-works.com/
InternalUrl : https://awcyclesapps.adventure-works.com:3000/
IsTranslateHostHeaderEnabled : False
IsTranslateLinksInBodyEnabled : False
IsOnPremPublishingEnabled : True
VerifiedCustomDomainCertificatesMetadata : class OnPremisesPublishingVerifiedCustomDomainCertificatesMetadataObject {
Thumbprint: [XXXXX]
SubjectName: [XXXXX]
Issuer:
IssueDate: 11/9/2017 5:54:29
ExpiryDate: 11/9/2019 5:54:29
}
VerifiedCustomDomainKeyCredential :
VerifiedCustomDomainPasswordCredential :
SingleSignOnSettings :
例 2
次のスクリプトを使用して、テナントに登録されている Azure AD アプリケーション プロキシ アプリケーションの一覧を取得します。
foreach ($a in (Get-AzureADApplication -All:$true))
{
try
{
$p = Get-AzureADApplicationProxyApplication -ObjectId $a.ObjectId
[pscustomobject]@{ObjectID=$a.ObjectId; DisplayName=$a.DisplayName; ExternalUrl=$p.ExternalUrl; InternalUrl=$p.InternalUrl}
}
catch
{
continue
}
}
パラメーター
-ObjectId
これは、アプリケーションの一意のアプリケーション ID です。 これは、Get-AzureADApplication コマンドを使用して確認できます。 また、AAD、エンタープライズ アプリケーション、すべてのアプリケーション、アプリケーションの選択、プロパティ タブへの移動、そのページの ObjectId の使用に移動して、Azure Portal でこれを見つけることもできます。
型: | String |
配置: | Named |
規定値: | None |
必須: | True |
パイプライン入力を受け取る: | True |
ワイルドカード文字を受け取る: | False |