Show / Hide Table of Contents

Class ExportAccessRequestsDetails

Details for generating report of Access Requests to export action

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

Properties

LockboxId

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

The unique identifier (OCID) of the lockbox box that the access request is associated with which is immutable.

Remarks

Required

TimeCreatedAfter

Declaration
[Required(ErrorMessage = "TimeCreatedAfter is required.")]
[JsonProperty(PropertyName = "timeCreatedAfter")]
public DateTime? TimeCreatedAfter { get; set; }
Property Value
Type Description
DateTime?

Date and time after which access requests were created, as described in RFC 3339

Remarks

Required

TimeCreatedBefore

Declaration
[Required(ErrorMessage = "TimeCreatedBefore is required.")]
[JsonProperty(PropertyName = "timeCreatedBefore")]
public DateTime? TimeCreatedBefore { get; set; }
Property Value
Type Description
DateTime?

Date and time before which access requests were created, as described in RFC 3339s

Remarks

Required

In this article
Back to top