gen v1.15.0
This commit is contained in:
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user