DeviceSelector must have exactly one field set.
| Name | Type | Description | Notes |
|---|---|---|---|
| cel | V1CELDeviceSelector | [optional] |
from kubernetes.client.models.v1_device_selector import V1DeviceSelector
# TODO update the JSON string below
json = "{}"
# create an instance of V1DeviceSelector from a JSON string
v1_device_selector_instance = V1DeviceSelector.from_json(json)
# print the JSON string representation of the object
print(V1DeviceSelector.to_json())
# convert the object into a dict
v1_device_selector_dict = v1_device_selector_instance.to_dict()
# create an instance of V1DeviceSelector from a dict
v1_device_selector_from_dict = V1DeviceSelector.from_dict(v1_device_selector_dict)