|
49 | 49 | "EventSeries",
|
50 | 50 | "EventSource",
|
51 | 51 | "GetOptions",
|
| 52 | + "GroupKind", |
52 | 53 | "GroupVersionKind",
|
53 | 54 | "GroupVersionResource",
|
54 | 55 | "Info",
|
@@ -149,6 +150,8 @@ public class KubeSchema {
|
149 | 150 | private EventSource eventSource;
|
150 | 151 | @JsonProperty("GetOptions")
|
151 | 152 | private GetOptions getOptions;
|
| 153 | + @JsonProperty("GroupKind") |
| 154 | + private GroupKind groupKind; |
152 | 155 | @JsonProperty("GroupVersionKind")
|
153 | 156 | private GroupVersionKind groupVersionKind;
|
154 | 157 | @JsonProperty("GroupVersionResource")
|
@@ -249,6 +252,7 @@ public KubeSchema() {
|
249 | 252 | * @param secretList
|
250 | 253 | * @param info
|
251 | 254 | * @param deleteOptions
|
| 255 | + * @param groupKind |
252 | 256 | * @param groupVersionResource
|
253 | 257 | * @param limitRangeList
|
254 | 258 | * @param toleration
|
@@ -299,7 +303,7 @@ public KubeSchema() {
|
299 | 303 | * @param endpointPort
|
300 | 304 | * @param config
|
301 | 305 | */
|
302 |
| - public KubeSchema(APIGroup aPIGroup, APIGroupList aPIGroupList, APIResource aPIResource, APIResourceList aPIResourceList, APIService aPIService, APIServiceList aPIServiceList, BaseKubernetesList baseKubernetesList, Binding binding, ComponentStatus componentStatus, ComponentStatusList componentStatusList, Condition condition, Config config, ConfigMap configMap, ConfigMapList configMapList, ContainerStatus containerStatus, CreateOptions createOptions, DeleteOptions deleteOptions, EndpointPort endpointPort, Endpoints endpoints, EndpointsList endpointsList, EnvVar envVar, Event event, EventList eventList, EventSeries eventSeries, EventSource eventSource, GetOptions getOptions, GroupVersionKind groupVersionKind, GroupVersionResource groupVersionResource, Info info, LimitRangeList limitRangeList, ListOptions listOptions, MicroTime microTime, Namespace namespace, NamespaceList namespaceList, Node node, NodeList nodeList, ObjectMeta objectMeta, Patch patch, PatchOptions patchOptions, PersistentVolume persistentVolume, PersistentVolumeClaim persistentVolumeClaim, PersistentVolumeClaimList persistentVolumeClaimList, PersistentVolumeList persistentVolumeList, PodExecOptions podExecOptions, PodList podList, PodTemplateList podTemplateList, Quantity quantity, ReplicationControllerList replicationControllerList, ResourceQuota resourceQuota, ResourceQuotaList resourceQuotaList, RootPaths rootPaths, Secret secret, SecretList secretList, ServiceAccount serviceAccount, ServiceAccountList serviceAccountList, ServiceList serviceList, Status status, String time, Toleration toleration, TopologySelectorTerm topologySelectorTerm, TypeMeta typeMeta, UpdateOptions updateOptions, WatchEvent watchEvent) { |
| 306 | + public KubeSchema(APIGroup aPIGroup, APIGroupList aPIGroupList, APIResource aPIResource, APIResourceList aPIResourceList, APIService aPIService, APIServiceList aPIServiceList, BaseKubernetesList baseKubernetesList, Binding binding, ComponentStatus componentStatus, ComponentStatusList componentStatusList, Condition condition, Config config, ConfigMap configMap, ConfigMapList configMapList, ContainerStatus containerStatus, CreateOptions createOptions, DeleteOptions deleteOptions, EndpointPort endpointPort, Endpoints endpoints, EndpointsList endpointsList, EnvVar envVar, Event event, EventList eventList, EventSeries eventSeries, EventSource eventSource, GetOptions getOptions, GroupKind groupKind, GroupVersionKind groupVersionKind, GroupVersionResource groupVersionResource, Info info, LimitRangeList limitRangeList, ListOptions listOptions, MicroTime microTime, Namespace namespace, NamespaceList namespaceList, Node node, NodeList nodeList, ObjectMeta objectMeta, Patch patch, PatchOptions patchOptions, PersistentVolume persistentVolume, PersistentVolumeClaim persistentVolumeClaim, PersistentVolumeClaimList persistentVolumeClaimList, PersistentVolumeList persistentVolumeList, PodExecOptions podExecOptions, PodList podList, PodTemplateList podTemplateList, Quantity quantity, ReplicationControllerList replicationControllerList, ResourceQuota resourceQuota, ResourceQuotaList resourceQuotaList, RootPaths rootPaths, Secret secret, SecretList secretList, ServiceAccount serviceAccount, ServiceAccountList serviceAccountList, ServiceList serviceList, Status status, String time, Toleration toleration, TopologySelectorTerm topologySelectorTerm, TypeMeta typeMeta, UpdateOptions updateOptions, WatchEvent watchEvent) { |
303 | 307 | super();
|
304 | 308 | this.aPIGroup = aPIGroup;
|
305 | 309 | this.aPIGroupList = aPIGroupList;
|
@@ -327,6 +331,7 @@ public KubeSchema(APIGroup aPIGroup, APIGroupList aPIGroupList, APIResource aPIR
|
327 | 331 | this.eventSeries = eventSeries;
|
328 | 332 | this.eventSource = eventSource;
|
329 | 333 | this.getOptions = getOptions;
|
| 334 | + this.groupKind = groupKind; |
330 | 335 | this.groupVersionKind = groupVersionKind;
|
331 | 336 | this.groupVersionResource = groupVersionResource;
|
332 | 337 | this.info = info;
|
@@ -626,6 +631,16 @@ public void setGetOptions(GetOptions getOptions) {
|
626 | 631 | this.getOptions = getOptions;
|
627 | 632 | }
|
628 | 633 |
|
| 634 | + @JsonProperty("GroupKind") |
| 635 | + public GroupKind getGroupKind() { |
| 636 | + return groupKind; |
| 637 | + } |
| 638 | + |
| 639 | + @JsonProperty("GroupKind") |
| 640 | + public void setGroupKind(GroupKind groupKind) { |
| 641 | + this.groupKind = groupKind; |
| 642 | + } |
| 643 | + |
629 | 644 | @JsonProperty("GroupVersionKind")
|
630 | 645 | public GroupVersionKind getGroupVersionKind() {
|
631 | 646 | return groupVersionKind;
|
|
0 commit comments