Skip to content

Commit

Permalink
feat: [cloudquotas] A new value NOT_SUPPORTED is added to enum `Ine…
Browse files Browse the repository at this point in the history
…ligibilityReason` (#5801)

* feat: A new value `NOT_SUPPORTED` is added to enum `IneligibilityReason`
feat: A new value `NOT_ENOUGH_USAGE_HISTORY` is added to enum `IneligibilityReason`

PiperOrigin-RevId: 695766513

Source-Link: googleapis/googleapis@453365e

Source-Link: googleapis/googleapis-gen@9bed04e
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWFwaS1jbG91ZHF1b3Rhcy8uT3dsQm90LnlhbWwiLCJoIjoiOWJlZDA0ZTNmYjIzZDhmMjVkODU2OTE3MmFkZDVhYTA1OWEzMzY5NCJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Nov 14, 2024
1 parent 35f689a commit 8764de1
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/google-api-cloudquotas/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
1. [Select or create a Cloud Platform project][projects].
1. [Enable billing for your project][billing].
1. [Enable the Cloud Quotas API API][enable_api].
1. [Set up authentication with a service account][auth] so you can access the
1. [Set up authentication][auth] so you can access the
API from your local workstation.

### Installing the client library
Expand Down Expand Up @@ -209,4 +209,4 @@ See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
[projects]: https://console.cloud.google.com/project
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=cloudquotas.googleapis.com
[auth]: https://cloud.google.com/docs/authentication/getting-started
[auth]: https://cloud.google.com/docs/authentication/external/set-up-adc-local
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ message QuotaIncreaseEligibility {
// The container is not linked with a valid billing account.
NO_VALID_BILLING_ACCOUNT = 1;

// Quota increase is not supported for the quota.
NOT_SUPPORTED = 3;

// There is not enough usage history to determine the eligibility.
NOT_ENOUGH_USAGE_HISTORY = 4;

// Other reasons.
OTHER = 2;
}
Expand Down
2 changes: 2 additions & 0 deletions packages/google-api-cloudquotas/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions packages/google-api-cloudquotas/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions packages/google-api-cloudquotas/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8764de1

Please sign in to comment.