/// <summary> /// Initializes a new instance of the V1Pod 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: /// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources</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: /// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds</param> /// <param name="metadata">Standard object's metadata. More info: /// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata</param> /// <param name="spec">Specification of the desired behavior of the /// pod. More info: /// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status</param> /// <param name="status">Most recently observed status of the pod. This /// data may not be up to date. Populated by the system. Read-only. /// More info: /// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status</param> public V1Pod(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1PodSpec spec = default(V1PodSpec), V1PodStatus status = default(V1PodStatus)) { ApiVersion = apiVersion; Kind = kind; Metadata = metadata; Spec = spec; Status = status; CustomInit(); }
/// <summary> /// Initializes a new instance of the V1PodTemplateSpec class. /// </summary> /// <param name="metadata">Standard object's metadata. More info: /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata</param> /// <param name="spec">Specification of the desired behavior of the /// pod. More info: /// https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status</param> public V1PodTemplateSpec(V1ObjectMeta metadata = default(V1ObjectMeta), V1PodSpec spec = default(V1PodSpec)) { Metadata = metadata; Spec = spec; CustomInit(); }