-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(common): options for Make*Credentials()
#10417
feat(common): options for Make*Credentials()
#10417
Conversation
This changes all the `g::c::Credential` factory functions to accept a `g::c::Options` parameter. At this time this can be used to initialize logging in the credential layer, but eventually it could gain
Google Cloud Build Logs
ℹ️ NOTE: Kokoro logs are linked from "Details" below. |
Codecov ReportBase: 93.85% // Head: 93.85% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #10417 +/- ##
==========================================
- Coverage 93.85% 93.85% -0.01%
==========================================
Files 1610 1610
Lines 145821 145822 +1
==========================================
Hits 136866 136866
- Misses 8955 8956 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Description: s/eventually it could gain$/eventually it could gain <something>./
google/cloud/credentials.h
Outdated
@@ -82,8 +83,12 @@ struct UnifiedCredentialsOption { | |||
* and sometimes even errors. | |||
* | |||
* @ingroup guac | |||
* | |||
* @param opts optional configuration values. Note that the effect of these | |||
* parameters depends on the underlying transport. For example |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/$/,/ et seq.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Fixed.
Google Cloud Build Logs
ℹ️ NOTE: Kokoro logs are linked from "Details" below. |
This changes all the
g::c::Credential
factory functions to accept ag::c::Options
parameter. At this time this can be used to initialize logging in the credential layer, but eventually it could gainThis change is