< Back

Get-AzureRmEventGridTopicType

Tue Jan 29, 2019 9:46 pm

NAME Get-AzureRmEventGridTopicType



SYNOPSIS

Gets the details about the topic types supported by Azure Event Grid.





SYNTAX

Get-AzureRmEventGridTopicType [[-Name] <String>] [-DefaultProfile <IAzureContextContainer>] [-IncludeEventTypeData] [<CommonParameters>]





DESCRIPTION

Gets the details of topic types supported by Azure Event Grid. If a topic type name is specified, details about that topic type are returned. If a

topic type name is not specified, details about all topic types are returned. If IncludeEventTypes is specified, information about event types

supported by each topic type is included in the response.





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



-IncludeEventTypeData [<SwitchParameter>]

If specified, the response will include the event types supported by a topic type.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

EventGrid Topic Type Name.



Required? false

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

System.String

System.Management.Automation.SwitchParameter





OUTPUTS

System.Collections.Generic.List`1[[Microsoft.Azure.Commands.EventGrid.Models.PSTopicTypeInfoListInstance, Microsoft.Azure.Commands.EventGrid,

Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]

Microsoft.Azure.Commands.EventGrid.Models.PSTopicTypeInfo





NOTES









Example 1



PS C:\\> Get-AzureRmEventGridTopicType



Gets a list of the topic types.





Example 2



PS C:\\> Get-AzureRmEventGridTopicType -Name "Microsoft.Storage.StorageAccounts"



Gets information about the StorageAccounts topic type.





Example 3



PS C:\\> Get-AzureRmEventGridTopicType -Name "Microsoft.Storage.StorageAccounts" -IncludeEventTypeData



Gets information about the StorageAccounts topic type, including the event types supported by StorageAccounts.







RELATED LINKS

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