Show / Hide Table of Contents

Class NginxBlueGreenStrategy

Specifies the NGINX blue green release strategy.

Inheritance
object
OkeBlueGreenStrategy
NginxBlueGreenStrategy
Inherited Members
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 NginxBlueGreenStrategy : OkeBlueGreenStrategy

Properties

IngressName

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

Name of the Ingress resource.

Remarks

Required

NamespaceA

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

Namespace A for deployment. Example: namespaceA - first Namespace name.

Remarks

Required

NamespaceB

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

Namespace B for deployment. Example: namespaceB - second Namespace name.

Remarks

Required

In this article
Back to top