Show / Hide Table of Contents

Class DatabaseUserState

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

Constructors

View Source

DatabaseUserState()

Declaration
public DatabaseUserState()

Properties

View Source

ClusterId

The ID of the original source database cluster.

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

MysqlAuthPlugin

The authentication method to use for connections to the MySQL user account. The valid values are mysql_native_password or caching_sha2_password (this is the default).

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

Name

The name for the database user.

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

Password

Password for the database user.

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

Role

Role for the database user. The value will be either "primary" or "normal".

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