18 lines
486 B
Go
18 lines
486 B
Go
|
|
/*
|
||
|
|
* Kubernetes
|
||
|
|
*
|
||
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
||
|
|
*
|
||
|
|
* API version: v1.10.0
|
||
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||
|
|
*/
|
||
|
|
|
||
|
|
package client
|
||
|
|
|
||
|
|
// LimitRangeSpec defines a min/max usage limit for resources that match on kind.
|
||
|
|
type V1LimitRangeSpec struct {
|
||
|
|
|
||
|
|
// Limits is the list of LimitRangeItem objects that are enforced.
|
||
|
|
Limits []V1LimitRangeItem `json:"limits"`
|
||
|
|
}
|