gen v1.15.0

This commit is contained in:
Boshi Lian
2019-06-22 21:57:10 +00:00
committed by Boshi LIAN
parent d6cb191be5
commit 3805988160
53 changed files with 37162 additions and 1890 deletions

View File

@@ -30,10 +30,14 @@ namespace k8s.Models
/// <param name="name">Name is the name of the service</param>
/// <param name="namespaceProperty">Namespace is the namespace of the
/// service</param>
public Apiregistrationv1beta1ServiceReference(string name = default(string), string namespaceProperty = default(string))
/// <param name="port">If specified, the port on the service that
/// hosting webhook. Default to 443 for backward compatibility. `port`
/// should be a valid port number (1-65535, inclusive).</param>
public Apiregistrationv1beta1ServiceReference(string name = default(string), string namespaceProperty = default(string), int? port = default(int?))
{
Name = name;
NamespaceProperty = namespaceProperty;
Port = port;
CustomInit();
}
@@ -54,5 +58,13 @@ namespace k8s.Models
[JsonProperty(PropertyName = "namespace")]
public string NamespaceProperty { get; set; }
/// <summary>
/// Gets or sets if specified, the port on the service that hosting
/// webhook. Default to 443 for backward compatibility. `port` should
/// be a valid port number (1-65535, inclusive).
/// </summary>
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
}
}