-
Notifications
You must be signed in to change notification settings - Fork 82
/
update_alarm_details.go
205 lines (172 loc) · 11.2 KB
/
update_alarm_details.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Copyright (c) 2016, 2018, 2023, 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.
// Monitoring API
//
// Use the Monitoring API to manage metric queries and alarms for assessing the health, capacity, and performance of your cloud resources.
// Endpoints vary by operation. For PostMetric, use the `telemetry-ingestion` endpoints; for all other operations, use the `telemetry` endpoints.
// For information about monitoring, see Monitoring Overview (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm).
//
package monitoring
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// UpdateAlarmDetails The configuration details for updating an alarm.
type UpdateAlarmDetails struct {
// A user-friendly name for the alarm. It does not have to be unique, and it's changeable.
// Avoid entering confidential information.
// This name is sent as the title for notifications related to this alarm.
// Example: `High CPU Utilization`
DisplayName *string `mandatory:"false" json:"displayName"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the alarm.
CompartmentId *string `mandatory:"false" json:"compartmentId"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the metric
// being evaluated by the alarm.
MetricCompartmentId *string `mandatory:"false" json:"metricCompartmentId"`
// When true, the alarm evaluates metrics from all compartments and subcompartments. The parameter can
// only be set to true when metricCompartmentId is the tenancy OCID (the tenancy is the root compartment).
// A true value requires the user to have tenancy-level permissions. If this requirement is not met,
// then the call is rejected. When false, the alarm evaluates metrics from only the compartment specified
// in metricCompartmentId. Default is false.
// Example: `true`
MetricCompartmentIdInSubtree *bool `mandatory:"false" json:"metricCompartmentIdInSubtree"`
// The source service or application emitting the metric that is evaluated by the alarm.
// Example: `oci_computeagent`
Namespace *string `mandatory:"false" json:"namespace"`
// Resource group that you want to match. A null value returns only metric data that has no resource groups. The alarm retrieves metric data associated with the specified resource group only. Only one resource group can be applied per metric.
// A valid resourceGroup value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
// Avoid entering confidential information.
// Example: `frontend-fleet`
ResourceGroup *string `mandatory:"false" json:"resourceGroup"`
// The Monitoring Query Language (MQL) expression to evaluate for the alarm. The Alarms feature of
// the Monitoring service interprets results for each returned time series as Boolean values,
// where zero represents false and a non-zero value represents true. A true value means that the trigger
// rule condition has been met. The query must specify a metric, statistic, interval, and trigger
// rule (threshold or absence). Supported values for interval depend on the specified time range. More
// interval values are supported for smaller time ranges. You can optionally
// specify dimensions and grouping functions. Supported grouping functions: `grouping()`, `groupBy()`.
// For details about Monitoring Query Language (MQL), see Monitoring Query Language (MQL) Reference (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Reference/mql.htm).
// For available dimensions, review the metric definition for the supported service.
// See Supported Services (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#SupportedServices).
// Example of threshold alarm:
// -----
// CpuUtilization[1m]{availabilityDomain="cumS:PHX-AD-1"}.groupBy(availabilityDomain).percentile(0.9) > 85
// -----
// Example of absence alarm:
// -----
// CpuUtilization[1m]{availabilityDomain="cumS:PHX-AD-1"}.absent()
// -----
Query *string `mandatory:"false" json:"query"`
// The time between calculated aggregation windows for the alarm. Supported value: `1m`
Resolution *string `mandatory:"false" json:"resolution"`
// The period of time that the condition defined in the alarm must persist before the alarm state
// changes from "OK" to "FIRING". For example, a value of 5 minutes means that the
// alarm must persist in breaching the condition for five minutes before the alarm updates its
// state to "FIRING".
// The duration is specified as a string in ISO 8601 format (`PT10M` for ten minutes or `PT1H`
// for one hour). Minimum: PT1M. Maximum: PT1H. Default: PT1M.
// Under the default value of PT1M, the first evaluation that breaches the alarm updates the
// state to "FIRING".
// The alarm updates its status to "OK" when the breaching condition has been clear for
// the most recent minute.
// Example: `PT5M`
PendingDuration *string `mandatory:"false" json:"pendingDuration"`
// The perceived severity of the alarm with regard to the affected system.
// Example: `CRITICAL`
Severity AlarmSeverityEnum `mandatory:"false" json:"severity,omitempty"`
// The human-readable content of the notification delivered. Oracle recommends providing guidance
// to operators for resolving the alarm condition. Consider adding links to standard runbook
// practices. Avoid entering confidential information.
// Example: `High CPU usage alert. Follow runbook instructions for resolution.`
Body *string `mandatory:"false" json:"body"`
// When set to `true`, splits notifications per metric stream. When set to `false`, groups notifications across metric streams.
// Example: `true`
IsNotificationsPerMetricDimensionEnabled *bool `mandatory:"false" json:"isNotificationsPerMetricDimensionEnabled"`
// The format to use for notification messages sent from this alarm. The formats are:
// * `RAW` - Raw JSON blob. Default value.
// * `PRETTY_JSON`: JSON with new lines and indents.
// * `ONS_OPTIMIZED`: Simplified, user-friendly layout. Applies only to messages sent through the Notifications service to the following subscription types: Email.
MessageFormat UpdateAlarmDetailsMessageFormatEnum `mandatory:"false" json:"messageFormat,omitempty"`
// A list of destinations to which the notifications for this alarm will be delivered.
// Each destination is represented by an OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) related to the supported destination service.
// For example, a destination using the Notifications service is represented by a topic OCID.
// Supported destination services: Notifications Service. Limit: One destination per supported destination service.
Destinations []string `mandatory:"false" json:"destinations"`
// The frequency at which notifications are re-submitted, if the alarm keeps firing without
// interruption. Format defined by ISO 8601. For example, `PT4H` indicates four hours.
// Minimum: PT1M. Maximum: P30D.
// Default value: null (notifications are not re-submitted).
// Example: `PT2H`
RepeatNotificationDuration *string `mandatory:"false" json:"repeatNotificationDuration"`
// The configuration details for suppressing an alarm.
Suppression *Suppression `mandatory:"false" json:"suppression"`
// Whether the alarm is enabled.
// Example: `true`
IsEnabled *bool `mandatory:"false" json:"isEnabled"`
// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Usage of predefined tag keys. These predefined keys are scoped to namespaces.
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
}
func (m UpdateAlarmDetails) 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 UpdateAlarmDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingAlarmSeverityEnum(string(m.Severity)); !ok && m.Severity != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Severity: %s. Supported values are: %s.", m.Severity, strings.Join(GetAlarmSeverityEnumStringValues(), ",")))
}
if _, ok := GetMappingUpdateAlarmDetailsMessageFormatEnum(string(m.MessageFormat)); !ok && m.MessageFormat != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for MessageFormat: %s. Supported values are: %s.", m.MessageFormat, strings.Join(GetUpdateAlarmDetailsMessageFormatEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// UpdateAlarmDetailsMessageFormatEnum Enum with underlying type: string
type UpdateAlarmDetailsMessageFormatEnum string
// Set of constants representing the allowable values for UpdateAlarmDetailsMessageFormatEnum
const (
UpdateAlarmDetailsMessageFormatRaw UpdateAlarmDetailsMessageFormatEnum = "RAW"
UpdateAlarmDetailsMessageFormatPrettyJson UpdateAlarmDetailsMessageFormatEnum = "PRETTY_JSON"
UpdateAlarmDetailsMessageFormatOnsOptimized UpdateAlarmDetailsMessageFormatEnum = "ONS_OPTIMIZED"
)
var mappingUpdateAlarmDetailsMessageFormatEnum = map[string]UpdateAlarmDetailsMessageFormatEnum{
"RAW": UpdateAlarmDetailsMessageFormatRaw,
"PRETTY_JSON": UpdateAlarmDetailsMessageFormatPrettyJson,
"ONS_OPTIMIZED": UpdateAlarmDetailsMessageFormatOnsOptimized,
}
var mappingUpdateAlarmDetailsMessageFormatEnumLowerCase = map[string]UpdateAlarmDetailsMessageFormatEnum{
"raw": UpdateAlarmDetailsMessageFormatRaw,
"pretty_json": UpdateAlarmDetailsMessageFormatPrettyJson,
"ons_optimized": UpdateAlarmDetailsMessageFormatOnsOptimized,
}
// GetUpdateAlarmDetailsMessageFormatEnumValues Enumerates the set of values for UpdateAlarmDetailsMessageFormatEnum
func GetUpdateAlarmDetailsMessageFormatEnumValues() []UpdateAlarmDetailsMessageFormatEnum {
values := make([]UpdateAlarmDetailsMessageFormatEnum, 0)
for _, v := range mappingUpdateAlarmDetailsMessageFormatEnum {
values = append(values, v)
}
return values
}
// GetUpdateAlarmDetailsMessageFormatEnumStringValues Enumerates the set of values in String for UpdateAlarmDetailsMessageFormatEnum
func GetUpdateAlarmDetailsMessageFormatEnumStringValues() []string {
return []string{
"RAW",
"PRETTY_JSON",
"ONS_OPTIMIZED",
}
}
// GetMappingUpdateAlarmDetailsMessageFormatEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingUpdateAlarmDetailsMessageFormatEnum(val string) (UpdateAlarmDetailsMessageFormatEnum, bool) {
enum, ok := mappingUpdateAlarmDetailsMessageFormatEnumLowerCase[strings.ToLower(val)]
return enum, ok
}