-
Notifications
You must be signed in to change notification settings - Fork 385
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
docs(pubsub): add doxygen comment to deprecate handwritten apis #13585
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #13585 +/- ##
=======================================
Coverage 93.27% 93.27%
=======================================
Files 2197 2197
Lines 191984 191984
=======================================
+ Hits 179076 179082 +6
+ Misses 12908 12902 -6 ☔ View full report in Codecov by Sentry. |
@@ -31,6 +31,10 @@ GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN | |||
/** | |||
* Performs subscription administrative operations in Cloud Pub/Sub. | |||
* | |||
* @deprecated Please use \ref | |||
* google::cloud::pubsub_admin::SubscriptionAdminClient and \ref | |||
* google::cloud::pubsub_admin::SubscriptionAdminClient instead. |
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/Client/Connection/
@@ -63,6 +63,10 @@ using ListSnapshotsRange = | |||
* A connection to Cloud Pub/Sub for subscription-related administrative | |||
* operations. | |||
* | |||
* @deprecated Please use \ref | |||
* google::cloud::pubsub_admin::SubscriptionAdminClient and \ref | |||
* google::cloud::pubsub_admin::SubscriptionAdminClient instead. |
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/Client/Connection/
@@ -30,6 +30,9 @@ GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN | |||
/** | |||
* Performs topic admin operations in Cloud Pub/Sub. | |||
* | |||
* @deprecated Please use \ref google::cloud::pubsub_admin::TopicAdminClient | |||
* and \ref google::cloud::pubsub_admin::TopicAdminClient instead. |
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/Client/Connection/
@@ -73,6 +73,9 @@ using ListTopicSnapshotsRange = | |||
/** | |||
* A connection to Cloud Pub/Sub for topic-related administrative operations. | |||
* | |||
* @deprecated Please use #google::cloud::pubsub_admin::SubscriptionAdminClient |
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/Subscription/Topic/
and switch #
to \ref
just to be consistent?
@@ -73,6 +73,9 @@ using ListTopicSnapshotsRange = | |||
/** | |||
* A connection to Cloud Pub/Sub for topic-related administrative operations. | |||
* | |||
* @deprecated Please use #google::cloud::pubsub_admin::SubscriptionAdminClient | |||
* and #google::cloud::pubsub_admin::SubscriptionAdminClient instead. |
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/Subscription/Topic/
s/Client/Connection/
Part of #12987
This change is