Get-AzureRmADApplication
기존 Microsoft Entra 애플리케이션을 나열합니다.
Warning
AzureRM PowerShell 모듈은 2024년 2월 29일부터 공식적으로 사용되지 않습니다. 사용자는 지속적인 지원 및 업데이트를 보장하기 위해 AzureRM에서 Az PowerShell 모듈로 마이그레이션하는 것이 좋습니다.
AzureRM 모듈은 여전히 작동할 수 있지만 더 이상 기본 또는 지원되지 않으므로 사용자의 재량에 따라 계속 사용할 수 있습니다. Az 모듈로 전환하는 방법에 대한 지침은 마이그레이션 리소스를 참조하세요.
구문
Get-AzureRmADApplication
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Get-AzureRmADApplication
-ObjectId <Guid>
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Get-AzureRmADApplication
-ApplicationId <Guid>
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Get-AzureRmADApplication
-DisplayNameStartWith <String>
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Get-AzureRmADApplication
-DisplayName <String>
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Get-AzureRmADApplication
-IdentifierUri <String>
[-DefaultProfile <IAzureContextContainer>]
[-IncludeTotalCount]
[-Skip <UInt64>]
[-First <UInt64>]
[<CommonParameters>]
Description
기존 Microsoft Entra 애플리케이션을 나열합니다. Application Lookup은 ObjectId, ApplicationId, IdentifierUri 또는 DisplayName을 통해 수행할 수 있습니다. 매개 변수가 제공되지 않으면 테넌트 아래에 있는 모든 애플리케이션을 가져옵니다.
예제
예제 1 - 모든 애플리케이션 나열
PS C:\> Get-AzureRmADApplication
테넌트 아래에 있는 모든 애플리케이션을 나열합니다.
예제 2 - 페이징을 사용하여 애플리케이션 나열
PS C:\> Get-AzureRmADApplication -First 100
테넌트 아래에 처음 100개의 애플리케이션을 나열합니다.
예제 3 - 식별자 URI로 애플리케이션 가져오기
PS C:\> Get-AzureRmADApplication -IdentifierUri http://mySecretApp1
식별자 URI가 "http://mySecretApp1"인 애플리케이션을 가져옵니다.
예제 4 - 개체 ID로 애플리케이션 가져오기
PS C:\> Get-AzureRmADApplication -ObjectId 39e64ec6-569b-4030-8e1c-c3c519a05d69
개체 ID가 '39e64ec6-569b-4030-8e1c-c3c519a05d69'인 애플리케이션을 가져옵니다.
매개 변수
-ApplicationId
가져올 애플리케이션의 애플리케이션 ID입니다.
형식: | Guid |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-DefaultProfile
Azure와의 통신에 사용되는 자격 증명, 계정, 테넌트 및 구독
형식: | IAzureContextContainer |
별칭: | AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-DisplayName
애플리케이션의 표시 이름입니다.
형식: | String |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-DisplayNameStartWith
표시 이름으로 시작하는 모든 애플리케이션을 가져옵니다.
형식: | String |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-First
반환할 최대 개체 수입니다.
형식: | UInt64 |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-IdentifierUri
가져올 애플리케이션의 고유 식별자 URI입니다.
형식: | String |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-IncludeTotalCount
데이터 집합의 개체 수를 보고합니다. 현재 이 매개 변수는 아무 작업도 수행하지 않습니다.
형식: | SwitchParameter |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-ObjectId
가져올 애플리케이션의 개체 ID입니다.
형식: | Guid |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-Skip
첫 번째 N 개체를 무시한 다음 다시 기본 개체를 가져옵니다.
형식: | UInt64 |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |