Show / Hide Table of Contents

Class PermissionContext

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

Properties

Permission

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

The permission context.

Remarks

Required

Variables

Declaration
[Required(ErrorMessage = "Variables is required.")]
[JsonProperty(PropertyName = "variables")]
public List<ContextVariable> Variables { get; set; }
Property Value
Type Description
List<ContextVariable>

The set of variables in this permission context.

Remarks

Required

In this article
Back to top