-
Notifications
You must be signed in to change notification settings - Fork 82
/
bulk_edit_operation_details.go
102 lines (86 loc) · 5.76 KB
/
bulk_edit_operation_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
// 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.
// Identity and Access Management Service API
//
// Use the Identity and Access Management Service API to manage users, groups, identity domains, compartments, policies, tagging, and limits. For information about managing users, groups, compartments, and policies, see Identity and Access Management (without identity domains) (https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm). For information about tagging and service limits, see Tagging (https://docs.cloud.oracle.com/iaas/Content/Tagging/Concepts/taggingoverview.htm) and Service Limits (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm). For information about creating, modifying, and deleting identity domains, see Identity and Access Management (with identity domains) (https://docs.cloud.oracle.com/iaas/Content/Identity/home.htm).
//
package identity
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// BulkEditOperationDetails The representation of BulkEditOperationDetails
type BulkEditOperationDetails struct {
// An enum-like description of the type of operation.
// * `ADD_WHERE_ABSENT` adds a defined tag only if the tag does not already exist on the resource.
// * `SET_WHERE_PRESENT` updates the value for a defined tag only if the tag is present on the resource.
// * `ADD_OR_SET` combines the first two operations to add a defined tag if it does not already exist on the resource
// or update the value for a defined tag only if the tag is present on the resource.
// * `REMOVE` removes the defined tag from the resource. The tag is removed from the resource regardless of the tag value.
OperationType BulkEditOperationDetailsOperationTypeEnum `mandatory:"true" json:"operationType"`
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"true" json:"definedTags"`
}
func (m BulkEditOperationDetails) 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 BulkEditOperationDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingBulkEditOperationDetailsOperationTypeEnum(string(m.OperationType)); !ok && m.OperationType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for OperationType: %s. Supported values are: %s.", m.OperationType, strings.Join(GetBulkEditOperationDetailsOperationTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// BulkEditOperationDetailsOperationTypeEnum Enum with underlying type: string
type BulkEditOperationDetailsOperationTypeEnum string
// Set of constants representing the allowable values for BulkEditOperationDetailsOperationTypeEnum
const (
BulkEditOperationDetailsOperationTypeAddWhereAbsent BulkEditOperationDetailsOperationTypeEnum = "ADD_WHERE_ABSENT"
BulkEditOperationDetailsOperationTypeSetWherePresent BulkEditOperationDetailsOperationTypeEnum = "SET_WHERE_PRESENT"
BulkEditOperationDetailsOperationTypeAddOrSet BulkEditOperationDetailsOperationTypeEnum = "ADD_OR_SET"
BulkEditOperationDetailsOperationTypeRemove BulkEditOperationDetailsOperationTypeEnum = "REMOVE"
)
var mappingBulkEditOperationDetailsOperationTypeEnum = map[string]BulkEditOperationDetailsOperationTypeEnum{
"ADD_WHERE_ABSENT": BulkEditOperationDetailsOperationTypeAddWhereAbsent,
"SET_WHERE_PRESENT": BulkEditOperationDetailsOperationTypeSetWherePresent,
"ADD_OR_SET": BulkEditOperationDetailsOperationTypeAddOrSet,
"REMOVE": BulkEditOperationDetailsOperationTypeRemove,
}
var mappingBulkEditOperationDetailsOperationTypeEnumLowerCase = map[string]BulkEditOperationDetailsOperationTypeEnum{
"add_where_absent": BulkEditOperationDetailsOperationTypeAddWhereAbsent,
"set_where_present": BulkEditOperationDetailsOperationTypeSetWherePresent,
"add_or_set": BulkEditOperationDetailsOperationTypeAddOrSet,
"remove": BulkEditOperationDetailsOperationTypeRemove,
}
// GetBulkEditOperationDetailsOperationTypeEnumValues Enumerates the set of values for BulkEditOperationDetailsOperationTypeEnum
func GetBulkEditOperationDetailsOperationTypeEnumValues() []BulkEditOperationDetailsOperationTypeEnum {
values := make([]BulkEditOperationDetailsOperationTypeEnum, 0)
for _, v := range mappingBulkEditOperationDetailsOperationTypeEnum {
values = append(values, v)
}
return values
}
// GetBulkEditOperationDetailsOperationTypeEnumStringValues Enumerates the set of values in String for BulkEditOperationDetailsOperationTypeEnum
func GetBulkEditOperationDetailsOperationTypeEnumStringValues() []string {
return []string{
"ADD_WHERE_ABSENT",
"SET_WHERE_PRESENT",
"ADD_OR_SET",
"REMOVE",
}
}
// GetMappingBulkEditOperationDetailsOperationTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingBulkEditOperationDetailsOperationTypeEnum(val string) (BulkEditOperationDetailsOperationTypeEnum, bool) {
enum, ok := mappingBulkEditOperationDetailsOperationTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}