Show / Hide Table of Contents

Class ShapeNetworkBandwidthOptions

Properties of network bandwidth.

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

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