Skip to content

Commit

Permalink
feat: Add rollout_info field to QuotaDetails message
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 621249697
  • Loading branch information
Google APIs authored and Copybara-Service committed Apr 2, 2024
1 parent d5020ff commit a74854d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions google/api/cloudquotas/v1/resources.proto
Expand Up @@ -302,4 +302,15 @@ message DimensionsInfo {
message QuotaDetails {
// The value currently in effect and being enforced.
int64 value = 1;

// Rollout information of this quota.
// This field is present only if the effective limit will change due to the
// ongoing rollout of the service config.
RolloutInfo rollout_info = 3;
}

// [Output only] Rollout information of a quota.
message RolloutInfo {
// Whether there is an ongoing rollout for a quota or not.
bool ongoing_rollout = 1;
}

0 comments on commit a74854d

Please sign in to comment.