Show / Hide Table of Contents

Class EntitiesMapping

Parameters for entities mapping to data source.

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

Properties

DisplayName

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

Display name of the entity

EntityType

Declaration
[JsonProperty(PropertyName = "entityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EntityType? EntityType { get; set; }
Property Value
Type Description
EntityType?

Type of entity

QueryField

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

The entity value mapped to a data source query

Remarks

Required

In this article
Back to top