-
Notifications
You must be signed in to change notification settings - Fork 82
/
summarize_exadata_insight_resource_statistics_aggregation_collection.go
222 lines (186 loc) · 14.1 KB
/
summarize_exadata_insight_resource_statistics_aggregation_collection.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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// 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.
// Operations Insights API
//
// Use the Operations Insights API to perform data extraction operations to obtain database
// resource utilization, performance statistics, and reference information. For more information,
// see About Oracle Cloud Infrastructure Operations Insights (https://docs.cloud.oracle.com/en-us/iaas/operations-insights/doc/operations-insights.html).
//
package opsi
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// SummarizeExadataInsightResourceStatisticsAggregationCollection Returns list of the resources with resource statistics like usage,capacity,utilization and usage change percent.
type SummarizeExadataInsightResourceStatisticsAggregationCollection struct {
// The start timestamp that was passed into the request.
TimeIntervalStart *common.SDKTime `mandatory:"true" json:"timeIntervalStart"`
// The end timestamp that was passed into the request.
TimeIntervalEnd *common.SDKTime `mandatory:"true" json:"timeIntervalEnd"`
// Collection of Resource Statistics items
Items []ExadataInsightResourceStatisticsAggregation `mandatory:"true" json:"items"`
// Displays usage unit ( CORES, GB , PERCENT, MBPS)
UsageUnit SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum `mandatory:"true" json:"usageUnit"`
// Defines the type of exadata resource metric (example: CPU, STORAGE)
ExadataResourceMetric SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum `mandatory:"true" json:"exadataResourceMetric"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata insight.
ExadataInsightId *string `mandatory:"true" json:"exadataInsightId"`
// The user-friendly name for the Exadata system. The name does not have to be unique.
ExadataDisplayName *string `mandatory:"false" json:"exadataDisplayName"`
}
func (m SummarizeExadataInsightResourceStatisticsAggregationCollection) 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 SummarizeExadataInsightResourceStatisticsAggregationCollection) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum(string(m.UsageUnit)); !ok && m.UsageUnit != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for UsageUnit: %s. Supported values are: %s.", m.UsageUnit, strings.Join(GetSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumStringValues(), ",")))
}
if _, ok := GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum(string(m.ExadataResourceMetric)); !ok && m.ExadataResourceMetric != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ExadataResourceMetric: %s. Supported values are: %s.", m.ExadataResourceMetric, strings.Join(GetSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// UnmarshalJSON unmarshals from json
func (m *SummarizeExadataInsightResourceStatisticsAggregationCollection) UnmarshalJSON(data []byte) (e error) {
model := struct {
ExadataDisplayName *string `json:"exadataDisplayName"`
TimeIntervalStart *common.SDKTime `json:"timeIntervalStart"`
TimeIntervalEnd *common.SDKTime `json:"timeIntervalEnd"`
Items []exadatainsightresourcestatisticsaggregation `json:"items"`
UsageUnit SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum `json:"usageUnit"`
ExadataResourceMetric SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum `json:"exadataResourceMetric"`
ExadataInsightId *string `json:"exadataInsightId"`
}{}
e = json.Unmarshal(data, &model)
if e != nil {
return
}
var nn interface{}
m.ExadataDisplayName = model.ExadataDisplayName
m.TimeIntervalStart = model.TimeIntervalStart
m.TimeIntervalEnd = model.TimeIntervalEnd
m.Items = make([]ExadataInsightResourceStatisticsAggregation, len(model.Items))
for i, n := range model.Items {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.Items[i] = nn.(ExadataInsightResourceStatisticsAggregation)
} else {
m.Items[i] = nil
}
}
m.UsageUnit = model.UsageUnit
m.ExadataResourceMetric = model.ExadataResourceMetric
m.ExadataInsightId = model.ExadataInsightId
return
}
// SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum Enum with underlying type: string
type SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum string
// Set of constants representing the allowable values for SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum
const (
SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitCores SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = "CORES"
SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitGb SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = "GB"
SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitMbps SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = "MBPS"
SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitIops SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = "IOPS"
SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitPercent SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = "PERCENT"
)
var mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum = map[string]SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum{
"CORES": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitCores,
"GB": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitGb,
"MBPS": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitMbps,
"IOPS": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitIops,
"PERCENT": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitPercent,
}
var mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumLowerCase = map[string]SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum{
"cores": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitCores,
"gb": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitGb,
"mbps": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitMbps,
"iops": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitIops,
"percent": SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitPercent,
}
// GetSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumValues Enumerates the set of values for SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum
func GetSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumValues() []SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum {
values := make([]SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum, 0)
for _, v := range mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum {
values = append(values, v)
}
return values
}
// GetSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumStringValues Enumerates the set of values in String for SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum
func GetSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumStringValues() []string {
return []string{
"CORES",
"GB",
"MBPS",
"IOPS",
"PERCENT",
}
}
// GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum(val string) (SummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnum, bool) {
enum, ok := mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionUsageUnitEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum Enum with underlying type: string
type SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum string
// Set of constants representing the allowable values for SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum
const (
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricCpu SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "CPU"
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricStorage SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "STORAGE"
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIo SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "IO"
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricMemory SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "MEMORY"
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIops SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "IOPS"
SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricThroughput SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = "THROUGHPUT"
)
var mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum = map[string]SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum{
"CPU": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricCpu,
"STORAGE": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricStorage,
"IO": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIo,
"MEMORY": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricMemory,
"IOPS": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIops,
"THROUGHPUT": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricThroughput,
}
var mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumLowerCase = map[string]SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum{
"cpu": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricCpu,
"storage": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricStorage,
"io": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIo,
"memory": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricMemory,
"iops": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricIops,
"throughput": SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricThroughput,
}
// GetSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumValues Enumerates the set of values for SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum
func GetSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumValues() []SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum {
values := make([]SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum, 0)
for _, v := range mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum {
values = append(values, v)
}
return values
}
// GetSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumStringValues Enumerates the set of values in String for SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum
func GetSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumStringValues() []string {
return []string{
"CPU",
"STORAGE",
"IO",
"MEMORY",
"IOPS",
"THROUGHPUT",
}
}
// GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum(val string) (SummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnum, bool) {
enum, ok := mappingSummarizeExadataInsightResourceStatisticsAggregationCollectionExadataResourceMetricEnumLowerCase[strings.ToLower(val)]
return enum, ok
}