Modifier and Type | Class and Description |
---|---|
class |
KubernetesClientTimeoutException |
Modifier and Type | Method and Description |
---|---|
void |
Watcher.onClose(KubernetesClientException cause)
Run when the watcher finally closes.
|
Modifier and Type | Method and Description |
---|---|
static KubernetesClientException |
OperationSupport.requestException(okhttp3.Request request,
Exception e) |
static KubernetesClientException |
OperationSupport.requestFailure(okhttp3.Request request,
io.fabric8.kubernetes.api.model.Status status) |
Modifier and Type | Method and Description |
---|---|
T |
BaseOperation.create(T... resources) |
D |
BaseOperation.createNew() |
D |
BaseOperation.createOrReplaceWithNew() |
D |
HasMetadataOperation.edit() |
D |
BaseOperation.edit() |
protected <T,I> T |
OperationSupport.handleCreate(I resource,
Class<T> outputType)
Create a resource.
|
protected T |
BaseOperation.handleCreate(T resource) |
protected <T> void |
OperationSupport.handleDelete(T resource,
long gracePeriodSeconds,
String propagationPolicy,
boolean cascading) |
protected void |
OperationSupport.handleDelete(URL requestUrl,
long gracePeriodSeconds,
String propagationPolicy,
boolean cascading) |
protected io.fabric8.kubernetes.api.model.Status |
OperationSupport.handleDeploymentRollback(String resourceUrl,
io.fabric8.kubernetes.api.model.extensions.DeploymentRollback deploymentRollback)
Create rollback of a Deployment
|
protected <T> T |
OperationSupport.handleGet(URL resourceUrl,
Class<T> type)
Send an http get.
|
protected <T> T |
OperationSupport.handleGet(URL resourceUrl,
Class<T> type,
Map<String,String> parameters)
Send an http, optionally performing placeholder substitution to the response.
|
protected T |
BaseOperation.handlePatch(T current,
T updated) |
protected <T> T |
OperationSupport.handlePatch(T current,
T updated,
Class<T> type)
Send an http patch and handle the response.
|
protected T |
BaseOperation.handleReplace(T updated) |
protected <T> T |
OperationSupport.handleReplace(T updated,
Class<T> type)
Replace a resource.
|
protected <T> T |
OperationSupport.handleReplace(T updated,
Class<T> type,
Map<String,String> parameters)
Replace a resource, optionally performing placeholder substitution to the response.
|
protected <T> T |
OperationSupport.handleResponse(okhttp3.OkHttpClient client,
okhttp3.Request.Builder requestBuilder,
Class<T> type)
Send an http request and handle the response.
|
protected <T> T |
OperationSupport.handleResponse(okhttp3.OkHttpClient client,
okhttp3.Request.Builder requestBuilder,
Class<T> type,
Map<String,String> parameters)
Send an http request and handle the response, optionally performing placeholder substitution to the response.
|
protected T |
BaseOperation.handleResponse(okhttp3.Request.Builder requestBuilder) |
protected <T> T |
OperationSupport.handleResponse(okhttp3.Request.Builder requestBuilder,
Class<T> type)
Send an http request and handle the response.
|
protected <T> T |
OperationSupport.handleResponse(okhttp3.Request.Builder requestBuilder,
Class<T> type,
Map<String,String> parameters)
Send an http request and handle the response, optionally performing placeholder substitution to the response.
|
protected io.fabric8.kubernetes.api.model.v1.Scale |
OperationSupport.handleScale(String resourceUrl,
io.fabric8.kubernetes.api.model.v1.Scale scale)
Replace Scale of specified Kubernetes Resource
|
protected <T> T |
OperationSupport.handleStatusUpdate(T updated,
Class<T> type) |
L |
BaseOperation.list() |
L |
BaseOperation.list(Integer limitVal,
String continueVal) |
protected static <T> T |
OperationSupport.unmarshal(InputStream is) |
protected static <T> T |
OperationSupport.unmarshal(InputStream is,
Class<T> type) |
protected static <T> T |
OperationSupport.unmarshal(InputStream is,
com.fasterxml.jackson.core.type.TypeReference<T> type) |
T |
BaseOperation.updateStatus(T item) |
Watch |
BaseOperation.watch(String resourceVersion,
Watcher<T> watcher) |
Watch |
BaseOperation.watch(Watcher<T> watcher) |
FilterWatchListDeletable<T,L,Boolean,Watch,Watcher<T>> |
BaseOperation.withLabelIn(String key,
String... values) |
FilterWatchListDeletable<T,L,Boolean,Watch,Watcher<T>> |
BaseOperation.withLabelNotIn(String key,
String... values) |
FilterWatchListDeletable<T,L,Boolean,Watch,Watcher<T>> |
BaseOperation.withoutFields(Map<String,String> fields)
Deprecated.
|
FilterWatchListDeletable<T,L,Boolean,Watch,Watcher<T>> |
BaseOperation.withoutLabels(Map<String,String> labels)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Object> |
RawCustomResourceOperationsImpl.create(InputStream objectAsStream)
Create a custom resource which is non-namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.create(Map<String,Object> object)
Create a custom resource which is non-namespaced.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.create(String namespace,
InputStream objectAsStream)
Create a custom resource which is a namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.create(String namespace,
Map<String,Object> object)
Create a custom resource which is a namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.create(String namespace,
String objectAsString)
Create a custom resource which is a namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.edit(String name,
InputStream objectAsStream)
Edit a custom resource object which is a non-namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.edit(String namespace,
String name,
InputStream objectAsStream)
Edit a custom resource object which is a namespaced object.
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String name,
InputStream objectAsStream)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String name,
Map<String,Object> objectAsMap)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String name,
String objectAsJsonString)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String namespace,
String name,
InputStream objectAsStream)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String namespace,
String name,
Map<String,Object> objectAsMap)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Map<String,Object> |
RawCustomResourceOperationsImpl.updateStatus(String namespace,
String name,
String objectAsJsonString)
Update status related to a CustomResource, this method does a PUT request on /status endpoint related
to the CustomResource
|
Modifier and Type | Method and Description |
---|---|
TList |
ListerWatcher.list(io.fabric8.kubernetes.api.model.ListOptions params,
String namespace,
OperationContext context) |
Watch |
ListerWatcher.watch(io.fabric8.kubernetes.api.model.ListOptions params,
String namespace,
OperationContext context,
Watcher<T> watcher) |
Modifier and Type | Method and Description |
---|---|
void |
ReadinessWatcher.onClose(KubernetesClientException e) |
Modifier and Type | Method and Description |
---|---|
void |
WatcherToggle.onClose(KubernetesClientException cause) |
Modifier and Type | Method and Description |
---|---|
static <T> String |
Serialization.asJson(T object) |
static <T> String |
Serialization.asYaml(T object) |
static <T> T |
Serialization.unmarshal(InputStream is)
Unmarshals a stream.
|
static <T> T |
Serialization.unmarshal(InputStream is,
Class<T> type)
Unmarshals an
InputStream . |
static <T> T |
Serialization.unmarshal(InputStream is,
Class<T> type,
Map<String,String> parameters)
Unmarshals an
InputStream optionally performing placeholder substitution to the stream. |
static <T> T |
Serialization.unmarshal(InputStream is,
Map<String,String> parameters)
Unmarshals a stream optionally performing placeholder substitution to the stream.
|
static <T> T |
Serialization.unmarshal(InputStream is,
com.fasterxml.jackson.core.type.TypeReference<T> type)
Unmarshals an
InputStream . |
static <T> T |
Serialization.unmarshal(InputStream is,
com.fasterxml.jackson.core.type.TypeReference<T> type,
Map<String,String> parameters)
Unmarshals an
InputStream optionally performing placeholder substitution to the stream. |
static <T> T |
Serialization.unmarshal(String str,
Class<T> type)
Unmarshals a
String |
static <T> T |
Serialization.unmarshal(String str,
Class<T> type,
Map<String,String> parameters)
Unmarshals a
String optionally performing placeholder substitution to the String. |
Copyright © 2015–2021 Red Hat. All rights reserved.