Show / Hide Table of Contents

Class ShapeNetworkingBandwidthOptions

For a flexible shape, the amount of networking bandwidth available for container instances that use this shape.

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.ContainerinstancesService.Models
Assembly: OCI.DotNetSDK.Containerinstances.dll
Syntax
public class ShapeNetworkingBandwidthOptions

Properties

DefaultPerOcpuInGbps

Declaration
[Required(ErrorMessage = "DefaultPerOcpuInGbps is required.")]
[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.

Remarks

Required

MaxInGbps

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

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

Remarks

Required

MinInGbps

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

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

Remarks

Required

In this article
Back to top