libraries
Creates, updates, deletes, gets or lists a libraries
resource.
Overview
Name | libraries |
Type | Resource |
Id | azure.synapse.libraries |
Fields
- vw_libraries
- libraries
Name | Datatype | Description |
---|---|---|
name | text | field from the properties object |
container_name | text | field from the properties object |
creator_id | text | field from the properties object |
libraryName | text | field from the properties object |
path | text | field from the properties object |
provisioning_status | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | field from the properties object |
uploaded_timestamp | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Library/package information of a Big Data pool powered by Apache Spark |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | libraryName, resourceGroupName, subscriptionId, workspaceName | Get library by name in a workspace. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | List libraries in a workspace. |
SELECT
examples
List libraries in a workspace.
- vw_libraries
- libraries
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 }}';
SELECT
properties
FROM azure.synapse.libraries
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';