Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 933 Bytes

File metadata and controls

28 lines (21 loc) · 933 Bytes

V1Counter

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.v1_counter import V1Counter

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

# convert the object into a dict
v1_counter_dict = v1_counter_instance.to_dict()
# create an instance of V1Counter from a dict
v1_counter_from_dict = V1Counter.from_dict(v1_counter_dict)

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