Show / Hide Table of Contents

Class AccessRequestSummary

Summary information for an access request.

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

Properties

AccessDuration

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

The maximum amount of time operator has access to associated resources.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

The rationale for requesting the access request.

Remarks

Required

DisplayName

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

The name of the access request.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

The unique identifier (OCID) of the access request, which can't be changed after creation.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public AccessRequest.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
AccessRequest.LifecycleStateEnum?

The current state of the access request.

Remarks

Required

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 can't be changed after creation.

Remarks

Required

RequestorId

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

The unique identifier of the requestor.

Remarks

Required

RequestorLocation

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

The two-char country code of the requestor while creating the access request Example: US

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TicketNumber

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

The ticket number raised by external customers Example: 3-37509643121

TimeCreated

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

The time the access request was created. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z

Remarks

Required

TimeExpired

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

The time the access request expired. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The time the access request was last updated. Format is defined by RFC3339. Example: 2020-01-25T21:10:29.600Z

Remarks

Required

In this article
Back to top