-
Notifications
You must be signed in to change notification settings - Fork 82
/
detect_stage.go
127 lines (101 loc) · 5.07 KB
/
detect_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
// 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.
// Application Dependency Management API
//
// Use the Application Dependency Management API to create knowledge bases and vulnerability audits. For more information, see ADM (https://docs.cloud.oracle.com/Content/application-dependency-management/home.htm).
//
package adm
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// DetectStage A detect stage performs a Vulnerability Audit and determines if the remediation run should proceed to remediation stage.
type DetectStage struct {
// The creation date and time of the remediation run stage (formatted according to RFC3339 (https://datatracker.ietf.org/doc/html/rfc3339)).
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The Oracle Cloud identifier (OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm)) of the remediation run.
RemediationRunId *string `mandatory:"true" json:"remediationRunId"`
// The date and time of the start of the remediation run stage (formatted according to RFC3339 (https://datatracker.ietf.org/doc/html/rfc3339)).
TimeStarted *common.SDKTime `mandatory:"false" json:"timeStarted"`
// The date and time of the finish of the remediation run stage (formatted according to RFC3339 (https://datatracker.ietf.org/doc/html/rfc3339)).
TimeFinished *common.SDKTime `mandatory:"false" json:"timeFinished"`
// Information about the current step within the stage.
Summary *string `mandatory:"false" json:"summary"`
// The Oracle Cloud identifier (OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm)) of the vulnerability audit.
AuditId *string `mandatory:"false" json:"auditId"`
// The current status of a remediation run stage.
Status RemediationRunStageStatusEnum `mandatory:"true" json:"status"`
// The previous type of stage in the remediation run.
PreviousStageType RemediationRunStageTypeEnum `mandatory:"false" json:"previousStageType,omitempty"`
// The next type of stage in the remediation run.
NextStageType RemediationRunStageTypeEnum `mandatory:"false" json:"nextStageType,omitempty"`
}
// GetStatus returns Status
func (m DetectStage) GetStatus() RemediationRunStageStatusEnum {
return m.Status
}
// GetTimeCreated returns TimeCreated
func (m DetectStage) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
// GetTimeStarted returns TimeStarted
func (m DetectStage) GetTimeStarted() *common.SDKTime {
return m.TimeStarted
}
// GetTimeFinished returns TimeFinished
func (m DetectStage) GetTimeFinished() *common.SDKTime {
return m.TimeFinished
}
// GetSummary returns Summary
func (m DetectStage) GetSummary() *string {
return m.Summary
}
// GetRemediationRunId returns RemediationRunId
func (m DetectStage) GetRemediationRunId() *string {
return m.RemediationRunId
}
// GetPreviousStageType returns PreviousStageType
func (m DetectStage) GetPreviousStageType() RemediationRunStageTypeEnum {
return m.PreviousStageType
}
// GetNextStageType returns NextStageType
func (m DetectStage) GetNextStageType() RemediationRunStageTypeEnum {
return m.NextStageType
}
func (m DetectStage) 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 DetectStage) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingRemediationRunStageStatusEnum(string(m.Status)); !ok && m.Status != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Status: %s. Supported values are: %s.", m.Status, strings.Join(GetRemediationRunStageStatusEnumStringValues(), ",")))
}
if _, ok := GetMappingRemediationRunStageTypeEnum(string(m.PreviousStageType)); !ok && m.PreviousStageType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for PreviousStageType: %s. Supported values are: %s.", m.PreviousStageType, strings.Join(GetRemediationRunStageTypeEnumStringValues(), ",")))
}
if _, ok := GetMappingRemediationRunStageTypeEnum(string(m.NextStageType)); !ok && m.NextStageType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for NextStageType: %s. Supported values are: %s.", m.NextStageType, strings.Join(GetRemediationRunStageTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m DetectStage) MarshalJSON() (buff []byte, e error) {
type MarshalTypeDetectStage DetectStage
s := struct {
DiscriminatorParam string `json:"type"`
MarshalTypeDetectStage
}{
"DETECT",
(MarshalTypeDetectStage)(m),
}
return json.Marshal(&s)
}