-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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(pubsub): support bigquery subscriptions #6119
Conversation
@@ -210,14 +210,90 @@ func (oidcToken *OIDCToken) toProto() *pb.PushConfig_OidcToken_ { | |||
} | |||
} | |||
|
|||
// BigQueryConfigState denotes the possible states for a BigQuery Subscription. | |||
type BigQueryConfigState int |
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.
We added a SubscriptionState field as well as part of this feature. Should we add that here as well?
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.
Added. I also made the fake return Active
for both Subscription/BigQueryConfigState by default.
…ud-go into feat-bigquery-config
Add support for bigquery subscriptions, including in the fake
Do not merge until feature is GA
Closes #6118