Class DatabaseArgs
Inherited Members
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.PostgreSql
Assembly: Pulumi.Azure.dll
Syntax
public sealed class DatabaseArgs : ResourceArgs
Constructors
View SourceDatabaseArgs()
Declaration
public DatabaseArgs()
Properties
View SourceCharset
Specifies the Charset for the PostgreSQL Database, which needs to be a valid PostgreSQL Charset. Changing this forces a new resource to be created.
Declaration
public Input<string> Charset { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Collation
Specifies the Collation for the PostgreSQL Database, which needs to be a valid PostgreSQL Collation. Note that Microsoft uses different notation - en-US instead of en_US. Changing this forces a new resource to be created.
Declaration
public Input<string> Collation { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
Specifies the name of the PostgreSQL Database, which needs to be a valid PostgreSQL identifier. Changing this forces a new resource to be created.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ResourceGroupName
The name of the resource group in which the PostgreSQL Server exists. Changing this forces a new resource to be created.
Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ServerName
Specifies the name of the PostgreSQL Server. Changing this forces a new resource to be created.
Declaration
public Input<string> ServerName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |