Show / Hide Table of Contents

Class ShapeNetworkingBandwidthOptions

For a flexible shape, the amount of networking bandwidth available for instances that use this shape.
If this field is null, then this shape has a fixed amount of bandwidth equivalent to networkingBandwidthInGbps.

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

Properties

DefaultPerOcpuInGbps

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

The default amount of networking bandwidth per OCPU, in gigabits per second.

MaxInGbps

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

The maximum amount of networking bandwidth, in gigabits per second.

MinInGbps

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

The minimum amount of networking bandwidth, in gigabits per second.

In this article
Back to top