Skip to content
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: Add authorized view bindings to Cloud Bigtable data APIs and messages #2144

Merged
merged 7 commits into from
Mar 5, 2024
Prev Previous commit
Fix unit test broken by the new authorized views apis
Change-Id: I075e896a696d83c70f72337f2921d3285e408e1e
  • Loading branch information
Lixia Chen committed Mar 5, 2024
commit dd8008686270e658704897a458e6b2faea095fce
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,17 @@ public String toString() {
.add("updateTableOperationSettings", stubSettings.updateTableOperationSettings())
.add("copyBackupSettings", stubSettings.copyBackupSettings())
.add("copyBackupOperationSettings", stubSettings.copyBackupOperationSettings())
.add("createAuthorizedViewSettings", stubSettings.createAuthorizedViewSettings())
.add(
"createAuthorizedViewOperationSettings",
stubSettings.createAuthorizedViewOperationSettings())
.add("updateAuthorizedViewSettings", stubSettings.updateAuthorizedViewSettings())
.add(
"updateAuthorizedViewOperationSettings",
stubSettings.updateAuthorizedViewOperationSettings())
.add("deleteAuthorizedViewSettings", stubSettings.deleteAuthorizedViewSettings())
.add("listAuthorizedViewsSettings", stubSettings.listAuthorizedViewsSettings())
.add("getAuthorizedViewSettings", stubSettings.getAuthorizedViewSettings())
.toString();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ public void testStubSettings() throws IOException {
"updateTableOperationSettings",
"copyBackupSettings",
"copyBackupOperationSettings",
"createAuthorizedViewSettings",
"createAuthorizedViewOperationSettings",
"updateAuthorizedViewSettings",
"updateAuthorizedViewOperationSettings",
"deleteAuthorizedViewSettings",
"listAuthorizedViewsSettings",
"getAuthorizedViewSettings",
};

@Test
Expand Down