use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1Api method readNamespaceStatusAsync.
/**
* (asynchronously)
* read status of the specified Namespace
* @param name name of the Namespace (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 readNamespaceStatusAsync(String name, String pretty, final ApiCallback<V1Namespace> 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 = readNamespaceStatusValidateBeforeCall(name, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1Namespace>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class WatchExample method main.
public static void main(String[] args) throws IOException, ApiException {
ApiClient client = Config.defaultClient();
client.getHttpClient().setReadTimeout(60, TimeUnit.SECONDS);
Configuration.setDefaultApiClient(client);
CoreV1Api api = new CoreV1Api();
Watch<V1Namespace> watch = Watch.createWatch(client, api.listNamespaceCall(null, null, null, null, null, 5, null, null, Boolean.TRUE, null, null), new TypeToken<Watch.Response<V1Namespace>>() {
}.getType());
for (Watch.Response<V1Namespace> item : watch) {
System.out.printf("%s : %s%n", item.type, item.object.getMetadata().getName());
}
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1Api method replaceNamespaceFinalizeAsync.
/**
* (asynchronously)
* replace finalize of the specified Namespace
* @param name name of the Namespace (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 replaceNamespaceFinalizeAsync(String name, V1Namespace body, String pretty, final ApiCallback<V1Namespace> 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 = replaceNamespaceFinalizeValidateBeforeCall(name, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1Namespace>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1ApiTest method createNamespaceTest.
/**
* create a Namespace
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void createNamespaceTest() throws ApiException {
V1Namespace body = null;
String pretty = null;
V1Namespace response = api.createNamespace(body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1Api method readNamespaceAsync.
/**
* (asynchronously)
* read the specified Namespace
* @param name name of the Namespace (required)
* @param pretty If 'true', then the output is pretty printed. (optional)
* @param exact Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. (optional)
* @param export Should this value be exported. Export strips fields that a user can not specify. (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 readNamespaceAsync(String name, String pretty, Boolean exact, Boolean export, final ApiCallback<V1Namespace> 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 = readNamespaceValidateBeforeCall(name, pretty, exact, export, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1Namespace>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
Aggregations