Class UpdateAuthorizedViewRequest

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

public final class UpdateAuthorizedViewRequest extends Object
Parameters for updating an existing Cloud Bigtable AuthorizedView.

Sample code:


 AuthorizedView existingAuthorizedView = client.getAuthorizedView("my-table", "my-authorized-view");
 UpdateAuthorizedViewRequest request =
     UpdateAuthorizedViewRequest.of(existingAuthorizedView).setDeletionProtection(true);
 
See Also: