-
Notifications
You must be signed in to change notification settings - Fork 82
/
volume_attachment.go
359 lines (304 loc) · 14.4 KB
/
volume_attachment.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
// 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.
// Core Services API
//
// Use the Core Services API to manage resources such as virtual cloud networks (VCNs),
// compute instances, and block storage volumes. For more information, see the console
// documentation for 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.
//
package core
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// VolumeAttachment A base object for all types of attachments between a storage volume and an instance.
// For specific details about iSCSI attachments, see
// IScsiVolumeAttachment.
// For general information about volume attachments, see
// Overview of Block Volume Storage (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm).
// **Warning:** Oracle recommends that you avoid using any confidential information when you
// supply string values using the API.
type VolumeAttachment interface {
// The availability domain of an instance.
// Example: `Uocm:PHX-AD-1`
GetAvailabilityDomain() *string
// The OCID of the compartment.
GetCompartmentId() *string
// The OCID of the volume attachment.
GetId() *string
// The OCID of the instance the volume is attached to.
GetInstanceId() *string
// The current state of the volume attachment.
GetLifecycleState() VolumeAttachmentLifecycleStateEnum
// The date and time the volume was created, in the format defined by RFC3339 (https://tools.ietf.org/html/rfc3339).
// Example: `2016-08-25T21:10:29.600Z`
GetTimeCreated() *common.SDKTime
// The OCID of the volume.
GetVolumeId() *string
// The device name.
GetDevice() *string
// A user-friendly name. Does not have to be unique, and it's changeable.
// Avoid entering confidential information.
GetDisplayName() *string
// Whether the attachment was created in read-only mode.
GetIsReadOnly() *bool
// Whether the attachment should be created in shareable mode. If an attachment
// is created in shareable mode, then other instances can attach the same volume, provided
// that they also create their attachments in shareable mode. Only certain volume types can
// be attached in shareable mode. Defaults to false if not specified.
GetIsShareable() *bool
// Whether in-transit encryption for the data volume's paravirtualized attachment is enabled or not.
GetIsPvEncryptionInTransitEnabled() *bool
// Whether the Iscsi or Paravirtualized attachment is multipath or not, it is not applicable to NVMe attachment.
GetIsMultipath() *bool
// The iscsi login state of the volume attachment. For a Iscsi volume attachment,
// all iscsi sessions need to be all logged-in or logged-out to be in logged-in or logged-out state.
GetIscsiLoginState() VolumeAttachmentIscsiLoginStateEnum
}
type volumeattachment struct {
JsonData []byte
AvailabilityDomain *string `mandatory:"true" json:"availabilityDomain"`
CompartmentId *string `mandatory:"true" json:"compartmentId"`
Id *string `mandatory:"true" json:"id"`
InstanceId *string `mandatory:"true" json:"instanceId"`
LifecycleState VolumeAttachmentLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
VolumeId *string `mandatory:"true" json:"volumeId"`
Device *string `mandatory:"false" json:"device"`
DisplayName *string `mandatory:"false" json:"displayName"`
IsReadOnly *bool `mandatory:"false" json:"isReadOnly"`
IsShareable *bool `mandatory:"false" json:"isShareable"`
IsPvEncryptionInTransitEnabled *bool `mandatory:"false" json:"isPvEncryptionInTransitEnabled"`
IsMultipath *bool `mandatory:"false" json:"isMultipath"`
IscsiLoginState VolumeAttachmentIscsiLoginStateEnum `mandatory:"false" json:"iscsiLoginState,omitempty"`
AttachmentType string `json:"attachmentType"`
}
// UnmarshalJSON unmarshals json
func (m *volumeattachment) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalervolumeattachment volumeattachment
s := struct {
Model Unmarshalervolumeattachment
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.AvailabilityDomain = s.Model.AvailabilityDomain
m.CompartmentId = s.Model.CompartmentId
m.Id = s.Model.Id
m.InstanceId = s.Model.InstanceId
m.LifecycleState = s.Model.LifecycleState
m.TimeCreated = s.Model.TimeCreated
m.VolumeId = s.Model.VolumeId
m.Device = s.Model.Device
m.DisplayName = s.Model.DisplayName
m.IsReadOnly = s.Model.IsReadOnly
m.IsShareable = s.Model.IsShareable
m.IsPvEncryptionInTransitEnabled = s.Model.IsPvEncryptionInTransitEnabled
m.IsMultipath = s.Model.IsMultipath
m.IscsiLoginState = s.Model.IscsiLoginState
m.AttachmentType = s.Model.AttachmentType
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *volumeattachment) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.AttachmentType {
case "iscsi":
mm := IScsiVolumeAttachment{}
err = json.Unmarshal(data, &mm)
return mm, err
case "emulated":
mm := EmulatedVolumeAttachment{}
err = json.Unmarshal(data, &mm)
return mm, err
case "paravirtualized":
mm := ParavirtualizedVolumeAttachment{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
//GetAvailabilityDomain returns AvailabilityDomain
func (m volumeattachment) GetAvailabilityDomain() *string {
return m.AvailabilityDomain
}
//GetCompartmentId returns CompartmentId
func (m volumeattachment) GetCompartmentId() *string {
return m.CompartmentId
}
//GetId returns Id
func (m volumeattachment) GetId() *string {
return m.Id
}
//GetInstanceId returns InstanceId
func (m volumeattachment) GetInstanceId() *string {
return m.InstanceId
}
//GetLifecycleState returns LifecycleState
func (m volumeattachment) GetLifecycleState() VolumeAttachmentLifecycleStateEnum {
return m.LifecycleState
}
//GetTimeCreated returns TimeCreated
func (m volumeattachment) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
//GetVolumeId returns VolumeId
func (m volumeattachment) GetVolumeId() *string {
return m.VolumeId
}
//GetDevice returns Device
func (m volumeattachment) GetDevice() *string {
return m.Device
}
//GetDisplayName returns DisplayName
func (m volumeattachment) GetDisplayName() *string {
return m.DisplayName
}
//GetIsReadOnly returns IsReadOnly
func (m volumeattachment) GetIsReadOnly() *bool {
return m.IsReadOnly
}
//GetIsShareable returns IsShareable
func (m volumeattachment) GetIsShareable() *bool {
return m.IsShareable
}
//GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled
func (m volumeattachment) GetIsPvEncryptionInTransitEnabled() *bool {
return m.IsPvEncryptionInTransitEnabled
}
//GetIsMultipath returns IsMultipath
func (m volumeattachment) GetIsMultipath() *bool {
return m.IsMultipath
}
//GetIscsiLoginState returns IscsiLoginState
func (m volumeattachment) GetIscsiLoginState() VolumeAttachmentIscsiLoginStateEnum {
return m.IscsiLoginState
}
func (m volumeattachment) 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 volumeattachment) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingVolumeAttachmentLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetVolumeAttachmentLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingVolumeAttachmentIscsiLoginStateEnum(string(m.IscsiLoginState)); !ok && m.IscsiLoginState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for IscsiLoginState: %s. Supported values are: %s.", m.IscsiLoginState, strings.Join(GetVolumeAttachmentIscsiLoginStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// VolumeAttachmentLifecycleStateEnum Enum with underlying type: string
type VolumeAttachmentLifecycleStateEnum string
// Set of constants representing the allowable values for VolumeAttachmentLifecycleStateEnum
const (
VolumeAttachmentLifecycleStateAttaching VolumeAttachmentLifecycleStateEnum = "ATTACHING"
VolumeAttachmentLifecycleStateAttached VolumeAttachmentLifecycleStateEnum = "ATTACHED"
VolumeAttachmentLifecycleStateDetaching VolumeAttachmentLifecycleStateEnum = "DETACHING"
VolumeAttachmentLifecycleStateDetached VolumeAttachmentLifecycleStateEnum = "DETACHED"
)
var mappingVolumeAttachmentLifecycleStateEnum = map[string]VolumeAttachmentLifecycleStateEnum{
"ATTACHING": VolumeAttachmentLifecycleStateAttaching,
"ATTACHED": VolumeAttachmentLifecycleStateAttached,
"DETACHING": VolumeAttachmentLifecycleStateDetaching,
"DETACHED": VolumeAttachmentLifecycleStateDetached,
}
var mappingVolumeAttachmentLifecycleStateEnumLowerCase = map[string]VolumeAttachmentLifecycleStateEnum{
"attaching": VolumeAttachmentLifecycleStateAttaching,
"attached": VolumeAttachmentLifecycleStateAttached,
"detaching": VolumeAttachmentLifecycleStateDetaching,
"detached": VolumeAttachmentLifecycleStateDetached,
}
// GetVolumeAttachmentLifecycleStateEnumValues Enumerates the set of values for VolumeAttachmentLifecycleStateEnum
func GetVolumeAttachmentLifecycleStateEnumValues() []VolumeAttachmentLifecycleStateEnum {
values := make([]VolumeAttachmentLifecycleStateEnum, 0)
for _, v := range mappingVolumeAttachmentLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetVolumeAttachmentLifecycleStateEnumStringValues Enumerates the set of values in String for VolumeAttachmentLifecycleStateEnum
func GetVolumeAttachmentLifecycleStateEnumStringValues() []string {
return []string{
"ATTACHING",
"ATTACHED",
"DETACHING",
"DETACHED",
}
}
// GetMappingVolumeAttachmentLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingVolumeAttachmentLifecycleStateEnum(val string) (VolumeAttachmentLifecycleStateEnum, bool) {
enum, ok := mappingVolumeAttachmentLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// VolumeAttachmentIscsiLoginStateEnum Enum with underlying type: string
type VolumeAttachmentIscsiLoginStateEnum string
// Set of constants representing the allowable values for VolumeAttachmentIscsiLoginStateEnum
const (
VolumeAttachmentIscsiLoginStateUnknown VolumeAttachmentIscsiLoginStateEnum = "UNKNOWN"
VolumeAttachmentIscsiLoginStateLoggingIn VolumeAttachmentIscsiLoginStateEnum = "LOGGING_IN"
VolumeAttachmentIscsiLoginStateLoginSucceeded VolumeAttachmentIscsiLoginStateEnum = "LOGIN_SUCCEEDED"
VolumeAttachmentIscsiLoginStateLoginFailed VolumeAttachmentIscsiLoginStateEnum = "LOGIN_FAILED"
VolumeAttachmentIscsiLoginStateLoggingOut VolumeAttachmentIscsiLoginStateEnum = "LOGGING_OUT"
VolumeAttachmentIscsiLoginStateLogoutSucceeded VolumeAttachmentIscsiLoginStateEnum = "LOGOUT_SUCCEEDED"
VolumeAttachmentIscsiLoginStateLogoutFailed VolumeAttachmentIscsiLoginStateEnum = "LOGOUT_FAILED"
)
var mappingVolumeAttachmentIscsiLoginStateEnum = map[string]VolumeAttachmentIscsiLoginStateEnum{
"UNKNOWN": VolumeAttachmentIscsiLoginStateUnknown,
"LOGGING_IN": VolumeAttachmentIscsiLoginStateLoggingIn,
"LOGIN_SUCCEEDED": VolumeAttachmentIscsiLoginStateLoginSucceeded,
"LOGIN_FAILED": VolumeAttachmentIscsiLoginStateLoginFailed,
"LOGGING_OUT": VolumeAttachmentIscsiLoginStateLoggingOut,
"LOGOUT_SUCCEEDED": VolumeAttachmentIscsiLoginStateLogoutSucceeded,
"LOGOUT_FAILED": VolumeAttachmentIscsiLoginStateLogoutFailed,
}
var mappingVolumeAttachmentIscsiLoginStateEnumLowerCase = map[string]VolumeAttachmentIscsiLoginStateEnum{
"unknown": VolumeAttachmentIscsiLoginStateUnknown,
"logging_in": VolumeAttachmentIscsiLoginStateLoggingIn,
"login_succeeded": VolumeAttachmentIscsiLoginStateLoginSucceeded,
"login_failed": VolumeAttachmentIscsiLoginStateLoginFailed,
"logging_out": VolumeAttachmentIscsiLoginStateLoggingOut,
"logout_succeeded": VolumeAttachmentIscsiLoginStateLogoutSucceeded,
"logout_failed": VolumeAttachmentIscsiLoginStateLogoutFailed,
}
// GetVolumeAttachmentIscsiLoginStateEnumValues Enumerates the set of values for VolumeAttachmentIscsiLoginStateEnum
func GetVolumeAttachmentIscsiLoginStateEnumValues() []VolumeAttachmentIscsiLoginStateEnum {
values := make([]VolumeAttachmentIscsiLoginStateEnum, 0)
for _, v := range mappingVolumeAttachmentIscsiLoginStateEnum {
values = append(values, v)
}
return values
}
// GetVolumeAttachmentIscsiLoginStateEnumStringValues Enumerates the set of values in String for VolumeAttachmentIscsiLoginStateEnum
func GetVolumeAttachmentIscsiLoginStateEnumStringValues() []string {
return []string{
"UNKNOWN",
"LOGGING_IN",
"LOGIN_SUCCEEDED",
"LOGIN_FAILED",
"LOGGING_OUT",
"LOGOUT_SUCCEEDED",
"LOGOUT_FAILED",
}
}
// GetMappingVolumeAttachmentIscsiLoginStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingVolumeAttachmentIscsiLoginStateEnum(val string) (VolumeAttachmentIscsiLoginStateEnum, bool) {
enum, ok := mappingVolumeAttachmentIscsiLoginStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}