-
Notifications
You must be signed in to change notification settings - Fork 82
/
vm_asset.go
168 lines (131 loc) · 5.47 KB
/
vm_asset.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
// 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.
// Oracle Cloud Bridge API
//
// API for Oracle Cloud Bridge service.
//
package cloudbridge
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// VmAsset VM type of asset.
type VmAsset struct {
// Inventory ID to which an asset belongs to.
InventoryId *string `mandatory:"true" json:"inventoryId"`
// Asset OCID that is immutable on creation.
Id *string `mandatory:"true" json:"id"`
// The OCID of the compartment to which an asset belongs to.
CompartmentId *string `mandatory:"true" json:"compartmentId"`
// The source key that the asset belongs to.
SourceKey *string `mandatory:"true" json:"sourceKey"`
// The key of the asset from the external environment.
ExternalAssetKey *string `mandatory:"true" json:"externalAssetKey"`
// The time when the asset was created. An RFC3339 formatted datetime string.
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
// The time when the asset was updated. An RFC3339 formatted datetime string.
TimeUpdated *common.SDKTime `mandatory:"true" json:"timeUpdated"`
// Asset display name.
DisplayName *string `mandatory:"false" json:"displayName"`
// List of asset source OCID.
AssetSourceIds []string `mandatory:"false" json:"assetSourceIds"`
// The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no
// predefined name, type, or namespace/scope. For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
// The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
// The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
// Example: `{orcl-cloud: {free-tier-retain: true}}`
SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"`
Compute *ComputeProperties `mandatory:"false" json:"compute"`
Vm *VmProperties `mandatory:"false" json:"vm"`
// The current state of the asset.
LifecycleState AssetLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
}
//GetDisplayName returns DisplayName
func (m VmAsset) GetDisplayName() *string {
return m.DisplayName
}
//GetInventoryId returns InventoryId
func (m VmAsset) GetInventoryId() *string {
return m.InventoryId
}
//GetId returns Id
func (m VmAsset) GetId() *string {
return m.Id
}
//GetCompartmentId returns CompartmentId
func (m VmAsset) GetCompartmentId() *string {
return m.CompartmentId
}
//GetSourceKey returns SourceKey
func (m VmAsset) GetSourceKey() *string {
return m.SourceKey
}
//GetExternalAssetKey returns ExternalAssetKey
func (m VmAsset) GetExternalAssetKey() *string {
return m.ExternalAssetKey
}
//GetTimeCreated returns TimeCreated
func (m VmAsset) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
//GetTimeUpdated returns TimeUpdated
func (m VmAsset) GetTimeUpdated() *common.SDKTime {
return m.TimeUpdated
}
//GetAssetSourceIds returns AssetSourceIds
func (m VmAsset) GetAssetSourceIds() []string {
return m.AssetSourceIds
}
//GetLifecycleState returns LifecycleState
func (m VmAsset) GetLifecycleState() AssetLifecycleStateEnum {
return m.LifecycleState
}
//GetFreeformTags returns FreeformTags
func (m VmAsset) GetFreeformTags() map[string]string {
return m.FreeformTags
}
//GetDefinedTags returns DefinedTags
func (m VmAsset) GetDefinedTags() map[string]map[string]interface{} {
return m.DefinedTags
}
//GetSystemTags returns SystemTags
func (m VmAsset) GetSystemTags() map[string]map[string]interface{} {
return m.SystemTags
}
func (m VmAsset) 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 VmAsset) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingAssetLifecycleStateEnum(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(GetAssetLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// MarshalJSON marshals to json representation
func (m VmAsset) MarshalJSON() (buff []byte, e error) {
type MarshalTypeVmAsset VmAsset
s := struct {
DiscriminatorParam string `json:"assetType"`
MarshalTypeVmAsset
}{
"VM",
(MarshalTypeVmAsset)(m),
}
return json.Marshal(&s)
}