@@ -188,26 +188,25 @@ class TableAdmin {
188188 // @{
189189 // / @name Convenience shorthands for the schema views.
190190 using TableView = google::bigtable::admin::v2::Table::View;
191- // / Use the default view as defined for each function.
192- // NOLINTNEXTLINE(readability-identifier-naming)
193- constexpr static TableView VIEW_UNSPECIFIED =
194- google::bigtable::admin::v2::Table::VIEW_UNSPECIFIED;
191+ // / Only populate 'name' and fields related to the table's encryption state.
192+ static auto constexpr ENCRYPTION_VIEW = // NOLINT(readability-identifier-naming)
193+ google::bigtable::admin::v2::Table::ENCRYPTION_VIEW;
194+ // / Populate all the fields in the response.
195+ static auto constexpr FULL = // NOLINT(readability-identifier-naming)
196+ google::bigtable::admin::v2::Table::FULL;
195197 // / Populate only the name in the responses.
196- // NOLINTNEXTLINE(readability-identifier-naming)
197- constexpr static TableView NAME_ONLY =
198+ static auto constexpr NAME_ONLY = // NOLINT(readability-identifier-naming)
198199 google::bigtable::admin::v2::Table::NAME_ONLY;
199- // / Populate only the name and the fields related to the table schema.
200- // NOLINTNEXTLINE(readability-identifier-naming)
201- constexpr static TableView SCHEMA_VIEW =
202- google::bigtable::admin::v2::Table::SCHEMA_VIEW;
203200 // / Populate only the name and the fields related to the table replication
204201 // / state.
205- // NOLINTNEXTLINE(readability-identifier-naming)
206- constexpr static TableView REPLICATION_VIEW =
202+ static auto constexpr REPLICATION_VIEW = // NOLINT(readability-identifier-naming)
207203 google::bigtable::admin::v2::Table::REPLICATION_VIEW;
208- // / Populate all the fields in the response.
209- // NOLINTNEXTLINE(readability-identifier-naming)
210- constexpr static TableView FULL = google::bigtable::admin::v2::Table::FULL;
204+ // / Populate only the name and the fields related to the table schema.
205+ static auto constexpr SCHEMA_VIEW = // NOLINT(readability-identifier-naming)
206+ google::bigtable::admin::v2::Table::SCHEMA_VIEW;
207+ // / Use the default view as defined for each function.
208+ static auto constexpr VIEW_UNSPECIFIED = // NOLINT(readability-identifier-naming)
209+ google::bigtable::admin::v2::Table::VIEW_UNSPECIFIED;
211210 // @}
212211
213212 std::string const & project () const { return client_->project (); }
0 commit comments