Class InsightCapabilitySummary
Describes supported insight types and their capabilities.
Inherited Members
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