21 lines
727 B
Go
21 lines
727 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
|
||
|
|
|
||
|
|
// ResourceQuotaSpec defines the desired hard limits to enforce for Quota.
|
||
|
|
type V1ResourceQuotaSpec struct {
|
||
|
|
|
||
|
|
// Hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/
|
||
|
|
Hard map[string]string `json:"hard,omitempty"`
|
||
|
|
|
||
|
|
// A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.
|
||
|
|
Scopes []string `json:"scopes,omitempty"`
|
||
|
|
}
|