Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Generate from openapi release-1.27 #191

Merged
merged 2 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ list all pods:
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down Expand Up @@ -138,6 +139,7 @@ list all pods in cluster:
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/auth_provider/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ void list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/configmap/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ void list_configmap(apiClient_t * apiClient, char *namespace_)
0, // int limit
NULL, // char * resourceVersion
NULL, // char * resourceVersionMatch
0, // sendInitialEvents
0, // int timeoutSeconds
0 //int watch
);
Expand Down
1 change: 1 addition & 0 deletions examples/exec_provider/list_pod_by_exec_provider.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ void list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/list_event/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ void list_event(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/list_pod/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ void list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/list_pod_incluster/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ void list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
1 change: 1 addition & 0 deletions examples/list_pod_with_invalid_kubeconfig/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ void list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
0 /* watch */
);
Expand Down
3 changes: 2 additions & 1 deletion examples/list_secret/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ void list_secret(apiClient_t * apiClient)
0, // int limit
NULL, // char * resourceVersion
NULL, // char * resourceVersionMatch
0, // sendInitialEvents
0, // int timeoutSeconds
0 //int watch
0 // int watch
);

printf("The return code of HTTP request=%ld\n", apiClient->response_code);
Expand Down
1 change: 1 addition & 0 deletions examples/multi_thread/watch_pod.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ void *watch_pod_thread_func(void *arg)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds
Setting the value to 0 means the watch never stops.
*/
Expand Down
1 change: 1 addition & 0 deletions examples/watch_list_pod/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ void watch_list_pod(apiClient_t * apiClient)
0, /* limit */
NULL, /* resourceVersion */
NULL, /* resourceVersionMatch */
0, /* sendInitialEvents */
0, /* timeoutSeconds */
1 /* watch */
);
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/.openapi-generator/COMMIT
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Requested Commit: master
Actual Commit: b527f3b8163fce828b7ce4aadbf9bf672cdf90f9
Actual Commit: e06e2cce6965a2eaaed08d401037608ec5aa0eba
Loading