@@ -116,6 +116,7 @@ public class Kubernetes {
116
116
private static final Boolean ALLOW_WATCH_BOOKMARKS = false ;
117
117
private static final String RESOURCE_VERSION = "" ;
118
118
private static final String RESOURCE_VERSION_MATCH_UNSET = null ;
119
+ private static final Boolean SEND_INITIAL_EVENTS_UNSET = null ;
119
120
private static final Integer TIMEOUT_SECONDS = 5 ;
120
121
private static final String DOMAIN_GROUP = "weblogic.oracle" ;
121
122
private static final String CLUSTER_GROUP = "weblogic.oracle" ;
@@ -411,6 +412,7 @@ public static V1DeploymentList listDeployments(String namespace) throws ApiExcep
411
412
null , // Integer | limit is a maximum number of responses to return for a list call.
412
413
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
413
414
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
415
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
414
416
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
415
417
Boolean .FALSE // Boolean | Watch for changes to the described resources.
416
418
);
@@ -794,6 +796,7 @@ public static V1PodList listPods(String namespace, String labelSelectors) throws
794
796
null , // maximum number of responses to return for a list call.
795
797
null , // shows changes that occur after that particular version of a resource.
796
798
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
799
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
797
800
null , // Timeout for the list/watch call.
798
801
Boolean .FALSE // Watch for changes to the described resources.
799
802
);
@@ -825,6 +828,7 @@ public static V1PodDisruptionBudgetList listPodDisruptionBudgets(String namespac
825
828
null , // maximum number of responses to return for a list call.
826
829
null , // shows changes that occur after that particular version of a resource.
827
830
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
831
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
828
832
null , // Timeout for the list/watch call.
829
833
Boolean .FALSE // Watch for changes to the described resources.
830
834
);
@@ -1075,6 +1079,7 @@ public static List<String> listNamespaces(String labelSelector) throws ApiExcept
1075
1079
null , // maximum number of responses to return for a list call
1076
1080
RESOURCE_VERSION , // shows changes that occur after that particular version of a resource
1077
1081
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
1082
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
1078
1083
TIMEOUT_SECONDS , // Timeout for the list/watch call
1079
1084
false // Watch for changes to the described resources
1080
1085
);
@@ -1107,6 +1112,7 @@ public static V1NamespaceList listNamespacesAsObjects() throws ApiException {
1107
1112
null , // maximum number of responses to return for a list call
1108
1113
RESOURCE_VERSION , // shows changes that occur after that particular version of a resource
1109
1114
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
1115
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
1110
1116
TIMEOUT_SECONDS , // Timeout for the list/watch call
1111
1117
false // Watch for changes to the described resources
1112
1118
);
@@ -1135,6 +1141,7 @@ public static V1Namespace getNamespace(String name) throws ApiException {
1135
1141
null , // maximum number of responses to return for a list call
1136
1142
RESOURCE_VERSION , // shows changes that occur after that particular version of a resource
1137
1143
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
1144
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
1138
1145
TIMEOUT_SECONDS , // Timeout for the list/watch call
1139
1146
false // Watch for changes to the described resources
1140
1147
);
@@ -1221,6 +1228,7 @@ public static List<CoreV1Event> listNamespacedEvents(String namespace) throws Ap
1221
1228
null , // Integer | limit is a maximum number of responses to return for a list call.
1222
1229
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
1223
1230
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
1231
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
1224
1232
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
1225
1233
Boolean .FALSE // Boolean | Watch for changes to the described resources.
1226
1234
);
@@ -1255,6 +1263,7 @@ public static List<CoreV1Event> listOpGeneratedNamespacedEvents(String namespace
1255
1263
null , // Integer | limit is a maximum number of responses to return for a list call.
1256
1264
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
1257
1265
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
1266
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
1258
1267
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
1259
1268
Boolean .FALSE // Boolean | Watch for changes to the described resources.
1260
1269
);
@@ -2061,6 +2070,7 @@ public static V1ConfigMapList listConfigMaps(String namespace) throws ApiExcepti
2061
2070
null , // maximum number of responses to return for a list call
2062
2071
RESOURCE_VERSION , // shows changes that occur after that particular version of a resource
2063
2072
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
2073
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
2064
2074
TIMEOUT_SECONDS , // Timeout for the list/watch call
2065
2075
false // Watch for changes to the described resources
2066
2076
);
@@ -2375,6 +2385,7 @@ public static V1PersistentVolumeList listPersistentVolumes(String labels) throws
2375
2385
null , // maximum number of responses to return for a list call
2376
2386
RESOURCE_VERSION , // shows changes that occur after that particular version of a resource
2377
2387
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
2388
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
2378
2389
TIMEOUT_SECONDS , // Timeout for the list/watch call
2379
2390
false // Watch for changes to the described resources
2380
2391
);
@@ -2769,6 +2780,7 @@ public static V1JobList listJobs(String namespace) throws ApiException {
2769
2780
null , // Integer | limit is a maximum number of responses to return for a list call.
2770
2781
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
2771
2782
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
2783
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
2772
2784
TIMEOUT_SECONDS , // Integer | Timeout for the list/watch call.
2773
2785
Boolean .FALSE // Boolean | Watch for changes to the described resources
2774
2786
);
@@ -2850,6 +2862,7 @@ public static V1ReplicaSetList listReplicaSets(String namespace) throws ApiExcep
2850
2862
null , // Integer | limit is a maximum number of responses to return for a list call.
2851
2863
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
2852
2864
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
2865
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
2853
2866
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
2854
2867
Boolean .FALSE // Boolean | Watch for changes to the described resources.
2855
2868
);
@@ -3006,6 +3019,7 @@ public static V1RoleBindingList listRoleBindingForAllNamespaces(String labelSele
3006
3019
PRETTY , // String | If true, then the output is pretty printed.
3007
3020
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3008
3021
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3022
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3009
3023
TIMEOUT_SECONDS , // Integer | Timeout for the list/watch call.
3010
3024
Boolean .FALSE // Boolean | Watch for changes to the described resources
3011
3025
);
@@ -3035,6 +3049,7 @@ public static V1ClusterRoleBindingList listClusterRoleBindings(String labelSelec
3035
3049
null , // Integer | limit is a maximum number of responses to return for a list call.
3036
3050
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3037
3051
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3052
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3038
3053
TIMEOUT_SECONDS , // Integer | Timeout for the list/watch call.
3039
3054
Boolean .FALSE // Boolean | Watch for changes to the described resources
3040
3055
);
@@ -3094,6 +3109,7 @@ public static V1RoleBindingList listNamespacedRoleBinding(String namespace)
3094
3109
null , // Integer | limit is a maximum number of responses to return for a list call.
3095
3110
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3096
3111
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3112
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3097
3113
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
3098
3114
Boolean .FALSE // Boolean | Watch for changes to the described resources.
3099
3115
);
@@ -3124,6 +3140,7 @@ public static V1ValidatingWebhookConfigurationList listValidatingWebhookConfigur
3124
3140
null , // Integer | limit is a maximum number of responses to return for a list call.
3125
3141
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3126
3142
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3143
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3127
3144
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
3128
3145
Boolean .FALSE // Boolean | Watch for changes to the described resources.
3129
3146
);
@@ -3180,6 +3197,7 @@ public static V1ClusterRoleList listClusterRoles(String labelSelector) throws Ap
3180
3197
null , // Integer | limit is a maximum number of responses to return for a list call.
3181
3198
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3182
3199
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3200
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3183
3201
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
3184
3202
Boolean .FALSE // Boolean | Watch for changes to the described resources.
3185
3203
);
@@ -3237,6 +3255,7 @@ public static V1RoleList listNamespacedRoles(String namespace) throws ApiExcepti
3237
3255
null , // Integer | limit is a maximum number of responses to return for a list call.
3238
3256
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3239
3257
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3258
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3240
3259
TIMEOUT_SECONDS , // Integer | Timeout for the list call.
3241
3260
Boolean .FALSE // Boolean | Watch for changes to the described resources.
3242
3261
);
@@ -3310,6 +3329,7 @@ public static V1IngressList listNamespacedIngresses(String namespace) throws Api
3310
3329
null , // Integer | limit is a maximum number of responses to return for a list call.
3311
3330
RESOURCE_VERSION , // String | Shows changes that occur after that particular version of a resource.
3312
3331
RESOURCE_VERSION_MATCH_UNSET , // String | how to match resource version, leave unset
3332
+ SEND_INITIAL_EVENTS_UNSET , // Boolean | if to send initial events
3313
3333
TIMEOUT_SECONDS , // Integer | Timeout for the list/watch call.
3314
3334
ALLOW_WATCH_BOOKMARKS // Boolean | Watch for changes to the described resources.
3315
3335
);
0 commit comments