Show / Hide Table of Contents

Class ApproveAccessRequestDetails

Details of the access request approval.

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

Properties

AdditionalMessage

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

Message that needs to be displayed to the Ops User.

ApproverComment

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

Comment by the approver during approval.

AuditType

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

Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, auditing is enabled at the command level i.e., each command issued by the operator is audited. When keystroke-level is chosen, in addition to command level logging, key strokes are also logged.

TimeOfUserCreation

Declaration
[JsonProperty(PropertyName = "timeOfUserCreation")]
public DateTime? TimeOfUserCreation { get; set; }
Property Value
Type Description
DateTime?

The time when access request is scheduled to be approved in RFC 3339 timestamp format.Example: '2020-05-22T21:10:29.600Z'

In this article
Back to top