Skip to main content

libraries

Creates, updates, deletes, gets or lists a libraries resource.

Overview

Namelibraries
TypeResource
Idazure.synapse.libraries

Fields

NameDatatypeDescription
nametextfield from the properties object
container_nametextfield from the properties object
creator_idtextfield from the properties object
libraryNametextfield from the properties object
pathtextfield from the properties object
provisioning_statustextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextfield from the properties object
uploaded_timestamptextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlibraryName, resourceGroupName, subscriptionId, workspaceNameGet library by name in a workspace.
list_by_workspaceSELECTresourceGroupName, subscriptionId, workspaceNameList libraries in a workspace.

SELECT examples

List libraries in a workspace.

SELECT
name,
container_name,
creator_id,
libraryName,
path,
provisioning_status,
resourceGroupName,
subscriptionId,
type,
uploaded_timestamp,
workspaceName
FROM azure.synapse.vw_libraries
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';