Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.06 KB

File metadata and controls

28 lines (21 loc) · 1.06 KB

V1beta2DeviceSelector

DeviceSelector must have exactly one field set.

Properties

Name Type Description Notes
cel V1beta2CELDeviceSelector [optional]

Example

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)

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