// // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. // namespace k8s.Models { using Newtonsoft.Json; using System.Linq; /// /// ServiceStatus represents the current status of a service. /// public partial class Corev1ServiceStatus { /// /// Initializes a new instance of the Corev1ServiceStatus class. /// public Corev1ServiceStatus() { CustomInit(); } /// /// Initializes a new instance of the Corev1ServiceStatus class. /// /// LoadBalancer contains the current status /// of the load-balancer, if one is present. public Corev1ServiceStatus(Corev1LoadBalancerStatus loadBalancer = default(Corev1LoadBalancerStatus)) { LoadBalancer = loadBalancer; CustomInit(); } /// /// An initialization method that performs custom operations like setting defaults /// partial void CustomInit(); /// /// Gets or sets loadBalancer contains the current status of the /// load-balancer, if one is present. /// [JsonProperty(PropertyName = "loadBalancer")] public Corev1LoadBalancerStatus LoadBalancer { get; set; } } }