kusto_pool_child_resource
Creates, updates, deletes, gets or lists a kusto_pool_child_resource resource.
Overview
| Name | kusto_pool_child_resource |
| Type | Resource |
| Id | azure.synapse.kusto_pool_child_resource |
Fields
The following fields are returned by SELECT queries:
- check_name_availability
| Name | Datatype | Description |
|---|---|---|
name | string | The name that was checked. |
message | string | Message indicating an unavailable name due to a conflict, or a description of the naming rules that are violated. |
nameAvailable | boolean | Specifies a Boolean value that indicates if the name is available. |
reason | string | Message providing the reason why the given name is invalid. Known values are: "Invalid" and "AlreadyExists". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
check_name_availability | select | workspace_name, kusto_pool_name, resource_group_name, subscription_id | Checks that the Kusto Pool child resource name is valid and is not already in use. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
kusto_pool_name | string | The name of the Kusto pool. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The name of the workspace. Required. |
SELECT examples
- check_name_availability
Checks that the Kusto Pool child resource name is valid and is not already in use.
SELECT
name,
message,
nameAvailable,
reason
FROM azure.synapse.kusto_pool_child_resource
WHERE workspace_name = '{{ workspace_name }}' -- required
AND kusto_pool_name = '{{ kusto_pool_name }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;