Show / Hide Table of Contents

Class DetachLoadBalancerDetails

Represents a load balancer that is to be detached from an instance pool.

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

Properties

BackendSetName

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

The name of the backend set on the load balancer to detach from the instance pool.

Remarks

Required

LoadBalancerId

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

The OCID of the load balancer to detach from the instance pool.

Remarks

Required

In this article
Back to top