QueryResultResponse

class oci.apm_traces.models.QueryResultResponse(**kwargs)

Bases: object

A response containing a collection of query rows (selected attributes and aggregations) filtered, grouped and sorted by the specified criteria from the query that is run, and the associated summary describing the corresponding query result metadata.

Methods

__init__(**kwargs) Initializes a new QueryResultResponse object with values from keyword arguments.

Attributes

query_result_metadata Gets the query_result_metadata of this QueryResultResponse.
query_result_metadata_summary [Required] Gets the query_result_metadata_summary of this QueryResultResponse.
query_result_rows [Required] Gets the query_result_rows of this QueryResultResponse.
query_result_warnings Gets the query_result_warnings of this QueryResultResponse.
__init__(**kwargs)

Initializes a new QueryResultResponse object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • query_result_metadata_summary (oci.apm_traces.models.QueryResultMetadataSummary) – The value to assign to the query_result_metadata_summary property of this QueryResultResponse.
  • query_result_rows (list[oci.apm_traces.models.QueryResultRow]) – The value to assign to the query_result_rows property of this QueryResultResponse.
  • query_result_metadata (dict(str, object)) – The value to assign to the query_result_metadata property of this QueryResultResponse.
  • query_result_warnings (list[oci.apm_traces.models.QueryResultWarning]) – The value to assign to the query_result_warnings property of this QueryResultResponse.
query_result_metadata

Gets the query_result_metadata of this QueryResultResponse. A map containing metadata or additional information.

Returns:The query_result_metadata of this QueryResultResponse.
Return type:dict(str, object)
query_result_metadata_summary

[Required] Gets the query_result_metadata_summary of this QueryResultResponse.

Returns:The query_result_metadata_summary of this QueryResultResponse.
Return type:oci.apm_traces.models.QueryResultMetadataSummary
query_result_rows

[Required] Gets the query_result_rows of this QueryResultResponse. A collection of objects with each object representing an individual row of the query result set. The total number of objects returned in this collection correspond to the total number of rows returned by the actual query that is run against the queried entity.

Returns:The query_result_rows of this QueryResultResponse.
Return type:list[oci.apm_traces.models.QueryResultRow]
query_result_warnings

Gets the query_result_warnings of this QueryResultResponse. A structure that provides warnings, if any, along with the query results.

Returns:The query_result_warnings of this QueryResultResponse.
Return type:list[oci.apm_traces.models.QueryResultWarning]