Skip to content

Commit 2ecdbee

Browse files
Google APIscopybara-github
authored andcommitted
feat: Hierarchical Quota Adjuster
docs: Folder level and organization level support for the quota adjuster feature. PiperOrigin-RevId: 863242165
1 parent 43079af commit 2ecdbee

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

google/api/cloudquotas/v1beta/quota_adjuster_settings.proto

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ service QuotaAdjusterSettingsManager {
4242
option (google.api.oauth_scopes) =
4343
"https://www.googleapis.com/auth/cloud-platform";
4444

45-
// RPC Method for updating QuotaAdjusterSettings based on the request
45+
// Updates the QuotaAdjusterSettings for the specified resource.
4646
rpc UpdateQuotaAdjusterSettings(UpdateQuotaAdjusterSettingsRequest)
4747
returns (QuotaAdjusterSettings) {
4848
option (google.api.http) = {
@@ -61,7 +61,7 @@ service QuotaAdjusterSettingsManager {
6161
"quota_adjuster_settings,update_mask";
6262
}
6363

64-
// RPC Method for getting QuotaAdjusterSettings based on the request
64+
// Gets the QuotaAdjusterSettings for the specified resource.
6565
rpc GetQuotaAdjusterSettings(GetQuotaAdjusterSettingsRequest)
6666
returns (QuotaAdjusterSettings) {
6767
option (google.api.http) = {
@@ -130,9 +130,13 @@ message QuotaAdjusterSettings {
130130
DISABLED = 3;
131131
}
132132

133-
// Identifier. Name of the config would be of the format:
133+
// Identifier. Name of the configuration, in the formats below:
134+
//
135+
// * For a project:
134136
// projects/PROJECT_NUMBER/locations/global/quotaAdjusterSettings
137+
// * For a folder:
135138
// folders/FOLDER_NUMBER/locations/global/quotaAdjusterSettings
139+
// * For an organization:
136140
// organizations/ORGANIZATION_NUMBER/locations/global/quotaAdjusterSettings
137141
string name = 1 [(google.api.field_behavior) = IDENTIFIER];
138142

0 commit comments

Comments
 (0)