1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5// LogAnalytics API
6//
7// The LogAnalytics API for the LogAnalytics service.
8//
9
10package loganalytics
11
12import (
13	"github.com/oracle/oci-go-sdk/common"
14)
15
16// VerifyOutput Verify acceleration output.
17type VerifyOutput struct {
18
19	// Acceleration task identifier.
20	ScheduledTaskId *string `mandatory:"true" json:"scheduledTaskId"`
21
22	// Response time in ms.
23	ResponseTimeInMs *int64 `mandatory:"true" json:"responseTimeInMs"`
24
25	// Total match count.
26	TotalMatchedCount *int64 `mandatory:"true" json:"totalMatchedCount"`
27
28	// Total count.
29	TotalCount *int `mandatory:"true" json:"totalCount"`
30
31	// Acceleration result columns, included if requested (shouldIncludeResults).
32	Columns []ResultColumn `mandatory:"false" json:"columns"`
33
34	// Acceleration result values, included if requested (shouldIncludeResults).
35	Results []map[string]interface{} `mandatory:"false" json:"results"`
36}
37
38func (m VerifyOutput) String() string {
39	return common.PointerString(m)
40}
41