Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.17 KB

File metadata and controls

29 lines (22 loc) · 1.17 KB

V1NodeRuntimeHandler

NodeRuntimeHandler is a set of runtime handler information.

Properties

Name Type Description Notes
features V1NodeRuntimeHandlerFeatures [optional]
name str Runtime handler name. Empty for the default runtime handler. [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]