Show / Hide Table of Contents

Class LoadBalancerTrafficShiftDeployStageSummary

Specifies load balancer traffic shift stage.

Inheritance
object
DeployStageSummary
LoadBalancerTrafficShiftDeployStageSummary
Inherited Members
DeployStageSummary.Id
DeployStageSummary.Description
DeployStageSummary.DisplayName
DeployStageSummary.ProjectId
DeployStageSummary.DeployPipelineId
DeployStageSummary.CompartmentId
DeployStageSummary.TimeCreated
DeployStageSummary.TimeUpdated
DeployStageSummary.LifecycleState
DeployStageSummary.LifecycleDetails
DeployStageSummary.DeployStagePredecessorCollection
DeployStageSummary.FreeformTags
DeployStageSummary.DefinedTags
DeployStageSummary.SystemTags
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 LoadBalancerTrafficShiftDeployStageSummary : DeployStageSummary

Properties

BlueBackendIps

Declaration
[Required(ErrorMessage = "BlueBackendIps is required.")]
[JsonProperty(PropertyName = "blueBackendIps")]
public BackendSetIpCollection BlueBackendIps { get; set; }
Property Value
Type Description
BackendSetIpCollection
Remarks

Required

GreenBackendIps

Declaration
[Required(ErrorMessage = "GreenBackendIps is required.")]
[JsonProperty(PropertyName = "greenBackendIps")]
public BackendSetIpCollection GreenBackendIps { get; set; }
Property Value
Type Description
BackendSetIpCollection
Remarks

Required

LoadBalancerConfig

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

Required

RollbackPolicy

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

RolloutPolicy

Declaration
[Required(ErrorMessage = "RolloutPolicy is required.")]
[JsonProperty(PropertyName = "rolloutPolicy")]
public LoadBalancerTrafficShiftRolloutPolicy RolloutPolicy { get; set; }
Property Value
Type Description
LoadBalancerTrafficShiftRolloutPolicy
Remarks

Required

TrafficShiftTarget

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

Remarks

Required

In this article
Back to top