azure-native.azurearcdata.SqlServerInstance
Explore with Pulumi AI
A SqlServerInstance. API Version: 2021-06-01-preview.
Example Usage
Updates a SQL Server Instance tags.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var sqlServerInstance = new AzureNative.AzureArcData.SqlServerInstance("sqlServerInstance", new()
{
Location = "northeurope",
Properties = new AzureNative.AzureArcData.Inputs.SqlServerInstancePropertiesArgs
{
Collation = "collation",
ContainerResourceId = "Arc Machine Name",
CurrentVersion = "2008 R2",
Edition = "Developer",
InstanceName = "name of instance",
LicenseType = "Free",
PatchLevel = "patchlevel",
ProductId = "sql id",
Status = "Connected",
TcpDynamicPorts = "1433",
TcpStaticPorts = "1433",
VCore = "4",
Version = "SQL Server 2017",
},
ResourceGroupName = "testrg",
SqlServerInstanceName = "testsqlServerInstance",
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.NewSqlServerInstance(ctx, "sqlServerInstance", &azurearcdata.SqlServerInstanceArgs{
Location: pulumi.String("northeurope"),
Properties: &azurearcdata.SqlServerInstancePropertiesArgs{
Collation: pulumi.String("collation"),
ContainerResourceId: pulumi.String("Arc Machine Name"),
CurrentVersion: pulumi.String("2008 R2"),
Edition: pulumi.String("Developer"),
InstanceName: pulumi.String("name of instance"),
LicenseType: pulumi.String("Free"),
PatchLevel: pulumi.String("patchlevel"),
ProductId: pulumi.String("sql id"),
Status: pulumi.String("Connected"),
TcpDynamicPorts: pulumi.String("1433"),
TcpStaticPorts: pulumi.String("1433"),
VCore: pulumi.String("4"),
Version: pulumi.String("SQL Server 2017"),
},
ResourceGroupName: pulumi.String("testrg"),
SqlServerInstanceName: pulumi.String("testsqlServerInstance"),
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.SqlServerInstance;
import com.pulumi.azurenative.azurearcdata.SqlServerInstanceArgs;
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 sqlServerInstance = new SqlServerInstance("sqlServerInstance", SqlServerInstanceArgs.builder()
.location("northeurope")
.properties(Map.ofEntries(
Map.entry("collation", "collation"),
Map.entry("containerResourceId", "Arc Machine Name"),
Map.entry("currentVersion", "2008 R2"),
Map.entry("edition", "Developer"),
Map.entry("instanceName", "name of instance"),
Map.entry("licenseType", "Free"),
Map.entry("patchLevel", "patchlevel"),
Map.entry("productId", "sql id"),
Map.entry("status", "Connected"),
Map.entry("tcpDynamicPorts", "1433"),
Map.entry("tcpStaticPorts", "1433"),
Map.entry("vCore", "4"),
Map.entry("version", "SQL Server 2017")
))
.resourceGroupName("testrg")
.sqlServerInstanceName("testsqlServerInstance")
.tags(Map.of("mytag", "myval"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
sql_server_instance = azure_native.azurearcdata.SqlServerInstance("sqlServerInstance",
location="northeurope",
properties=azure_native.azurearcdata.SqlServerInstancePropertiesArgs(
collation="collation",
container_resource_id="Arc Machine Name",
current_version="2008 R2",
edition="Developer",
instance_name="name of instance",
license_type="Free",
patch_level="patchlevel",
product_id="sql id",
status="Connected",
tcp_dynamic_ports="1433",
tcp_static_ports="1433",
v_core="4",
version="SQL Server 2017",
),
resource_group_name="testrg",
sql_server_instance_name="testsqlServerInstance",
tags={
"mytag": "myval",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sqlServerInstance = new azure_native.azurearcdata.SqlServerInstance("sqlServerInstance", {
location: "northeurope",
properties: {
collation: "collation",
containerResourceId: "Arc Machine Name",
currentVersion: "2008 R2",
edition: "Developer",
instanceName: "name of instance",
licenseType: "Free",
patchLevel: "patchlevel",
productId: "sql id",
status: "Connected",
tcpDynamicPorts: "1433",
tcpStaticPorts: "1433",
vCore: "4",
version: "SQL Server 2017",
},
resourceGroupName: "testrg",
sqlServerInstanceName: "testsqlServerInstance",
tags: {
mytag: "myval",
},
});
resources:
sqlServerInstance:
type: azure-native:azurearcdata:SqlServerInstance
properties:
location: northeurope
properties:
collation: collation
containerResourceId: Arc Machine Name
currentVersion: 2008 R2
edition: Developer
instanceName: name of instance
licenseType: Free
patchLevel: patchlevel
productId: sql id
status: Connected
tcpDynamicPorts: '1433'
tcpStaticPorts: '1433'
vCore: '4'
version: SQL Server 2017
resourceGroupName: testrg
sqlServerInstanceName: testsqlServerInstance
tags:
mytag: myval
Create SqlServerInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlServerInstance(name: string, args: SqlServerInstanceArgs, opts?: CustomResourceOptions);
@overload
def SqlServerInstance(resource_name: str,
args: SqlServerInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SqlServerInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[SqlServerInstancePropertiesArgs] = None,
sql_server_instance_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSqlServerInstance(ctx *Context, name string, args SqlServerInstanceArgs, opts ...ResourceOption) (*SqlServerInstance, error)
public SqlServerInstance(string name, SqlServerInstanceArgs args, CustomResourceOptions? opts = null)
public SqlServerInstance(String name, SqlServerInstanceArgs args)
public SqlServerInstance(String name, SqlServerInstanceArgs args, CustomResourceOptions options)
type: azure-native:azurearcdata:SqlServerInstance
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 SqlServerInstanceArgs
- 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 SqlServerInstanceArgs
- 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 SqlServerInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SqlServerInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SqlServerInstanceArgs
- 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 sqlServerInstanceResource = new AzureNative.Azurearcdata.SqlServerInstance("sqlServerInstanceResource", new()
{
ResourceGroupName = "string",
Location = "string",
Properties =
{
{ "status", "string" },
{ "containerResourceId", "string" },
{ "patchLevel", "string" },
{ "edition", "string" },
{ "instanceName", "string" },
{ "licenseType", "string" },
{ "collation", "string" },
{ "productId", "string" },
{ "currentVersion", "string" },
{ "tcpDynamicPorts", "string" },
{ "tcpStaticPorts", "string" },
{ "vCore", "string" },
{ "version", "string" },
},
SqlServerInstanceName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := azurearcdata.NewSqlServerInstance(ctx, "sqlServerInstanceResource", &azurearcdata.SqlServerInstanceArgs{
ResourceGroupName: "string",
Location: "string",
Properties: map[string]interface{}{
"status": "string",
"containerResourceId": "string",
"patchLevel": "string",
"edition": "string",
"instanceName": "string",
"licenseType": "string",
"collation": "string",
"productId": "string",
"currentVersion": "string",
"tcpDynamicPorts": "string",
"tcpStaticPorts": "string",
"vCore": "string",
"version": "string",
},
SqlServerInstanceName: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var sqlServerInstanceResource = new SqlServerInstance("sqlServerInstanceResource", SqlServerInstanceArgs.builder()
.resourceGroupName("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sqlServerInstanceName("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
sql_server_instance_resource = azure_native.azurearcdata.SqlServerInstance("sqlServerInstanceResource",
resource_group_name=string,
location=string,
properties={
status: string,
containerResourceId: string,
patchLevel: string,
edition: string,
instanceName: string,
licenseType: string,
collation: string,
productId: string,
currentVersion: string,
tcpDynamicPorts: string,
tcpStaticPorts: string,
vCore: string,
version: string,
},
sql_server_instance_name=string,
tags={
string: string,
})
const sqlServerInstanceResource = new azure_native.azurearcdata.SqlServerInstance("sqlServerInstanceResource", {
resourceGroupName: "string",
location: "string",
properties: {
status: "string",
containerResourceId: "string",
patchLevel: "string",
edition: "string",
instanceName: "string",
licenseType: "string",
collation: "string",
productId: "string",
currentVersion: "string",
tcpDynamicPorts: "string",
tcpStaticPorts: "string",
vCore: "string",
version: "string",
},
sqlServerInstanceName: "string",
tags: {
string: "string",
},
});
type: azure-native:azurearcdata:SqlServerInstance
properties:
location: string
properties:
collation: string
containerResourceId: string
currentVersion: string
edition: string
instanceName: string
licenseType: string
patchLevel: string
productId: string
status: string
tcpDynamicPorts: string
tcpStaticPorts: string
vCore: string
version: string
resourceGroupName: string
sqlServerInstanceName: string
tags:
string: string
SqlServerInstance 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 SqlServerInstance resource accepts the following input properties:
- Resource
Group stringName - The name of the Azure resource group
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Arc Data. Inputs. Sql Server Instance Properties - null
- Sql
Server stringInstance Name - The name of SQL Server Instance
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the Azure resource group
- Location string
- The geo-location where the resource lives
- Properties
Sql
Server Instance Properties Args - null
- Sql
Server stringInstance Name - The name of SQL Server Instance
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the Azure resource group
- location String
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties - null
- sql
Server StringInstance Name - The name of SQL Server Instance
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the Azure resource group
- location string
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties - null
- sql
Server stringInstance Name - The name of SQL Server Instance
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the Azure resource group
- location str
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties Args - null
- sql_
server_ strinstance_ name - The name of SQL Server Instance
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the Azure resource group
- location String
- The geo-location where the resource lives
- properties Property Map
- null
- sql
Server StringInstance Name - The name of SQL Server Instance
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlServerInstance 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
SqlServerInstanceProperties, SqlServerInstancePropertiesArgs
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Status string
- The cloud connectivity status.
- Collation string
- SQL Server collation.
- Current
Version string - SQL Server current version.
- Edition string
- SQL Server edition.
- Instance
Name string - SQL Server instance name.
- License
Type string - SQL Server license type.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- VCore string
- The number of logical processors used by the SQL Server instance.
- Version string
- SQL Server version.
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Status string
- The cloud connectivity status.
- Collation string
- SQL Server collation.
- Current
Version string - SQL Server current version.
- Edition string
- SQL Server edition.
- Instance
Name string - SQL Server instance name.
- License
Type string - SQL Server license type.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- VCore string
- The number of logical processors used by the SQL Server instance.
- Version string
- SQL Server version.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- status String
- The cloud connectivity status.
- collation String
- SQL Server collation.
- current
Version String - SQL Server current version.
- edition String
- SQL Server edition.
- instance
Name String - SQL Server instance name.
- license
Type String - SQL Server license type.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- version String
- SQL Server version.
- container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- status string
- The cloud connectivity status.
- collation string
- SQL Server collation.
- current
Version string - SQL Server current version.
- edition string
- SQL Server edition.
- instance
Name string - SQL Server instance name.
- license
Type string - SQL Server license type.
- patch
Level string - SQL Server update level.
- product
Id string - SQL Server product ID.
- tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static stringPorts - Static TCP ports used by SQL Server.
- v
Core string - The number of logical processors used by the SQL Server instance.
- version string
- SQL Server version.
- container_
resource_ strid - ARM Resource id of the container resource (Azure Arc for Servers).
- status str
- The cloud connectivity status.
- collation str
- SQL Server collation.
- current_
version str - SQL Server current version.
- edition str
- SQL Server edition.
- instance_
name str - SQL Server instance name.
- license_
type str - SQL Server license type.
- patch_
level str - SQL Server update level.
- product_
id str - SQL Server product ID.
- tcp_
dynamic_ strports - Dynamic TCP ports used by SQL Server.
- tcp_
static_ strports - Static TCP ports used by SQL Server.
- v_
core str - The number of logical processors used by the SQL Server instance.
- version str
- SQL Server version.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- status String
- The cloud connectivity status.
- collation String
- SQL Server collation.
- current
Version String - SQL Server current version.
- edition String
- SQL Server edition.
- instance
Name String - SQL Server instance name.
- license
Type String - SQL Server license type.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- version String
- SQL Server version.
SqlServerInstancePropertiesResponse, SqlServerInstancePropertiesResponseArgs
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Create
Time string - The time when the resource was created.
- Provisioning
State string - Status string
- The cloud connectivity status.
- Collation string
- SQL Server collation.
- Current
Version string - SQL Server current version.
- Edition string
- SQL Server edition.
- Instance
Name string - SQL Server instance name.
- License
Type string - SQL Server license type.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- VCore string
- The number of logical processors used by the SQL Server instance.
- Version string
- SQL Server version.
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Create
Time string - The time when the resource was created.
- Provisioning
State string - Status string
- The cloud connectivity status.
- Collation string
- SQL Server collation.
- Current
Version string - SQL Server current version.
- Edition string
- SQL Server edition.
- Instance
Name string - SQL Server instance name.
- License
Type string - SQL Server license type.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- VCore string
- The number of logical processors used by the SQL Server instance.
- Version string
- SQL Server version.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time String - The time when the resource was created.
- provisioning
State String - status String
- The cloud connectivity status.
- collation String
- SQL Server collation.
- current
Version String - SQL Server current version.
- edition String
- SQL Server edition.
- instance
Name String - SQL Server instance name.
- license
Type String - SQL Server license type.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- version String
- SQL Server version.
- container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time string - The time when the resource was created.
- provisioning
State string - status string
- The cloud connectivity status.
- collation string
- SQL Server collation.
- current
Version string - SQL Server current version.
- edition string
- SQL Server edition.
- instance
Name string - SQL Server instance name.
- license
Type string - SQL Server license type.
- patch
Level string - SQL Server update level.
- product
Id string - SQL Server product ID.
- tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static stringPorts - Static TCP ports used by SQL Server.
- v
Core string - The number of logical processors used by the SQL Server instance.
- version string
- SQL Server version.
- container_
resource_ strid - ARM Resource id of the container resource (Azure Arc for Servers).
- create_
time str - The time when the resource was created.
- provisioning_
state str - status str
- The cloud connectivity status.
- collation str
- SQL Server collation.
- current_
version str - SQL Server current version.
- edition str
- SQL Server edition.
- instance_
name str - SQL Server instance name.
- license_
type str - SQL Server license type.
- patch_
level str - SQL Server update level.
- product_
id str - SQL Server product ID.
- tcp_
dynamic_ strports - Dynamic TCP ports used by SQL Server.
- tcp_
static_ strports - Static TCP ports used by SQL Server.
- v_
core str - The number of logical processors used by the SQL Server instance.
- version str
- SQL Server version.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time String - The time when the resource was created.
- provisioning
State String - status String
- The cloud connectivity status.
- collation String
- SQL Server collation.
- current
Version String - SQL Server current version.
- edition String
- SQL Server edition.
- instance
Name String - SQL Server instance name.
- license
Type String - SQL Server license type.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- version String
- SQL Server version.
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:SqlServerInstance testsqlServerInstance /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.AzureArcData/SqlServerInstances/testsqlServerInstance
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