Show / Hide Table of Contents

Class UpdateLoadBalancerTrafficShiftDeployStageDetails

Specifies load balancer traffic shift stage.

Inheritance
object
UpdateDeployStageDetails
UpdateLoadBalancerTrafficShiftDeployStageDetails
Inherited Members
UpdateDeployStageDetails.Description
UpdateDeployStageDetails.DisplayName
UpdateDeployStageDetails.DeployStagePredecessorCollection
UpdateDeployStageDetails.FreeformTags
UpdateDeployStageDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class UpdateLoadBalancerTrafficShiftDeployStageDetails : UpdateDeployStageDetails

Properties

BlueBackendIps

Declaration
[JsonProperty(PropertyName = "blueBackendIps")]
public BackendSetIpCollection BlueBackendIps { get; set; }
Property Value
Type Description
BackendSetIpCollection

GreenBackendIps

Declaration
[JsonProperty(PropertyName = "greenBackendIps")]
public BackendSetIpCollection GreenBackendIps { get; set; }
Property Value
Type Description
BackendSetIpCollection

LoadBalancerConfig

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

RollbackPolicy

Declaration
[JsonProperty(PropertyName = "rollbackPolicy")]
public DeployStageRollbackPolicy RollbackPolicy { get; set; }
Property Value
Type Description
DeployStageRollbackPolicy

RolloutPolicy

Declaration
[JsonProperty(PropertyName = "rolloutPolicy")]
public LoadBalancerTrafficShiftRolloutPolicy RolloutPolicy { get; set; }
Property Value
Type Description
LoadBalancerTrafficShiftRolloutPolicy

TrafficShiftTarget

Declaration
[JsonProperty(PropertyName = "trafficShiftTarget")]
[JsonConverter(typeof(StringEnumConverter))]
public LoadBalancerTrafficShiftDeployStage.TrafficShiftTargetEnum? TrafficShiftTarget { get; set; }
Property Value
Type Description
LoadBalancerTrafficShiftDeployStage.TrafficShiftTargetEnum?

Specifies the target or destination backend set. Example: BLUE - Traffic from the existing backends of managed Load Balance Listener to blue Backend IPs, as per rolloutPolicy. GREEN - Traffic from the existing backends of managed Load Balance Listener to blue Backend IPs ser as per rolloutPolicy.

In this article
Back to top