azure-native.sqlvirtualmachine.SqlVirtualMachineGroup
A SQL virtual machine group.
Uses Azure REST API version 2023-10-01. In version 2.x of the Azure Native provider, it used API version 2022-02-01.
Other available API versions: 2022-02-01, 2022-07-01-preview, 2022-08-01-preview, 2023-01-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native sqlvirtualmachine [ApiVersion]. See the version guide for details.
Example Usage
Creates or updates a SQL virtual machine group.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var sqlVirtualMachineGroup = new AzureNative.SqlVirtualMachine.SqlVirtualMachineGroup("sqlVirtualMachineGroup", new()
    {
        Location = "northeurope",
        ResourceGroupName = "testrg",
        SqlImageOffer = "SQL2016-WS2016",
        SqlImageSku = AzureNative.SqlVirtualMachine.SqlVmGroupImageSku.Enterprise,
        SqlVirtualMachineGroupName = "testvmgroup",
        Tags = 
        {
            { "mytag", "myval" },
        },
        WsfcDomainProfile = new AzureNative.SqlVirtualMachine.Inputs.WsfcDomainProfileArgs
        {
            ClusterBootstrapAccount = "testrpadmin",
            ClusterOperatorAccount = "testrp@testdomain.com",
            ClusterSubnetType = AzureNative.SqlVirtualMachine.ClusterSubnetType.MultiSubnet,
            DomainFqdn = "testdomain.com",
            IsSqlServiceAccountGmsa = false,
            OuPath = "OU=WSCluster,DC=testdomain,DC=com",
            SqlServiceAccount = "sqlservice@testdomain.com",
            StorageAccountPrimaryKey = "<primary storage access key>",
            StorageAccountUrl = "https://storgact.blob.core.windows.net/",
        },
    });
});
package main
import (
	sqlvirtualmachine "github.com/pulumi/pulumi-azure-native-sdk/sqlvirtualmachine/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sqlvirtualmachine.NewSqlVirtualMachineGroup(ctx, "sqlVirtualMachineGroup", &sqlvirtualmachine.SqlVirtualMachineGroupArgs{
			Location:                   pulumi.String("northeurope"),
			ResourceGroupName:          pulumi.String("testrg"),
			SqlImageOffer:              pulumi.String("SQL2016-WS2016"),
			SqlImageSku:                pulumi.String(sqlvirtualmachine.SqlVmGroupImageSkuEnterprise),
			SqlVirtualMachineGroupName: pulumi.String("testvmgroup"),
			Tags: pulumi.StringMap{
				"mytag": pulumi.String("myval"),
			},
			WsfcDomainProfile: &sqlvirtualmachine.WsfcDomainProfileArgs{
				ClusterBootstrapAccount:  pulumi.String("testrpadmin"),
				ClusterOperatorAccount:   pulumi.String("testrp@testdomain.com"),
				ClusterSubnetType:        pulumi.String(sqlvirtualmachine.ClusterSubnetTypeMultiSubnet),
				DomainFqdn:               pulumi.String("testdomain.com"),
				IsSqlServiceAccountGmsa:  pulumi.Bool(false),
				OuPath:                   pulumi.String("OU=WSCluster,DC=testdomain,DC=com"),
				SqlServiceAccount:        pulumi.String("sqlservice@testdomain.com"),
				StorageAccountPrimaryKey: pulumi.String("<primary storage access key>"),
				StorageAccountUrl:        pulumi.String("https://storgact.blob.core.windows.net/"),
			},
		})
		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.sqlvirtualmachine.SqlVirtualMachineGroup;
import com.pulumi.azurenative.sqlvirtualmachine.SqlVirtualMachineGroupArgs;
import com.pulumi.azurenative.sqlvirtualmachine.inputs.WsfcDomainProfileArgs;
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 sqlVirtualMachineGroup = new SqlVirtualMachineGroup("sqlVirtualMachineGroup", SqlVirtualMachineGroupArgs.builder()
            .location("northeurope")
            .resourceGroupName("testrg")
            .sqlImageOffer("SQL2016-WS2016")
            .sqlImageSku("Enterprise")
            .sqlVirtualMachineGroupName("testvmgroup")
            .tags(Map.of("mytag", "myval"))
            .wsfcDomainProfile(WsfcDomainProfileArgs.builder()
                .clusterBootstrapAccount("testrpadmin")
                .clusterOperatorAccount("testrp@testdomain.com")
                .clusterSubnetType("MultiSubnet")
                .domainFqdn("testdomain.com")
                .isSqlServiceAccountGmsa(false)
                .ouPath("OU=WSCluster,DC=testdomain,DC=com")
                .sqlServiceAccount("sqlservice@testdomain.com")
                .storageAccountPrimaryKey("<primary storage access key>")
                .storageAccountUrl("https://storgact.blob.core.windows.net/")
                .build())
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sqlVirtualMachineGroup = new azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroup", {
    location: "northeurope",
    resourceGroupName: "testrg",
    sqlImageOffer: "SQL2016-WS2016",
    sqlImageSku: azure_native.sqlvirtualmachine.SqlVmGroupImageSku.Enterprise,
    sqlVirtualMachineGroupName: "testvmgroup",
    tags: {
        mytag: "myval",
    },
    wsfcDomainProfile: {
        clusterBootstrapAccount: "testrpadmin",
        clusterOperatorAccount: "testrp@testdomain.com",
        clusterSubnetType: azure_native.sqlvirtualmachine.ClusterSubnetType.MultiSubnet,
        domainFqdn: "testdomain.com",
        isSqlServiceAccountGmsa: false,
        ouPath: "OU=WSCluster,DC=testdomain,DC=com",
        sqlServiceAccount: "sqlservice@testdomain.com",
        storageAccountPrimaryKey: "<primary storage access key>",
        storageAccountUrl: "https://storgact.blob.core.windows.net/",
    },
});
import pulumi
import pulumi_azure_native as azure_native
sql_virtual_machine_group = azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroup",
    location="northeurope",
    resource_group_name="testrg",
    sql_image_offer="SQL2016-WS2016",
    sql_image_sku=azure_native.sqlvirtualmachine.SqlVmGroupImageSku.ENTERPRISE,
    sql_virtual_machine_group_name="testvmgroup",
    tags={
        "mytag": "myval",
    },
    wsfc_domain_profile={
        "cluster_bootstrap_account": "testrpadmin",
        "cluster_operator_account": "testrp@testdomain.com",
        "cluster_subnet_type": azure_native.sqlvirtualmachine.ClusterSubnetType.MULTI_SUBNET,
        "domain_fqdn": "testdomain.com",
        "is_sql_service_account_gmsa": False,
        "ou_path": "OU=WSCluster,DC=testdomain,DC=com",
        "sql_service_account": "sqlservice@testdomain.com",
        "storage_account_primary_key": "<primary storage access key>",
        "storage_account_url": "https://storgact.blob.core.windows.net/",
    })
resources:
  sqlVirtualMachineGroup:
    type: azure-native:sqlvirtualmachine:SqlVirtualMachineGroup
    properties:
      location: northeurope
      resourceGroupName: testrg
      sqlImageOffer: SQL2016-WS2016
      sqlImageSku: Enterprise
      sqlVirtualMachineGroupName: testvmgroup
      tags:
        mytag: myval
      wsfcDomainProfile:
        clusterBootstrapAccount: testrpadmin
        clusterOperatorAccount: testrp@testdomain.com
        clusterSubnetType: MultiSubnet
        domainFqdn: testdomain.com
        isSqlServiceAccountGmsa: false
        ouPath: OU=WSCluster,DC=testdomain,DC=com
        sqlServiceAccount: sqlservice@testdomain.com
        storageAccountPrimaryKey: <primary storage access key>
        storageAccountUrl: https://storgact.blob.core.windows.net/
Create SqlVirtualMachineGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlVirtualMachineGroup(name: string, args: SqlVirtualMachineGroupArgs, opts?: CustomResourceOptions);@overload
def SqlVirtualMachineGroup(resource_name: str,
                           args: SqlVirtualMachineGroupArgs,
                           opts: Optional[ResourceOptions] = None)
@overload
def SqlVirtualMachineGroup(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_group_name: Optional[str] = None,
                           location: Optional[str] = None,
                           sql_image_offer: Optional[str] = None,
                           sql_image_sku: Optional[Union[str, SqlVmGroupImageSku]] = None,
                           sql_virtual_machine_group_name: Optional[str] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           wsfc_domain_profile: Optional[WsfcDomainProfileArgs] = None)func NewSqlVirtualMachineGroup(ctx *Context, name string, args SqlVirtualMachineGroupArgs, opts ...ResourceOption) (*SqlVirtualMachineGroup, error)public SqlVirtualMachineGroup(string name, SqlVirtualMachineGroupArgs args, CustomResourceOptions? opts = null)
public SqlVirtualMachineGroup(String name, SqlVirtualMachineGroupArgs args)
public SqlVirtualMachineGroup(String name, SqlVirtualMachineGroupArgs args, CustomResourceOptions options)
type: azure-native:sqlvirtualmachine:SqlVirtualMachineGroup
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 SqlVirtualMachineGroupArgs
- 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 SqlVirtualMachineGroupArgs
- 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 SqlVirtualMachineGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SqlVirtualMachineGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SqlVirtualMachineGroupArgs
- 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 sqlVirtualMachineGroupResource = new AzureNative.SqlVirtualMachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    SqlImageOffer = "string",
    SqlImageSku = "string",
    SqlVirtualMachineGroupName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    WsfcDomainProfile = new AzureNative.SqlVirtualMachine.Inputs.WsfcDomainProfileArgs
    {
        ClusterBootstrapAccount = "string",
        ClusterOperatorAccount = "string",
        ClusterSubnetType = "string",
        DomainFqdn = "string",
        FileShareWitnessPath = "string",
        IsSqlServiceAccountGmsa = false,
        OuPath = "string",
        SqlServiceAccount = "string",
        StorageAccountPrimaryKey = "string",
        StorageAccountUrl = "string",
    },
});
example, err := sqlvirtualmachine.NewSqlVirtualMachineGroup(ctx, "sqlVirtualMachineGroupResource", &sqlvirtualmachine.SqlVirtualMachineGroupArgs{
	ResourceGroupName:          pulumi.String("string"),
	Location:                   pulumi.String("string"),
	SqlImageOffer:              pulumi.String("string"),
	SqlImageSku:                pulumi.String("string"),
	SqlVirtualMachineGroupName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	WsfcDomainProfile: &sqlvirtualmachine.WsfcDomainProfileArgs{
		ClusterBootstrapAccount:  pulumi.String("string"),
		ClusterOperatorAccount:   pulumi.String("string"),
		ClusterSubnetType:        pulumi.String("string"),
		DomainFqdn:               pulumi.String("string"),
		FileShareWitnessPath:     pulumi.String("string"),
		IsSqlServiceAccountGmsa:  pulumi.Bool(false),
		OuPath:                   pulumi.String("string"),
		SqlServiceAccount:        pulumi.String("string"),
		StorageAccountPrimaryKey: pulumi.String("string"),
		StorageAccountUrl:        pulumi.String("string"),
	},
})
var sqlVirtualMachineGroupResource = new SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", SqlVirtualMachineGroupArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .sqlImageOffer("string")
    .sqlImageSku("string")
    .sqlVirtualMachineGroupName("string")
    .tags(Map.of("string", "string"))
    .wsfcDomainProfile(WsfcDomainProfileArgs.builder()
        .clusterBootstrapAccount("string")
        .clusterOperatorAccount("string")
        .clusterSubnetType("string")
        .domainFqdn("string")
        .fileShareWitnessPath("string")
        .isSqlServiceAccountGmsa(false)
        .ouPath("string")
        .sqlServiceAccount("string")
        .storageAccountPrimaryKey("string")
        .storageAccountUrl("string")
        .build())
    .build());
sql_virtual_machine_group_resource = azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource",
    resource_group_name="string",
    location="string",
    sql_image_offer="string",
    sql_image_sku="string",
    sql_virtual_machine_group_name="string",
    tags={
        "string": "string",
    },
    wsfc_domain_profile={
        "cluster_bootstrap_account": "string",
        "cluster_operator_account": "string",
        "cluster_subnet_type": "string",
        "domain_fqdn": "string",
        "file_share_witness_path": "string",
        "is_sql_service_account_gmsa": False,
        "ou_path": "string",
        "sql_service_account": "string",
        "storage_account_primary_key": "string",
        "storage_account_url": "string",
    })
const sqlVirtualMachineGroupResource = new azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", {
    resourceGroupName: "string",
    location: "string",
    sqlImageOffer: "string",
    sqlImageSku: "string",
    sqlVirtualMachineGroupName: "string",
    tags: {
        string: "string",
    },
    wsfcDomainProfile: {
        clusterBootstrapAccount: "string",
        clusterOperatorAccount: "string",
        clusterSubnetType: "string",
        domainFqdn: "string",
        fileShareWitnessPath: "string",
        isSqlServiceAccountGmsa: false,
        ouPath: "string",
        sqlServiceAccount: "string",
        storageAccountPrimaryKey: "string",
        storageAccountUrl: "string",
    },
});
type: azure-native:sqlvirtualmachine:SqlVirtualMachineGroup
properties:
    location: string
    resourceGroupName: string
    sqlImageOffer: string
    sqlImageSku: string
    sqlVirtualMachineGroupName: string
    tags:
        string: string
    wsfcDomainProfile:
        clusterBootstrapAccount: string
        clusterOperatorAccount: string
        clusterSubnetType: string
        domainFqdn: string
        fileShareWitnessPath: string
        isSqlServiceAccountGmsa: false
        ouPath: string
        sqlServiceAccount: string
        storageAccountPrimaryKey: string
        storageAccountUrl: string
SqlVirtualMachineGroup 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 SqlVirtualMachineGroup resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- SqlImage stringOffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- SqlImage string | Pulumi.Sku Azure Native. Sql Virtual Machine. Sql Vm Group Image Sku 
- SQL image sku.
- SqlVirtual stringMachine Group Name 
- Name of the SQL virtual machine group.
- Dictionary<string, string>
- Resource tags.
- WsfcDomain Pulumi.Profile Azure Native. Sql Virtual Machine. Inputs. Wsfc Domain Profile 
- Cluster Active Directory domain profile.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- SqlImage stringOffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- SqlImage string | SqlSku Vm Group Image Sku 
- SQL image sku.
- SqlVirtual stringMachine Group Name 
- Name of the SQL virtual machine group.
- map[string]string
- Resource tags.
- WsfcDomain WsfcProfile Domain Profile Args 
- Cluster Active Directory domain profile.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- sqlImage StringOffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sqlImage String | SqlSku Vm Group Image Sku 
- SQL image sku.
- sqlVirtual StringMachine Group Name 
- Name of the SQL virtual machine group.
- Map<String,String>
- Resource tags.
- wsfcDomain WsfcProfile Domain Profile 
- Cluster Active Directory domain profile.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- sqlImage stringOffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sqlImage string | SqlSku Vm Group Image Sku 
- SQL image sku.
- sqlVirtual stringMachine Group Name 
- Name of the SQL virtual machine group.
- {[key: string]: string}
- Resource tags.
- wsfcDomain WsfcProfile Domain Profile 
- Cluster Active Directory domain profile.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- sql_image_ stroffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sql_image_ str | Sqlsku Vm Group Image Sku 
- SQL image sku.
- sql_virtual_ strmachine_ group_ name 
- Name of the SQL virtual machine group.
- Mapping[str, str]
- Resource tags.
- wsfc_domain_ Wsfcprofile Domain Profile Args 
- Cluster Active Directory domain profile.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- sqlImage StringOffer 
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sqlImage String | "Developer" | "Enterprise"Sku 
- SQL image sku.
- sqlVirtual StringMachine Group Name 
- Name of the SQL virtual machine group.
- Map<String>
- Resource tags.
- wsfcDomain Property MapProfile 
- Cluster Active Directory domain profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlVirtualMachineGroup resource produces the following output properties:
- AzureApi stringVersion 
- The Azure API version of the resource.
- ClusterConfiguration string
- Cluster type.
- ClusterManager stringType 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state to track the async operation status.
- ScaleType string
- Scale type.
- SystemData Pulumi.Azure Native. Sql Virtual Machine. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- AzureApi stringVersion 
- The Azure API version of the resource.
- ClusterConfiguration string
- Cluster type.
- ClusterManager stringType 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state to track the async operation status.
- ScaleType string
- Scale type.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azureApi StringVersion 
- The Azure API version of the resource.
- clusterConfiguration String
- Cluster type.
- clusterManager StringType 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state to track the async operation status.
- scaleType String
- Scale type.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azureApi stringVersion 
- The Azure API version of the resource.
- clusterConfiguration string
- Cluster type.
- clusterManager stringType 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provisioning state to track the async operation status.
- scaleType string
- Scale type.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_api_ strversion 
- The Azure API version of the resource.
- cluster_configuration str
- Cluster type.
- cluster_manager_ strtype 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state to track the async operation status.
- scale_type str
- Scale type.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azureApi StringVersion 
- The Azure API version of the resource.
- clusterConfiguration String
- Cluster type.
- clusterManager StringType 
- Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state to track the async operation status.
- scaleType String
- Scale type.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ClusterSubnetType, ClusterSubnetTypeArgs      
- SingleSubnet 
- SingleSubnet
- MultiSubnet 
- MultiSubnet
- ClusterSubnet Type Single Subnet 
- SingleSubnet
- ClusterSubnet Type Multi Subnet 
- MultiSubnet
- SingleSubnet 
- SingleSubnet
- MultiSubnet 
- MultiSubnet
- SingleSubnet 
- SingleSubnet
- MultiSubnet 
- MultiSubnet
- SINGLE_SUBNET
- SingleSubnet
- MULTI_SUBNET
- MultiSubnet
- "SingleSubnet" 
- SingleSubnet
- "MultiSubnet" 
- MultiSubnet
SqlVmGroupImageSku, SqlVmGroupImageSkuArgs          
- Developer
- Developer
- Enterprise
- Enterprise
- SqlVm Group Image Sku Developer 
- Developer
- SqlVm Group Image Sku Enterprise 
- Enterprise
- Developer
- Developer
- Enterprise
- Enterprise
- Developer
- Developer
- Enterprise
- Enterprise
- DEVELOPER
- Developer
- ENTERPRISE
- Enterprise
- "Developer"
- Developer
- "Enterprise"
- Enterprise
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
WsfcDomainProfile, WsfcDomainProfileArgs      
Active Directory account details to operate Windows Server Failover Cluster.- ClusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- ClusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- ClusterSubnet string | Pulumi.Type Azure Native. Sql Virtual Machine. Cluster Subnet Type 
- Cluster subnet type.
- DomainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- IsSql boolService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- OuPath string
- Organizational Unit path in which the nodes and cluster will be present.
- SqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- StorageAccount stringPrimary Key 
- Primary key of the witness storage account.
- StorageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- ClusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- ClusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- ClusterSubnet string | ClusterType Subnet Type 
- Cluster subnet type.
- DomainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- IsSql boolService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- OuPath string
- Organizational Unit path in which the nodes and cluster will be present.
- SqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- StorageAccount stringPrimary Key 
- Primary key of the witness storage account.
- StorageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap StringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator StringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet String | ClusterType Subnet Type 
- Cluster subnet type.
- domainFqdn String
- Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- isSql BooleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath String
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService StringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount StringPrimary Key 
- Primary key of the witness storage account.
- storageAccount StringUrl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet string | ClusterType Subnet Type 
- Cluster subnet type.
- domainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- isSql booleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath string
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount stringPrimary Key 
- Primary key of the witness storage account.
- storageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- cluster_bootstrap_ straccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster_operator_ straccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster_subnet_ str | Clustertype Subnet Type 
- Cluster subnet type.
- domain_fqdn str
- Fully qualified name of the domain.
- str
- Optional path for fileshare witness.
- is_sql_ boolservice_ account_ gmsa 
- The flag to check if SQL service account is GMSA.
- ou_path str
- Organizational Unit path in which the nodes and cluster will be present.
- sql_service_ straccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage_account_ strprimary_ key 
- Primary key of the witness storage account.
- storage_account_ strurl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap StringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator StringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet String | "SingleType Subnet" | "Multi Subnet" 
- Cluster subnet type.
- domainFqdn String
- Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- isSql BooleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath String
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService StringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount StringPrimary Key 
- Primary key of the witness storage account.
- storageAccount StringUrl 
- Fully qualified ARM resource id of the witness storage account.
WsfcDomainProfileResponse, WsfcDomainProfileResponseArgs        
Active Directory account details to operate Windows Server Failover Cluster.- ClusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- ClusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- ClusterSubnet stringType 
- Cluster subnet type.
- DomainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- IsSql boolService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- OuPath string
- Organizational Unit path in which the nodes and cluster will be present.
- SqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- StorageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- ClusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- ClusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- ClusterSubnet stringType 
- Cluster subnet type.
- DomainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- IsSql boolService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- OuPath string
- Organizational Unit path in which the nodes and cluster will be present.
- SqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- StorageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap StringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator StringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet StringType 
- Cluster subnet type.
- domainFqdn String
- Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- isSql BooleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath String
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService StringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount StringUrl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap stringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator stringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet stringType 
- Cluster subnet type.
- domainFqdn string
- Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- isSql booleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath string
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService stringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount stringUrl 
- Fully qualified ARM resource id of the witness storage account.
- cluster_bootstrap_ straccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster_operator_ straccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster_subnet_ strtype 
- Cluster subnet type.
- domain_fqdn str
- Fully qualified name of the domain.
- str
- Optional path for fileshare witness.
- is_sql_ boolservice_ account_ gmsa 
- The flag to check if SQL service account is GMSA.
- ou_path str
- Organizational Unit path in which the nodes and cluster will be present.
- sql_service_ straccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage_account_ strurl 
- Fully qualified ARM resource id of the witness storage account.
- clusterBootstrap StringAccount 
- Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- clusterOperator StringAccount 
- Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- clusterSubnet StringType 
- Cluster subnet type.
- domainFqdn String
- Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- isSql BooleanService Account Gmsa 
- The flag to check if SQL service account is GMSA.
- ouPath String
- Organizational Unit path in which the nodes and cluster will be present.
- sqlService StringAccount 
- Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storageAccount StringUrl 
- Fully qualified ARM resource id of the witness storage account.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:sqlvirtualmachine:SqlVirtualMachineGroup testvmgroup /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/{sqlVirtualMachineGroupName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
