Show / Hide Table of Contents

Class ProxiedForUserSummary

A summary of users on whose behalf the current user acts as proxy.

Inheritance
object
ProxiedForUserSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class ProxiedForUserSummary

Properties

Authentication

Declaration
[JsonProperty(PropertyName = "authentication")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProxiedForUserSummary.AuthenticationEnum? Authentication { get; set; }
Property Value
Type Description
ProxiedForUserSummary.AuthenticationEnum?

Indicates whether the proxy is required to supply the client credentials (YES) or not (NO).

Flags

Declaration
[JsonProperty(PropertyName = "flags")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProxiedForUserSummary.FlagsEnum? Flags { get; set; }
Property Value
Type Description
ProxiedForUserSummary.FlagsEnum?

The flags associated with the proxy/client pair.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of a proxy user or the name of the client user.

In this article
Back to top