-
Notifications
You must be signed in to change notification settings - Fork 82
/
host_details.go
120 lines (100 loc) · 4.94 KB
/
host_details.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
// 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.
// Operations Insights API
//
// Use the Operations Insights API to perform data extraction operations to obtain database
// resource utilization, performance statistics, and reference information. For more information,
// see About Oracle Cloud Infrastructure Operations Insights (https://docs.cloud.oracle.com/en-us/iaas/operations-insights/doc/operations-insights.html).
//
package opsi
import (
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// HostDetails Partial information about a host which includes id, name, type.
type HostDetails struct {
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host.
Id *string `mandatory:"true" json:"id"`
// The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// The host name. The host name is unique amongst the hosts managed by the same management agent.
HostName *string `mandatory:"true" json:"hostName"`
// Platform type.
// Supported platformType(s) for MACS-managed external host insight: [LINUX, SOLARIS, WINDOWS].
// Supported platformType(s) for MACS-managed cloud host insight: [LINUX].
// Supported platformType(s) for EM-managed external host insight: [LINUX, SOLARIS, SUNOS, ZLINUX, WINDOWS, AIX].
PlatformType HostDetailsPlatformTypeEnum `mandatory:"true" json:"platformType"`
// The identifier of the agent.
AgentIdentifier *string `mandatory:"true" json:"agentIdentifier"`
// The user-friendly name for the host. The name does not have to be unique.
HostDisplayName *string `mandatory:"false" json:"hostDisplayName"`
}
func (m HostDetails) 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 HostDetails) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingHostDetailsPlatformTypeEnum(string(m.PlatformType)); !ok && m.PlatformType != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for PlatformType: %s. Supported values are: %s.", m.PlatformType, strings.Join(GetHostDetailsPlatformTypeEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// HostDetailsPlatformTypeEnum Enum with underlying type: string
type HostDetailsPlatformTypeEnum string
// Set of constants representing the allowable values for HostDetailsPlatformTypeEnum
const (
HostDetailsPlatformTypeLinux HostDetailsPlatformTypeEnum = "LINUX"
HostDetailsPlatformTypeSolaris HostDetailsPlatformTypeEnum = "SOLARIS"
HostDetailsPlatformTypeSunos HostDetailsPlatformTypeEnum = "SUNOS"
HostDetailsPlatformTypeZlinux HostDetailsPlatformTypeEnum = "ZLINUX"
HostDetailsPlatformTypeWindows HostDetailsPlatformTypeEnum = "WINDOWS"
HostDetailsPlatformTypeAix HostDetailsPlatformTypeEnum = "AIX"
)
var mappingHostDetailsPlatformTypeEnum = map[string]HostDetailsPlatformTypeEnum{
"LINUX": HostDetailsPlatformTypeLinux,
"SOLARIS": HostDetailsPlatformTypeSolaris,
"SUNOS": HostDetailsPlatformTypeSunos,
"ZLINUX": HostDetailsPlatformTypeZlinux,
"WINDOWS": HostDetailsPlatformTypeWindows,
"AIX": HostDetailsPlatformTypeAix,
}
var mappingHostDetailsPlatformTypeEnumLowerCase = map[string]HostDetailsPlatformTypeEnum{
"linux": HostDetailsPlatformTypeLinux,
"solaris": HostDetailsPlatformTypeSolaris,
"sunos": HostDetailsPlatformTypeSunos,
"zlinux": HostDetailsPlatformTypeZlinux,
"windows": HostDetailsPlatformTypeWindows,
"aix": HostDetailsPlatformTypeAix,
}
// GetHostDetailsPlatformTypeEnumValues Enumerates the set of values for HostDetailsPlatformTypeEnum
func GetHostDetailsPlatformTypeEnumValues() []HostDetailsPlatformTypeEnum {
values := make([]HostDetailsPlatformTypeEnum, 0)
for _, v := range mappingHostDetailsPlatformTypeEnum {
values = append(values, v)
}
return values
}
// GetHostDetailsPlatformTypeEnumStringValues Enumerates the set of values in String for HostDetailsPlatformTypeEnum
func GetHostDetailsPlatformTypeEnumStringValues() []string {
return []string{
"LINUX",
"SOLARIS",
"SUNOS",
"ZLINUX",
"WINDOWS",
"AIX",
}
}
// GetMappingHostDetailsPlatformTypeEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingHostDetailsPlatformTypeEnum(val string) (HostDetailsPlatformTypeEnum, bool) {
enum, ok := mappingHostDetailsPlatformTypeEnumLowerCase[strings.ToLower(val)]
return enum, ok
}