-
Notifications
You must be signed in to change notification settings - Fork 82
/
work_request_resource.go
121 lines (102 loc) · 5.19 KB
/
work_request_resource.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
// 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.
// OS Management API
//
// API for the OS Management service. Use these API operations for working
// with Managed instances and Managed instance groups.
//
package osmanagement
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// WorkRequestResource A resource created, operated on or used by a work request.
type WorkRequestResource struct {
// The resource type for the work request.
EntityType *string `mandatory:"true" json:"entityType"`
// The way in which this resource is affected by the work tracked in the work request.
// A resource being created, updated, or deleted will remain in the IN_PROGRESS state until
// work is complete for that resource at which point it will transition to CREATED, UPDATED,
// or DELETED, respectively. If the request failed for that resource,
// the state will be FAILED.
ActionType WorkRequestResourceActionTypeEnum `mandatory:"true" json:"actionType"`
// The identifier of the resource. Not all resources will have an id.
Identifier *string `mandatory:"true" json:"identifier"`
// The URI path that the user can do a GET on to access the resource metadata.
EntityUri *string `mandatory:"true" json:"entityUri"`
// The name of the resource. Not all resources will have a name specified.
Name *string `mandatory:"false" json:"name"`
}
func (m WorkRequestResource) 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 WorkRequestResource) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingWorkRequestResourceActionTypeEnum(string(m.ActionType)); !ok && m.ActionType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ActionType: %s. Supported values are: %s.", m.ActionType, strings.Join(GetWorkRequestResourceActionTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// WorkRequestResourceActionTypeEnum Enum with underlying type: string
type WorkRequestResourceActionTypeEnum string
// Set of constants representing the allowable values for WorkRequestResourceActionTypeEnum
const (
WorkRequestResourceActionTypeCreated WorkRequestResourceActionTypeEnum = "CREATED"
WorkRequestResourceActionTypeUpdated WorkRequestResourceActionTypeEnum = "UPDATED"
WorkRequestResourceActionTypeDeleted WorkRequestResourceActionTypeEnum = "DELETED"
WorkRequestResourceActionTypeFailed WorkRequestResourceActionTypeEnum = "FAILED"
WorkRequestResourceActionTypeInProgress WorkRequestResourceActionTypeEnum = "IN_PROGRESS"
WorkRequestResourceActionTypeInstalled WorkRequestResourceActionTypeEnum = "INSTALLED"
WorkRequestResourceActionTypeRemoved WorkRequestResourceActionTypeEnum = "REMOVED"
)
var mappingWorkRequestResourceActionTypeEnum = map[string]WorkRequestResourceActionTypeEnum{
"CREATED": WorkRequestResourceActionTypeCreated,
"UPDATED": WorkRequestResourceActionTypeUpdated,
"DELETED": WorkRequestResourceActionTypeDeleted,
"FAILED": WorkRequestResourceActionTypeFailed,
"IN_PROGRESS": WorkRequestResourceActionTypeInProgress,
"INSTALLED": WorkRequestResourceActionTypeInstalled,
"REMOVED": WorkRequestResourceActionTypeRemoved,
}
var mappingWorkRequestResourceActionTypeEnumLowerCase = map[string]WorkRequestResourceActionTypeEnum{
"created": WorkRequestResourceActionTypeCreated,
"updated": WorkRequestResourceActionTypeUpdated,
"deleted": WorkRequestResourceActionTypeDeleted,
"failed": WorkRequestResourceActionTypeFailed,
"in_progress": WorkRequestResourceActionTypeInProgress,
"installed": WorkRequestResourceActionTypeInstalled,
"removed": WorkRequestResourceActionTypeRemoved,
}
// GetWorkRequestResourceActionTypeEnumValues Enumerates the set of values for WorkRequestResourceActionTypeEnum
func GetWorkRequestResourceActionTypeEnumValues() []WorkRequestResourceActionTypeEnum {
values := make([]WorkRequestResourceActionTypeEnum, 0)
for _, v := range mappingWorkRequestResourceActionTypeEnum {
values = append(values, v)
}
return values
}
// GetWorkRequestResourceActionTypeEnumStringValues Enumerates the set of values in String for WorkRequestResourceActionTypeEnum
func GetWorkRequestResourceActionTypeEnumStringValues() []string {
return []string{
"CREATED",
"UPDATED",
"DELETED",
"FAILED",
"IN_PROGRESS",
"INSTALLED",
"REMOVED",
}
}
// GetMappingWorkRequestResourceActionTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingWorkRequestResourceActionTypeEnum(val string) (WorkRequestResourceActionTypeEnum, bool) {
enum, ok := mappingWorkRequestResourceActionTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}