azure-native.sql.Server
Explore with Pulumi AI
An Azure SQL Database server. API Version: 2020-11-01-preview.
Example Usage
Create server
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var server = new AzureNative.Sql.Server("server", new()
{
AdministratorLogin = "dummylogin",
AdministratorLoginPassword = "PLACEHOLDER",
Administrators = new AzureNative.Sql.Inputs.ServerExternalAdministratorArgs
{
AzureADOnlyAuthentication = true,
Login = "bob@contoso.com",
PrincipalType = "User",
Sid = "00000011-1111-2222-2222-123456789111",
TenantId = "00000011-1111-2222-2222-123456789111",
},
Location = "Japan East",
ResourceGroupName = "sqlcrudtest-7398",
ServerName = "sqlcrudtest-4645",
});
});
package main
import (
sql "github.com/pulumi/pulumi-azure-native-sdk/sql"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sql.NewServer(ctx, "server", &sql.ServerArgs{
AdministratorLogin: pulumi.String("dummylogin"),
AdministratorLoginPassword: pulumi.String("PLACEHOLDER"),
Administrators: &sql.ServerExternalAdministratorArgs{
AzureADOnlyAuthentication: pulumi.Bool(true),
Login: pulumi.String("bob@contoso.com"),
PrincipalType: pulumi.String("User"),
Sid: pulumi.String("00000011-1111-2222-2222-123456789111"),
TenantId: pulumi.String("00000011-1111-2222-2222-123456789111"),
},
Location: pulumi.String("Japan East"),
ResourceGroupName: pulumi.String("sqlcrudtest-7398"),
ServerName: pulumi.String("sqlcrudtest-4645"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.sql.Server;
import com.pulumi.azurenative.sql.ServerArgs;
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 server = new Server("server", ServerArgs.builder()
.administratorLogin("dummylogin")
.administratorLoginPassword("PLACEHOLDER")
.administrators(Map.ofEntries(
Map.entry("azureADOnlyAuthentication", true),
Map.entry("login", "bob@contoso.com"),
Map.entry("principalType", "User"),
Map.entry("sid", "00000011-1111-2222-2222-123456789111"),
Map.entry("tenantId", "00000011-1111-2222-2222-123456789111")
))
.location("Japan East")
.resourceGroupName("sqlcrudtest-7398")
.serverName("sqlcrudtest-4645")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
server = azure_native.sql.Server("server",
administrator_login="dummylogin",
administrator_login_password="PLACEHOLDER",
administrators=azure_native.sql.ServerExternalAdministratorArgs(
azure_ad_only_authentication=True,
login="bob@contoso.com",
principal_type="User",
sid="00000011-1111-2222-2222-123456789111",
tenant_id="00000011-1111-2222-2222-123456789111",
),
location="Japan East",
resource_group_name="sqlcrudtest-7398",
server_name="sqlcrudtest-4645")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const server = new azure_native.sql.Server("server", {
administratorLogin: "dummylogin",
administratorLoginPassword: "PLACEHOLDER",
administrators: {
azureADOnlyAuthentication: true,
login: "bob@contoso.com",
principalType: "User",
sid: "00000011-1111-2222-2222-123456789111",
tenantId: "00000011-1111-2222-2222-123456789111",
},
location: "Japan East",
resourceGroupName: "sqlcrudtest-7398",
serverName: "sqlcrudtest-4645",
});
resources:
server:
type: azure-native:sql:Server
properties:
administratorLogin: dummylogin
administratorLoginPassword: PLACEHOLDER
administrators:
azureADOnlyAuthentication: true
login: bob@contoso.com
principalType: User
sid: 00000011-1111-2222-2222-123456789111
tenantId: 00000011-1111-2222-2222-123456789111
location: Japan East
resourceGroupName: sqlcrudtest-7398
serverName: sqlcrudtest-4645
Create Server Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Server(name: string, args: ServerArgs, opts?: CustomResourceOptions);
@overload
def Server(resource_name: str,
args: ServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Server(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
identity: Optional[ResourceIdentityArgs] = None,
administrators: Optional[ServerExternalAdministratorArgs] = None,
administrator_login: Optional[str] = None,
key_id: Optional[str] = None,
location: Optional[str] = None,
minimal_tls_version: Optional[str] = None,
primary_user_assigned_identity_id: Optional[str] = None,
public_network_access: Optional[Union[str, ServerPublicNetworkAccess]] = None,
administrator_login_password: Optional[str] = None,
server_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
version: Optional[str] = None)
func NewServer(ctx *Context, name string, args ServerArgs, opts ...ResourceOption) (*Server, error)
public Server(string name, ServerArgs args, CustomResourceOptions? opts = null)
public Server(String name, ServerArgs args)
public Server(String name, ServerArgs args, CustomResourceOptions options)
type: azure-native:sql:Server
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 ServerArgs
- 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 ServerArgs
- 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 ServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerArgs
- 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 exampleserverResourceResourceFromSql = new AzureNative.Sql.Server("exampleserverResourceResourceFromSql", new()
{
ResourceGroupName = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Administrators =
{
{ "administratorType", "string" },
{ "azureADOnlyAuthentication", false },
{ "login", "string" },
{ "principalType", "string" },
{ "sid", "string" },
{ "tenantId", "string" },
},
AdministratorLogin = "string",
KeyId = "string",
Location = "string",
MinimalTlsVersion = "string",
PrimaryUserAssignedIdentityId = "string",
PublicNetworkAccess = "string",
AdministratorLoginPassword = "string",
ServerName = "string",
Tags =
{
{ "string", "string" },
},
Version = "string",
});
example, err := sql.NewServer(ctx, "exampleserverResourceResourceFromSql", &sql.ServerArgs{
ResourceGroupName: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Administrators: map[string]interface{}{
"administratorType": "string",
"azureADOnlyAuthentication": false,
"login": "string",
"principalType": "string",
"sid": "string",
"tenantId": "string",
},
AdministratorLogin: "string",
KeyId: "string",
Location: "string",
MinimalTlsVersion: "string",
PrimaryUserAssignedIdentityId: "string",
PublicNetworkAccess: "string",
AdministratorLoginPassword: "string",
ServerName: "string",
Tags: map[string]interface{}{
"string": "string",
},
Version: "string",
})
var exampleserverResourceResourceFromSql = new Server("exampleserverResourceResourceFromSql", ServerArgs.builder()
.resourceGroupName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.administrators(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.administratorLogin("string")
.keyId("string")
.location("string")
.minimalTlsVersion("string")
.primaryUserAssignedIdentityId("string")
.publicNetworkAccess("string")
.administratorLoginPassword("string")
.serverName("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.version("string")
.build());
exampleserver_resource_resource_from_sql = azure_native.sql.Server("exampleserverResourceResourceFromSql",
resource_group_name=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
administrators={
administratorType: string,
azureADOnlyAuthentication: False,
login: string,
principalType: string,
sid: string,
tenantId: string,
},
administrator_login=string,
key_id=string,
location=string,
minimal_tls_version=string,
primary_user_assigned_identity_id=string,
public_network_access=string,
administrator_login_password=string,
server_name=string,
tags={
string: string,
},
version=string)
const exampleserverResourceResourceFromSql = new azure_native.sql.Server("exampleserverResourceResourceFromSql", {
resourceGroupName: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
administrators: {
administratorType: "string",
azureADOnlyAuthentication: false,
login: "string",
principalType: "string",
sid: "string",
tenantId: "string",
},
administratorLogin: "string",
keyId: "string",
location: "string",
minimalTlsVersion: "string",
primaryUserAssignedIdentityId: "string",
publicNetworkAccess: "string",
administratorLoginPassword: "string",
serverName: "string",
tags: {
string: "string",
},
version: "string",
});
type: azure-native:sql:Server
properties:
administratorLogin: string
administratorLoginPassword: string
administrators:
administratorType: string
azureADOnlyAuthentication: false
login: string
principalType: string
sid: string
tenantId: string
identity:
type: string
userAssignedIdentities:
string: any
keyId: string
location: string
minimalTlsVersion: string
primaryUserAssignedIdentityId: string
publicNetworkAccess: string
resourceGroupName: string
serverName: string
tags:
string: string
version: string
Server 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 Server resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Administrator
Login string - Administrator username for the server. Once created it cannot be changed.
- Administrator
Login stringPassword - The administrator login password (required for server creation).
- Administrators
Pulumi.
Azure Native. Sql. Inputs. Server External Administrator - The Azure Active Directory identity of the server.
- Identity
Pulumi.
Azure Native. Sql. Inputs. Resource Identity - The Azure Active Directory identity of the server.
- Key
Id string - A CMK URI of the key to use for encryption.
- Location string
- Resource location.
- Minimal
Tls stringVersion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- Primary
User stringAssigned Identity Id - The resource id of a user assigned identity to be used by default.
- Public
Network string | Pulumi.Access Azure Native. Sql. Server Public Network Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- Server
Name string - The name of the server.
- Dictionary<string, string>
- Resource tags.
- Version string
- The version of the server.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Administrator
Login string - Administrator username for the server. Once created it cannot be changed.
- Administrator
Login stringPassword - The administrator login password (required for server creation).
- Administrators
Server
External Administrator Args - The Azure Active Directory identity of the server.
- Identity
Resource
Identity Args - The Azure Active Directory identity of the server.
- Key
Id string - A CMK URI of the key to use for encryption.
- Location string
- Resource location.
- Minimal
Tls stringVersion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- Primary
User stringAssigned Identity Id - The resource id of a user assigned identity to be used by default.
- Public
Network string | ServerAccess Public Network Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- Server
Name string - The name of the server.
- map[string]string
- Resource tags.
- Version string
- The version of the server.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- administrator
Login String - Administrator username for the server. Once created it cannot be changed.
- administrator
Login StringPassword - The administrator login password (required for server creation).
- administrators
Server
External Administrator - The Azure Active Directory identity of the server.
- identity
Resource
Identity - The Azure Active Directory identity of the server.
- key
Id String - A CMK URI of the key to use for encryption.
- location String
- Resource location.
- minimal
Tls StringVersion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- primary
User StringAssigned Identity Id - The resource id of a user assigned identity to be used by default.
- public
Network String | ServerAccess Public Network Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- server
Name String - The name of the server.
- Map<String,String>
- Resource tags.
- version String
- The version of the server.
- resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- administrator
Login string - Administrator username for the server. Once created it cannot be changed.
- administrator
Login stringPassword - The administrator login password (required for server creation).
- administrators
Server
External Administrator - The Azure Active Directory identity of the server.
- identity
Resource
Identity - The Azure Active Directory identity of the server.
- key
Id string - A CMK URI of the key to use for encryption.
- location string
- Resource location.
- minimal
Tls stringVersion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- primary
User stringAssigned Identity Id - The resource id of a user assigned identity to be used by default.
- public
Network string | ServerAccess Public Network Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- server
Name string - The name of the server.
- {[key: string]: string}
- Resource tags.
- version string
- The version of the server.
- resource_
group_ strname - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- administrator_
login str - Administrator username for the server. Once created it cannot be changed.
- administrator_
login_ strpassword - The administrator login password (required for server creation).
- administrators
Server
External Administrator Args - The Azure Active Directory identity of the server.
- identity
Resource
Identity Args - The Azure Active Directory identity of the server.
- key_
id str - A CMK URI of the key to use for encryption.
- location str
- Resource location.
- minimal_
tls_ strversion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- primary_
user_ strassigned_ identity_ id - The resource id of a user assigned identity to be used by default.
- public_
network_ str | Serveraccess Public Network Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- server_
name str - The name of the server.
- Mapping[str, str]
- Resource tags.
- version str
- The version of the server.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- administrator
Login String - Administrator username for the server. Once created it cannot be changed.
- administrator
Login StringPassword - The administrator login password (required for server creation).
- administrators Property Map
- The Azure Active Directory identity of the server.
- identity Property Map
- The Azure Active Directory identity of the server.
- key
Id String - A CMK URI of the key to use for encryption.
- location String
- Resource location.
- minimal
Tls StringVersion - Minimal TLS version. Allowed values: '1.0', '1.1', '1.2'
- primary
User StringAssigned Identity Id - The resource id of a user assigned identity to be used by default.
- public
Network String | "Enabled" | "Disabled"Access - Whether or not public endpoint access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'
- server
Name String - The name of the server.
- Map<String>
- Resource tags.
- version String
- The version of the server.
Outputs
All input properties are implicitly available as output properties. Additionally, the Server resource produces the following output properties:
- Fully
Qualified stringDomain Name - The fully qualified domain name of the server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Kind of sql server. This is metadata used for the Azure portal experience.
- Name string
- Resource name.
- Private
Endpoint List<Pulumi.Connections Azure Native. Sql. Outputs. Server Private Endpoint Connection Response> - List of private endpoint connections on a server
- State string
- The state of the server.
- Type string
- Resource type.
- Workspace
Feature string - Whether or not existing server has a workspace created and if it allows connection from workspace
- Fully
Qualified stringDomain Name - The fully qualified domain name of the server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Kind of sql server. This is metadata used for the Azure portal experience.
- Name string
- Resource name.
- Private
Endpoint []ServerConnections Private Endpoint Connection Response - List of private endpoint connections on a server
- State string
- The state of the server.
- Type string
- Resource type.
- Workspace
Feature string - Whether or not existing server has a workspace created and if it allows connection from workspace
- fully
Qualified StringDomain Name - The fully qualified domain name of the server.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Kind of sql server. This is metadata used for the Azure portal experience.
- name String
- Resource name.
- private
Endpoint List<ServerConnections Private Endpoint Connection Response> - List of private endpoint connections on a server
- state String
- The state of the server.
- type String
- Resource type.
- workspace
Feature String - Whether or not existing server has a workspace created and if it allows connection from workspace
- fully
Qualified stringDomain Name - The fully qualified domain name of the server.
- id string
- The provider-assigned unique ID for this managed resource.
- kind string
- Kind of sql server. This is metadata used for the Azure portal experience.
- name string
- Resource name.
- private
Endpoint ServerConnections Private Endpoint Connection Response[] - List of private endpoint connections on a server
- state string
- The state of the server.
- type string
- Resource type.
- workspace
Feature string - Whether or not existing server has a workspace created and if it allows connection from workspace
- fully_
qualified_ strdomain_ name - The fully qualified domain name of the server.
- id str
- The provider-assigned unique ID for this managed resource.
- kind str
- Kind of sql server. This is metadata used for the Azure portal experience.
- name str
- Resource name.
- private_
endpoint_ Sequence[Serverconnections Private Endpoint Connection Response] - List of private endpoint connections on a server
- state str
- The state of the server.
- type str
- Resource type.
- workspace_
feature str - Whether or not existing server has a workspace created and if it allows connection from workspace
- fully
Qualified StringDomain Name - The fully qualified domain name of the server.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Kind of sql server. This is metadata used for the Azure portal experience.
- name String
- Resource name.
- private
Endpoint List<Property Map>Connections - List of private endpoint connections on a server
- state String
- The state of the server.
- type String
- Resource type.
- workspace
Feature String - Whether or not existing server has a workspace created and if it allows connection from workspace
Supporting Types
AdministratorType, AdministratorTypeArgs
- Active
Directory - ActiveDirectory
- Administrator
Type Active Directory - ActiveDirectory
- Active
Directory - ActiveDirectory
- Active
Directory - ActiveDirectory
- ACTIVE_DIRECTORY
- ActiveDirectory
- "Active
Directory" - ActiveDirectory
IdentityType, IdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Identity
Type None - None
- Identity
Type System Assigned - SystemAssigned
- Identity
Type User Assigned - UserAssigned
- Identity
Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
PrincipalType, PrincipalTypeArgs
- User
- User
- Group
- Group
- Application
- Application
- Principal
Type User - User
- Principal
Type Group - Group
- Principal
Type Application - Application
- User
- User
- Group
- Group
- Application
- Application
- User
- User
- Group
- Group
- Application
- Application
- USER
- User
- GROUP
- Group
- APPLICATION
- Application
- "User"
- User
- "Group"
- Group
- "Application"
- Application
PrivateEndpointConnectionPropertiesResponse, PrivateEndpointConnectionPropertiesResponseArgs
- Provisioning
State string - State of the private endpoint connection.
- Private
Endpoint Pulumi.Azure Native. Sql. Inputs. Private Endpoint Property Response - Private endpoint which the connection belongs to.
- Private
Link Pulumi.Service Connection State Azure Native. Sql. Inputs. Private Link Service Connection State Property Response - Connection state of the private endpoint connection.
- Provisioning
State string - State of the private endpoint connection.
- Private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- Private
Link PrivateService Connection State Link Service Connection State Property Response - Connection state of the private endpoint connection.
- provisioning
State String - State of the private endpoint connection.
- private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private
Link PrivateService Connection State Link Service Connection State Property Response - Connection state of the private endpoint connection.
- provisioning
State string - State of the private endpoint connection.
- private
Endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private
Link PrivateService Connection State Link Service Connection State Property Response - Connection state of the private endpoint connection.
- provisioning_
state str - State of the private endpoint connection.
- private_
endpoint PrivateEndpoint Property Response - Private endpoint which the connection belongs to.
- private_
link_ Privateservice_ connection_ state Link Service Connection State Property Response - Connection state of the private endpoint connection.
- provisioning
State String - State of the private endpoint connection.
- private
Endpoint Property Map - Private endpoint which the connection belongs to.
- private
Link Property MapService Connection State - Connection state of the private endpoint connection.
PrivateEndpointPropertyResponse, PrivateEndpointPropertyResponseArgs
- Id string
- Resource id of the private endpoint.
- Id string
- Resource id of the private endpoint.
- id String
- Resource id of the private endpoint.
- id string
- Resource id of the private endpoint.
- id str
- Resource id of the private endpoint.
- id String
- Resource id of the private endpoint.
PrivateLinkServiceConnectionStatePropertyResponse, PrivateLinkServiceConnectionStatePropertyResponseArgs
- Actions
Required string - The actions required for private link service connection.
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- Actions
Required string - The actions required for private link service connection.
- Description string
- The private link service connection description.
- Status string
- The private link service connection status.
- actions
Required String - The actions required for private link service connection.
- description String
- The private link service connection description.
- status String
- The private link service connection status.
- actions
Required string - The actions required for private link service connection.
- description string
- The private link service connection description.
- status string
- The private link service connection status.
- actions_
required str - The actions required for private link service connection.
- description str
- The private link service connection description.
- status str
- The private link service connection status.
- actions
Required String - The actions required for private link service connection.
- description String
- The private link service connection description.
- status String
- The private link service connection status.
ResourceIdentity, ResourceIdentityArgs
- Type
string | Pulumi.
Azure Native. Sql. Identity Type - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- User
Assigned Dictionary<string, object>Identities - The resource ids of the user assigned identities to use
- Type
string | Identity
Type - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- User
Assigned map[string]interface{}Identities - The resource ids of the user assigned identities to use
- type
String | Identity
Type - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned Map<String,Object>Identities - The resource ids of the user assigned identities to use
- type
string | Identity
Type - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned {[key: string]: any}Identities - The resource ids of the user assigned identities to use
- type
str | Identity
Type - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user_
assigned_ Mapping[str, Any]identities - The resource ids of the user assigned identities to use
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned Map<Any>Identities - The resource ids of the user assigned identities to use
ResourceIdentityResponse, ResourceIdentityResponseArgs
- Principal
Id string - The Azure Active Directory principal id.
- Tenant
Id string - The Azure Active Directory tenant id.
- Type string
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Sql. Inputs. User Identity Response> - The resource ids of the user assigned identities to use
- Principal
Id string - The Azure Active Directory principal id.
- Tenant
Id string - The Azure Active Directory tenant id.
- Type string
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- User
Assigned map[string]UserIdentities Identity Response - The resource ids of the user assigned identities to use
- principal
Id String - The Azure Active Directory principal id.
- tenant
Id String - The Azure Active Directory tenant id.
- type String
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned Map<String,UserIdentities Identity Response> - The resource ids of the user assigned identities to use
- principal
Id string - The Azure Active Directory principal id.
- tenant
Id string - The Azure Active Directory tenant id.
- type string
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned {[key: string]: UserIdentities Identity Response} - The resource ids of the user assigned identities to use
- principal_
id str - The Azure Active Directory principal id.
- tenant_
id str - The Azure Active Directory tenant id.
- type str
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user_
assigned_ Mapping[str, Useridentities Identity Response] - The resource ids of the user assigned identities to use
- principal
Id String - The Azure Active Directory principal id.
- tenant
Id String - The Azure Active Directory tenant id.
- type String
- The identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource.
- user
Assigned Map<Property Map>Identities - The resource ids of the user assigned identities to use
ServerExternalAdministrator, ServerExternalAdministratorArgs
- Administrator
Type string | Pulumi.Azure Native. Sql. Administrator Type - Type of the sever administrator.
- Azure
ADOnly boolAuthentication - Azure Active Directory only Authentication enabled.
- Login string
- Login name of the server administrator.
- Principal
Type string | Pulumi.Azure Native. Sql. Principal Type - Principal Type of the sever administrator.
- Sid string
- SID (object ID) of the server administrator.
- Tenant
Id string - Tenant ID of the administrator.
- Administrator
Type string | AdministratorType - Type of the sever administrator.
- Azure
ADOnly boolAuthentication - Azure Active Directory only Authentication enabled.
- Login string
- Login name of the server administrator.
- Principal
Type string | PrincipalType - Principal Type of the sever administrator.
- Sid string
- SID (object ID) of the server administrator.
- Tenant
Id string - Tenant ID of the administrator.
- administrator
Type String | AdministratorType - Type of the sever administrator.
- azure
ADOnly BooleanAuthentication - Azure Active Directory only Authentication enabled.
- login String
- Login name of the server administrator.
- principal
Type String | PrincipalType - Principal Type of the sever administrator.
- sid String
- SID (object ID) of the server administrator.
- tenant
Id String - Tenant ID of the administrator.
- administrator
Type string | AdministratorType - Type of the sever administrator.
- azure
ADOnly booleanAuthentication - Azure Active Directory only Authentication enabled.
- login string
- Login name of the server administrator.
- principal
Type string | PrincipalType - Principal Type of the sever administrator.
- sid string
- SID (object ID) of the server administrator.
- tenant
Id string - Tenant ID of the administrator.
- administrator_
type str | AdministratorType - Type of the sever administrator.
- azure_
ad_ boolonly_ authentication - Azure Active Directory only Authentication enabled.
- login str
- Login name of the server administrator.
- principal_
type str | PrincipalType - Principal Type of the sever administrator.
- sid str
- SID (object ID) of the server administrator.
- tenant_
id str - Tenant ID of the administrator.
- administrator
Type String | "ActiveDirectory" - Type of the sever administrator.
- azure
ADOnly BooleanAuthentication - Azure Active Directory only Authentication enabled.
- login String
- Login name of the server administrator.
- principal
Type String | "User" | "Group" | "Application" - Principal Type of the sever administrator.
- sid String
- SID (object ID) of the server administrator.
- tenant
Id String - Tenant ID of the administrator.
ServerExternalAdministratorResponse, ServerExternalAdministratorResponseArgs
- Administrator
Type string - Type of the sever administrator.
- Azure
ADOnly boolAuthentication - Azure Active Directory only Authentication enabled.
- Login string
- Login name of the server administrator.
- Principal
Type string - Principal Type of the sever administrator.
- Sid string
- SID (object ID) of the server administrator.
- Tenant
Id string - Tenant ID of the administrator.
- Administrator
Type string - Type of the sever administrator.
- Azure
ADOnly boolAuthentication - Azure Active Directory only Authentication enabled.
- Login string
- Login name of the server administrator.
- Principal
Type string - Principal Type of the sever administrator.
- Sid string
- SID (object ID) of the server administrator.
- Tenant
Id string - Tenant ID of the administrator.
- administrator
Type String - Type of the sever administrator.
- azure
ADOnly BooleanAuthentication - Azure Active Directory only Authentication enabled.
- login String
- Login name of the server administrator.
- principal
Type String - Principal Type of the sever administrator.
- sid String
- SID (object ID) of the server administrator.
- tenant
Id String - Tenant ID of the administrator.
- administrator
Type string - Type of the sever administrator.
- azure
ADOnly booleanAuthentication - Azure Active Directory only Authentication enabled.
- login string
- Login name of the server administrator.
- principal
Type string - Principal Type of the sever administrator.
- sid string
- SID (object ID) of the server administrator.
- tenant
Id string - Tenant ID of the administrator.
- administrator_
type str - Type of the sever administrator.
- azure_
ad_ boolonly_ authentication - Azure Active Directory only Authentication enabled.
- login str
- Login name of the server administrator.
- principal_
type str - Principal Type of the sever administrator.
- sid str
- SID (object ID) of the server administrator.
- tenant_
id str - Tenant ID of the administrator.
- administrator
Type String - Type of the sever administrator.
- azure
ADOnly BooleanAuthentication - Azure Active Directory only Authentication enabled.
- login String
- Login name of the server administrator.
- principal
Type String - Principal Type of the sever administrator.
- sid String
- SID (object ID) of the server administrator.
- tenant
Id String - Tenant ID of the administrator.
ServerPrivateEndpointConnectionResponse, ServerPrivateEndpointConnectionResponseArgs
- Id string
- Resource ID.
- Properties
Pulumi.
Azure Native. Sql. Inputs. Private Endpoint Connection Properties Response - Private endpoint connection properties
- Id string
- Resource ID.
- Properties
Private
Endpoint Connection Properties Response - Private endpoint connection properties
- id String
- Resource ID.
- properties
Private
Endpoint Connection Properties Response - Private endpoint connection properties
- id string
- Resource ID.
- properties
Private
Endpoint Connection Properties Response - Private endpoint connection properties
- id str
- Resource ID.
- properties
Private
Endpoint Connection Properties Response - Private endpoint connection properties
- id String
- Resource ID.
- properties Property Map
- Private endpoint connection properties
ServerPublicNetworkAccess, ServerPublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Server
Public Network Access Enabled - Enabled
- Server
Public Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
UserIdentityResponse, UserIdentityResponseArgs
- Client
Id string - The Azure Active Directory client id.
- Principal
Id string - The Azure Active Directory principal id.
- Client
Id string - The Azure Active Directory client id.
- Principal
Id string - The Azure Active Directory principal id.
- client
Id String - The Azure Active Directory client id.
- principal
Id String - The Azure Active Directory principal id.
- client
Id string - The Azure Active Directory client id.
- principal
Id string - The Azure Active Directory principal id.
- client_
id str - The Azure Active Directory client id.
- principal_
id str - The Azure Active Directory principal id.
- client
Id String - The Azure Active Directory client id.
- principal
Id String - The Azure Active Directory principal id.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:sql:Server sqlcrudtest-4645 /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-7398/providers/Microsoft.Sql/servers/sqlcrudtest-4645
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