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 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",
})
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",
},
});
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
The SqlManagedInstance resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Azure Arc Data. Inputs. Sql Managed Instance Properties - null
- Resource
Group stringName - The name of the Azure resource group
- Extended
Location 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.
- Sql
Managed stringInstance Name - The name of SQL Managed Instances
- Dictionary<string, string>
- Resource tags.
- Properties
Sql
Managed Instance Properties Args - null
- Resource
Group stringName - The name of the Azure resource group
- Extended
Location ExtendedLocation Args - The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Sku
Sql
Managed Instance Sku Args - Resource sku.
- Sql
Managed stringInstance Name - The name of SQL Managed Instances
- map[string]string
- Resource tags.
- properties
Sql
Managed Instance Properties - null
- resource
Group StringName - The name of the Azure resource group
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- sku
Sql
Managed Instance Sku - Resource sku.
- sql
Managed StringInstance Name - The name of SQL Managed Instances
- Map<String,String>
- Resource tags.
- properties
Sql
Managed Instance Properties - null
- resource
Group stringName - The name of the Azure resource group
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location string
- The geo-location where the resource lives
- sku
Sql
Managed Instance Sku - Resource sku.
- sql
Managed stringInstance Name - The name of SQL Managed Instances
- {[key: string]: string}
- Resource tags.
- properties
Sql
Managed 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
Sql
Managed Instance Sku Args - Resource sku.
- sql_
managed_ strinstance_ name - The name of SQL Managed Instances
- Mapping[str, str]
- Resource tags.
- properties Property Map
- null
- resource
Group StringName - The name of the Azure resource group
- extended
Location Property Map - The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- sku Property Map
- Resource sku.
- sql
Managed 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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 | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location - CustomLocation
- Extended
Location Types Custom Location - CustomLocation
- Custom
Location - CustomLocation
- Custom
Location - CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "Custom
Location" - CustomLocation
SqlManagedInstanceProperties, SqlManagedInstancePropertiesArgs
- Admin string
- The instance admin user
- Basic
Login Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information - Username and password for basic authentication.
- Data
Controller stringId - null
- End
Time string - The instance end time
- K8s
Raw object - The raw kubernetes information
- Last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- Start
Time string - The instance start time
- Admin string
- The instance admin user
- Basic
Login BasicInformation Login Information - Username and password for basic authentication.
- Data
Controller stringId - null
- End
Time string - The instance end time
- K8s
Raw interface{} - The raw kubernetes information
- Last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- Start
Time string - The instance start time
- admin String
- The instance admin user
- basic
Login BasicInformation Login Information - Username and password for basic authentication.
- data
Controller StringId - null
- end
Time String - The instance end time
- k8s
Raw Object - The raw kubernetes information
- last
Uploaded StringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time String - The instance start time
- admin string
- The instance admin user
- basic
Login BasicInformation Login Information - Username and password for basic authentication.
- data
Controller stringId - null
- end
Time string - The instance end time
- k8s
Raw any - The raw kubernetes information
- last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time 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
- basic
Login Property MapInformation - Username and password for basic authentication.
- data
Controller StringId - null
- end
Time String - The instance end time
- k8s
Raw Any - The raw kubernetes information
- last
Uploaded StringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time String - The instance start time
SqlManagedInstancePropertiesResponse, SqlManagedInstancePropertiesResponseArgs
- Provisioning
State string - Admin string
- The instance admin user
- Basic
Login Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information Response - Username and password for basic authentication.
- Data
Controller stringId - null
- End
Time string - The instance end time
- K8s
Raw object - The raw kubernetes information
- Last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- Start
Time string - The instance start time
- Provisioning
State string - Admin string
- The instance admin user
- Basic
Login BasicInformation Login Information Response - Username and password for basic authentication.
- Data
Controller stringId - null
- End
Time string - The instance end time
- K8s
Raw interface{} - The raw kubernetes information
- Last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- Start
Time string - The instance start time
- provisioning
State String - admin String
- The instance admin user
- basic
Login BasicInformation Login Information Response - Username and password for basic authentication.
- data
Controller StringId - null
- end
Time String - The instance end time
- k8s
Raw Object - The raw kubernetes information
- last
Uploaded StringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time String - The instance start time
- provisioning
State string - admin string
- The instance admin user
- basic
Login BasicInformation Login Information Response - Username and password for basic authentication.
- data
Controller stringId - null
- end
Time string - The instance end time
- k8s
Raw any - The raw kubernetes information
- last
Uploaded stringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time 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
- provisioning
State String - admin String
- The instance admin user
- basic
Login Property MapInformation - Username and password for basic authentication.
- data
Controller StringId - null
- end
Time String - The instance end time
- k8s
Raw Any - The raw kubernetes information
- last
Uploaded StringDate - Last uploaded date from Kubernetes cluster. Defaults to current date time
- start
Time 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
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 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
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 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
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 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
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 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
"General
Purpose" | "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
- General
Purpose - GeneralPurpose
- Business
Critical - BusinessCritical
- Sql
Managed Instance Sku Tier General Purpose - GeneralPurpose
- Sql
Managed Instance Sku Tier Business Critical - BusinessCritical
- General
Purpose - GeneralPurpose
- Business
Critical - BusinessCritical
- General
Purpose - GeneralPurpose
- Business
Critical - BusinessCritical
- GENERAL_PURPOSE
- GeneralPurpose
- BUSINESS_CRITICAL
- BusinessCritical
- "General
Purpose" - GeneralPurpose
- "Business
Critical" - BusinessCritical
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified 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
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified 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