Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.14 KB

File metadata and controls

28 lines (21 loc) · 1.14 KB

V1NodeConfigSource

NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22

Properties

Name Type Description Notes
config_map V1ConfigMapNodeConfigSource [optional]

Example

from kubernetes.client.models.v1_node_config_source import V1NodeConfigSource

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

# convert the object into a dict
v1_node_config_source_dict = v1_node_config_source_instance.to_dict()
# create an instance of V1NodeConfigSource from a dict
v1_node_config_source_from_dict = V1NodeConfigSource.from_dict(v1_node_config_source_dict)

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