-
Notifications
You must be signed in to change notification settings - Fork 82
/
work_request_resource.go
64 lines (51 loc) · 2.7 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
// Copyright (c) 2016, 2018, 2020, 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.
// Data Safe API
//
// APIs for using Oracle Data Safe.
//
package datasafe
import (
"github.com/oracle/oci-go-sdk/common"
)
// WorkRequestResource A resource that is created or operated on by an asynchronous operation that is tracked by a work request.
type WorkRequestResource struct {
// The resource type impacted by the work request.
EntityType *string `mandatory:"true" json:"entityType"`
// The way in which this resource was affected by the operation that spawned 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.
ActionType WorkRequestResourceActionTypeEnum `mandatory:"true" json:"actionType"`
// An OCID or other unique identifier for the resource.
Identifier *string `mandatory:"true" json:"identifier"`
// The URI path that the user can use for a GET request to access the resource metadata.
EntityUri *string `mandatory:"false" json:"entityUri"`
}
func (m WorkRequestResource) String() string {
return common.PointerString(m)
}
// 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"
WorkRequestResourceActionTypeInProgress WorkRequestResourceActionTypeEnum = "IN_PROGRESS"
)
var mappingWorkRequestResourceActionType = map[string]WorkRequestResourceActionTypeEnum{
"CREATED": WorkRequestResourceActionTypeCreated,
"UPDATED": WorkRequestResourceActionTypeUpdated,
"DELETED": WorkRequestResourceActionTypeDeleted,
"IN_PROGRESS": WorkRequestResourceActionTypeInProgress,
}
// GetWorkRequestResourceActionTypeEnumValues Enumerates the set of values for WorkRequestResourceActionTypeEnum
func GetWorkRequestResourceActionTypeEnumValues() []WorkRequestResourceActionTypeEnum {
values := make([]WorkRequestResourceActionTypeEnum, 0)
for _, v := range mappingWorkRequestResourceActionType {
values = append(values, v)
}
return values
}