forked from oracle/oci-go-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
volume_attachment.go
231 lines (192 loc) · 8.35 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
// 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"
)
// 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/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 cannot be changed.
// Avoid entering confidential information.
// Example: `My volume attachment`
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
}
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"`
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.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
}
func (m volumeattachment) String() string {
return common.PointerString(m)
}
// 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 mappingVolumeAttachmentLifecycleState = 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 mappingVolumeAttachmentLifecycleState {
values = append(values, v)
}
return values
}