Files
csharp/src/KubernetesClient/generated/Models/V1ConfigMap.cs

133 lines
6.4 KiB
C#
Raw Normal View History

2017-10-19 19:53:02 +00:00
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
2017-10-19 19:53:02 +00:00
// </auto-generated>
namespace k8s.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
/// <summary>
/// ConfigMap holds configuration data for pods to consume.
/// </summary>
public partial class V1ConfigMap
{
/// <summary>
/// Initializes a new instance of the V1ConfigMap class.
/// </summary>
public V1ConfigMap()
{
2017-10-19 19:53:02 +00:00
CustomInit();
}
/// <summary>
/// Initializes a new instance of the V1ConfigMap 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>
2018-03-28 10:30:09 +08:00
/// <param name="binaryData">BinaryData contains the binary data. Each
/// key must consist of alphanumeric characters, '-', '_' or '.'.
/// BinaryData can contain byte sequences that are not in the UTF-8
/// range. The keys stored in BinaryData must not overlap with the ones
/// in the Data field, this is enforced during validation process.
/// Using this field will require 1.10+ apiserver and kubelet.</param>
/// <param name="data">Data contains the configuration data. Each key
2018-03-28 10:30:09 +08:00
/// must consist of alphanumeric characters, '-', '_' or '.'. Values
/// with non-UTF-8 byte sequences must use the BinaryData field. The
/// keys stored in Data must not overlap with the keys in the
/// BinaryData field, this is enforced during validation
/// process.</param>
/// <param name="immutable">Immutable, if set to true, ensures that
/// data stored in the ConfigMap cannot be updated (only object
/// metadata can be modified). If not set to true, the field can be
/// modified at any time. Defaulted to nil.</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>
public V1ConfigMap(string apiVersion = default(string), IDictionary<string, byte[]> binaryData = default(IDictionary<string, byte[]>), IDictionary<string, string> data = default(IDictionary<string, string>), bool? immutable = default(bool?), string kind = default(string), V1ObjectMeta metadata = default(V1ObjectMeta))
{
ApiVersion = apiVersion;
2018-03-28 10:30:09 +08:00
BinaryData = binaryData;
Data = data;
Immutable = immutable;
Kind = kind;
Metadata = metadata;
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:
/// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/// </summary>
[JsonProperty(PropertyName = "apiVersion")]
public string ApiVersion { get; set; }
2018-03-28 10:30:09 +08:00
/// <summary>
/// Gets or sets binaryData contains the binary data. Each key must
/// consist of alphanumeric characters, '-', '_' or '.'. BinaryData can
/// contain byte sequences that are not in the UTF-8 range. The keys
/// stored in BinaryData must not overlap with the ones in the Data
/// field, this is enforced during validation process. Using this field
/// will require 1.10+ apiserver and kubelet.
/// </summary>
[JsonProperty(PropertyName = "binaryData")]
public IDictionary<string, byte[]> BinaryData { get; set; }
/// <summary>
2017-10-19 19:53:02 +00:00
/// Gets or sets data contains the configuration data. Each key must
2018-03-28 10:30:09 +08:00
/// consist of alphanumeric characters, '-', '_' or '.'. Values with
/// non-UTF-8 byte sequences must use the BinaryData field. The keys
/// stored in Data must not overlap with the keys in the BinaryData
/// field, this is enforced during validation process.
/// </summary>
[JsonProperty(PropertyName = "data")]
public IDictionary<string, string> Data { get; set; }
/// <summary>
/// Gets or sets immutable, if set to true, ensures that data stored in
/// the ConfigMap cannot be updated (only object metadata can be
/// modified). If not set to true, the field can be modified at any
/// time. Defaulted to nil.
/// </summary>
[JsonProperty(PropertyName = "immutable")]
public bool? Immutable { 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:
/// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
/// </summary>
[JsonProperty(PropertyName = "kind")]
public string Kind { get; set; }
/// <summary>
/// Gets or sets standard object's metadata. More info:
/// https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
/// </summary>
[JsonProperty(PropertyName = "metadata")]
public V1ObjectMeta Metadata { get; set; }
}
}