Class UpdateMaterializedViewRequest
java.lang.Object
com.google.cloud.bigtable.admin.v2.models.UpdateMaterializedViewRequest
Parameters for updating an existing Cloud Bigtable
MaterializedView.
Sample code:
MaterializedView existingMaterializedView = client.getMaterializedView("my-table", "my-materialized-view");
UpdateMaterializedViewRequest request =
UpdateMaterializedViewRequest.of(existingMaterializedView).setDeletionProtection(true);
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()of(MaterializedView materializedView) Builds a new update request using an existing materialized view.Builds a new update materialized view request.setDeletionProtection(boolean deletionProtection) Changes the deletion protection of an existing materialized view.Creates the request protobuf.
-
Method Details
-
of
Builds a new update request using an existing materialized view. -
of
public static UpdateMaterializedViewRequest of(@Nonnull String instanceId, @Nonnull String materializedViewId) Builds a new update materialized view request. -
setDeletionProtection
Changes the deletion protection of an existing materialized view. -
equals
-
hashCode
public int hashCode() -
toProto
Creates the request protobuf. This method is considered an internal implementation detail and not meant to be used by applications.
-