Show / Hide Table of Contents

Class DatabaseToolsConnectionOracleDatabaseProxyClientUserName

Proxy client information for user name based proxy authentication.

Inheritance
object
DatabaseToolsConnectionOracleDatabaseProxyClient
DatabaseToolsConnectionOracleDatabaseProxyClientUserName
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasetoolsService.Models
Assembly: OCI.DotNetSDK.Databasetools.dll
Syntax
public class DatabaseToolsConnectionOracleDatabaseProxyClientUserName : DatabaseToolsConnectionOracleDatabaseProxyClient

Properties

Roles

Declaration
[JsonProperty(PropertyName = "roles")]
public List<string> Roles { get; set; }
Property Value
Type Description
List<string>

A list of database roles for the client. These roles are enabled if the proxy is authorized to use the roles on behalf of the client.

UserName

Declaration
[Required(ErrorMessage = "UserName is required.")]
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
Type Description
string

The user name.

Remarks

Required

UserPassword

Declaration
[JsonProperty(PropertyName = "userPassword")]
public DatabaseToolsUserPassword UserPassword { get; set; }
Property Value
Type Description
DatabaseToolsUserPassword
In this article
Back to top