create_kusto_cluster {AzureKusto} | R Documentation |
Create Kusto/Azure Data Explorer cluster
Description
Method for the AzureRMR::az_resource_group class.
Usage
create_kusto_cluster(name, location, node_size="D14_v2", ...)
Arguments
-
name
: The name of the cluster. -
location
: The location/region in which to create the account. Defaults to the resource group location. -
node_size
: The capacity of the nodes in each of the cluster. Defaults to "D14_v2", which should be available in all regions. The availability of other sizes depends on the region the cluster is created in. ... Other named arguments to pass to the az_kusto initialization function.
Details
This method deploys a new Kusto cluster resource, with parameters given by the arguments.
Value
An object of class az_kusto
representing the created cluster.
See Also
get_kusto_cluster, delete_kusto_cluster, az_kusto
Kusto/Azure Data Explorer documentation
Examples
## Not run:
rg <- AzureRMR::get_azure_login("myaadtenant")$
get_subscription("subscription_id")$
get_resource_group("rgname")
# create a new Kusto cluster
rg$create_kusto_cluster("mykusto", node_size="L16")
## End(Not run)
[Package AzureKusto version 1.1.3 Index]