Show / Hide Table of Contents

Class EnableConditions

The details of the audit policy provisioning conditions.

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

Properties

EntityNames

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

List of users or roles that the policy must be enabled for.

EntitySelection

Declaration
[Required(ErrorMessage = "EntitySelection is required.")]
[JsonProperty(PropertyName = "entitySelection")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EnableConditions.EntitySelectionEnum? EntitySelection { get; set; }
Property Value
Type Description
EnableConditions.EntitySelectionEnum?

The entity include or exclude selection.

Remarks

Required

EntityType

Declaration
[Required(ErrorMessage = "EntityType is required.")]
[JsonProperty(PropertyName = "entityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EnableConditions.EntityTypeEnum? EntityType { get; set; }
Property Value
Type Description
EnableConditions.EntityTypeEnum?

The entity type that the policy must be enabled for.

Remarks

Required

OperationStatus

Declaration
[Required(ErrorMessage = "OperationStatus is required.")]
[JsonProperty(PropertyName = "operationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EnableConditions.OperationStatusEnum? OperationStatus { get; set; }
Property Value
Type Description
EnableConditions.OperationStatusEnum?

The operation status that the policy must be enabled for.

Remarks

Required

In this article
Back to top