Show / Hide Table of Contents

Class SqlServerState

Inheritance
System.Object
InputArgs
ResourceArgs
SqlServerState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Sql
Assembly: Pulumi.Azure.dll
Syntax
public sealed class SqlServerState : ResourceArgs

Constructors

View Source

SqlServerState()

Declaration
public SqlServerState()

Properties

View Source

AdministratorLogin

The administrator login name for the new server. Changing this forces a new resource to be created.

Declaration
public Input<string> AdministratorLogin { get; set; }
Property Value
Type Description
Input<System.String>
View Source

AdministratorLoginPassword

The password associated with the administrator_login user. Needs to comply with Azure's Password Policy

Declaration
public Input<string> AdministratorLoginPassword { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ConnectionPolicy

The connection policy the server will use. Possible values are Default, Proxy, and Redirect. Defaults to Default.

Declaration
public Input<string> ConnectionPolicy { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ExtendedAuditingPolicy

A extended_auditing_policy block as defined below.

Declaration
public Input<SqlServerExtendedAuditingPolicyGetArgs> ExtendedAuditingPolicy { get; set; }
Property Value
Type Description
Input<SqlServerExtendedAuditingPolicyGetArgs>
View Source

FullyQualifiedDomainName

The fully qualified domain name of the Azure SQL Server (e.g. myServerName.database.windows.net)

Declaration
public Input<string> FullyQualifiedDomainName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Identity

An identity block as defined below.

Declaration
public Input<SqlServerIdentityGetArgs> Identity { get; set; }
Property Value
Type Description
Input<SqlServerIdentityGetArgs>
View Source

Location

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Declaration
public Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the Microsoft SQL Server. This needs to be globally unique within Azure.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the Microsoft SQL Server.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Version

The version for the new server. Valid values are: 2.0 (for v11 server) and 12.0 (for v12 server).

Declaration
public Input<string> Version { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.