-
Notifications
You must be signed in to change notification settings - Fork 82
/
log_analytics_source_summary.go
142 lines (100 loc) · 4.96 KB
/
log_analytics_source_summary.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Copyright (c) 2016, 2018, 2022, Oracle and/or its affiliates. All rights reserved.
// 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.
// Code generated. DO NOT EDIT.
// LogAnalytics API
//
// The LogAnalytics API for the LogAnalytics service.
//
package loganalytics
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// LogAnalyticsSourceSummary LogAnalyticsSourceSummary
type LogAnalyticsSourceSummary struct {
// The label alert conditions.
LabelConditions []LogAnalyticsSourceLabelCondition `mandatory:"false" json:"labelConditions"`
// The association count.
AssociationCount *int `mandatory:"false" json:"associationCount"`
// The association entity.
AssociationEntity []LogAnalyticsAssociation `mandatory:"false" json:"associationEntity"`
// The data filter definition.
DataFilterDefinitions []LogAnalyticsSourceDataFilter `mandatory:"false" json:"dataFilterDefinitions"`
// The database credential.
DatabaseCredential *string `mandatory:"false" json:"databaseCredential"`
// The extended field definition.
ExtendedFieldDefinitions []LogAnalyticsSourceExtendedFieldDefinition `mandatory:"false" json:"extendedFieldDefinitions"`
// A flag indicating whether or not this is a cloud source.
IsForCloud *bool `mandatory:"false" json:"isForCloud"`
// The labels associated with this source.
Labels []LogAnalyticsLabelView `mandatory:"false" json:"labels"`
// The metric definitions.
MetricDefinitions []LogAnalyticsMetric `mandatory:"false" json:"metricDefinitions"`
// The metric source map.
Metrics []LogAnalyticsSourceMetric `mandatory:"false" json:"metrics"`
// The built in source parser.
OobParsers []LogAnalyticsParser `mandatory:"false" json:"oobParsers"`
// The parameter.
Parameters []LogAnalyticsParameter `mandatory:"false" json:"parameters"`
// The pattern count.
PatternCount *int `mandatory:"false" json:"patternCount"`
// The source patterns.
Patterns []LogAnalyticsSourcePattern `mandatory:"false" json:"patterns"`
// The source description.
Description *string `mandatory:"false" json:"description"`
// The source display name.
DisplayName *string `mandatory:"false" json:"displayName"`
// The source edit version.
EditVersion *int64 `mandatory:"false" json:"editVersion"`
// The source functions.
Functions []LogAnalyticsSourceFunction `mandatory:"false" json:"functions"`
// The source unique identifier.
SourceId *int64 `mandatory:"false" json:"sourceId"`
// The source internal name.
Name *string `mandatory:"false" json:"name"`
// A flag indicating whether or not the source content is secure.
IsSecureContent *bool `mandatory:"false" json:"isSecureContent"`
// The system flag. A value of false denotes a custom, or user
// defined object. A value of true denotes a built in object.
IsSystem *bool `mandatory:"false" json:"isSystem"`
// The list of parsers associated with this source.
Parsers []LogAnalyticsParser `mandatory:"false" json:"parsers"`
// A flag indicating whether or not the source is marked for auto-association.
IsAutoAssociationEnabled *bool `mandatory:"false" json:"isAutoAssociationEnabled"`
// A flag indicating whether or not the auto-association state should be overriden.
IsAutoAssociationOverride *bool `mandatory:"false" json:"isAutoAssociationOverride"`
// The rule unique identifier.
RuleId *int64 `mandatory:"false" json:"ruleId"`
// The source type internal name.
TypeName *string `mandatory:"false" json:"typeName"`
// The source type name.
TypeDisplayName *string `mandatory:"false" json:"typeDisplayName"`
// The source warning configuration.
WarningConfig *int64 `mandatory:"false" json:"warningConfig"`
// The source metadata fields.
MetadataFields []LogAnalyticsSourceMetadataField `mandatory:"false" json:"metadataFields"`
// The label definitions.
LabelDefinitions []LogAnalyticsLabelDefinition `mandatory:"false" json:"labelDefinitions"`
// The entity types.
EntityTypes []LogAnalyticsSourceEntityType `mandatory:"false" json:"entityTypes"`
// A flag indicating whether or not the source has a time zone override.
IsTimezoneOverride *bool `mandatory:"false" json:"isTimezoneOverride"`
// An array of custom parsers.
UserParsers []LogAnalyticsParser `mandatory:"false" json:"userParsers"`
// The last updated date.
TimeUpdated *common.SDKTime `mandatory:"false" json:"timeUpdated"`
}
func (m LogAnalyticsSourceSummary) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m LogAnalyticsSourceSummary) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}