azure-native.sql.WorkloadGroup
Explore with Pulumi AI
Workload group operations for a data warehouse Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2020-11-01-preview.
Other available API versions: 2022-11-01-preview, 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview.
Example Usage
Create a workload group with all properties specified.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var workloadGroup = new AzureNative.Sql.WorkloadGroup("workloadGroup", new()
    {
        DatabaseName = "testdb",
        Importance = "normal",
        MaxResourcePercent = 100,
        MaxResourcePercentPerRequest = 3,
        MinResourcePercent = 0,
        MinResourcePercentPerRequest = 3,
        QueryExecutionTimeout = 0,
        ResourceGroupName = "Default-SQL-SouthEastAsia",
        ServerName = "testsvr",
        WorkloadGroupName = "smallrc",
    });
});
package main
import (
	sql "github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewWorkloadGroup(ctx, "workloadGroup", &sql.WorkloadGroupArgs{
			DatabaseName:                 pulumi.String("testdb"),
			Importance:                   pulumi.String("normal"),
			MaxResourcePercent:           pulumi.Int(100),
			MaxResourcePercentPerRequest: pulumi.Float64(3),
			MinResourcePercent:           pulumi.Int(0),
			MinResourcePercentPerRequest: pulumi.Float64(3),
			QueryExecutionTimeout:        pulumi.Int(0),
			ResourceGroupName:            pulumi.String("Default-SQL-SouthEastAsia"),
			ServerName:                   pulumi.String("testsvr"),
			WorkloadGroupName:            pulumi.String("smallrc"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.sql.WorkloadGroup;
import com.pulumi.azurenative.sql.WorkloadGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var workloadGroup = new WorkloadGroup("workloadGroup", WorkloadGroupArgs.builder()
            .databaseName("testdb")
            .importance("normal")
            .maxResourcePercent(100)
            .maxResourcePercentPerRequest(3)
            .minResourcePercent(0)
            .minResourcePercentPerRequest(3)
            .queryExecutionTimeout(0)
            .resourceGroupName("Default-SQL-SouthEastAsia")
            .serverName("testsvr")
            .workloadGroupName("smallrc")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workloadGroup = new azure_native.sql.WorkloadGroup("workloadGroup", {
    databaseName: "testdb",
    importance: "normal",
    maxResourcePercent: 100,
    maxResourcePercentPerRequest: 3,
    minResourcePercent: 0,
    minResourcePercentPerRequest: 3,
    queryExecutionTimeout: 0,
    resourceGroupName: "Default-SQL-SouthEastAsia",
    serverName: "testsvr",
    workloadGroupName: "smallrc",
});
import pulumi
import pulumi_azure_native as azure_native
workload_group = azure_native.sql.WorkloadGroup("workloadGroup",
    database_name="testdb",
    importance="normal",
    max_resource_percent=100,
    max_resource_percent_per_request=3,
    min_resource_percent=0,
    min_resource_percent_per_request=3,
    query_execution_timeout=0,
    resource_group_name="Default-SQL-SouthEastAsia",
    server_name="testsvr",
    workload_group_name="smallrc")
resources:
  workloadGroup:
    type: azure-native:sql:WorkloadGroup
    properties:
      databaseName: testdb
      importance: normal
      maxResourcePercent: 100
      maxResourcePercentPerRequest: 3
      minResourcePercent: 0
      minResourcePercentPerRequest: 3
      queryExecutionTimeout: 0
      resourceGroupName: Default-SQL-SouthEastAsia
      serverName: testsvr
      workloadGroupName: smallrc
Create a workload group with the required properties specified.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var workloadGroup = new AzureNative.Sql.WorkloadGroup("workloadGroup", new()
    {
        DatabaseName = "testdb",
        MaxResourcePercent = 100,
        MinResourcePercent = 0,
        MinResourcePercentPerRequest = 3,
        ResourceGroupName = "Default-SQL-SouthEastAsia",
        ServerName = "testsvr",
        WorkloadGroupName = "smallrc",
    });
});
package main
import (
	sql "github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sql.NewWorkloadGroup(ctx, "workloadGroup", &sql.WorkloadGroupArgs{
			DatabaseName:                 pulumi.String("testdb"),
			MaxResourcePercent:           pulumi.Int(100),
			MinResourcePercent:           pulumi.Int(0),
			MinResourcePercentPerRequest: pulumi.Float64(3),
			ResourceGroupName:            pulumi.String("Default-SQL-SouthEastAsia"),
			ServerName:                   pulumi.String("testsvr"),
			WorkloadGroupName:            pulumi.String("smallrc"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.sql.WorkloadGroup;
import com.pulumi.azurenative.sql.WorkloadGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var workloadGroup = new WorkloadGroup("workloadGroup", WorkloadGroupArgs.builder()
            .databaseName("testdb")
            .maxResourcePercent(100)
            .minResourcePercent(0)
            .minResourcePercentPerRequest(3)
            .resourceGroupName("Default-SQL-SouthEastAsia")
            .serverName("testsvr")
            .workloadGroupName("smallrc")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workloadGroup = new azure_native.sql.WorkloadGroup("workloadGroup", {
    databaseName: "testdb",
    maxResourcePercent: 100,
    minResourcePercent: 0,
    minResourcePercentPerRequest: 3,
    resourceGroupName: "Default-SQL-SouthEastAsia",
    serverName: "testsvr",
    workloadGroupName: "smallrc",
});
import pulumi
import pulumi_azure_native as azure_native
workload_group = azure_native.sql.WorkloadGroup("workloadGroup",
    database_name="testdb",
    max_resource_percent=100,
    min_resource_percent=0,
    min_resource_percent_per_request=3,
    resource_group_name="Default-SQL-SouthEastAsia",
    server_name="testsvr",
    workload_group_name="smallrc")
resources:
  workloadGroup:
    type: azure-native:sql:WorkloadGroup
    properties:
      databaseName: testdb
      maxResourcePercent: 100
      minResourcePercent: 0
      minResourcePercentPerRequest: 3
      resourceGroupName: Default-SQL-SouthEastAsia
      serverName: testsvr
      workloadGroupName: smallrc
Create WorkloadGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkloadGroup(name: string, args: WorkloadGroupArgs, opts?: CustomResourceOptions);@overload
def WorkloadGroup(resource_name: str,
                  args: WorkloadGroupArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def WorkloadGroup(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  database_name: Optional[str] = None,
                  max_resource_percent: Optional[int] = None,
                  min_resource_percent: Optional[int] = None,
                  min_resource_percent_per_request: Optional[float] = None,
                  resource_group_name: Optional[str] = None,
                  server_name: Optional[str] = None,
                  importance: Optional[str] = None,
                  max_resource_percent_per_request: Optional[float] = None,
                  query_execution_timeout: Optional[int] = None,
                  workload_group_name: Optional[str] = None)func NewWorkloadGroup(ctx *Context, name string, args WorkloadGroupArgs, opts ...ResourceOption) (*WorkloadGroup, error)public WorkloadGroup(string name, WorkloadGroupArgs args, CustomResourceOptions? opts = null)
public WorkloadGroup(String name, WorkloadGroupArgs args)
public WorkloadGroup(String name, WorkloadGroupArgs args, CustomResourceOptions options)
type: azure-native:sql:WorkloadGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkloadGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkloadGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkloadGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkloadGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkloadGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workloadGroupResource = new AzureNative.Sql.WorkloadGroup("workloadGroupResource", new()
{
    DatabaseName = "string",
    MaxResourcePercent = 0,
    MinResourcePercent = 0,
    MinResourcePercentPerRequest = 0,
    ResourceGroupName = "string",
    ServerName = "string",
    Importance = "string",
    MaxResourcePercentPerRequest = 0,
    QueryExecutionTimeout = 0,
    WorkloadGroupName = "string",
});
example, err := sql.NewWorkloadGroup(ctx, "workloadGroupResource", &sql.WorkloadGroupArgs{
	DatabaseName:                 pulumi.String("string"),
	MaxResourcePercent:           pulumi.Int(0),
	MinResourcePercent:           pulumi.Int(0),
	MinResourcePercentPerRequest: pulumi.Float64(0),
	ResourceGroupName:            pulumi.String("string"),
	ServerName:                   pulumi.String("string"),
	Importance:                   pulumi.String("string"),
	MaxResourcePercentPerRequest: pulumi.Float64(0),
	QueryExecutionTimeout:        pulumi.Int(0),
	WorkloadGroupName:            pulumi.String("string"),
})
var workloadGroupResource = new WorkloadGroup("workloadGroupResource", WorkloadGroupArgs.builder()
    .databaseName("string")
    .maxResourcePercent(0)
    .minResourcePercent(0)
    .minResourcePercentPerRequest(0)
    .resourceGroupName("string")
    .serverName("string")
    .importance("string")
    .maxResourcePercentPerRequest(0)
    .queryExecutionTimeout(0)
    .workloadGroupName("string")
    .build());
workload_group_resource = azure_native.sql.WorkloadGroup("workloadGroupResource",
    database_name="string",
    max_resource_percent=0,
    min_resource_percent=0,
    min_resource_percent_per_request=0,
    resource_group_name="string",
    server_name="string",
    importance="string",
    max_resource_percent_per_request=0,
    query_execution_timeout=0,
    workload_group_name="string")
const workloadGroupResource = new azure_native.sql.WorkloadGroup("workloadGroupResource", {
    databaseName: "string",
    maxResourcePercent: 0,
    minResourcePercent: 0,
    minResourcePercentPerRequest: 0,
    resourceGroupName: "string",
    serverName: "string",
    importance: "string",
    maxResourcePercentPerRequest: 0,
    queryExecutionTimeout: 0,
    workloadGroupName: "string",
});
type: azure-native:sql:WorkloadGroup
properties:
    databaseName: string
    importance: string
    maxResourcePercent: 0
    maxResourcePercentPerRequest: 0
    minResourcePercent: 0
    minResourcePercentPerRequest: 0
    queryExecutionTimeout: 0
    resourceGroupName: string
    serverName: string
    workloadGroupName: string
WorkloadGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkloadGroup resource accepts the following input properties:
- DatabaseName string
- The name of the database.
- MaxResource intPercent 
- The workload group cap percentage resource.
- MinResource intPercent 
- The workload group minimum percentage resource.
- MinResource doublePercent Per Request 
- The workload group request minimum grant percentage.
- ResourceGroup stringName 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- ServerName string
- The name of the server.
- Importance string
- The workload group importance level.
- MaxResource doublePercent Per Request 
- The workload group request maximum grant percentage.
- QueryExecution intTimeout 
- The workload group query execution timeout.
- WorkloadGroup stringName 
- The name of the workload group.
- DatabaseName string
- The name of the database.
- MaxResource intPercent 
- The workload group cap percentage resource.
- MinResource intPercent 
- The workload group minimum percentage resource.
- MinResource float64Percent Per Request 
- The workload group request minimum grant percentage.
- ResourceGroup stringName 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- ServerName string
- The name of the server.
- Importance string
- The workload group importance level.
- MaxResource float64Percent Per Request 
- The workload group request maximum grant percentage.
- QueryExecution intTimeout 
- The workload group query execution timeout.
- WorkloadGroup stringName 
- The name of the workload group.
- databaseName String
- The name of the database.
- maxResource IntegerPercent 
- The workload group cap percentage resource.
- minResource IntegerPercent 
- The workload group minimum percentage resource.
- minResource DoublePercent Per Request 
- The workload group request minimum grant percentage.
- resourceGroup StringName 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- serverName String
- The name of the server.
- importance String
- The workload group importance level.
- maxResource DoublePercent Per Request 
- The workload group request maximum grant percentage.
- queryExecution IntegerTimeout 
- The workload group query execution timeout.
- workloadGroup StringName 
- The name of the workload group.
- databaseName string
- The name of the database.
- maxResource numberPercent 
- The workload group cap percentage resource.
- minResource numberPercent 
- The workload group minimum percentage resource.
- minResource numberPercent Per Request 
- The workload group request minimum grant percentage.
- resourceGroup stringName 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- serverName string
- The name of the server.
- importance string
- The workload group importance level.
- maxResource numberPercent Per Request 
- The workload group request maximum grant percentage.
- queryExecution numberTimeout 
- The workload group query execution timeout.
- workloadGroup stringName 
- The name of the workload group.
- database_name str
- The name of the database.
- max_resource_ intpercent 
- The workload group cap percentage resource.
- min_resource_ intpercent 
- The workload group minimum percentage resource.
- min_resource_ floatpercent_ per_ request 
- The workload group request minimum grant percentage.
- resource_group_ strname 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- server_name str
- The name of the server.
- importance str
- The workload group importance level.
- max_resource_ floatpercent_ per_ request 
- The workload group request maximum grant percentage.
- query_execution_ inttimeout 
- The workload group query execution timeout.
- workload_group_ strname 
- The name of the workload group.
- databaseName String
- The name of the database.
- maxResource NumberPercent 
- The workload group cap percentage resource.
- minResource NumberPercent 
- The workload group minimum percentage resource.
- minResource NumberPercent Per Request 
- The workload group request minimum grant percentage.
- resourceGroup StringName 
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- serverName String
- The name of the server.
- importance String
- The workload group importance level.
- maxResource NumberPercent Per Request 
- The workload group request maximum grant percentage.
- queryExecution NumberTimeout 
- The workload group query execution timeout.
- workloadGroup StringName 
- The name of the workload group.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkloadGroup resource produces the following output properties:
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:sql:WorkloadGroup smallrc /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/workloadGroups/{workloadGroupName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0