@@ -56,7 +56,7 @@ public String toString() {
56
56
57
57
private ApiClient apiClient ;
58
58
// Magic number for the beginning of proto encoded.
59
- // https://github.com/kubernetes/apimachinery/blob/master /pkg/runtime/serializer/protobuf/protobuf.go#L42
59
+ // https://github.com/kubernetes/apimachinery/blob/release-1.13 /pkg/runtime/serializer/protobuf/protobuf.go#L44
60
60
private static final byte [] MAGIC = new byte [] {0x6b , 0x38 , 0x73 , 0x00 };
61
61
private static final String MEDIA_TYPE = "application/vnd.kubernetes.protobuf" ;
62
62
@@ -95,7 +95,7 @@ public void setApiClient(ApiClient apiClient) {
95
95
/**
96
96
* Get a Kubernetes API object using protocol buffer encoding.
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
*/
@@ -108,7 +108,7 @@ public <T extends Message> ObjectOrStatus<T> get(T.Builder builder, String path)
108
108
* List is fluent, semantic sugar method on top of get, which is intended to convey that the
109
109
* object is a List of objects rather than a single object
110
110
*
111
- * @param builder The appropriate Builder for the object receveived from the request.
111
+ * @param builder The appropriate Builder for the object received from the request.
112
112
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
113
113
* @return An ObjectOrStatus which contains the Object requested, or a Status about the request.
114
114
*/
@@ -221,7 +221,7 @@ public <T extends Message> ObjectOrStatus<T> delete(
221
221
* Generic protocol buffer based HTTP request. Not intended for general consumption, but public
222
222
* for advance use cases.
223
223
*
224
- * @param builder The appropriate Builder for the object receveived from the request.
224
+ * @param builder The appropriate Builder for the object received from the request.
225
225
* @param method The HTTP method (e.g. GET) for this request.
226
226
* @param path The URL path to call (e.g. /api/v1/namespaces/default/pods/pod-name)
227
227
* @param body The body to send with the request (optional)
0 commit comments