Show / Hide Table of Contents

Class ServerArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServerArgs
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.MSSql
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ServerArgs : ResourceArgs

Constructors

View Source

ServerArgs()

Declaration
public ServerArgs()

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

AzureadAdministrator

An azuread_administrator block as defined below.

Declaration
public Input<ServerAzureadAdministratorArgs> AzureadAdministrator { get; set; }
Property Value
Type Description
Input<ServerAzureadAdministratorArgs>
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<ServerExtendedAuditingPolicyArgs> ExtendedAuditingPolicy { get; set; }
Property Value
Type Description
Input<ServerExtendedAuditingPolicyArgs>
View Source

Identity

An identity block as defined below.

Declaration
public Input<ServerIdentityArgs> Identity { get; set; }
Property Value
Type Description
Input<ServerIdentityArgs>
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

PublicNetworkAccessEnabled

Whether or not public network access is allowed for this server. Defaults to true.

Declaration
public Input<bool> PublicNetworkAccessEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
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.