-
Notifications
You must be signed in to change notification settings - Fork 82
/
host_agent_scan_result.go
84 lines (64 loc) · 3.73 KB
/
host_agent_scan_result.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
// 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.
// Scanning API
//
// Use the Vulnerability Scanning Service (VSS) API to manage scan recipes, targets, and reports. For more information, see the Vulnerability Scanning documentation (https://docs.cloud.oracle.com/iaas/scanning/home.htm).
//
package vulnerabilityscanning
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// HostAgentScanResult A scan result for a host agent scan
type HostAgentScanResult struct {
// Unique identifier of the scan
Id *string `mandatory:"true" json:"id"`
// Instance ID of the Compute Instance scanned
InstanceId *string `mandatory:"true" json:"instanceId"`
// Compartment ID of the resource. This is set to the same as the compartment ID of the scan target
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// Highest problem severity in this report
HighestProblemSeverity ScanResultProblemSeverityEnum `mandatory:"true" json:"highestProblemSeverity"`
// Operating system of the host
OperatingSystem *string `mandatory:"true" json:"operatingSystem"`
// Date and time the scan was started, as described in RFC 3339 (https://tools.ietf.org/rfc/rfc3339)
TimeStarted *common.SDKTime `mandatory:"true" json:"timeStarted"`
// Date and time the scan was completed, as described in RFC 3339 (https://tools.ietf.org/rfc/rfc3339)
TimeFinished *common.SDKTime `mandatory:"true" json:"timeFinished"`
// List of problems found in this scan
Problems []HostAgentScanResultProblem `mandatory:"true" json:"problems"`
// Name of the resource
DisplayName *string `mandatory:"false" json:"displayName"`
// Kernel version of the operating system
KernelVersion *string `mandatory:"false" json:"kernelVersion"`
// Total number of problems found in this scan
ProblemCount *int `mandatory:"false" json:"problemCount"`
// The current state of the result.
LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
// Vendor which was used for this host scan agent.
Vendor VendorTypeEnum `mandatory:"false" json:"vendor,omitempty"`
}
func (m HostAgentScanResult) 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 HostAgentScanResult) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingScanResultProblemSeverityEnum(string(m.HighestProblemSeverity)); !ok && m.HighestProblemSeverity != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for HighestProblemSeverity: %s. Supported values are: %s.", m.HighestProblemSeverity, strings.Join(GetScanResultProblemSeverityEnumStringValues(), ",")))
}
if _, ok := GetMappingLifecycleStateEnum(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(GetLifecycleStateEnumStringValues(), ",")))
}
if _, ok := GetMappingVendorTypeEnum(string(m.Vendor)); !ok && m.Vendor != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for Vendor: %s. Supported values are: %s.", m.Vendor, strings.Join(GetVendorTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}