-
Notifications
You must be signed in to change notification settings - Fork 82
/
deploy_stage.go
450 lines (395 loc) · 20.6 KB
/
deploy_stage.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
// Copyright (c) 2016, 2018, 2022, 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.
// DevOps API
//
// Use the DevOps API to create DevOps projects, configure code repositories, add artifacts to deploy, build and test software applications, configure target deployment environments, and deploy software applications. For more information, see DevOps (https://docs.cloud.oracle.com/Content/devops/using/home.htm).
//
package devops
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// DeployStage A single node in a pipeline. It is usually associated with some action on a specific set of OCI resources such as environments. For example, updating a Function or a Kubernetes cluster.
type DeployStage interface {
// Unique identifier that is immutable on creation.
GetId() *string
// The OCID of a project.
GetProjectId() *string
// The OCID of a pipeline.
GetDeployPipelineId() *string
// The OCID of a compartment.
GetCompartmentId() *string
// Optional description about the deployment stage.
GetDescription() *string
// Deployment stage display name, which can be renamed and is not necessarily unique. Avoid entering confidential information.
GetDisplayName() *string
// Time the deployment stage was created. Format defined by RFC3339 (https://datatracker.ietf.org/doc/html/rfc3339).
GetTimeCreated() *common.SDKTime
// Time the deployment stage was updated. Format defined by RFC3339 (https://datatracker.ietf.org/doc/html/rfc3339).
GetTimeUpdated() *common.SDKTime
// The current state of the deployment stage.
GetLifecycleState() DeployStageLifecycleStateEnum
// A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
GetLifecycleDetails() *string
GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection
// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. See Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). Example: `{"bar-key": "value"}`
GetFreeformTags() map[string]string
// Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). Example: `{"foo-namespace": {"bar-key": "value"}}`
GetDefinedTags() map[string]map[string]interface{}
// Usage of system tag keys. These predefined keys are scoped to namespaces. See Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). Example: `{"orcl-cloud": {"free-tier-retained": "true"}}`
GetSystemTags() map[string]map[string]interface{}
}
type deploystage struct {
JsonData []byte
Id *string `mandatory:"true" json:"id"`
ProjectId *string `mandatory:"true" json:"projectId"`
DeployPipelineId *string `mandatory:"true" json:"deployPipelineId"`
CompartmentId *string `mandatory:"true" json:"compartmentId"`
Description *string `mandatory:"false" json:"description"`
DisplayName *string `mandatory:"false" json:"displayName"`
TimeCreated *common.SDKTime `mandatory:"false" json:"timeCreated"`
TimeUpdated *common.SDKTime `mandatory:"false" json:"timeUpdated"`
LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"`
DeployStagePredecessorCollection *DeployStagePredecessorCollection `mandatory:"false" json:"deployStagePredecessorCollection"`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"`
DeployStageType string `json:"deployStageType"`
}
// UnmarshalJSON unmarshals json
func (m *deploystage) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshalerdeploystage deploystage
s := struct {
Model Unmarshalerdeploystage
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Id = s.Model.Id
m.ProjectId = s.Model.ProjectId
m.DeployPipelineId = s.Model.DeployPipelineId
m.CompartmentId = s.Model.CompartmentId
m.Description = s.Model.Description
m.DisplayName = s.Model.DisplayName
m.TimeCreated = s.Model.TimeCreated
m.TimeUpdated = s.Model.TimeUpdated
m.LifecycleState = s.Model.LifecycleState
m.LifecycleDetails = s.Model.LifecycleDetails
m.DeployStagePredecessorCollection = s.Model.DeployStagePredecessorCollection
m.FreeformTags = s.Model.FreeformTags
m.DefinedTags = s.Model.DefinedTags
m.SystemTags = s.Model.SystemTags
m.DeployStageType = s.Model.DeployStageType
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *deploystage) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.DeployStageType {
case "COMPUTE_INSTANCE_GROUP_BLUE_GREEN_TRAFFIC_SHIFT":
mm := ComputeInstanceGroupBlueGreenTrafficShiftDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "LOAD_BALANCER_TRAFFIC_SHIFT":
mm := LoadBalancerTrafficShiftDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "INVOKE_FUNCTION":
mm := InvokeFunctionDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_CANARY_DEPLOYMENT":
mm := OkeCanaryDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_DEPLOYMENT":
mm := OkeDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_CANARY_TRAFFIC_SHIFT":
mm := OkeCanaryTrafficShiftDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "DEPLOY_FUNCTION":
mm := FunctionDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_BLUE_GREEN_DEPLOYMENT":
mm := OkeBlueGreenDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_CANARY_APPROVAL":
mm := OkeCanaryApprovalDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "COMPUTE_INSTANCE_GROUP_CANARY_TRAFFIC_SHIFT":
mm := ComputeInstanceGroupCanaryTrafficShiftDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "COMPUTE_INSTANCE_GROUP_CANARY_APPROVAL":
mm := ComputeInstanceGroupCanaryApprovalDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "WAIT":
mm := WaitDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_HELM_CHART_DEPLOYMENT":
mm := OkeHelmChartDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "COMPUTE_INSTANCE_GROUP_BLUE_GREEN_DEPLOYMENT":
mm := ComputeInstanceGroupBlueGreenDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "COMPUTE_INSTANCE_GROUP_CANARY_DEPLOYMENT":
mm := ComputeInstanceGroupCanaryDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "OKE_BLUE_GREEN_TRAFFIC_SHIFT":
mm := OkeBlueGreenTrafficShiftDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "MANUAL_APPROVAL":
mm := ManualApprovalDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
case "COMPUTE_INSTANCE_GROUP_ROLLING_DEPLOYMENT":
mm := ComputeInstanceGroupDeployStage{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
//GetId returns Id
func (m deploystage) GetId() *string {
return m.Id
}
//GetProjectId returns ProjectId
func (m deploystage) GetProjectId() *string {
return m.ProjectId
}
//GetDeployPipelineId returns DeployPipelineId
func (m deploystage) GetDeployPipelineId() *string {
return m.DeployPipelineId
}
//GetCompartmentId returns CompartmentId
func (m deploystage) GetCompartmentId() *string {
return m.CompartmentId
}
//GetDescription returns Description
func (m deploystage) GetDescription() *string {
return m.Description
}
//GetDisplayName returns DisplayName
func (m deploystage) GetDisplayName() *string {
return m.DisplayName
}
//GetTimeCreated returns TimeCreated
func (m deploystage) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
//GetTimeUpdated returns TimeUpdated
func (m deploystage) GetTimeUpdated() *common.SDKTime {
return m.TimeUpdated
}
//GetLifecycleState returns LifecycleState
func (m deploystage) GetLifecycleState() DeployStageLifecycleStateEnum {
return m.LifecycleState
}
//GetLifecycleDetails returns LifecycleDetails
func (m deploystage) GetLifecycleDetails() *string {
return m.LifecycleDetails
}
//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection
func (m deploystage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection {
return m.DeployStagePredecessorCollection
}
//GetFreeformTags returns FreeformTags
func (m deploystage) GetFreeformTags() map[string]string {
return m.FreeformTags
}
//GetDefinedTags returns DefinedTags
func (m deploystage) GetDefinedTags() map[string]map[string]interface{} {
return m.DefinedTags
}
//GetSystemTags returns SystemTags
func (m deploystage) GetSystemTags() map[string]map[string]interface{} {
return m.SystemTags
}
func (m deploystage) 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 deploystage) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingDeployStageLifecycleStateEnum(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(GetDeployStageLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// DeployStageLifecycleStateEnum Enum with underlying type: string
type DeployStageLifecycleStateEnum string
// Set of constants representing the allowable values for DeployStageLifecycleStateEnum
const (
DeployStageLifecycleStateCreating DeployStageLifecycleStateEnum = "CREATING"
DeployStageLifecycleStateUpdating DeployStageLifecycleStateEnum = "UPDATING"
DeployStageLifecycleStateActive DeployStageLifecycleStateEnum = "ACTIVE"
DeployStageLifecycleStateDeleting DeployStageLifecycleStateEnum = "DELETING"
DeployStageLifecycleStateDeleted DeployStageLifecycleStateEnum = "DELETED"
DeployStageLifecycleStateFailed DeployStageLifecycleStateEnum = "FAILED"
)
var mappingDeployStageLifecycleStateEnum = map[string]DeployStageLifecycleStateEnum{
"CREATING": DeployStageLifecycleStateCreating,
"UPDATING": DeployStageLifecycleStateUpdating,
"ACTIVE": DeployStageLifecycleStateActive,
"DELETING": DeployStageLifecycleStateDeleting,
"DELETED": DeployStageLifecycleStateDeleted,
"FAILED": DeployStageLifecycleStateFailed,
}
var mappingDeployStageLifecycleStateEnumLowerCase = map[string]DeployStageLifecycleStateEnum{
"creating": DeployStageLifecycleStateCreating,
"updating": DeployStageLifecycleStateUpdating,
"active": DeployStageLifecycleStateActive,
"deleting": DeployStageLifecycleStateDeleting,
"deleted": DeployStageLifecycleStateDeleted,
"failed": DeployStageLifecycleStateFailed,
}
// GetDeployStageLifecycleStateEnumValues Enumerates the set of values for DeployStageLifecycleStateEnum
func GetDeployStageLifecycleStateEnumValues() []DeployStageLifecycleStateEnum {
values := make([]DeployStageLifecycleStateEnum, 0)
for _, v := range mappingDeployStageLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetDeployStageLifecycleStateEnumStringValues Enumerates the set of values in String for DeployStageLifecycleStateEnum
func GetDeployStageLifecycleStateEnumStringValues() []string {
return []string{
"CREATING",
"UPDATING",
"ACTIVE",
"DELETING",
"DELETED",
"FAILED",
}
}
// GetMappingDeployStageLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingDeployStageLifecycleStateEnum(val string) (DeployStageLifecycleStateEnum, bool) {
enum, ok := mappingDeployStageLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}
// DeployStageDeployStageTypeEnum Enum with underlying type: string
type DeployStageDeployStageTypeEnum string
// Set of constants representing the allowable values for DeployStageDeployStageTypeEnum
const (
DeployStageDeployStageTypeWait DeployStageDeployStageTypeEnum = "WAIT"
DeployStageDeployStageTypeComputeInstanceGroupRollingDeployment DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_ROLLING_DEPLOYMENT"
DeployStageDeployStageTypeComputeInstanceGroupBlueGreenDeployment DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_BLUE_GREEN_DEPLOYMENT"
DeployStageDeployStageTypeComputeInstanceGroupBlueGreenTrafficShift DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_BLUE_GREEN_TRAFFIC_SHIFT"
DeployStageDeployStageTypeComputeInstanceGroupCanaryDeployment DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_CANARY_DEPLOYMENT"
DeployStageDeployStageTypeComputeInstanceGroupCanaryTrafficShift DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_CANARY_TRAFFIC_SHIFT"
DeployStageDeployStageTypeComputeInstanceGroupCanaryApproval DeployStageDeployStageTypeEnum = "COMPUTE_INSTANCE_GROUP_CANARY_APPROVAL"
DeployStageDeployStageTypeOkeBlueGreenDeployment DeployStageDeployStageTypeEnum = "OKE_BLUE_GREEN_DEPLOYMENT"
DeployStageDeployStageTypeOkeBlueGreenTrafficShift DeployStageDeployStageTypeEnum = "OKE_BLUE_GREEN_TRAFFIC_SHIFT"
DeployStageDeployStageTypeOkeCanaryDeployment DeployStageDeployStageTypeEnum = "OKE_CANARY_DEPLOYMENT"
DeployStageDeployStageTypeOkeCanaryTrafficShift DeployStageDeployStageTypeEnum = "OKE_CANARY_TRAFFIC_SHIFT"
DeployStageDeployStageTypeOkeCanaryApproval DeployStageDeployStageTypeEnum = "OKE_CANARY_APPROVAL"
DeployStageDeployStageTypeOkeDeployment DeployStageDeployStageTypeEnum = "OKE_DEPLOYMENT"
DeployStageDeployStageTypeDeployFunction DeployStageDeployStageTypeEnum = "DEPLOY_FUNCTION"
DeployStageDeployStageTypeInvokeFunction DeployStageDeployStageTypeEnum = "INVOKE_FUNCTION"
DeployStageDeployStageTypeLoadBalancerTrafficShift DeployStageDeployStageTypeEnum = "LOAD_BALANCER_TRAFFIC_SHIFT"
DeployStageDeployStageTypeManualApproval DeployStageDeployStageTypeEnum = "MANUAL_APPROVAL"
DeployStageDeployStageTypeOkeHelmChartDeployment DeployStageDeployStageTypeEnum = "OKE_HELM_CHART_DEPLOYMENT"
)
var mappingDeployStageDeployStageTypeEnum = map[string]DeployStageDeployStageTypeEnum{
"WAIT": DeployStageDeployStageTypeWait,
"COMPUTE_INSTANCE_GROUP_ROLLING_DEPLOYMENT": DeployStageDeployStageTypeComputeInstanceGroupRollingDeployment,
"COMPUTE_INSTANCE_GROUP_BLUE_GREEN_DEPLOYMENT": DeployStageDeployStageTypeComputeInstanceGroupBlueGreenDeployment,
"COMPUTE_INSTANCE_GROUP_BLUE_GREEN_TRAFFIC_SHIFT": DeployStageDeployStageTypeComputeInstanceGroupBlueGreenTrafficShift,
"COMPUTE_INSTANCE_GROUP_CANARY_DEPLOYMENT": DeployStageDeployStageTypeComputeInstanceGroupCanaryDeployment,
"COMPUTE_INSTANCE_GROUP_CANARY_TRAFFIC_SHIFT": DeployStageDeployStageTypeComputeInstanceGroupCanaryTrafficShift,
"COMPUTE_INSTANCE_GROUP_CANARY_APPROVAL": DeployStageDeployStageTypeComputeInstanceGroupCanaryApproval,
"OKE_BLUE_GREEN_DEPLOYMENT": DeployStageDeployStageTypeOkeBlueGreenDeployment,
"OKE_BLUE_GREEN_TRAFFIC_SHIFT": DeployStageDeployStageTypeOkeBlueGreenTrafficShift,
"OKE_CANARY_DEPLOYMENT": DeployStageDeployStageTypeOkeCanaryDeployment,
"OKE_CANARY_TRAFFIC_SHIFT": DeployStageDeployStageTypeOkeCanaryTrafficShift,
"OKE_CANARY_APPROVAL": DeployStageDeployStageTypeOkeCanaryApproval,
"OKE_DEPLOYMENT": DeployStageDeployStageTypeOkeDeployment,
"DEPLOY_FUNCTION": DeployStageDeployStageTypeDeployFunction,
"INVOKE_FUNCTION": DeployStageDeployStageTypeInvokeFunction,
"LOAD_BALANCER_TRAFFIC_SHIFT": DeployStageDeployStageTypeLoadBalancerTrafficShift,
"MANUAL_APPROVAL": DeployStageDeployStageTypeManualApproval,
"OKE_HELM_CHART_DEPLOYMENT": DeployStageDeployStageTypeOkeHelmChartDeployment,
}
var mappingDeployStageDeployStageTypeEnumLowerCase = map[string]DeployStageDeployStageTypeEnum{
"wait": DeployStageDeployStageTypeWait,
"compute_instance_group_rolling_deployment": DeployStageDeployStageTypeComputeInstanceGroupRollingDeployment,
"compute_instance_group_blue_green_deployment": DeployStageDeployStageTypeComputeInstanceGroupBlueGreenDeployment,
"compute_instance_group_blue_green_traffic_shift": DeployStageDeployStageTypeComputeInstanceGroupBlueGreenTrafficShift,
"compute_instance_group_canary_deployment": DeployStageDeployStageTypeComputeInstanceGroupCanaryDeployment,
"compute_instance_group_canary_traffic_shift": DeployStageDeployStageTypeComputeInstanceGroupCanaryTrafficShift,
"compute_instance_group_canary_approval": DeployStageDeployStageTypeComputeInstanceGroupCanaryApproval,
"oke_blue_green_deployment": DeployStageDeployStageTypeOkeBlueGreenDeployment,
"oke_blue_green_traffic_shift": DeployStageDeployStageTypeOkeBlueGreenTrafficShift,
"oke_canary_deployment": DeployStageDeployStageTypeOkeCanaryDeployment,
"oke_canary_traffic_shift": DeployStageDeployStageTypeOkeCanaryTrafficShift,
"oke_canary_approval": DeployStageDeployStageTypeOkeCanaryApproval,
"oke_deployment": DeployStageDeployStageTypeOkeDeployment,
"deploy_function": DeployStageDeployStageTypeDeployFunction,
"invoke_function": DeployStageDeployStageTypeInvokeFunction,
"load_balancer_traffic_shift": DeployStageDeployStageTypeLoadBalancerTrafficShift,
"manual_approval": DeployStageDeployStageTypeManualApproval,
"oke_helm_chart_deployment": DeployStageDeployStageTypeOkeHelmChartDeployment,
}
// GetDeployStageDeployStageTypeEnumValues Enumerates the set of values for DeployStageDeployStageTypeEnum
func GetDeployStageDeployStageTypeEnumValues() []DeployStageDeployStageTypeEnum {
values := make([]DeployStageDeployStageTypeEnum, 0)
for _, v := range mappingDeployStageDeployStageTypeEnum {
values = append(values, v)
}
return values
}
// GetDeployStageDeployStageTypeEnumStringValues Enumerates the set of values in String for DeployStageDeployStageTypeEnum
func GetDeployStageDeployStageTypeEnumStringValues() []string {
return []string{
"WAIT",
"COMPUTE_INSTANCE_GROUP_ROLLING_DEPLOYMENT",
"COMPUTE_INSTANCE_GROUP_BLUE_GREEN_DEPLOYMENT",
"COMPUTE_INSTANCE_GROUP_BLUE_GREEN_TRAFFIC_SHIFT",
"COMPUTE_INSTANCE_GROUP_CANARY_DEPLOYMENT",
"COMPUTE_INSTANCE_GROUP_CANARY_TRAFFIC_SHIFT",
"COMPUTE_INSTANCE_GROUP_CANARY_APPROVAL",
"OKE_BLUE_GREEN_DEPLOYMENT",
"OKE_BLUE_GREEN_TRAFFIC_SHIFT",
"OKE_CANARY_DEPLOYMENT",
"OKE_CANARY_TRAFFIC_SHIFT",
"OKE_CANARY_APPROVAL",
"OKE_DEPLOYMENT",
"DEPLOY_FUNCTION",
"INVOKE_FUNCTION",
"LOAD_BALANCER_TRAFFIC_SHIFT",
"MANUAL_APPROVAL",
"OKE_HELM_CHART_DEPLOYMENT",
}
}
// GetMappingDeployStageDeployStageTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingDeployStageDeployStageTypeEnum(val string) (DeployStageDeployStageTypeEnum, bool) {
enum, ok := mappingDeployStageDeployStageTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}