Sysctl defines a kernel parameter to be set
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of a property to set | |
| value | str | Value of a property to set |
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)