@@ -43,7 +43,7 @@ public String toString() {
43
43
44
44
private ApiClient apiClient ;
45
45
// Magic number for the beginning of proto encoded.
46
- // https://github.com/kubernetes/apimachinery/blob/master /pkg/runtime/serializer/protobuf/protobuf.go#L42
46
+ // https://github.com/kubernetes/apimachinery/blob/release-1.13 /pkg/runtime/serializer/protobuf/protobuf.go#L44
47
47
private static final byte [] MAGIC = new byte [] {0x6b , 0x38 , 0x73 , 0x00 };
48
48
private static final String MEDIA_TYPE = "application/vnd.kubernetes.protobuf" ;
49
49
@@ -82,7 +82,7 @@ public void setApiClient(ApiClient apiClient) {
82
82
/**
83
83
* Get a Kubernetes API object using protocol buffer encoding.
84
84
*
85
- * @param builder The appropriate Builder for the object receveived from the request.
85
+ * @param builder The appropriate Builder for the object received from the request.
86
86
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
87
87
* @return An ObjectOrStatus which contains the Object requested, or a Status about the request.
88
88
*/
@@ -95,7 +95,7 @@ public <T extends Message> ObjectOrStatus<T> get(T.Builder builder, String path)
95
95
* List is fluent, semantic sugar method on top of get, which is intended to convey that the
96
96
* object is a List of objects rather than a single object
97
97
*
98
- * @param builder The appropriate Builder for the object receveived from the request.
98
+ * @param builder The appropriate Builder for the object received from the request.
99
99
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
100
100
* @return An ObjectOrStatus which contains the Object requested, or a Status about the request.
101
101
*/
@@ -208,7 +208,7 @@ public <T extends Message> ObjectOrStatus<T> delete(
208
208
* Generic protocol buffer based HTTP request. Not intended for general consumption, but public
209
209
* for advance use cases.
210
210
*
211
- * @param builder The appropriate Builder for the object receveived from the request.
211
+ * @param builder The appropriate Builder for the object received from the request.
212
212
* @param method The HTTP method (e.g. GET) for this request.
213
213
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
214
214
* @param body The body to send with the request (optional)
0 commit comments