Show / Hide Table of Contents

Class SupportedCapabilities

Specifies the capabilities that the Dedicated Virtual Machine Host (DVMH) Shape or Virtual Machine Instance Shape could support.

Inheritance
object
SupportedCapabilities
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class SupportedCapabilities

Properties

IsBurstableSupported

Declaration
[JsonProperty(PropertyName = "isBurstableSupported")]
public bool? IsBurstableSupported { get; set; }
Property Value
Type Description
bool?

Specifies if the Dedicated Virtual Machine Host (DVMH) is to running only Burstable VMs. If true, only Burstable VMs can be launched. If false, Burstable VMs cannot be launched.

IsMemoryEncryptionSupported

Declaration
[Required(ErrorMessage = "IsMemoryEncryptionSupported is required.")]
[JsonProperty(PropertyName = "isMemoryEncryptionSupported")]
public bool? IsMemoryEncryptionSupported { get; set; }
Property Value
Type Description
bool?

Whether the DVMH shape could support confidential VMs or the VM instance shape could be confidential.

Remarks

Required

In this article
Back to top