2017-10-19 19:53:02 +00:00
|
|
|
// <auto-generated>
|
|
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
2017-06-06 23:02:14 -07:00
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is
|
|
|
|
|
// regenerated.
|
2017-10-19 19:53:02 +00:00
|
|
|
// </auto-generated>
|
2017-06-06 23:02:14 -07:00
|
|
|
|
|
|
|
|
namespace k8s.Models
|
|
|
|
|
{
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Status is a return value for calls that don't return other objects.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class V1Status
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the V1Status class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public V1Status()
|
|
|
|
|
{
|
2017-10-19 19:53:02 +00:00
|
|
|
CustomInit();
|
2017-06-06 23:02:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the V1Status class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="apiVersion">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:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="code">Suggested HTTP return code for this status, 0 if
|
|
|
|
|
/// not set.</param>
|
|
|
|
|
/// <param name="details">Extended data associated with the reason.
|
|
|
|
|
/// Each reason may define its own extended details. This field is
|
|
|
|
|
/// optional and the data returned is not guaranteed to conform to any
|
|
|
|
|
/// schema except that defined by the reason type.</param>
|
|
|
|
|
/// <param name="kind">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:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="message">A human-readable description of the status of
|
|
|
|
|
/// this operation.</param>
|
|
|
|
|
/// <param name="metadata">Standard list metadata. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
/// <param name="reason">A machine-readable description of why this
|
|
|
|
|
/// operation is in the "Failure" status. If this value is empty there
|
|
|
|
|
/// is no information available. A Reason clarifies an HTTP status code
|
|
|
|
|
/// but does not override it.</param>
|
|
|
|
|
/// <param name="status">Status of the operation. One of: "Success" or
|
|
|
|
|
/// "Failure". More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status</param>
|
2017-06-06 23:02:14 -07:00
|
|
|
public V1Status(string apiVersion = default(string), int? code = default(int?), V1StatusDetails details = default(V1StatusDetails), string kind = default(string), string message = default(string), V1ListMeta metadata = default(V1ListMeta), string reason = default(string), string status = default(string))
|
|
|
|
|
{
|
|
|
|
|
ApiVersion = apiVersion;
|
|
|
|
|
Code = code;
|
|
|
|
|
Details = details;
|
|
|
|
|
Kind = kind;
|
|
|
|
|
Message = message;
|
|
|
|
|
Metadata = metadata;
|
|
|
|
|
Reason = reason;
|
|
|
|
|
Status = status;
|
|
|
|
|
CustomInit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An initialization method that performs custom operations like setting defaults
|
|
|
|
|
/// </summary>
|
|
|
|
|
partial void CustomInit();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#resources
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "apiVersion")]
|
|
|
|
|
public string ApiVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets suggested HTTP return code for this status, 0 if not
|
|
|
|
|
/// set.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "code")]
|
|
|
|
|
public int? Code { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets extended data associated with the reason. Each reason
|
|
|
|
|
/// may define its own extended details. This field is optional and the
|
|
|
|
|
/// data returned is not guaranteed to conform to any schema except
|
|
|
|
|
/// that defined by the reason type.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "details")]
|
|
|
|
|
public V1StatusDetails Details { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 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:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "kind")]
|
|
|
|
|
public string Kind { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a human-readable description of the status of this
|
|
|
|
|
/// operation.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "message")]
|
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets standard list metadata. More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "metadata")]
|
|
|
|
|
public V1ListMeta Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a machine-readable description of why this operation
|
|
|
|
|
/// is in the "Failure" status. If this value is empty there is no
|
|
|
|
|
/// information available. A Reason clarifies an HTTP status code but
|
|
|
|
|
/// does not override it.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "reason")]
|
|
|
|
|
public string Reason { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets status of the operation. One of: "Success" or
|
|
|
|
|
/// "Failure". More info:
|
2017-10-19 19:53:02 +00:00
|
|
|
/// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
|
2017-06-06 23:02:14 -07:00
|
|
|
/// </summary>
|
|
|
|
|
[JsonProperty(PropertyName = "status")]
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|