-
Notifications
You must be signed in to change notification settings - Fork 82
/
host_port_scan_result.go
52 lines (37 loc) · 2.03 KB
/
host_port_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
// Copyright (c) 2016, 2018, 2021, 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) APIs to manage scan recipes, targets, and reports.
//
package vulnerabilityscanning
import (
"github.com/oracle/oci-go-sdk/v43/common"
)
// HostPortScanResult A scan result for a host port scan
type HostPortScanResult 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"`
// 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 open ports (including interface) found in this scan
OpenPorts []HostPortScanResultOpenPort `mandatory:"true" json:"openPorts"`
// Name of the resource
DisplayName *string `mandatory:"false" json:"displayName"`
// Total number of open ports across all attached VNICs found in this scan
OpenPortCount *int `mandatory:"false" json:"openPortCount"`
// The current state of the result.
LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"`
}
func (m HostPortScanResult) String() string {
return common.PointerString(m)
}