Interface TargetId
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AuthorizedViewId,MaterializedViewId,TableId
TargetId defines the scope a data operation can be applied to.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturns true if this TargetId object represents id for an authorized view (rather than a table/materialized view).booleanReturns true if this TargetId object represents id for an materialized view (rather than a table/authorized view).toResourceName(String projectId, String instanceId) Combines the table or authorized view id with the projectId and instanceId to form the actual resource name in the request protobuf.
-
Method Details
-
toResourceName
Combines the table or authorized view id with the projectId and instanceId to form the actual resource name in the request protobuf.This method is considered an internal implementation detail and not meant to be used by applications.
-
scopedForAuthorizedView
@InternalApi boolean scopedForAuthorizedView()Returns true if this TargetId object represents id for an authorized view (rather than a table/materialized view). -
scopedForMaterializedView
@InternalApi boolean scopedForMaterializedView()Returns true if this TargetId object represents id for an materialized view (rather than a table/authorized view).
-