Show / Hide Table of Contents

Class ListPasswordExpiryDateAnalyticsRequest

Inheritance
object
ListPasswordExpiryDateAnalyticsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Requests
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class ListPasswordExpiryDateAnalyticsRequest : IOciRequest
Examples

Click here to see an example of how to use ListPasswordExpiryDateAnalytics request.

Properties

AccessLevel

Declaration
[HttpConverter(TargetEnum.Query, "accessLevel")]
public ListPasswordExpiryDateAnalyticsRequest.AccessLevelEnum? AccessLevel { get; set; }
Property Value
Type Description
ListPasswordExpiryDateAnalyticsRequest.AccessLevelEnum?

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

CompartmentIdInSubtree

Declaration
[HttpConverter(TargetEnum.Query, "compartmentIdInSubtree")]
public bool? CompartmentIdInSubtree { get; set; }
Property Value
Type Description
bool?

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request.

TimePasswordExpiryLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timePasswordExpiryLessThan")]
public DateTime? TimePasswordExpiryLessThan { get; set; }
Property Value
Type Description
DateTime?

A filter to return users whose password expiry date in the database is less than the date and time specified, in the format defined by RFC3339. **Example: ** 2016-12-19T16:39:57.600Z

UserAssessmentId

Declaration
[Required(ErrorMessage = "UserAssessmentId is required.")]
[HttpConverter(TargetEnum.Path, "userAssessmentId")]
public string UserAssessmentId { get; set; }
Property Value
Type Description
string

The OCID of the user assessment.

Remarks

Required

UserCategory

Declaration
[HttpConverter(TargetEnum.Query, "userCategory")]
public string UserCategory { get; set; }
Property Value
Type Description
string

A filter to return only items that match the specified user category.

Implements

IOciRequest
In this article
Back to top