< Back

Get-AzureRmAutomationJobOutputRecord

Tue Jan 29, 2019 9:32 pm

NAME Get-AzureRmAutomationJobOutputRecord



SYNOPSIS

Gets the full output of an Automation job output record.





SYNTAX

Get-AzureRmAutomationJobOutputRecord [-ResourceGroupName] <String> [-AutomationAccountName] <String> [-JobId] <Guid> [-Id] <String>

[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]





DESCRIPTION

The Get-AzureRmAutomationJobOutputRecord cmdlet gets the full output of an Automation job output record.



Although the Get-AzureRmAutomationJobOutput cmdlet lists one or more job output records, it returns only a summary, as a string, of the value of

any output record. It does not return the full value of an output record's outputted value in its original type. In addition, the summary has a

maximum length, which the full value that this cmdlet outputs may exceed. Unlike Get-AzureRmAutomationJobOutput , this cmdlet returns the full

value in its originally outputted type, for any output record's outputted value.





PARAMETERS

-AutomationAccountName <String>

Specifies the name of an Automation account for which this cmdlet gets a job output record.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Id <String>

Specifies the ID of a job output record for this cmdlet to retrieve.



Required? true

Position? 3

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-JobId <Guid>

Specifies the ID of a job for which this cmdlet gets an output record.



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of a resource group for which this cmdlet gets a job output record.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.Commands.Automation.Model.JobStreamRecord







NOTES









Example 1: Get the full output of an Automation job



PS C:\\>Get-AzureRmAutomationJobOutput -AutomationAccountName "Contoso17" -Id 2989b069-24fe-40b9-b3bd-cb7e5eac4b64 -ResourceGroupName

"ResourceGroup01" -Stream "Any" | Get-AzureRmAutomationJobOutputRecord



This command gets the full output of the job that has the specified job ID.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... tputrecord

Get-AzureRmAutomationJobOutput