Class UpdateLogicalViewRequest
java.lang.Object
com.google.cloud.bigtable.admin.v2.models.UpdateLogicalViewRequest
Parameters for updating an existing Cloud Bigtable
LogicalView.
Sample code:
LogicalView existingLogicalView = client.getLogicalView("my-table", "my-logical-view");
UpdateLogicalViewRequest request =
UpdateLogicalViewRequest.of(existingLogicalView).setQuery(query);
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()static UpdateLogicalViewRequestof(LogicalView logicalView) Builds a new update request using an existing logical view.static UpdateLogicalViewRequestBuilds a new update logical view request.setDeletionProtection(boolean deletionProtection) Changes the deletion protection of an existing logical view.Changes the query of an existing logical view.Creates the request protobuf.
-
Method Details
-
of
Builds a new update request using an existing logical view. -
of
public static UpdateLogicalViewRequest of(@Nonnull String instanceId, @Nonnull String logicalViewId) Builds a new update logical view request. -
setQuery
Changes the query of an existing logical view. -
setDeletionProtection
Changes the deletion protection of an existing logical 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.
-