InsightCapabilitySummary¶
-
class
oci.psql.models.InsightCapabilitySummary(**kwargs)¶ Bases:
objectDescribes supported insight types and their capabilities.
Attributes
INSIGHT_TYPE_QUERY_INSIGHTA constant which can be used with the insight_type property of a InsightCapabilitySummary. data_type_capabilities[Required] Gets the data_type_capabilities of this InsightCapabilitySummary. descriptionGets the description of this InsightCapabilitySummary. insight_type[Required] Gets the insight_type of this InsightCapabilitySummary. Methods
__init__(**kwargs)Initializes a new InsightCapabilitySummary object with values from keyword arguments. -
INSIGHT_TYPE_QUERY_INSIGHT= 'QUERY_INSIGHT'¶ A constant which can be used with the insight_type property of a InsightCapabilitySummary. This constant has a value of “QUERY_INSIGHT”
-
__init__(**kwargs)¶ Initializes a new InsightCapabilitySummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - insight_type (str) – The value to assign to the insight_type property of this InsightCapabilitySummary. Allowed values for this property are: “QUERY_INSIGHT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- description (str) – The value to assign to the description property of this InsightCapabilitySummary.
- data_type_capabilities (list[oci.psql.models.InsightDataTypeCapability]) – The value to assign to the data_type_capabilities property of this InsightCapabilitySummary.
-
data_type_capabilities¶ [Required] Gets the data_type_capabilities of this InsightCapabilitySummary. Supported insight data types for this insight type.
Returns: The data_type_capabilities of this InsightCapabilitySummary. Return type: list[oci.psql.models.InsightDataTypeCapability]
-
description¶ Gets the description of this InsightCapabilitySummary. Human-readable description of the insight type.
Returns: The description of this InsightCapabilitySummary. Return type: str
-
insight_type¶ [Required] Gets the insight_type of this InsightCapabilitySummary. Echo of the requested insight type.
Allowed values for this property are: “QUERY_INSIGHT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The insight_type of this InsightCapabilitySummary. Return type: str
-