-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing version 65.58.0
- Loading branch information
Showing
248 changed files
with
20,177 additions
and
1,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// 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. | ||
|
||
// Globally Distributed Database | ||
// | ||
// Use the Globally Distributed Database service APIs to create and manage distributed databases. | ||
// | ||
|
||
package globallydistributeddatabase | ||
|
||
import ( | ||
"strings" | ||
) | ||
|
||
// ActionTypeEnum Enum with underlying type: string | ||
type ActionTypeEnum string | ||
|
||
// Set of constants representing the allowable values for ActionTypeEnum | ||
const ( | ||
ActionTypeCreated ActionTypeEnum = "CREATED" | ||
ActionTypeUpdated ActionTypeEnum = "UPDATED" | ||
ActionTypeDeleted ActionTypeEnum = "DELETED" | ||
ActionTypeInProgress ActionTypeEnum = "IN_PROGRESS" | ||
ActionTypeRelated ActionTypeEnum = "RELATED" | ||
ActionTypeFailed ActionTypeEnum = "FAILED" | ||
) | ||
|
||
var mappingActionTypeEnum = map[string]ActionTypeEnum{ | ||
"CREATED": ActionTypeCreated, | ||
"UPDATED": ActionTypeUpdated, | ||
"DELETED": ActionTypeDeleted, | ||
"IN_PROGRESS": ActionTypeInProgress, | ||
"RELATED": ActionTypeRelated, | ||
"FAILED": ActionTypeFailed, | ||
} | ||
|
||
var mappingActionTypeEnumLowerCase = map[string]ActionTypeEnum{ | ||
"created": ActionTypeCreated, | ||
"updated": ActionTypeUpdated, | ||
"deleted": ActionTypeDeleted, | ||
"in_progress": ActionTypeInProgress, | ||
"related": ActionTypeRelated, | ||
"failed": ActionTypeFailed, | ||
} | ||
|
||
// GetActionTypeEnumValues Enumerates the set of values for ActionTypeEnum | ||
func GetActionTypeEnumValues() []ActionTypeEnum { | ||
values := make([]ActionTypeEnum, 0) | ||
for _, v := range mappingActionTypeEnum { | ||
values = append(values, v) | ||
} | ||
return values | ||
} | ||
|
||
// GetActionTypeEnumStringValues Enumerates the set of values in String for ActionTypeEnum | ||
func GetActionTypeEnumStringValues() []string { | ||
return []string{ | ||
"CREATED", | ||
"UPDATED", | ||
"DELETED", | ||
"IN_PROGRESS", | ||
"RELATED", | ||
"FAILED", | ||
} | ||
} | ||
|
||
// GetMappingActionTypeEnum performs case Insensitive comparison on enum value and return the desired enum | ||
func GetMappingActionTypeEnum(val string) (ActionTypeEnum, bool) { | ||
enum, ok := mappingActionTypeEnumLowerCase[strings.ToLower(val)] | ||
return enum, ok | ||
} |
Oops, something went wrong.