public static class DatastoreV1.DeleteKey extends PTransform<PCollection<com.google.datastore.v1.Key>,PDone>
DatastoreIO
,
Serialized Formannotations, displayData, name, resourceHints
Modifier and Type | Method and Description |
---|---|
PDone |
expand(PCollection<com.google.datastore.v1.Key> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
java.lang.String |
getDatabaseId() |
java.lang.String |
getProjectId() |
void |
populateDisplayData(DisplayData.Builder builder)
Register display data for the given transform or component.
|
java.lang.String |
toString() |
DatastoreV1.DeleteKey |
withDatabaseId(java.lang.String databaseId)
Returns a new
DatastoreV1.DeleteKey that deletes entities from the Cloud Datastore for the
specified database. |
DatastoreV1.DeleteKey |
withDatabaseId(ValueProvider<java.lang.String> databaseId)
Same as
withDatabaseId(String) but with a ValueProvider . |
DatastoreV1.DeleteKey |
withHintNumWorkers(int hintNumWorkers)
Returns a new
DatastoreV1.DeleteKey with a different worker count hint for ramp-up throttling. |
DatastoreV1.DeleteKey |
withHintNumWorkers(ValueProvider<java.lang.Integer> hintNumWorkers)
Same as
withHintNumWorkers(int) but with a ValueProvider . |
DatastoreV1.DeleteKey |
withLocalhost(java.lang.String localhost)
Returns a new
DatastoreV1.DeleteKey that deletes entities from the Cloud Datastore Emulator
running locally on the specified host port. |
DatastoreV1.DeleteKey |
withProjectId(java.lang.String projectId)
Returns a new
DatastoreV1.DeleteKey that deletes entities from the Cloud Datastore for the
specified project. |
DatastoreV1.DeleteKey |
withProjectId(ValueProvider<java.lang.String> projectId)
Same as
withProjectId(String) but with a ValueProvider . |
DatastoreV1.DeleteKey |
withRampupThrottlingDisabled()
Returns a new
DatastoreV1.DeleteKey that does not throttle during ramp-up. |
DatastoreV1.DeleteKeyWithSummary |
withResults()
Returns
DatastoreV1.DeleteKeyWithSummary transform which can be used in Wait.on(PCollection[]) to wait until all data is deleted. |
addAnnotation, compose, compose, getAdditionalInputs, getAnnotations, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, setDisplayData, setResourceHints, validate, validate
public DatastoreV1.DeleteKey withProjectId(java.lang.String projectId)
DatastoreV1.DeleteKey
that deletes entities from the Cloud Datastore for the
specified project.public DatastoreV1.DeleteKey withDatabaseId(java.lang.String databaseId)
DatastoreV1.DeleteKey
that deletes entities from the Cloud Datastore for the
specified database.public DatastoreV1.DeleteKey withLocalhost(java.lang.String localhost)
DatastoreV1.DeleteKey
that deletes entities from the Cloud Datastore Emulator
running locally on the specified host port.public DatastoreV1.DeleteKey withProjectId(ValueProvider<java.lang.String> projectId)
withProjectId(String)
but with a ValueProvider
.public DatastoreV1.DeleteKey withDatabaseId(ValueProvider<java.lang.String> databaseId)
withDatabaseId(String)
but with a ValueProvider
.public DatastoreV1.DeleteKey withRampupThrottlingDisabled()
DatastoreV1.DeleteKey
that does not throttle during ramp-up.public DatastoreV1.DeleteKey withHintNumWorkers(int hintNumWorkers)
DatastoreV1.DeleteKey
with a different worker count hint for ramp-up throttling.
Value is ignored if ramp-up throttling is disabled.public DatastoreV1.DeleteKey withHintNumWorkers(ValueProvider<java.lang.Integer> hintNumWorkers)
withHintNumWorkers(int)
but with a ValueProvider
.public DatastoreV1.DeleteKeyWithSummary withResults()
DatastoreV1.DeleteKeyWithSummary
transform which can be used in Wait.on(PCollection[])
to wait until all data is deleted.
Example: delete a PCollection
of Key
from one database and then from
another database, making sure that deleting a window of data to the second database starts
only after the respective window has been fully deleted from the first database.
public java.lang.String toString()
toString
in class PTransform<PCollection<com.google.datastore.v1.Key>,PDone>
public void populateDisplayData(DisplayData.Builder builder)
PTransform
populateDisplayData(DisplayData.Builder)
is invoked by Pipeline runners to collect
display data via DisplayData.from(HasDisplayData)
. Implementations may call super.populateDisplayData(builder)
in order to register display data in the current namespace,
but should otherwise use subcomponent.populateDisplayData(builder)
to use the namespace
of the subcomponent.
By default, does not register any display data. Implementors may override this method to provide their own display data.
populateDisplayData
in interface HasDisplayData
populateDisplayData
in class PTransform<PCollection<com.google.datastore.v1.Key>,PDone>
builder
- The builder to populate with display data.HasDisplayData
public java.lang.String getProjectId()
public java.lang.String getDatabaseId()
public PDone expand(PCollection<com.google.datastore.v1.Key> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<com.google.datastore.v1.Key>,PDone>