你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzSynapseTriggerRun
返回有关触发器运行的信息。
语法
Get-AzSynapseTriggerRun
-WorkspaceName <String>
-Name <String>
-RunStartedAfter <DateTimeOffset>
-RunStartedBefore <DateTimeOffset>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzSynapseTriggerRun
-WorkspaceObject <PSSynapseWorkspace>
-Name <String>
-RunStartedAfter <DateTimeOffset>
-RunStartedBefore <DateTimeOffset>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzSynapseTriggerRun 命令返回有关给定时间范围内指定触发器运行的触发器运行的详细信息。
示例
示例 1
Get-AzSynapseTriggerRun -WorkspaceName ContosoWorkspace -Name ContosoTrigger -RunStartedAfter "2018-09-01T21:00" -RunStartedBefore "2019-09-01T21:00"
此命令显示从“2018-09-01T21:00”和“2019-09-01T21:00”开始的工作区 ContosoTrigger 的运行信息。
示例 2
$ws = Get-AzSynapseWorkspace -Name ContosoWorkspace
$ws | Get-AzSynapseTriggerRun -Name ContosoTrigger -RunStartedAfter "2018-09-01T21:00" -RunStartedBefore "2019-09-01T21:00"
此命令显示从“2018-09-01T21:00”和“2019-09-01T21:00”开始的工作区 ContosoTrigger 运行的相关信息。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
触发器名称。
类型: | String |
别名: | TriggerName |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-RunStartedAfter
运行事件以“ISO 8601”格式更新的时间或之后的时间。
类型: | DateTimeOffset |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-RunStartedBefore
运行事件以“ISO 8601”格式更新的时间或之前的时间。
类型: | DateTimeOffset |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WorkspaceName
Synapse 工作区的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WorkspaceObject
工作区输入对象,通常通过管道传递。
类型: | PSSynapseWorkspace |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |