Show / Hide Table of Contents

Class UpdateLoadBalancerShapeDetails

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

Properties

ShapeDetails

Declaration
[JsonProperty(PropertyName = "shapeDetails")]
public ShapeDetails ShapeDetails { get; set; }
Property Value
Type Description
ShapeDetails

The configuration details to update load balancer to a different profile.

ShapeName

Declaration
[Required(ErrorMessage = "ShapeName is required.")]
[JsonProperty(PropertyName = "shapeName")]
public string ShapeName { get; set; }
Property Value
Type Description
string

The new shape name for the load balancer.
Allowed values are :

  • 10Mbps
  • 100Mbps
  • 400Mbps
  • 8000Mbps
  • Flexible
    Example: flexible * NOTE: Fixed shapes 10Mbps, 100Mbps, 400Mbps, 8000Mbps will be deprecated after May 2023. This api * will only support Flexible shape after that date.
Remarks

Required

In this article
Back to top