You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
[default to 'bulk.Request']
object_type
String
The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
[default to 'bulk.Request']
action_on_error
String
The action to be taken when an error occurs during processing of the request. * `Stop` - Stop the processing of the request after the first error. * `Proceed` - Proceed with the processing of the request even when an error occurs.
[optional][default to 'Stop']
actions
Array<String>
[optional]
completion_time
String
The timestamp when the request processing completed.
The processing status of the Request. * `NotStarted` - Indicates that the request processing has not begun yet. * `ObjPresenceCheckInProgress` - Indicates that the object presence check is in progress for this request. * `ObjPresenceCheckComplete` - Indicates that the object presence check is complete. * `ExecutionInProgress` - Indicates that the request processing is in progress. * `Completed` - Indicates that the request processing has been completed successfully. * `Failed` - Indicates that the processing of this request failed.
[optional][readonly][default to 'NotStarted']
status_message
String
The status message corresponding to the status.
[optional][readonly]
uri
String
The URI on which this bulk action is to be performed. The value will be used when there is no override in the SubRequest.
[optional]
verb
String
The type of operation to be performed. One of - Post (Create), Patch (Update) or Delete (Remove). The value will be used when there is no override in the SubRequest. * `POST` - Used to create a REST resource. * `PATCH` - Used to update a REST resource. * `DELETE` - Used to delete a REST resource.