azure-native.azurearcdata.SqlManagedInstance
Explore with Pulumi AI
A SqlManagedInstance. API Version: 2021-06-01-preview.
Example Usage
Create or update a SQL Managed Instance
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var sqlManagedInstance = new AzureNative.AzureArcData.SqlManagedInstance("sqlManagedInstance", new()
    {
        ExtendedLocation = new AzureNative.AzureArcData.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
            Type = "CustomLocation",
        },
        Location = "northeurope",
        Properties = new AzureNative.AzureArcData.Inputs.SqlManagedInstancePropertiesArgs
        {
            Admin = "Admin user",
            BasicLoginInformation = new AzureNative.AzureArcData.Inputs.BasicLoginInformationArgs
            {
                Password = "********",
                Username = "username",
            },
            EndTime = "Instance end time",
            StartTime = "Instance start time",
        },
        ResourceGroupName = "testrg",
        Sku = new AzureNative.AzureArcData.Inputs.SqlManagedInstanceSkuArgs
        {
            Dev = true,
            Name = "default",
            Tier = AzureNative.AzureArcData.SqlManagedInstanceSkuTier.GeneralPurpose,
        },
        SqlManagedInstanceName = "testsqlManagedInstance",
        Tags = 
        {
            { "mytag", "myval" },
        },
    });
});
package main
import (
	azurearcdata "github.com/pulumi/pulumi-azure-native-sdk/azurearcdata"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := azurearcdata.NewSqlManagedInstance(ctx, "sqlManagedInstance", &azurearcdata.SqlManagedInstanceArgs{
			ExtendedLocation: &azurearcdata.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation"),
				Type: pulumi.String("CustomLocation"),
			},
			Location: pulumi.String("northeurope"),
			Properties: azurearcdata.SqlManagedInstancePropertiesResponse{
				Admin: pulumi.String("Admin user"),
				BasicLoginInformation: &azurearcdata.BasicLoginInformationArgs{
					Password: pulumi.String("********"),
					Username: pulumi.String("username"),
				},
				EndTime:   pulumi.String("Instance end time"),
				StartTime: pulumi.String("Instance start time"),
			},
			ResourceGroupName: pulumi.String("testrg"),
			Sku: &azurearcdata.SqlManagedInstanceSkuArgs{
				Dev:  pulumi.Bool(true),
				Name: pulumi.String("default"),
				Tier: azurearcdata.SqlManagedInstanceSkuTierGeneralPurpose,
			},
			SqlManagedInstanceName: pulumi.String("testsqlManagedInstance"),
			Tags: pulumi.StringMap{
				"mytag": pulumi.String("myval"),
			},
		})
		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.azurearcdata.SqlManagedInstance;
import com.pulumi.azurenative.azurearcdata.SqlManagedInstanceArgs;
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 sqlManagedInstance = new SqlManagedInstance("sqlManagedInstance", SqlManagedInstanceArgs.builder()        
            .extendedLocation(Map.ofEntries(
                Map.entry("name", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation"),
                Map.entry("type", "CustomLocation")
            ))
            .location("northeurope")
            .properties(Map.ofEntries(
                Map.entry("admin", "Admin user"),
                Map.entry("basicLoginInformation", Map.ofEntries(
                    Map.entry("password", "********"),
                    Map.entry("username", "username")
                )),
                Map.entry("endTime", "Instance end time"),
                Map.entry("startTime", "Instance start time")
            ))
            .resourceGroupName("testrg")
            .sku(Map.ofEntries(
                Map.entry("dev", true),
                Map.entry("name", "default"),
                Map.entry("tier", "GeneralPurpose")
            ))
            .sqlManagedInstanceName("testsqlManagedInstance")
            .tags(Map.of("mytag", "myval"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sqlManagedInstance = new azure_native.azurearcdata.SqlManagedInstance("sqlManagedInstance", {
    extendedLocation: {
        name: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
        type: "CustomLocation",
    },
    location: "northeurope",
    properties: {
        admin: "Admin user",
        basicLoginInformation: {
            password: "********",
            username: "username",
        },
        endTime: "Instance end time",
        startTime: "Instance start time",
    },
    resourceGroupName: "testrg",
    sku: {
        dev: true,
        name: "default",
        tier: azure_native.azurearcdata.SqlManagedInstanceSkuTier.GeneralPurpose,
    },
    sqlManagedInstanceName: "testsqlManagedInstance",
    tags: {
        mytag: "myval",
    },
});
import pulumi
import pulumi_azure_native as azure_native
sql_managed_instance = azure_native.azurearcdata.SqlManagedInstance("sqlManagedInstance",
    extended_location=azure_native.azurearcdata.ExtendedLocationArgs(
        name="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
        type="CustomLocation",
    ),
    location="northeurope",
    properties=azure_native.azurearcdata.SqlManagedInstancePropertiesResponseArgs(
        admin="Admin user",
        basic_login_information=azure_native.azurearcdata.BasicLoginInformationArgs(
            password="********",
            username="username",
        ),
        end_time="Instance end time",
        start_time="Instance start time",
    ),
    resource_group_name="testrg",
    sku=azure_native.azurearcdata.SqlManagedInstanceSkuArgs(
        dev=True,
        name="default",
        tier=azure_native.azurearcdata.SqlManagedInstanceSkuTier.GENERAL_PURPOSE,
    ),
    sql_managed_instance_name="testsqlManagedInstance",
    tags={
        "mytag": "myval",
    })
resources:
  sqlManagedInstance:
    type: azure-native:azurearcdata:SqlManagedInstance
    properties:
      extendedLocation:
        name: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation
        type: CustomLocation
      location: northeurope
      properties:
        admin: Admin user
        basicLoginInformation:
          password: '********'
          username: username
        endTime: Instance end time
        startTime: Instance start time
      resourceGroupName: testrg
      sku:
        dev: true
        name: default
        tier: GeneralPurpose
      sqlManagedInstanceName: testsqlManagedInstance
      tags:
        mytag: myval
Create SqlManagedInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlManagedInstance(name: string, args: SqlManagedInstanceArgs, opts?: CustomResourceOptions);@overload
def SqlManagedInstance(resource_name: str,
                       args: SqlManagedInstanceArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def SqlManagedInstance(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       properties: Optional[SqlManagedInstancePropertiesArgs] = None,
                       resource_group_name: Optional[str] = None,
                       extended_location: Optional[ExtendedLocationArgs] = None,
                       location: Optional[str] = None,
                       sku: Optional[SqlManagedInstanceSkuArgs] = None,
                       sql_managed_instance_name: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None)func NewSqlManagedInstance(ctx *Context, name string, args SqlManagedInstanceArgs, opts ...ResourceOption) (*SqlManagedInstance, error)public SqlManagedInstance(string name, SqlManagedInstanceArgs args, CustomResourceOptions? opts = null)
public SqlManagedInstance(String name, SqlManagedInstanceArgs args)
public SqlManagedInstance(String name, SqlManagedInstanceArgs args, CustomResourceOptions options)
type: azure-native:azurearcdata:SqlManagedInstance
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 SqlManagedInstanceArgs
- 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 SqlManagedInstanceArgs
- 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 SqlManagedInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SqlManagedInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SqlManagedInstanceArgs
- 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 sqlManagedInstanceResource = new AzureNative.Azurearcdata.SqlManagedInstance("sqlManagedInstanceResource", new()
{
    Properties = 
    {
        { "admin", "string" },
        { "basicLoginInformation", 
        {
            { "password", "string" },
            { "username", "string" },
        } },
        { "dataControllerId", "string" },
        { "endTime", "string" },
        { "k8sRaw", "any" },
        { "lastUploadedDate", "string" },
        { "startTime", "string" },
    },
    ResourceGroupName = "string",
    ExtendedLocation = 
    {
        { "name", "string" },
        { "type", "string" },
    },
    Location = "string",
    Sku = 
    {
        { "name", "string" },
        { "capacity", 0 },
        { "dev", false },
        { "family", "string" },
        { "size", "string" },
        { "tier", "GeneralPurpose" },
    },
    SqlManagedInstanceName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := azurearcdata.NewSqlManagedInstance(ctx, "sqlManagedInstanceResource", &azurearcdata.SqlManagedInstanceArgs{
	Properties: map[string]interface{}{
		"admin": "string",
		"basicLoginInformation": map[string]interface{}{
			"password": "string",
			"username": "string",
		},
		"dataControllerId": "string",
		"endTime":          "string",
		"k8sRaw":           "any",
		"lastUploadedDate": "string",
		"startTime":        "string",
	},
	ResourceGroupName: "string",
	ExtendedLocation: map[string]interface{}{
		"name": "string",
		"type": "string",
	},
	Location: "string",
	Sku: map[string]interface{}{
		"name":     "string",
		"capacity": 0,
		"dev":      false,
		"family":   "string",
		"size":     "string",
		"tier":     "GeneralPurpose",
	},
	SqlManagedInstanceName: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var sqlManagedInstanceResource = new SqlManagedInstance("sqlManagedInstanceResource", SqlManagedInstanceArgs.builder()
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sqlManagedInstanceName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
sql_managed_instance_resource = azure_native.azurearcdata.SqlManagedInstance("sqlManagedInstanceResource",
    properties={
        admin: string,
        basicLoginInformation: {
            password: string,
            username: string,
        },
        dataControllerId: string,
        endTime: string,
        k8sRaw: any,
        lastUploadedDate: string,
        startTime: string,
    },
    resource_group_name=string,
    extended_location={
        name: string,
        type: string,
    },
    location=string,
    sku={
        name: string,
        capacity: 0,
        dev: False,
        family: string,
        size: string,
        tier: GeneralPurpose,
    },
    sql_managed_instance_name=string,
    tags={
        string: string,
    })
const sqlManagedInstanceResource = new azure_native.azurearcdata.SqlManagedInstance("sqlManagedInstanceResource", {
    properties: {
        admin: "string",
        basicLoginInformation: {
            password: "string",
            username: "string",
        },
        dataControllerId: "string",
        endTime: "string",
        k8sRaw: "any",
        lastUploadedDate: "string",
        startTime: "string",
    },
    resourceGroupName: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    location: "string",
    sku: {
        name: "string",
        capacity: 0,
        dev: false,
        family: "string",
        size: "string",
        tier: "GeneralPurpose",
    },
    sqlManagedInstanceName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:azurearcdata:SqlManagedInstance
properties:
    extendedLocation:
        name: string
        type: string
    location: string
    properties:
        admin: string
        basicLoginInformation:
            password: string
            username: string
        dataControllerId: string
        endTime: string
        k8sRaw: any
        lastUploadedDate: string
        startTime: string
    resourceGroupName: string
    sku:
        capacity: 0
        dev: false
        family: string
        name: string
        size: string
        tier: GeneralPurpose
    sqlManagedInstanceName: string
    tags:
        string: string
SqlManagedInstance 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 SqlManagedInstance resource accepts the following input properties:
- Properties
Pulumi.Azure Native. Azure Arc Data. Inputs. Sql Managed Instance Properties 
- null
- ResourceGroup stringName 
- The name of the Azure resource group
- ExtendedLocation Pulumi.Azure Native. Azure Arc Data. Inputs. Extended Location 
- The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Sku
Pulumi.Azure Native. Azure Arc Data. Inputs. Sql Managed Instance Sku 
- Resource sku.
- SqlManaged stringInstance Name 
- The name of SQL Managed Instances
- Dictionary<string, string>
- Resource tags.
- Properties
SqlManaged Instance Properties Args 
- null
- ResourceGroup stringName 
- The name of the Azure resource group
- ExtendedLocation ExtendedLocation Args 
- The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Sku
SqlManaged Instance Sku Args 
- Resource sku.
- SqlManaged stringInstance Name 
- The name of SQL Managed Instances
- map[string]string
- Resource tags.
- properties
SqlManaged Instance Properties 
- null
- resourceGroup StringName 
- The name of the Azure resource group
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- sku
SqlManaged Instance Sku 
- Resource sku.
- sqlManaged StringInstance Name 
- The name of SQL Managed Instances
- Map<String,String>
- Resource tags.
- properties
SqlManaged Instance Properties 
- null
- resourceGroup stringName 
- The name of the Azure resource group
- extendedLocation ExtendedLocation 
- The extendedLocation of the resource.
- location string
- The geo-location where the resource lives
- sku
SqlManaged Instance Sku 
- Resource sku.
- sqlManaged stringInstance Name 
- The name of SQL Managed Instances
- {[key: string]: string}
- Resource tags.
- properties
SqlManaged Instance Properties Args 
- null
- resource_group_ strname 
- The name of the Azure resource group
- extended_location ExtendedLocation Args 
- The extendedLocation of the resource.
- location str
- The geo-location where the resource lives
- sku
SqlManaged Instance Sku Args 
- Resource sku.
- sql_managed_ strinstance_ name 
- The name of SQL Managed Instances
- Mapping[str, str]
- Resource tags.
- properties Property Map
- null
- resourceGroup StringName 
- The name of the Azure resource group
- extendedLocation Property Map
- The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- sku Property Map
- Resource sku.
- sqlManaged StringInstance Name 
- The name of SQL Managed Instances
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlManagedInstance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Azure Arc Data. Outputs. System Data Response 
- Read only system data
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- Read only system data
- Type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- Read only system data
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- Read only system data
- type string
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- Read only system data
- type str
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- Read only system data
- type String
- The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
Supporting Types
BasicLoginInformation, BasicLoginInformationArgs      
BasicLoginInformationResponse, BasicLoginInformationResponseArgs        
- Username string
- Login username.
- Username string
- Login username.
- username String
- Login username.
- username string
- Login username.
- username str
- Login username.
- username String
- Login username.
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Azure Arc Data. Extended Location Types 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Types 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Types 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "CustomLocation" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- CustomLocation 
- CustomLocation
- ExtendedLocation Types Custom Location 
- CustomLocation
- CustomLocation 
- CustomLocation
- CustomLocation 
- CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "CustomLocation" 
- CustomLocation
SqlManagedInstanceProperties, SqlManagedInstancePropertiesArgs        
- Admin string
- The instance admin user
- BasicLogin Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information 
- Username and password for basic authentication.
- DataController stringId 
- null
- EndTime string
- The instance end time
- K8sRaw object
- The raw kubernetes information
- LastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- StartTime string
- The instance start time
- Admin string
- The instance admin user
- BasicLogin BasicInformation Login Information 
- Username and password for basic authentication.
- DataController stringId 
- null
- EndTime string
- The instance end time
- K8sRaw interface{}
- The raw kubernetes information
- LastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- StartTime string
- The instance start time
- admin String
- The instance admin user
- basicLogin BasicInformation Login Information 
- Username and password for basic authentication.
- dataController StringId 
- null
- endTime String
- The instance end time
- k8sRaw Object
- The raw kubernetes information
- lastUploaded StringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime String
- The instance start time
- admin string
- The instance admin user
- basicLogin BasicInformation Login Information 
- Username and password for basic authentication.
- dataController stringId 
- null
- endTime string
- The instance end time
- k8sRaw any
- The raw kubernetes information
- lastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime string
- The instance start time
- admin str
- The instance admin user
- basic_login_ Basicinformation Login Information 
- Username and password for basic authentication.
- data_controller_ strid 
- null
- end_time str
- The instance end time
- k8s_raw Any
- The raw kubernetes information
- last_uploaded_ strdate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- start_time str
- The instance start time
- admin String
- The instance admin user
- basicLogin Property MapInformation 
- Username and password for basic authentication.
- dataController StringId 
- null
- endTime String
- The instance end time
- k8sRaw Any
- The raw kubernetes information
- lastUploaded StringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime String
- The instance start time
SqlManagedInstancePropertiesResponse, SqlManagedInstancePropertiesResponseArgs          
- ProvisioningState string
- Admin string
- The instance admin user
- BasicLogin Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information Response 
- Username and password for basic authentication.
- DataController stringId 
- null
- EndTime string
- The instance end time
- K8sRaw object
- The raw kubernetes information
- LastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- StartTime string
- The instance start time
- ProvisioningState string
- Admin string
- The instance admin user
- BasicLogin BasicInformation Login Information Response 
- Username and password for basic authentication.
- DataController stringId 
- null
- EndTime string
- The instance end time
- K8sRaw interface{}
- The raw kubernetes information
- LastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- StartTime string
- The instance start time
- provisioningState String
- admin String
- The instance admin user
- basicLogin BasicInformation Login Information Response 
- Username and password for basic authentication.
- dataController StringId 
- null
- endTime String
- The instance end time
- k8sRaw Object
- The raw kubernetes information
- lastUploaded StringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime String
- The instance start time
- provisioningState string
- admin string
- The instance admin user
- basicLogin BasicInformation Login Information Response 
- Username and password for basic authentication.
- dataController stringId 
- null
- endTime string
- The instance end time
- k8sRaw any
- The raw kubernetes information
- lastUploaded stringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime string
- The instance start time
- provisioning_state str
- admin str
- The instance admin user
- basic_login_ Basicinformation Login Information Response 
- Username and password for basic authentication.
- data_controller_ strid 
- null
- end_time str
- The instance end time
- k8s_raw Any
- The raw kubernetes information
- last_uploaded_ strdate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- start_time str
- The instance start time
- provisioningState String
- admin String
- The instance admin user
- basicLogin Property MapInformation 
- Username and password for basic authentication.
- dataController StringId 
- null
- endTime String
- The instance end time
- k8sRaw Any
- The raw kubernetes information
- lastUploaded StringDate 
- Last uploaded date from Kubernetes cluster. Defaults to current date time
- startTime String
- The instance start time
SqlManagedInstanceSku, SqlManagedInstanceSkuArgs        
- Name string
- The name of the SKU. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
Pulumi.Azure Native. Azure Arc Data. Sql Managed Instance Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- Name string
- The name of the SKU. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier
SqlManaged Instance Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name String
- The name of the SKU. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev Boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SqlManaged Instance Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name string
- The name of the SKU. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SqlManaged Instance Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name str
- The name of the SKU. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
SqlManaged Instance Sku Tier 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name String
- The name of the SKU. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev Boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier
"GeneralPurpose" | "Business Critical" 
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
SqlManagedInstanceSkuResponse, SqlManagedInstanceSkuResponseArgs          
- Name string
- The name of the SKU. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- Name string
- The name of the SKU. It is typically a letter+number code
- Capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- Dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- Family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- Size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- Tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name String
- The name of the SKU. It is typically a letter+number code
- capacity Integer
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev Boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name string
- The name of the SKU. It is typically a letter+number code
- capacity number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family string
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size string
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier string
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name str
- The name of the SKU. It is typically a letter+number code
- capacity int
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev bool
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family str
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size str
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier str
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
- name String
- The name of the SKU. It is typically a letter+number code
- capacity Number
- If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
- dev Boolean
- Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.
- family String
- If the service has different generations of hardware, for the same SKU, then that can be captured here.
- size String
- The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
- tier String
- This field is required to be implemented by the Resource Provider if the service has more than one tier.
SqlManagedInstanceSkuTier, SqlManagedInstanceSkuTierArgs          
- GeneralPurpose 
- GeneralPurpose
- BusinessCritical 
- BusinessCritical
- SqlManaged Instance Sku Tier General Purpose 
- GeneralPurpose
- SqlManaged Instance Sku Tier Business Critical 
- BusinessCritical
- GeneralPurpose 
- GeneralPurpose
- BusinessCritical 
- BusinessCritical
- GeneralPurpose 
- GeneralPurpose
- BusinessCritical 
- BusinessCritical
- GENERAL_PURPOSE
- GeneralPurpose
- BUSINESS_CRITICAL
- BusinessCritical
- "GeneralPurpose" 
- GeneralPurpose
- "BusinessCritical" 
- BusinessCritical
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC)
- CreatedBy string
- An identifier for 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 
- An identifier for 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
- An identifier for 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 
- An identifier for 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
- An identifier for 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 
- An identifier for 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
- An identifier for 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 
- An identifier for 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
- An identifier for 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 
- An identifier for 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
- An identifier for 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 
- An identifier for the identity that last modified the resource
- lastModified StringBy Type 
- The type of identity that last modified the resource
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurearcdata:SqlManagedInstance testsqlManagedInstance /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.AzureArcData/sqlManagedInstances/testsqlManagedInstance 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0