Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the V1PersistentVolumeClaim 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/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/api-conventions.md#types-kinds</param>
 /// <param name="metadata">Standard object's metadata. More info:
 /// https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata</param>
 /// <param name="spec">Spec defines the desired characteristics of a
 /// volume requested by a pod author. More info:
 /// https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims</param>
 /// <param name="status">Status represents the current
 /// information/status of a persistent volume claim. Read-only. More
 /// info:
 /// https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims</param>
 public V1PersistentVolumeClaim(string apiVersion = default(string), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta), V1PersistentVolumeClaimSpec spec = default(V1PersistentVolumeClaimSpec), V1PersistentVolumeClaimStatus status = default(V1PersistentVolumeClaimStatus))
 {
     ApiVersion = apiVersion;
     Kind       = kind;
     Metadata   = metadata;
     Spec       = spec;
     Status     = status;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the V1PersistentVolumeClaimTemplate
 /// class.
 /// </summary>
 /// <param name="spec">The specification for the PersistentVolumeClaim.
 /// The entire content is copied unchanged into the PVC that gets
 /// created from this template. The same fields as in a
 /// PersistentVolumeClaim are also valid here.</param>
 /// <param name="metadata">May contain labels and annotations that will
 /// be copied into the PVC when creating it. No other fields are
 /// allowed and will be rejected during validation.</param>
 public V1PersistentVolumeClaimTemplate(V1PersistentVolumeClaimSpec spec, V1ObjectMeta metadata = default(V1ObjectMeta))
 {
     Metadata = metadata;
     Spec     = spec;
     CustomInit();
 }