use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1Api method createCustomResourceDefinitionWithHttpInfo.
/**
* create a CustomResourceDefinition
* @param body (required)
* @param pretty If 'true', then the output is pretty printed. (optional)
* @return ApiResponse<V1beta1CustomResourceDefinition>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<V1beta1CustomResourceDefinition> createCustomResourceDefinitionWithHttpInfo(V1beta1CustomResourceDefinition body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = createCustomResourceDefinitionValidateBeforeCall(body, pretty, null, null);
Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method readCustomResourceDefinitionTest.
/**
* read the specified CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void readCustomResourceDefinitionTest() throws ApiException {
String name = null;
String pretty = null;
Boolean exact = null;
Boolean export = null;
V1beta1CustomResourceDefinition response = api.readCustomResourceDefinition(name, pretty, exact, export);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method createCustomResourceDefinitionTest.
/**
* create a CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void createCustomResourceDefinitionTest() throws ApiException {
V1beta1CustomResourceDefinition body = null;
String pretty = null;
V1beta1CustomResourceDefinition response = api.createCustomResourceDefinition(body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method replaceCustomResourceDefinitionStatusTest.
/**
* replace status of the specified CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceCustomResourceDefinitionStatusTest() throws ApiException {
String name = null;
V1beta1CustomResourceDefinition body = null;
String pretty = null;
V1beta1CustomResourceDefinition response = api.replaceCustomResourceDefinitionStatus(name, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1Api method replaceCustomResourceDefinitionAsync.
/**
* (asynchronously)
* replace the specified CustomResourceDefinition
* @param name name of the CustomResourceDefinition (required)
* @param body (required)
* @param pretty If 'true', then the output is pretty printed. (optional)
* @param callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
public com.squareup.okhttp.Call replaceCustomResourceDefinitionAsync(String name, V1beta1CustomResourceDefinition body, String pretty, final ApiCallback<V1beta1CustomResourceDefinition> callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = replaceCustomResourceDefinitionValidateBeforeCall(name, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
Aggregations