Show / Hide Table of Contents

Class InclusionCriterionSummary

Summary of the inclusion criterion.

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

Properties

Association

Declaration
[JsonProperty(PropertyName = "association")]
public Association Association { get; set; }
Property Value
Type Description
Association

GovernanceRuleId

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

The Oracle ID (OCID) of the governance rule. Every inclusion criterion is associated with a governance rule.

Remarks

Required

Id

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

The Oracle ID (OCID) of the inclusion criterion.

Remarks

Required

LifecycleState

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

The current state of the inclusion criterion.

Remarks

Required

TimeCreated

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

Date and time the inclusion criterion was created. An RFC3339 formatted datetime string.
Example: 2016-08-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?

Date and time the inclusion criterion was updated. An RFC3339 formatted datetime string.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

Type

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

Type of inclusion criterion - TENANCY, ALL or TAG. We support TENANCY and ALL for now.

Remarks

Required

In this article
Back to top