Class CreateLogicalViewRequest
java.lang.Object
com.google.cloud.bigtable.admin.v2.models.CreateLogicalViewRequest
Parameters for creating a new Cloud Bigtable logical view.
Sample code:
LogicalView existingLogicalView = ...;
CreateLogicalViewRequest logicalViewRequest = CreateLogicalViewRequest.of("my-instance", "my-new-logical-view")
.setQuery("...").setDeletionProtection(true);
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleaninthashCode()static CreateLogicalViewRequestBuilds a new request to create a new logical view in the specified instance.setDeletionProtection(boolean value) Configures if the logical view is deletion protected.Sets the query of the LogicalView.Creates the request protobuf.
-
Method Details
-
of
Builds a new request to create a new logical view in the specified instance. -
setQuery
Sets the query of the LogicalView. -
setDeletionProtection
Configures if the logical view is deletion protected. -
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.
-