Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QOS configuration #18

Open
tenstad opened this issue Nov 20, 2024 · 0 comments
Open

QOS configuration #18

tenstad opened this issue Nov 20, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@tenstad
Copy link
Member

tenstad commented Nov 20, 2024

type QOS struct {
	// WLStorageQuotaKBytes is the storage quota warning threshold ("soft limit"), in number of KiBs.
	WLStorageQuotaKBytes int32 `json:"wlStorageQuotaKBytes"`
	// HLStorageQuotaKBytes is the storage quota maximum ("hard limit"), in number of KiBs.
	HLStorageQuotaKBytes int32 `json:"hlStorageQuotaKBytes"`
	// WLStorageQuotaCount is the storage quota warning threshold ("soft limit"), in total number of objects.
	WLStorageQuotaCount int32 `json:"wlStorageQuotaCount"`
	// HLStorageQuotaCount is the storage quota maximum ("hard limit"), in total number of objects.
	HLStorageQuotaCount int32 `json:"hlStorageQuotaCount"`
	// WLRequestRate is the request rate warning threshold ("soft limit"), in total number of HTTP requests per minute.
	WLRequestRate int32 `json:"wlRequestRate"`
	// HLRequestRate is the request rate maximum ("hard limit"), in total number of HTTP requests per minute.
	HLRequestRate int32 `json:"hlRequestRate"`
	// WLDataKBytesIn is the inbound data rate warning threshold ("soft limit"), in KiBs per minute.
	WLDataKBytesIn int32 `json:"wlDataKBytesIn"`
	// HLDataKBytesIn is the inbound data rate maximum ("hard limit"), in KiBs per minute.
	HLDataKBytesIn int32 `json:"hlDataKBytesIn"`
	// WLDataKBytesOut is the outbound data rate warning threshold ("soft limit"), in KiBs per minute.
	WLDataKBytesOut int32 `json:"wlDataKBytesOut"`
	// HLDataKBytesOut is the outbound data rate maximum ("hard limit"), in KiBs per minute.
	HLDataKBytesOut int32 `json:"hlDataKBytesOut"`
	// Region is the service region to which the QoS settings apply.
	//+optional
	Region *string `json:"region"`
}
@tenstad tenstad added the enhancement New feature or request label Nov 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant