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