Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 992 Bytes

File metadata and controls

33 lines (24 loc) · 992 Bytes

ConfigMap

ConfigMap holds configuration data to consume.

Properties

Name Type Description Notes
api_version str
data Dict[str, str] [optional]
kind str
metadata Metadata

Example

from halo_client.models.config_map import ConfigMap

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

# convert the object into a dict
config_map_dict = config_map_instance.to_dict()
# create an instance of ConfigMap from a dict
config_map_from_dict = ConfigMap.from_dict(config_map_dict)

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