Gen v1.19.3 (#505)

* gen v1.19.3

* fix naming conflict

* bump ver to 3.0

* fix 401 throw

* add missing map
This commit is contained in:
Boshi Lian
2020-10-27 08:56:00 -07:00
committed by GitHub
parent e38525c13b
commit 7a1f9b95ef
114 changed files with 58491 additions and 28566 deletions

View File

@@ -33,12 +33,14 @@ namespace k8s.Models
/// <summary>
/// Initializes a new instance of the V1ConfigMapVolumeSource class.
/// </summary>
/// <param name="defaultMode">Optional: mode bits to use on created
/// files by default. Must be a value between 0 and 0777. Defaults to
/// 0644. Directories within the path are not affected by this setting.
/// This might be in conflict with other options that affect the file
/// mode, like fsGroup, and the result can be other mode bits
/// set.</param>
/// <param name="defaultMode">Optional: mode bits used to set
/// permissions on created files by default. Must be an octal value
/// between 0000 and 0777 or a decimal value between 0 and 511. YAML
/// accepts both octal and decimal values, JSON requires decimal values
/// for mode bits. Defaults to 0644. Directories within the path are
/// not affected by this setting. This might be in conflict with other
/// options that affect the file mode, like fsGroup, and the result can
/// be other mode bits set.</param>
/// <param name="items">If unspecified, each key-value pair in the Data
/// field of the referenced ConfigMap will be projected into the volume
/// as a file whose name is the key and content is the value. If
@@ -66,11 +68,14 @@ namespace k8s.Models
partial void CustomInit();
/// <summary>
/// Gets or sets optional: mode bits to use on created files by
/// default. Must be a value between 0 and 0777. Defaults to 0644.
/// Directories within the path are not affected by this setting. This
/// might be in conflict with other options that affect the file mode,
/// like fsGroup, and the result can be other mode bits set.
/// Gets or sets optional: mode bits used to set permissions on created
/// files by default. Must be an octal value between 0000 and 0777 or a
/// decimal value between 0 and 511. YAML accepts both octal and
/// decimal values, JSON requires decimal values for mode bits.
/// Defaults to 0644. Directories within the path are not affected by
/// this setting. This might be in conflict with other options that
/// affect the file mode, like fsGroup, and the result can be other
/// mode bits set.
/// </summary>
[JsonProperty(PropertyName = "defaultMode")]
public int? DefaultMode { get; set; }