NodeRuntimeHandler is a set of runtime handler information.
| Name | Type | Description | Notes |
|---|---|---|---|
| features | V1NodeRuntimeHandlerFeatures | [optional] | |
| name | str | Runtime handler name. Empty for the default runtime handler. | [optional] |
from kubernetes.client.models.v1_node_runtime_handler import V1NodeRuntimeHandler
# TODO update the JSON string below
json = "{}"
# create an instance of V1NodeRuntimeHandler from a JSON string
v1_node_runtime_handler_instance = V1NodeRuntimeHandler.from_json(json)
# print the JSON string representation of the object
print(V1NodeRuntimeHandler.to_json())
# convert the object into a dict
v1_node_runtime_handler_dict = v1_node_runtime_handler_instance.to_dict()
# create an instance of V1NodeRuntimeHandler from a dict
v1_node_runtime_handler_from_dict = V1NodeRuntimeHandler.from_dict(v1_node_runtime_handler_dict)