-
Notifications
You must be signed in to change notification settings - Fork 82
/
database_upgrade_history_entry_summary.go
227 lines (187 loc) · 12.4 KB
/
database_upgrade_history_entry_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
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
223
224
225
226
227
// 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.
// Database Service API
//
// The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see Overview of the Database Service (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm).
//
package database
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// DatabaseUpgradeHistoryEntrySummary The Database service supports the upgrade history of databases.
// To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
// For information about access control and compartments, see
// Overview of the Identity Service (https://docs.cloud.oracle.com/Content/Identity/Concepts/overview.htm).
// **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
type DatabaseUpgradeHistoryEntrySummary struct {
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the database upgrade history.
Id *string `mandatory:"true" json:"id"`
// The database upgrade action.
Action DatabaseUpgradeHistoryEntrySummaryActionEnum `mandatory:"true" json:"action"`
// Status of database upgrade history SUCCEEDED|IN_PROGRESS|FAILED.
LifecycleState DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
// The date and time when the database upgrade started.
TimeStarted *common.SDKTime `mandatory:"true" json:"timeStarted"`
// The source of the Oracle Database software to be used for the upgrade.
// - Use `DB_HOME` to specify an existing Database Home to upgrade the database. The database is moved to the target Database Home and makes use of the Oracle Database software version of the target Database Home.
// - Use `DB_VERSION` to specify a generally-available Oracle Database software version to upgrade the database.
// - Use `DB_SOFTWARE_IMAGE` to specify a database software image (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/databasesoftwareimage.htm) to upgrade the database.
Source DatabaseUpgradeHistoryEntrySummarySourceEnum `mandatory:"false" json:"source,omitempty"`
// Additional information about the current lifecycle state.
LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"`
// A valid Oracle Database version. To get a list of supported versions, use the ListDbVersions operation.
TargetDBVersion *string `mandatory:"false" json:"targetDBVersion"`
// the database software image used for upgrading database.
TargetDatabaseSoftwareImageId *string `mandatory:"false" json:"targetDatabaseSoftwareImageId"`
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the Database Home.
TargetDbHomeId *string `mandatory:"false" json:"targetDbHomeId"`
// The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the Database Home.
SourceDbHomeId *string `mandatory:"false" json:"sourceDbHomeId"`
// The date and time when the database upgrade ended.
TimeEnded *common.SDKTime `mandatory:"false" json:"timeEnded"`
// Additional upgrade options supported by DBUA(Database Upgrade Assistant).
// Example: "-upgradeTimezone false -keepEvents"
Options *string `mandatory:"false" json:"options"`
}
func (m DatabaseUpgradeHistoryEntrySummary) 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 DatabaseUpgradeHistoryEntrySummary) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingDatabaseUpgradeHistoryEntrySummaryActionEnum(string(m.Action)); !ok && m.Action != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Action: %s. Supported values are: %s.", m.Action, strings.Join(GetDatabaseUpgradeHistoryEntrySummaryActionEnumStringValues(), ",")))
}
if _, ok := GetMappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingDatabaseUpgradeHistoryEntrySummarySourceEnum(string(m.Source)); !ok && m.Source != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Source: %s. Supported values are: %s.", m.Source, strings.Join(GetDatabaseUpgradeHistoryEntrySummarySourceEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// DatabaseUpgradeHistoryEntrySummaryActionEnum Enum with underlying type: string
type DatabaseUpgradeHistoryEntrySummaryActionEnum string
// Set of constants representing the allowable values for DatabaseUpgradeHistoryEntrySummaryActionEnum
const (
DatabaseUpgradeHistoryEntrySummaryActionPrecheck DatabaseUpgradeHistoryEntrySummaryActionEnum = "PRECHECK"
DatabaseUpgradeHistoryEntrySummaryActionUpgrade DatabaseUpgradeHistoryEntrySummaryActionEnum = "UPGRADE"
DatabaseUpgradeHistoryEntrySummaryActionRollback DatabaseUpgradeHistoryEntrySummaryActionEnum = "ROLLBACK"
)
var mappingDatabaseUpgradeHistoryEntrySummaryActionEnum = map[string]DatabaseUpgradeHistoryEntrySummaryActionEnum{
"PRECHECK": DatabaseUpgradeHistoryEntrySummaryActionPrecheck,
"UPGRADE": DatabaseUpgradeHistoryEntrySummaryActionUpgrade,
"ROLLBACK": DatabaseUpgradeHistoryEntrySummaryActionRollback,
}
var mappingDatabaseUpgradeHistoryEntrySummaryActionEnumLowerCase = map[string]DatabaseUpgradeHistoryEntrySummaryActionEnum{
"precheck": DatabaseUpgradeHistoryEntrySummaryActionPrecheck,
"upgrade": DatabaseUpgradeHistoryEntrySummaryActionUpgrade,
"rollback": DatabaseUpgradeHistoryEntrySummaryActionRollback,
}
// GetDatabaseUpgradeHistoryEntrySummaryActionEnumValues Enumerates the set of values for DatabaseUpgradeHistoryEntrySummaryActionEnum
func GetDatabaseUpgradeHistoryEntrySummaryActionEnumValues() []DatabaseUpgradeHistoryEntrySummaryActionEnum {
values := make([]DatabaseUpgradeHistoryEntrySummaryActionEnum, 0)
for _, v := range mappingDatabaseUpgradeHistoryEntrySummaryActionEnum {
values = append(values, v)
}
return values
}
// GetDatabaseUpgradeHistoryEntrySummaryActionEnumStringValues Enumerates the set of values in String for DatabaseUpgradeHistoryEntrySummaryActionEnum
func GetDatabaseUpgradeHistoryEntrySummaryActionEnumStringValues() []string {
return []string{
"PRECHECK",
"UPGRADE",
"ROLLBACK",
}
}
// GetMappingDatabaseUpgradeHistoryEntrySummaryActionEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingDatabaseUpgradeHistoryEntrySummaryActionEnum(val string) (DatabaseUpgradeHistoryEntrySummaryActionEnum, bool) {
enum, ok := mappingDatabaseUpgradeHistoryEntrySummaryActionEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// DatabaseUpgradeHistoryEntrySummarySourceEnum Enum with underlying type: string
type DatabaseUpgradeHistoryEntrySummarySourceEnum string
// Set of constants representing the allowable values for DatabaseUpgradeHistoryEntrySummarySourceEnum
const (
DatabaseUpgradeHistoryEntrySummarySourceHome DatabaseUpgradeHistoryEntrySummarySourceEnum = "DB_HOME"
DatabaseUpgradeHistoryEntrySummarySourceVersion DatabaseUpgradeHistoryEntrySummarySourceEnum = "DB_VERSION"
DatabaseUpgradeHistoryEntrySummarySourceSoftwareImage DatabaseUpgradeHistoryEntrySummarySourceEnum = "DB_SOFTWARE_IMAGE"
)
var mappingDatabaseUpgradeHistoryEntrySummarySourceEnum = map[string]DatabaseUpgradeHistoryEntrySummarySourceEnum{
"DB_HOME": DatabaseUpgradeHistoryEntrySummarySourceHome,
"DB_VERSION": DatabaseUpgradeHistoryEntrySummarySourceVersion,
"DB_SOFTWARE_IMAGE": DatabaseUpgradeHistoryEntrySummarySourceSoftwareImage,
}
var mappingDatabaseUpgradeHistoryEntrySummarySourceEnumLowerCase = map[string]DatabaseUpgradeHistoryEntrySummarySourceEnum{
"db_home": DatabaseUpgradeHistoryEntrySummarySourceHome,
"db_version": DatabaseUpgradeHistoryEntrySummarySourceVersion,
"db_software_image": DatabaseUpgradeHistoryEntrySummarySourceSoftwareImage,
}
// GetDatabaseUpgradeHistoryEntrySummarySourceEnumValues Enumerates the set of values for DatabaseUpgradeHistoryEntrySummarySourceEnum
func GetDatabaseUpgradeHistoryEntrySummarySourceEnumValues() []DatabaseUpgradeHistoryEntrySummarySourceEnum {
values := make([]DatabaseUpgradeHistoryEntrySummarySourceEnum, 0)
for _, v := range mappingDatabaseUpgradeHistoryEntrySummarySourceEnum {
values = append(values, v)
}
return values
}
// GetDatabaseUpgradeHistoryEntrySummarySourceEnumStringValues Enumerates the set of values in String for DatabaseUpgradeHistoryEntrySummarySourceEnum
func GetDatabaseUpgradeHistoryEntrySummarySourceEnumStringValues() []string {
return []string{
"DB_HOME",
"DB_VERSION",
"DB_SOFTWARE_IMAGE",
}
}
// GetMappingDatabaseUpgradeHistoryEntrySummarySourceEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingDatabaseUpgradeHistoryEntrySummarySourceEnum(val string) (DatabaseUpgradeHistoryEntrySummarySourceEnum, bool) {
enum, ok := mappingDatabaseUpgradeHistoryEntrySummarySourceEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum Enum with underlying type: string
type DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum string
// Set of constants representing the allowable values for DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum
const (
DatabaseUpgradeHistoryEntrySummaryLifecycleStateSucceeded DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum = "SUCCEEDED"
DatabaseUpgradeHistoryEntrySummaryLifecycleStateFailed DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum = "FAILED"
DatabaseUpgradeHistoryEntrySummaryLifecycleStateInProgress DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum = "IN_PROGRESS"
)
var mappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum = map[string]DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum{
"SUCCEEDED": DatabaseUpgradeHistoryEntrySummaryLifecycleStateSucceeded,
"FAILED": DatabaseUpgradeHistoryEntrySummaryLifecycleStateFailed,
"IN_PROGRESS": DatabaseUpgradeHistoryEntrySummaryLifecycleStateInProgress,
}
var mappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumLowerCase = map[string]DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum{
"succeeded": DatabaseUpgradeHistoryEntrySummaryLifecycleStateSucceeded,
"failed": DatabaseUpgradeHistoryEntrySummaryLifecycleStateFailed,
"in_progress": DatabaseUpgradeHistoryEntrySummaryLifecycleStateInProgress,
}
// GetDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumValues Enumerates the set of values for DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum
func GetDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumValues() []DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum {
values := make([]DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum, 0)
for _, v := range mappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumStringValues Enumerates the set of values in String for DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum
func GetDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumStringValues() []string {
return []string{
"SUCCEEDED",
"FAILED",
"IN_PROGRESS",
}
}
// GetMappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum(val string) (DatabaseUpgradeHistoryEntrySummaryLifecycleStateEnum, bool) {
enum, ok := mappingDatabaseUpgradeHistoryEntrySummaryLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}