-
Notifications
You must be signed in to change notification settings - Fork 82
/
container_instance.go
327 lines (262 loc) · 14.6 KB
/
container_instance.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
// Copyright (c) 2016, 2018, 2024, 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.
// Container Instance API
//
// A description of the Container Instance API
//
package containerinstances
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// ContainerInstance A container instance to host containers.
// If you delete a container instance, the record remains visible for a short period
// of time before being permanently removed.
type ContainerInstance struct {
// An OCID that cannot be changed.
Id *string `mandatory:"true" json:"id"`
// 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 compartment.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// The availability domain to place the container instance.
AvailabilityDomain *string `mandatory:"true" json:"availabilityDomain"`
// The current state of the container instance.
LifecycleState ContainerInstanceLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
// The containers on the container instance.
Containers []ContainerInstanceContainer `mandatory:"true" json:"containers"`
// The number of containers on the container instance.
ContainerCount *int `mandatory:"true" json:"containerCount"`
// The time the container instance was created, in the format defined by RFC 3339 (https://tools.ietf.org/rfc/rfc3339).
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The shape of the container instance. The shape determines the number of OCPUs, amount of memory, and other resources that are allocated to a container instance.
Shape *string `mandatory:"true" json:"shape"`
ShapeConfig *ContainerInstanceShapeConfig `mandatory:"true" json:"shapeConfig"`
// The virtual networks available to the containers in the container instance.
Vnics []ContainerVnic `mandatory:"true" json:"vnics"`
// The container restart policy is applied for all containers in container instance.
ContainerRestartPolicy ContainerInstanceContainerRestartPolicyEnum `mandatory:"true" json:"containerRestartPolicy"`
// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
// Example: `{"bar-key": "value"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// Example: `{"foo-namespace": {"bar-key": "value"}}`.
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
// Usage of system tag keys. These predefined keys are scoped to namespaces.
// Example: `{"orcl-cloud": {"free-tier-retained": "true"}}`.
SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"`
// The fault domain to place the container instance.
FaultDomain *string `mandatory:"false" json:"faultDomain"`
// A message that describes the current state of the container in more detail. Can be used to provide
// actionable information.
LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"`
// A volume is a directory with data that is accessible across multiple containers in a
// container instance.
Volumes []ContainerVolume `mandatory:"false" json:"volumes"`
// The number of volumes that are attached to the container instance.
VolumeCount *int `mandatory:"false" json:"volumeCount"`
// The time the container instance was updated, in the format defined by RFC 3339 (https://tools.ietf.org/rfc/rfc3339).
TimeUpdated *common.SDKTime `mandatory:"false" json:"timeUpdated"`
DnsConfig *ContainerDnsConfig `mandatory:"false" json:"dnsConfig"`
// The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
GracefulShutdownTimeoutInSeconds *int64 `mandatory:"false" json:"gracefulShutdownTimeoutInSeconds"`
// The image pulls secrets so you can access private registry to pull container images.
ImagePullSecrets []ImagePullSecret `mandatory:"false" json:"imagePullSecrets"`
}
func (m ContainerInstance) 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 ContainerInstance) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingContainerInstanceLifecycleStateEnum(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(GetContainerInstanceLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingContainerInstanceContainerRestartPolicyEnum(string(m.ContainerRestartPolicy)); !ok && m.ContainerRestartPolicy != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for ContainerRestartPolicy: %s. Supported values are: %s.", m.ContainerRestartPolicy, strings.Join(GetContainerInstanceContainerRestartPolicyEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// UnmarshalJSON unmarshals from json
func (m *ContainerInstance) UnmarshalJSON(data []byte) (e error) {
model := struct {
FreeformTags map[string]string `json:"freeformTags"`
DefinedTags map[string]map[string]interface{} `json:"definedTags"`
SystemTags map[string]map[string]interface{} `json:"systemTags"`
FaultDomain *string `json:"faultDomain"`
LifecycleDetails *string `json:"lifecycleDetails"`
Volumes []containervolume `json:"volumes"`
VolumeCount *int `json:"volumeCount"`
TimeUpdated *common.SDKTime `json:"timeUpdated"`
DnsConfig *ContainerDnsConfig `json:"dnsConfig"`
GracefulShutdownTimeoutInSeconds *int64 `json:"gracefulShutdownTimeoutInSeconds"`
ImagePullSecrets []imagepullsecret `json:"imagePullSecrets"`
Id *string `json:"id"`
DisplayName *string `json:"displayName"`
CompartmentId *string `json:"compartmentId"`
AvailabilityDomain *string `json:"availabilityDomain"`
LifecycleState ContainerInstanceLifecycleStateEnum `json:"lifecycleState"`
Containers []ContainerInstanceContainer `json:"containers"`
ContainerCount *int `json:"containerCount"`
TimeCreated *common.SDKTime `json:"timeCreated"`
Shape *string `json:"shape"`
ShapeConfig *ContainerInstanceShapeConfig `json:"shapeConfig"`
Vnics []ContainerVnic `json:"vnics"`
ContainerRestartPolicy ContainerInstanceContainerRestartPolicyEnum `json:"containerRestartPolicy"`
}{}
e = json.Unmarshal(data, &model)
if e != nil {
return
}
var nn interface{}
m.FreeformTags = model.FreeformTags
m.DefinedTags = model.DefinedTags
m.SystemTags = model.SystemTags
m.FaultDomain = model.FaultDomain
m.LifecycleDetails = model.LifecycleDetails
m.Volumes = make([]ContainerVolume, len(model.Volumes))
for i, n := range model.Volumes {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.Volumes[i] = nn.(ContainerVolume)
} else {
m.Volumes[i] = nil
}
}
m.VolumeCount = model.VolumeCount
m.TimeUpdated = model.TimeUpdated
m.DnsConfig = model.DnsConfig
m.GracefulShutdownTimeoutInSeconds = model.GracefulShutdownTimeoutInSeconds
m.ImagePullSecrets = make([]ImagePullSecret, len(model.ImagePullSecrets))
for i, n := range model.ImagePullSecrets {
nn, e = n.UnmarshalPolymorphicJSON(n.JsonData)
if e != nil {
return e
}
if nn != nil {
m.ImagePullSecrets[i] = nn.(ImagePullSecret)
} else {
m.ImagePullSecrets[i] = nil
}
}
m.Id = model.Id
m.DisplayName = model.DisplayName
m.CompartmentId = model.CompartmentId
m.AvailabilityDomain = model.AvailabilityDomain
m.LifecycleState = model.LifecycleState
m.Containers = make([]ContainerInstanceContainer, len(model.Containers))
copy(m.Containers, model.Containers)
m.ContainerCount = model.ContainerCount
m.TimeCreated = model.TimeCreated
m.Shape = model.Shape
m.ShapeConfig = model.ShapeConfig
m.Vnics = make([]ContainerVnic, len(model.Vnics))
copy(m.Vnics, model.Vnics)
m.ContainerRestartPolicy = model.ContainerRestartPolicy
return
}
// ContainerInstanceLifecycleStateEnum Enum with underlying type: string
type ContainerInstanceLifecycleStateEnum string
// Set of constants representing the allowable values for ContainerInstanceLifecycleStateEnum
const (
ContainerInstanceLifecycleStateCreating ContainerInstanceLifecycleStateEnum = "CREATING"
ContainerInstanceLifecycleStateUpdating ContainerInstanceLifecycleStateEnum = "UPDATING"
ContainerInstanceLifecycleStateActive ContainerInstanceLifecycleStateEnum = "ACTIVE"
ContainerInstanceLifecycleStateInactive ContainerInstanceLifecycleStateEnum = "INACTIVE"
ContainerInstanceLifecycleStateDeleting ContainerInstanceLifecycleStateEnum = "DELETING"
ContainerInstanceLifecycleStateDeleted ContainerInstanceLifecycleStateEnum = "DELETED"
ContainerInstanceLifecycleStateFailed ContainerInstanceLifecycleStateEnum = "FAILED"
)
var mappingContainerInstanceLifecycleStateEnum = map[string]ContainerInstanceLifecycleStateEnum{
"CREATING": ContainerInstanceLifecycleStateCreating,
"UPDATING": ContainerInstanceLifecycleStateUpdating,
"ACTIVE": ContainerInstanceLifecycleStateActive,
"INACTIVE": ContainerInstanceLifecycleStateInactive,
"DELETING": ContainerInstanceLifecycleStateDeleting,
"DELETED": ContainerInstanceLifecycleStateDeleted,
"FAILED": ContainerInstanceLifecycleStateFailed,
}
var mappingContainerInstanceLifecycleStateEnumLowerCase = map[string]ContainerInstanceLifecycleStateEnum{
"creating": ContainerInstanceLifecycleStateCreating,
"updating": ContainerInstanceLifecycleStateUpdating,
"active": ContainerInstanceLifecycleStateActive,
"inactive": ContainerInstanceLifecycleStateInactive,
"deleting": ContainerInstanceLifecycleStateDeleting,
"deleted": ContainerInstanceLifecycleStateDeleted,
"failed": ContainerInstanceLifecycleStateFailed,
}
// GetContainerInstanceLifecycleStateEnumValues Enumerates the set of values for ContainerInstanceLifecycleStateEnum
func GetContainerInstanceLifecycleStateEnumValues() []ContainerInstanceLifecycleStateEnum {
values := make([]ContainerInstanceLifecycleStateEnum, 0)
for _, v := range mappingContainerInstanceLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetContainerInstanceLifecycleStateEnumStringValues Enumerates the set of values in String for ContainerInstanceLifecycleStateEnum
func GetContainerInstanceLifecycleStateEnumStringValues() []string {
return []string{
"CREATING",
"UPDATING",
"ACTIVE",
"INACTIVE",
"DELETING",
"DELETED",
"FAILED",
}
}
// GetMappingContainerInstanceLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingContainerInstanceLifecycleStateEnum(val string) (ContainerInstanceLifecycleStateEnum, bool) {
enum, ok := mappingContainerInstanceLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// ContainerInstanceContainerRestartPolicyEnum Enum with underlying type: string
type ContainerInstanceContainerRestartPolicyEnum string
// Set of constants representing the allowable values for ContainerInstanceContainerRestartPolicyEnum
const (
ContainerInstanceContainerRestartPolicyAlways ContainerInstanceContainerRestartPolicyEnum = "ALWAYS"
ContainerInstanceContainerRestartPolicyNever ContainerInstanceContainerRestartPolicyEnum = "NEVER"
ContainerInstanceContainerRestartPolicyOnFailure ContainerInstanceContainerRestartPolicyEnum = "ON_FAILURE"
)
var mappingContainerInstanceContainerRestartPolicyEnum = map[string]ContainerInstanceContainerRestartPolicyEnum{
"ALWAYS": ContainerInstanceContainerRestartPolicyAlways,
"NEVER": ContainerInstanceContainerRestartPolicyNever,
"ON_FAILURE": ContainerInstanceContainerRestartPolicyOnFailure,
}
var mappingContainerInstanceContainerRestartPolicyEnumLowerCase = map[string]ContainerInstanceContainerRestartPolicyEnum{
"always": ContainerInstanceContainerRestartPolicyAlways,
"never": ContainerInstanceContainerRestartPolicyNever,
"on_failure": ContainerInstanceContainerRestartPolicyOnFailure,
}
// GetContainerInstanceContainerRestartPolicyEnumValues Enumerates the set of values for ContainerInstanceContainerRestartPolicyEnum
func GetContainerInstanceContainerRestartPolicyEnumValues() []ContainerInstanceContainerRestartPolicyEnum {
values := make([]ContainerInstanceContainerRestartPolicyEnum, 0)
for _, v := range mappingContainerInstanceContainerRestartPolicyEnum {
values = append(values, v)
}
return values
}
// GetContainerInstanceContainerRestartPolicyEnumStringValues Enumerates the set of values in String for ContainerInstanceContainerRestartPolicyEnum
func GetContainerInstanceContainerRestartPolicyEnumStringValues() []string {
return []string{
"ALWAYS",
"NEVER",
"ON_FAILURE",
}
}
// GetMappingContainerInstanceContainerRestartPolicyEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingContainerInstanceContainerRestartPolicyEnum(val string) (ContainerInstanceContainerRestartPolicyEnum, bool) {
enum, ok := mappingContainerInstanceContainerRestartPolicyEnumLowerCase[strings.ToLower(val)]
return enum, ok
}