LimitRangeSpec defines a min/max usage limit for resources that match on kind.
| Name | Type | Description | Notes |
|---|---|---|---|
| limits | List[V1LimitRangeItem] | Limits is the list of LimitRangeItem objects that are enforced. |
from kubernetes.client.models.v1_limit_range_spec import V1LimitRangeSpec
# TODO update the JSON string below
json = "{}"
# create an instance of V1LimitRangeSpec from a JSON string
v1_limit_range_spec_instance = V1LimitRangeSpec.from_json(json)
# print the JSON string representation of the object
print(V1LimitRangeSpec.to_json())
# convert the object into a dict
v1_limit_range_spec_dict = v1_limit_range_spec_instance.to_dict()
# create an instance of V1LimitRangeSpec from a dict
v1_limit_range_spec_from_dict = V1LimitRangeSpec.from_dict(v1_limit_range_spec_dict)