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.MySql
Assembly: Pulumi.MySql.dll
Syntax
public sealed class DatabaseArgs : ResourceArgs
Constructors
View SourceDatabaseArgs()
Declaration
public DatabaseArgs()
Properties
View SourceDefaultCharacterSet
The default character set to use when a table is created without specifying an explicit character set. Defaults to "utf8".
Declaration
public Input<string> DefaultCharacterSet { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
DefaultCollation
The default collation to use when a table
is created without specifying an explicit collation. Defaults to
utf8_general_ci. Each character set has its own set of collations, so
changing the character set requires also changing the collation.
Declaration
public Input<string> DefaultCollation { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
The name of the database. This must be unique within a given MySQL server and may or may not be case-sensitive depending on the operating system on which the MySQL server is running.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |