Skip to content

Commit b1121ea

Browse files
authored
Merge pull request #191 from kubernetes-client/automated-generate-f06ee610
Automated Generate from openapi release-1.27
2 parents c5f7cf6 + 7768996 commit b1121ea

File tree

446 files changed

+41458
-21772
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

446 files changed

+41458
-21772
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ list all pods:
9393
0, /* limit */
9494
NULL, /* resourceVersion */
9595
NULL, /* resourceVersionMatch */
96+
0, /* sendInitialEvents */
9697
0, /* timeoutSeconds */
9798
0 /* watch */
9899
);
@@ -138,6 +139,7 @@ list all pods in cluster:
138139
0, /* limit */
139140
NULL, /* resourceVersion */
140141
NULL, /* resourceVersionMatch */
142+
0, /* sendInitialEvents */
141143
0, /* timeoutSeconds */
142144
0 /* watch */
143145
);

examples/auth_provider/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ void list_pod(apiClient_t * apiClient)
1717
0, /* limit */
1818
NULL, /* resourceVersion */
1919
NULL, /* resourceVersionMatch */
20+
0, /* sendInitialEvents */
2021
0, /* timeoutSeconds */
2122
0 /* watch */
2223
);

examples/configmap/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ void list_configmap(apiClient_t * apiClient, char *namespace_)
7979
0, // int limit
8080
NULL, // char * resourceVersion
8181
NULL, // char * resourceVersionMatch
82+
0, // sendInitialEvents
8283
0, // int timeoutSeconds
8384
0 //int watch
8485
);

examples/exec_provider/list_pod_by_exec_provider.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ void list_pod(apiClient_t * apiClient)
1717
0, /* limit */
1818
NULL, /* resourceVersion */
1919
NULL, /* resourceVersionMatch */
20+
0, /* sendInitialEvents */
2021
0, /* timeoutSeconds */
2122
0 /* watch */
2223
);

examples/list_event/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ void list_event(apiClient_t * apiClient)
1717
0, /* limit */
1818
NULL, /* resourceVersion */
1919
NULL, /* resourceVersionMatch */
20+
0, /* sendInitialEvents */
2021
0, /* timeoutSeconds */
2122
0 /* watch */
2223
);

examples/list_pod/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ void list_pod(apiClient_t * apiClient)
1414
0, /* limit */
1515
NULL, /* resourceVersion */
1616
NULL, /* resourceVersionMatch */
17+
0, /* sendInitialEvents */
1718
0, /* timeoutSeconds */
1819
0 /* watch */
1920
);

examples/list_pod_incluster/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ void list_pod(apiClient_t * apiClient)
1818
0, /* limit */
1919
NULL, /* resourceVersion */
2020
NULL, /* resourceVersionMatch */
21+
0, /* sendInitialEvents */
2122
0, /* timeoutSeconds */
2223
0 /* watch */
2324
);

examples/list_pod_with_invalid_kubeconfig/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ void list_pod(apiClient_t * apiClient)
1414
0, /* limit */
1515
NULL, /* resourceVersion */
1616
NULL, /* resourceVersionMatch */
17+
0, /* sendInitialEvents */
1718
0, /* timeoutSeconds */
1819
0 /* watch */
1920
);

examples/list_secret/main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ void list_secret(apiClient_t * apiClient)
1717
0, // int limit
1818
NULL, // char * resourceVersion
1919
NULL, // char * resourceVersionMatch
20+
0, // sendInitialEvents
2021
0, // int timeoutSeconds
21-
0 //int watch
22+
0 // int watch
2223
);
2324

2425
printf("The return code of HTTP request=%ld\n", apiClient->response_code);

examples/multi_thread/watch_pod.c

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ void *watch_pod_thread_func(void *arg)
101101
0, /* limit */
102102
NULL, /* resourceVersion */
103103
NULL, /* resourceVersionMatch */
104+
0, /* sendInitialEvents */
104105
0, /* timeoutSeconds
105106
Setting the value to 0 means the watch never stops.
106107
*/

examples/watch_list_pod/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ void watch_list_pod(apiClient_t * apiClient)
8181
0, /* limit */
8282
NULL, /* resourceVersion */
8383
NULL, /* resourceVersionMatch */
84+
0, /* sendInitialEvents */
8485
0, /* timeoutSeconds */
8586
1 /* watch */
8687
);

kubernetes/.openapi-generator/COMMIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Requested Commit: master
2-
Actual Commit: b527f3b8163fce828b7ce4aadbf9bf672cdf90f9
2+
Actual Commit: e06e2cce6965a2eaaed08d401037608ec5aa0eba

0 commit comments

Comments
 (0)