//
// 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;
///
/// StatefulSet represents a set of pods with consistent identities.
/// Identities are defined as:
/// - Network: A single stable DNS and hostname.
/// - Storage: As many VolumeClaims as requested.
/// The StatefulSet guarantees that a given network identity will always
/// map to the same storage identity.
///
public partial class V1StatefulSet
{
///
/// Initializes a new instance of the V1StatefulSet class.
///
public V1StatefulSet()
{
CustomInit();
}
///
/// Initializes a new instance of the V1StatefulSet class.
///
/// APIVersion defines the versioned schema of
/// this representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
/// Kind is a string value representing the REST
/// resource this object represents. Servers may infer this from the
/// endpoint the client submits requests to. Cannot be updated. In
/// CamelCase. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
/// Spec defines the desired identities of pods in
/// this set.
/// Status is the current status of Pods in this
/// StatefulSet. This data may be out of date by some window of
/// time.
public V1StatefulSet(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1StatefulSetSpec spec = default(V1StatefulSetSpec), V1StatefulSetStatus status = default(V1StatefulSetStatus))
{
ApiVersion = apiVersion;
Kind = kind;
Metadata = metadata;
Spec = spec;
Status = status;
CustomInit();
}
///
/// An initialization method that performs custom operations like setting defaults
///
partial void CustomInit();
///
/// Gets or sets aPIVersion defines the versioned schema of this
/// representation of an object. Servers should convert recognized
/// schemas to the latest internal value, and may reject unrecognized
/// values. More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
///
[JsonProperty(PropertyName = "apiVersion")]
public string ApiVersion { get; set; }
///
/// Gets or sets kind is a string value representing the REST resource
/// this object represents. Servers may infer this from the endpoint
/// the client submits requests to. Cannot be updated. In CamelCase.
/// More info:
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
///
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
///
///
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
///
/// Gets or sets spec defines the desired identities of pods in this
/// set.
///
[JsonProperty(PropertyName = "spec")]
public V1StatefulSetSpec Spec { get; set; }
///
/// Gets or sets status is the current status of Pods in this
/// StatefulSet. This data may be out of date by some window of time.
///
[JsonProperty(PropertyName = "status")]
public V1StatefulSetStatus Status { get; set; }
///
/// Validate the object.
///
///
/// Thrown if validation fails
///
public virtual void Validate()
{
if (Metadata != null)
{
Metadata.Validate();
}
if (Spec != null)
{
Spec.Validate();
}
if (Status != null)
{
Status.Validate();
}
}
}
}