-
Notifications
You must be signed in to change notification settings - Fork 82
/
intel_vm_platform_config.go
65 lines (52 loc) · 2.39 KB
/
intel_vm_platform_config.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
// 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.
// Core Services API
//
// API covering the Networking (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm),
// Compute (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm), and
// Block Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/overview.htm) services. Use this API
// to manage resources such as virtual cloud networks (VCNs), compute instances, and
// block storage volumes.
//
package core
import (
"encoding/json"
"github.com/oracle/oci-go-sdk/v47/common"
)
// IntelVmPlatformConfig The platform configuration of a virtual machine instance that uses the Intel platform.
type IntelVmPlatformConfig struct {
// Whether Secure Boot is enabled on the instance.
IsSecureBootEnabled *bool `mandatory:"false" json:"isSecureBootEnabled"`
// Whether the Trusted Platform Module (TPM) is enabled on the instance.
IsTrustedPlatformModuleEnabled *bool `mandatory:"false" json:"isTrustedPlatformModuleEnabled"`
// Whether the Measured Boot feature is enabled on the instance.
IsMeasuredBootEnabled *bool `mandatory:"false" json:"isMeasuredBootEnabled"`
}
//GetIsSecureBootEnabled returns IsSecureBootEnabled
func (m IntelVmPlatformConfig) GetIsSecureBootEnabled() *bool {
return m.IsSecureBootEnabled
}
//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled
func (m IntelVmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool {
return m.IsTrustedPlatformModuleEnabled
}
//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled
func (m IntelVmPlatformConfig) GetIsMeasuredBootEnabled() *bool {
return m.IsMeasuredBootEnabled
}
func (m IntelVmPlatformConfig) String() string {
return common.PointerString(m)
}
// MarshalJSON marshals to json representation
func (m IntelVmPlatformConfig) MarshalJSON() (buff []byte, e error) {
type MarshalTypeIntelVmPlatformConfig IntelVmPlatformConfig
s := struct {
DiscriminatorParam string `json:"type"`
MarshalTypeIntelVmPlatformConfig
}{
"INTEL_VM",
(MarshalTypeIntelVmPlatformConfig)(m),
}
return json.Marshal(&s)
}