@Hitender Singh - Thanks for your question.
Per my initial research, Get-AzAutomationJobOutput
cmdlet lists one or more job output records, it returns only a summary, as a string, - Truncated output
The Get-AzAutomationJobOutputRecord
cmdlet gets the full output of an Automation job output record and may meet your requirement.
The below is the snippet that I tried at my end.
$jobs = Get-AzAutomationJobOutput -Id <JOBID> -ResourceGroupName <RG> -AutomationAccountName <ACCOUNTNAME>
foreach($job in $jobs)
{
$job.StreamRecordId
$record = Get-AzAutomationJobOutputRecord -Id $job.StreamRecordId -JobId $job.JobId -ResourceGroupName <RG> -AutomationAccountName <ACCOUNTNAME> - | Select-Object -ExpandProperty Value
$record.value
}
Truncated Output with Get-AzAutomationJobOutput
Output in the portal:
Output running the above snippet:
-----------------------------
Please do not forget to "Accept the answer" wherever the information provided helps you. This will help others in the community as well.