@@ -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