Show / Hide Table of Contents

Class RoleSummary

The details of a role fetched from the database.

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.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class RoleSummary

Properties

AuthenticationType

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

Type of authentication.

Remarks

Required

IsCommon

Declaration
[JsonProperty(PropertyName = "isCommon")]
public bool? IsCommon { get; set; }
Property Value
Type Description
bool?

Is the role common.

IsImplicit

Declaration
[JsonProperty(PropertyName = "isImplicit")]
public bool? IsImplicit { get; set; }
Property Value
Type Description
bool?

Is the role implicit.

IsInherited

Declaration
[JsonProperty(PropertyName = "isInherited")]
public bool? IsInherited { get; set; }
Property Value
Type Description
bool?

Is the role inherited.

IsOracleMaintained

Declaration
[JsonProperty(PropertyName = "isOracleMaintained")]
public bool? IsOracleMaintained { get; set; }
Property Value
Type Description
bool?

Is the role oracle maintained.

IsPasswordRequired

Declaration
[JsonProperty(PropertyName = "isPasswordRequired")]
public bool? IsPasswordRequired { get; set; }
Property Value
Type Description
bool?

Is password required.

RoleName

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

The name of the role.

Remarks

Required

In this article
Back to top