Show / Hide Table of Contents

Class RoleSummary

A summary of each role.

Inheritance
object
RoleSummary
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 RoleSummary

Properties

AdminOption

Declaration
[JsonProperty(PropertyName = "adminOption")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RoleSummary.AdminOptionEnum? AdminOption { get; set; }
Property Value
Type Description
RoleSummary.AdminOptionEnum?

Indicates whether the role is granted with the ADMIN OPTION (YES) or not (NO).

Common

Declaration
[JsonProperty(PropertyName = "common")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RoleSummary.CommonEnum? Common { get; set; }
Property Value
Type Description
RoleSummary.CommonEnum?

Indicates how the role was granted. Possible values: YES if the role is granted commonly (CONTAINER=ALL is used) NO if the role is granted locally (CONTAINER=ALL is not used)

DefaultRole

Declaration
[JsonProperty(PropertyName = "defaultRole")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RoleSummary.DefaultRoleEnum? DefaultRole { get; set; }
Property Value
Type Description
RoleSummary.DefaultRoleEnum?

Indicates whether the role is designated as a DEFAULT ROLE for the user (YES) or not (NO).

DelegateOption

Declaration
[JsonProperty(PropertyName = "delegateOption")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RoleSummary.DelegateOptionEnum? DelegateOption { get; set; }
Property Value
Type Description
RoleSummary.DelegateOptionEnum?

Indicates whether the role is granted with the DELEGATE OPTION (YES) or not (NO).

Inherited

Declaration
[JsonProperty(PropertyName = "inherited")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RoleSummary.InheritedEnum? Inherited { get; set; }
Property Value
Type Description
RoleSummary.InheritedEnum?

Indicates whether the granted role is inherited from another container (YES) or not (NO).

Name

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

The name of the role granted to the user.

In this article
Back to top