Class BulkOperation
-
- All Implemented Interfaces:
public final class BulkOperationA bulk operation entity.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBulkOperation.BuilderA builder for BulkOperation.
public final classBulkOperation.StatusThe status of the bulk operation.
public final classBulkOperation.ErrorItem
-
Method Summary
Modifier and Type Method Description final Stringid()Unique identifier for the bulk operation. final String_typename()The typename of the schema. final LongestimatedTotalRows()The estimated total number of rows to process. final OffsetDateTimeinsertedAt()Timestamp when the resource was created. final Stringname()The name of the bulk operation. final LongprocessedRows()The number of rows processed so far. final BulkOperation.Statusstatus()The status of the bulk operation. final LongsuccessCount()The number of successful operations. final OffsetDateTimeupdatedAt()The timestamp when the resource was last updated. final Optional<OffsetDateTime>completedAt()Timestamp when the bulk operation was completed. final Optional<Long>errorCount()The number of failed operations. final Optional<List<BulkOperation.ErrorItem>>errorItems()A list of items that failed to be processed. final Optional<OffsetDateTime>failedAt()Timestamp when the bulk operation failed. final Optional<String>progressPath()The URI to the bulk operation's progress. final Optional<OffsetDateTime>startedAt()Timestamp when the bulk operation was started. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>__typename()Returns the raw JSON value of _typename. final JsonField<Long>_estimatedTotalRows()Returns the raw JSON value of estimatedTotalRows. final JsonField<OffsetDateTime>_insertedAt()Returns the raw JSON value of insertedAt. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<Long>_processedRows()Returns the raw JSON value of processedRows. final JsonField<BulkOperation.Status>_status()Returns the raw JSON value of status. final JsonField<Long>_successCount()Returns the raw JSON value of successCount. final JsonField<OffsetDateTime>_updatedAt()Returns the raw JSON value of updatedAt. final JsonField<OffsetDateTime>_completedAt()Returns the raw JSON value of completedAt. final JsonField<Long>_errorCount()Returns the raw JSON value of errorCount. final JsonField<List<BulkOperation.ErrorItem>>_errorItems()Returns the raw JSON value of errorItems. final JsonField<OffsetDateTime>_failedAt()Returns the raw JSON value of failedAt. final JsonField<String>_progressPath()Returns the raw JSON value of progressPath. final JsonField<OffsetDateTime>_startedAt()Returns the raw JSON value of startedAt. final Map<String, JsonValue>_additionalProperties()final BulkOperation.BuildertoBuilder()final BulkOperationvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BulkOperation.Builderbuilder()Returns a mutable builder for constructing an instance of BulkOperation. -
-
Method Detail
-
estimatedTotalRows
final Long estimatedTotalRows()
The estimated total number of rows to process.
-
insertedAt
final OffsetDateTime insertedAt()
Timestamp when the resource was created.
-
processedRows
final Long processedRows()
The number of rows processed so far.
-
status
final BulkOperation.Status status()
The status of the bulk operation.
-
successCount
final Long successCount()
The number of successful operations.
-
updatedAt
final OffsetDateTime updatedAt()
The timestamp when the resource was last updated.
-
completedAt
final Optional<OffsetDateTime> completedAt()
Timestamp when the bulk operation was completed.
-
errorCount
final Optional<Long> errorCount()
The number of failed operations.
-
errorItems
final Optional<List<BulkOperation.ErrorItem>> errorItems()
A list of items that failed to be processed.
-
failedAt
final Optional<OffsetDateTime> failedAt()
Timestamp when the bulk operation failed.
-
progressPath
final Optional<String> progressPath()
The URI to the bulk operation's progress.
-
startedAt
final Optional<OffsetDateTime> startedAt()
Timestamp when the bulk operation was started.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
__typename
final JsonField<String> __typename()
Returns the raw JSON value of _typename.
Unlike _typename, this method doesn't throw if the JSON field has an unexpected type.
-
_estimatedTotalRows
final JsonField<Long> _estimatedTotalRows()
Returns the raw JSON value of estimatedTotalRows.
Unlike estimatedTotalRows, this method doesn't throw if the JSON field has an unexpected type.
-
_insertedAt
final JsonField<OffsetDateTime> _insertedAt()
Returns the raw JSON value of insertedAt.
Unlike insertedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_name
final JsonField<String> _name()
Returns the raw JSON value of name.
Unlike name, this method doesn't throw if the JSON field has an unexpected type.
-
_processedRows
final JsonField<Long> _processedRows()
Returns the raw JSON value of processedRows.
Unlike processedRows, this method doesn't throw if the JSON field has an unexpected type.
-
_status
final JsonField<BulkOperation.Status> _status()
Returns the raw JSON value of status.
Unlike status, this method doesn't throw if the JSON field has an unexpected type.
-
_successCount
final JsonField<Long> _successCount()
Returns the raw JSON value of successCount.
Unlike successCount, this method doesn't throw if the JSON field has an unexpected type.
-
_updatedAt
final JsonField<OffsetDateTime> _updatedAt()
Returns the raw JSON value of updatedAt.
Unlike updatedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_completedAt
final JsonField<OffsetDateTime> _completedAt()
Returns the raw JSON value of completedAt.
Unlike completedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_errorCount
final JsonField<Long> _errorCount()
Returns the raw JSON value of errorCount.
Unlike errorCount, this method doesn't throw if the JSON field has an unexpected type.
-
_errorItems
final JsonField<List<BulkOperation.ErrorItem>> _errorItems()
Returns the raw JSON value of errorItems.
Unlike errorItems, this method doesn't throw if the JSON field has an unexpected type.
-
_failedAt
final JsonField<OffsetDateTime> _failedAt()
Returns the raw JSON value of failedAt.
Unlike failedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_progressPath
final JsonField<String> _progressPath()
Returns the raw JSON value of progressPath.
Unlike progressPath, this method doesn't throw if the JSON field has an unexpected type.
-
_startedAt
final JsonField<OffsetDateTime> _startedAt()
Returns the raw JSON value of startedAt.
Unlike startedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BulkOperation.Builder toBuilder()
-
validate
final BulkOperation validate()
-
builder
final static BulkOperation.Builder builder()
Returns a mutable builder for constructing an instance of BulkOperation.
The following fields are required:
.id() ._typename() .estimatedTotalRows() .insertedAt() .name() .processedRows() .status() .successCount() .updatedAt()
-
-
-
-