Show / Hide Table of Contents

Class ShapeMaxVnicAttachmentOptions

For a flexible shape, the number of VNIC attachments that are available for instances that use this shape.
If this field is null, then this shape has a fixed maximum number of VNIC attachments equal to maxVnicAttachments.

Inheritance
object
ShapeMaxVnicAttachmentOptions
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 ShapeMaxVnicAttachmentOptions

Properties

DefaultPerOcpu

Declaration
[JsonProperty(PropertyName = "defaultPerOcpu")]
public float? DefaultPerOcpu { get; set; }
Property Value
Type Description
float?

The default number of VNIC attachments allowed per OCPU.

Max

Declaration
[JsonProperty(PropertyName = "max")]
public float? Max { get; set; }
Property Value
Type Description
float?

The highest maximum value of VNIC attachments.

Min

Declaration
[JsonProperty(PropertyName = "min")]
public int? Min { get; set; }
Property Value
Type Description
int?

The lowest maximum value of VNIC attachments.

In this article
Back to top