Class CreateAuthorizedViewRequest

java.lang.Object
com.google.cloud.bigtable.admin.v2.models.CreateAuthorizedViewRequest

public final class CreateAuthorizedViewRequest extends Object
Parameters for creating a new Cloud Bigtable AuthorizedView, which represents subsets of a particular table.

Sample code:


 CreateAuthorizedViewRequest request =
     CreateAuthorizedViewRequest.of("my-table", "my-new-authorized-view")
         .setAuthorizedViewType(
             SubsetView.create()
                 .addRowPrefix("row#")
                 .addFamilySubsets(
                     "my-family", FamilySubsets.create().addQualifier("column")));
 
See Also: