Class Watch.Response<T>

java.lang.Object
io.kubernetes.client.util.Watch.Response<T>
Enclosing class:
Watch<T>

public static class Watch.Response<T> extends Object
Response class holds a watch response that has a `type` that can be ADDED, MODIFIED, DELETED and ERROR. It also hold the actual target object.
  • Field Details

    • type

      @SerializedName("type") public String type
    • object

      @SerializedName("object") public T object
    • status

      public io.kubernetes.client.openapi.models.V1Status status
  • Constructor Details

    • Response

      public Response()
    • Response

      public Response(String type, T object)
    • Response

      public Response(String type, io.kubernetes.client.openapi.models.V1Status status)