Show / Hide Table of Contents

Class InsightCapabilitySummary

Describes supported insight types and their capabilities.

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

Properties

DataTypeCapabilities

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

Supported insight data types for this insight type.

Remarks

Required

Description

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

Human-readable description of the insight type.

InsightType

Declaration
[Required(ErrorMessage = "InsightType is required.")]
[JsonProperty(PropertyName = "insightType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InsightCapabilitySummary.InsightTypeEnum? InsightType { get; set; }
Property Value
Type Description
InsightCapabilitySummary.InsightTypeEnum?

Echo of the requested insight type.

Remarks

Required

In this article
Back to top