Get-AzAutomationDscNodeReport
DSC 노드에서 Automation으로 전송된 보고서를 가져옵니다.
구문
Get-AzAutomationDscNodeReport
-NodeId <Guid>
[-StartTime <DateTimeOffset>]
[-EndTime <DateTimeOffset>]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzAutomationDscNodeReport
-NodeId <Guid>
[-Latest]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzAutomationDscNodeReport
-NodeId <Guid>
-Id <Guid>
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Get-AzAutomationDscNodeReport cmdlet은 APS DSC(필요한 상태 구성) 노드에서 Azure Automation으로 전송된 보고서를 가져옵니다.
예제
예제 1: DSC 노드에 대한 모든 보고서 가져오기
$Node = Get-AzAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
Get-AzAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id
첫 번째 명령은 Contoso17이라는 Automation 계정에서 Computer14라는 컴퓨터의 DSC 노드를 가져옵니다. 이 명령은 이 개체를 $Node 변수에 저장합니다. 두 번째 명령은 Computer14라는 DSC 노드에서 Contoso17이라는 Automation 계정으로 전송된 모든 보고서에 대한 메타데이터를 가져옵니다. 이 명령은 $Node 개체의 Id 속성을 사용하여 노드를 지정합니다.
예제 2: 보고서 ID로 DSC 노드에 대한 보고서 가져오기
$Node = Get-AzAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
Get-AzAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id -Id c0a1718e-d8be-4fa3-91b6-82e1d3a36298
첫 번째 명령은 Contoso17이라는 Automation 계정에서 Computer14라는 컴퓨터의 DSC 노드를 가져옵니다. 이 명령은 이 개체를 $Node 변수에 저장합니다. 두 번째 명령은 Computer14라는 DSC 노드에서 Contoso17이라는 Automation 계정으로 보낸 지정된 ID로 식별된 보고서의 메타데이터를 가져옵니다.
예제 3: DSC 노드에 대한 최신 보고서 가져오기
$Node = Get-AzAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
Get-AzAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id -Latest
첫 번째 명령은 Contoso17이라는 Automation 계정에서 Computer14라는 컴퓨터의 DSC 노드를 가져옵니다. 이 명령은 이 개체를 $Node 변수에 저장합니다. 두 번째 명령은 Computer14라는 DSC 노드에서 Contoso17이라는 Automation 계정으로 전송된 최신 보고서에 대한 메타데이터를 가져옵니다.
매개 변수
-AutomationAccountName
Automation 계정의 이름을 지정합니다. 이 cmdlet은 이 매개 변수가 지정하는 계정에 속하는 DSC 노드에 대한 보고서를 내보냅니다.
형식: | String |
Position: | 1 |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-DefaultProfile
Azure와의 통신에 사용되는 자격 증명, 계정, 테넌트 및 구독
형식: | IAzureContextContainer |
별칭: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-EndTime
종료 시간을 지정합니다. 이 cmdlet은 이 시간 전에 Automation이 받은 보고서를 가져옵니다.
형식: | Nullable<T>[DateTimeOffset] |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-Id
이 cmdlet을 가져올 DSC 노드 보고서의 고유 ID를 지정합니다.
형식: | Guid |
별칭: | ReportId |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-Latest
이 cmdlet은 지정된 노드에 대한 최신 DSC 보고서만 가져옵니다.
형식: | SwitchParameter |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | False |
와일드카드 문자 허용: | False |
-NodeId
이 cmdlet이 보고서를 가져오는 DSC 노드의 고유 ID를 지정합니다.
형식: | Guid |
Position: | Named |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-ResourceGroupName
이 cmdlet이 보고서를 가져오는 DSC 노드를 포함하는 리소스 그룹의 이름을 지정합니다.
형식: | String |
Position: | 0 |
Default value: | None |
필수: | True |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
-StartTime
시작 시간을 지정합니다. 이 cmdlet은 이 시간 이후에 Automation이 받은 보고서를 가져옵니다.
형식: | Nullable<T>[DateTimeOffset] |
Position: | Named |
Default value: | None |
필수: | False |
파이프라인 입력 허용: | True |
와일드카드 문자 허용: | False |
입력
Nullable<T>[[System.DateTimeOffset, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]