// Copyright (c) 2020 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34package api56import "github.com/gitpod-io/gitpod/common-go/cgroups"78// CreateBucketRequest is the argument for CreateBucket9type CreateBucketRequest struct {10Owner, Workspace string11}1213// CreateBucketResponse is the response for CreateBucket14type CreateBucketResponse struct{}1516type GetWorkspaceResourcesRequest struct {17ContainerId string18}1920type GetWorkspaceResourcesResponse struct {21CpuQuota int6422Found bool23IOMax []cgroups.DeviceIOMax24FoundIOMax bool25}2627type VerifyRateLimitingRuleRequest struct {28ContainerId string29}3031type VerifyRateLimitingRuleResponse struct{}323334