< Back

Get-AzureRmStreamAnalyticsInput

Sat Jan 11, 2020 10:37 am

NAME Get-AzureRmStreamAnalyticsInput



SYNOPSIS

Gets Stream Analytics job inputs.





SYNTAX

Get-AzureRmStreamAnalyticsInput [-ResourceGroupName] <String> [-JobName] <String> [[-Name] <String>]

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





DESCRIPTION

The Get-AzureRmStreamAnalyticsInput cmdlet lists all of the inputs that are defined in a Stream Analytics job or

gets information about a specific input.





PARAMETERS

-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



-JobName <String>

Specifies the name of the Azure Stream Analytics job to which the Azure Stream Analytics input belongs.



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Name <String>

Specifies the name of the Azure Stream Analytics input to retrieve.



Required? false

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of the resource group to which the Azure Stream Analytics input belongs.



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 (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

System.Collections.Generic.List`1[[Microsoft.Azure.Commands.StreamAnalytics.Models.PSInput,

Microsoft.Azure.Commands.StreamAnalytics]] Microsoft.Azure.Commands.StreamAnalytics.Models.PSInput







NOTES









EXAMPLE 1: Get information about the inputs defined on a job



PS C:\\>Get-AzureRmStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName "StreamingJob"



This command returns information about all the inputs defined on the job StreamingJob.





EXAMPLE 2: Get information about a specific input defined on a job



PS C:\\>Get-AzureRmStreamAnalyticsInput -ResourceGroupName "StreamAnalytics-Default-West-US" -JobName

"StreamingJob" -Name "EntryStream"



This command returns information about the input named EntryStream defined on the job StreamingJob.







RELATED LINKS

Online Version:

https://docs.microsoft.com/en-us/powers ... yticsinput

New-AzureRmStreamAnalyticsInput

Remove-AzureRmStreamAnalyticsInput

Test-AzureRmStreamAnalyticsInput