Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.4 KB

File metadata and controls

29 lines (22 loc) · 1.4 KB

V1NodeRuntimeHandlerFeatures

NodeRuntimeHandlerFeatures is a set of features implemented by the runtime handler.

Properties

Name Type Description Notes
recursive_read_only_mounts bool RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts. [optional]
user_namespaces bool UserNamespaces is set to true if the runtime handler supports UserNamespaces, including for volumes. [optional]

Example

from kubernetes.client.models.v1_node_runtime_handler_features import V1NodeRuntimeHandlerFeatures

# TODO update the JSON string below
json = "{}"
# create an instance of V1NodeRuntimeHandlerFeatures from a JSON string
v1_node_runtime_handler_features_instance = V1NodeRuntimeHandlerFeatures.from_json(json)
# print the JSON string representation of the object
print(V1NodeRuntimeHandlerFeatures.to_json())

# convert the object into a dict
v1_node_runtime_handler_features_dict = v1_node_runtime_handler_features_instance.to_dict()
# create an instance of V1NodeRuntimeHandlerFeatures from a dict
v1_node_runtime_handler_features_from_dict = V1NodeRuntimeHandlerFeatures.from_dict(v1_node_runtime_handler_features_dict)

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