你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzSynapseLinkConnectionLinkTable
获取有关链接连接下的链接表的信息。
语法
Get-AzSynapseLinkConnectionLinkTable
-WorkspaceName <String>
-LinkConnectionName <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzSynapseLinkConnectionLinkTable
-WorkspaceObject <PSSynapseWorkspace>
-LinkConnectionName <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzSynapseLinkConnectionLinkTable
-InputObject <PSLinkConnectionResource>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzSynapseLinkConnectionLinkTable cmdlet 获取有关链接连接下的链接表的信息。
示例
示例 1
Get-AzSynapseLinkConnectionLinkTable -WorkspaceName ContosoWorkspace -LinkConnectionName ContosoLinkConnection
此命令获取有关工作区 ContosoWorkspace 中链接连接 ContosoLinkConnection 下的链接表的信息。
示例 2
$ws = Get-AzSynapseWorkspace -Name ContosoWorkspace
$ws | Get-AzSynapseLinkConnectionLinkTable -LinkConnectionName ContosoLinkConnection
此命令通过管道获取有关工作区 ContosoWorkspace 中链接连接 ContosoLinkConnection 下的链接表的信息。
示例 3
$lc = Get-AzSynapseLinkConnection -WorkspaceName ContosoWorkspace -Name ContosoLinkConnection
$lc | Get-AzSynapseLinkConnectionLinkTable
此命令通过管道获取有关链接连接下的链接表的信息。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InputObject
有关链接连接的信息。
类型: | PSLinkConnectionResource |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-LinkConnectionName
链接连接的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WorkspaceName
Synapse 工作区的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WorkspaceObject
工作区输入对象,通常通过管道传递。
类型: | PSSynapseWorkspace |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |