Show / Hide Table of Contents

Class SystemPrivilegeSummary

A Summary of system privileges.

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

Properties

AdminOption

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

Indicates whether the system privilege is granted with the ADMIN option (YES) or not (NO).

Common

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

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

Inherited

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

Indicates whether the granted system privilege 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 a system privilege.

In this article
Back to top