Show / Hide Table of Contents

Class DatabaseArgs

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

Constructors

View Source

DatabaseArgs()

Declaration
public DatabaseArgs()

Properties

View Source

DefaultCharacterSet

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.