-
Notifications
You must be signed in to change notification settings - Fork 82
/
volume.go
208 lines (161 loc) · 8.69 KB
/
volume.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// 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.
// Core Services API
//
// API covering the Networking (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm),
// Compute (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
// Block Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm) services. Use this API
// to manage resources such as virtual cloud networks (VCNs), compute instances, and
// block storage volumes.
//
package core
import (
"encoding/json"
"github.com/oracle/oci-go-sdk/common"
)
// Volume A detachable block volume device that allows you to dynamically expand
// the storage capacity of an instance. For more information, see
// Overview of Cloud Volume Storage (https://docs.cloud.oracle.com/Content/Block/Concepts/overview.htm).
// To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
// talk to an administrator. If you're an administrator who needs to write policies to give users access, see
// Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm).
// **Warning:** Oracle recommends that you avoid using any confidential information when you
// supply string values using the API.
type Volume struct {
// The availability domain of the volume.
// Example: `Uocm:PHX-AD-1`
AvailabilityDomain *string `mandatory:"true" json:"availabilityDomain"`
// The OCID of the compartment that contains the volume.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// A user-friendly name. Does not have to be unique, and it's changeable.
// Avoid entering confidential information.
DisplayName *string `mandatory:"true" json:"displayName"`
// The OCID of the volume.
Id *string `mandatory:"true" json:"id"`
// The current state of a volume.
LifecycleState VolumeLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
// The size of the volume in MBs. This field is deprecated. Use sizeInGBs instead.
SizeInMBs *int64 `mandatory:"true" json:"sizeInMBs"`
// The date and time the volume was created. Format defined by RFC3339 (https://tools.ietf.org/html/rfc3339).
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// 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:"false" json:"definedTags"`
// Free-form tags for this resource. Each tag is a simple key-value pair with no
// predefined name, type, or namespace. For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// System tags for this resource. Each key is predefined and scoped to a namespace.
// Example: `{"foo-namespace": {"bar-key": "value"}}`
SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"`
// Specifies whether the cloned volume's data has finished copying from the source volume or backup.
IsHydrated *bool `mandatory:"false" json:"isHydrated"`
// The OCID of the Key Management key which is the master encryption key for the volume.
KmsKeyId *string `mandatory:"false" json:"kmsKeyId"`
// The number of volume performance units (VPUs) that will be applied to this volume per GB,
// representing the Block Volume service's elastic performance options.
// See Block Volume Elastic Performance (https://docs.cloud.oracle.com/Content/Block/Concepts/blockvolumeelasticperformance.htm) for more information.
// Allowed values:
// * `0`: Represents Lower Cost option.
// * `10`: Represents Balanced option.
// * `20`: Represents Higher Performance option.
VpusPerGB *int64 `mandatory:"false" json:"vpusPerGB"`
// The size of the volume in GBs.
SizeInGBs *int64 `mandatory:"false" json:"sizeInGBs"`
// The volume source, either an existing volume in the same availability domain or a volume backup.
// If null, an empty volume is created.
SourceDetails VolumeSourceDetails `mandatory:"false" json:"sourceDetails"`
// The OCID of the source volume group.
VolumeGroupId *string `mandatory:"false" json:"volumeGroupId"`
// Specifies whether the auto-tune performance is enabled for this volume.
IsAutoTuneEnabled *bool `mandatory:"false" json:"isAutoTuneEnabled"`
// The number of Volume Performance Units per GB that this volume is effectively tuned to when it's idle.
AutoTunedVpusPerGB *int64 `mandatory:"false" json:"autoTunedVpusPerGB"`
}
func (m Volume) String() string {
return common.PointerString(m)
}
// UnmarshalJSON unmarshals from json
func (m *Volume) UnmarshalJSON(data []byte) (e error) {
model := struct {
DefinedTags map[string]map[string]interface{} `json:"definedTags"`
FreeformTags map[string]string `json:"freeformTags"`
SystemTags map[string]map[string]interface{} `json:"systemTags"`
IsHydrated *bool `json:"isHydrated"`
KmsKeyId *string `json:"kmsKeyId"`
VpusPerGB *int64 `json:"vpusPerGB"`
SizeInGBs *int64 `json:"sizeInGBs"`
SourceDetails volumesourcedetails `json:"sourceDetails"`
VolumeGroupId *string `json:"volumeGroupId"`
IsAutoTuneEnabled *bool `json:"isAutoTuneEnabled"`
AutoTunedVpusPerGB *int64 `json:"autoTunedVpusPerGB"`
AvailabilityDomain *string `json:"availabilityDomain"`
CompartmentId *string `json:"compartmentId"`
DisplayName *string `json:"displayName"`
Id *string `json:"id"`
LifecycleState VolumeLifecycleStateEnum `json:"lifecycleState"`
SizeInMBs *int64 `json:"sizeInMBs"`
TimeCreated *common.SDKTime `json:"timeCreated"`
}{}
e = json.Unmarshal(data, &model)
if e != nil {
return
}
var nn interface{}
m.DefinedTags = model.DefinedTags
m.FreeformTags = model.FreeformTags
m.SystemTags = model.SystemTags
m.IsHydrated = model.IsHydrated
m.KmsKeyId = model.KmsKeyId
m.VpusPerGB = model.VpusPerGB
m.SizeInGBs = model.SizeInGBs
nn, e = model.SourceDetails.UnmarshalPolymorphicJSON(model.SourceDetails.JsonData)
if e != nil {
return
}
if nn != nil {
m.SourceDetails = nn.(VolumeSourceDetails)
} else {
m.SourceDetails = nil
}
m.VolumeGroupId = model.VolumeGroupId
m.IsAutoTuneEnabled = model.IsAutoTuneEnabled
m.AutoTunedVpusPerGB = model.AutoTunedVpusPerGB
m.AvailabilityDomain = model.AvailabilityDomain
m.CompartmentId = model.CompartmentId
m.DisplayName = model.DisplayName
m.Id = model.Id
m.LifecycleState = model.LifecycleState
m.SizeInMBs = model.SizeInMBs
m.TimeCreated = model.TimeCreated
return
}
// VolumeLifecycleStateEnum Enum with underlying type: string
type VolumeLifecycleStateEnum string
// Set of constants representing the allowable values for VolumeLifecycleStateEnum
const (
VolumeLifecycleStateProvisioning VolumeLifecycleStateEnum = "PROVISIONING"
VolumeLifecycleStateRestoring VolumeLifecycleStateEnum = "RESTORING"
VolumeLifecycleStateAvailable VolumeLifecycleStateEnum = "AVAILABLE"
VolumeLifecycleStateTerminating VolumeLifecycleStateEnum = "TERMINATING"
VolumeLifecycleStateTerminated VolumeLifecycleStateEnum = "TERMINATED"
VolumeLifecycleStateFaulty VolumeLifecycleStateEnum = "FAULTY"
)
var mappingVolumeLifecycleState = map[string]VolumeLifecycleStateEnum{
"PROVISIONING": VolumeLifecycleStateProvisioning,
"RESTORING": VolumeLifecycleStateRestoring,
"AVAILABLE": VolumeLifecycleStateAvailable,
"TERMINATING": VolumeLifecycleStateTerminating,
"TERMINATED": VolumeLifecycleStateTerminated,
"FAULTY": VolumeLifecycleStateFaulty,
}
// GetVolumeLifecycleStateEnumValues Enumerates the set of values for VolumeLifecycleStateEnum
func GetVolumeLifecycleStateEnumValues() []VolumeLifecycleStateEnum {
values := make([]VolumeLifecycleStateEnum, 0)
for _, v := range mappingVolumeLifecycleState {
values = append(values, v)
}
return values
}