Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 920 Bytes

File metadata and controls

29 lines (22 loc) · 920 Bytes

V1Sysctl

Sysctl defines a kernel parameter to be set

Properties

Name Type Description Notes
name str Name of a property to set
value str Value of a property to set

Example

from kubernetes.client.models.v1_sysctl import V1Sysctl

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

# convert the object into a dict
v1_sysctl_dict = v1_sysctl_instance.to_dict()
# create an instance of V1Sysctl from a dict
v1_sysctl_from_dict = V1Sysctl.from_dict(v1_sysctl_dict)

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