Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1010 Bytes

File metadata and controls

28 lines (21 loc) · 1010 Bytes

V1DeviceSelector

DeviceSelector must have exactly one field set.

Properties

Name Type Description Notes
cel V1CELDeviceSelector [optional]

Example

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)

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