Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 998 Bytes

File metadata and controls

28 lines (21 loc) · 998 Bytes

V1beta2Counter

Counter describes a quantity associated with a device.

Properties

Name Type Description Notes
value str Value defines how much of a certain device counter is available.

Example

from kubernetes.client.models.v1beta2_counter import V1beta2Counter

# TODO update the JSON string below
json = "{}"
# create an instance of V1beta2Counter from a JSON string
v1beta2_counter_instance = V1beta2Counter.from_json(json)
# print the JSON string representation of the object
print(V1beta2Counter.to_json())

# convert the object into a dict
v1beta2_counter_dict = v1beta2_counter_instance.to_dict()
# create an instance of V1beta2Counter from a dict
v1beta2_counter_from_dict = V1beta2Counter.from_dict(v1beta2_counter_dict)

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