-
Notifications
You must be signed in to change notification settings - Fork 82
/
reason_keywords.go
68 lines (58 loc) · 2.55 KB
/
reason_keywords.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
// Copyright (c) 2016, 2018, 2024, 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 Migration API
//
// Use the Oracle Cloud Infrastructure Database Migration APIs to perform database migration operations.
//
package databasemigration
import (
"strings"
)
// ReasonKeywordsEnum Enum with underlying type: string
type ReasonKeywordsEnum string
// Set of constants representing the allowable values for ReasonKeywordsEnum
const (
ReasonKeywordsOracleMaintained ReasonKeywordsEnum = "ORACLE_MAINTAINED"
ReasonKeywordsGgUnsupported ReasonKeywordsEnum = "GG_UNSUPPORTED"
ReasonKeywordsUserExcluded ReasonKeywordsEnum = "USER_EXCLUDED"
ReasonKeywordsMandatoryExcluded ReasonKeywordsEnum = "MANDATORY_EXCLUDED"
ReasonKeywordsUserExcludedType ReasonKeywordsEnum = "USER_EXCLUDED_TYPE"
)
var mappingReasonKeywordsEnum = map[string]ReasonKeywordsEnum{
"ORACLE_MAINTAINED": ReasonKeywordsOracleMaintained,
"GG_UNSUPPORTED": ReasonKeywordsGgUnsupported,
"USER_EXCLUDED": ReasonKeywordsUserExcluded,
"MANDATORY_EXCLUDED": ReasonKeywordsMandatoryExcluded,
"USER_EXCLUDED_TYPE": ReasonKeywordsUserExcludedType,
}
var mappingReasonKeywordsEnumLowerCase = map[string]ReasonKeywordsEnum{
"oracle_maintained": ReasonKeywordsOracleMaintained,
"gg_unsupported": ReasonKeywordsGgUnsupported,
"user_excluded": ReasonKeywordsUserExcluded,
"mandatory_excluded": ReasonKeywordsMandatoryExcluded,
"user_excluded_type": ReasonKeywordsUserExcludedType,
}
// GetReasonKeywordsEnumValues Enumerates the set of values for ReasonKeywordsEnum
func GetReasonKeywordsEnumValues() []ReasonKeywordsEnum {
values := make([]ReasonKeywordsEnum, 0)
for _, v := range mappingReasonKeywordsEnum {
values = append(values, v)
}
return values
}
// GetReasonKeywordsEnumStringValues Enumerates the set of values in String for ReasonKeywordsEnum
func GetReasonKeywordsEnumStringValues() []string {
return []string{
"ORACLE_MAINTAINED",
"GG_UNSUPPORTED",
"USER_EXCLUDED",
"MANDATORY_EXCLUDED",
"USER_EXCLUDED_TYPE",
}
}
// GetMappingReasonKeywordsEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingReasonKeywordsEnum(val string) (ReasonKeywordsEnum, bool) {
enum, ok := mappingReasonKeywordsEnumLowerCase[strings.ToLower(val)]
return enum, ok
}