The SalesforceRestObjectDataProvider data provider class.
More...
|
|
hash< auto > | desc |
| | The description of this object type.
|
| |
|
SalesforceRestClient | rest |
| | The REST client object for API calls.
|
| |
◆ createRecordImpl()
| *hash<auto> SalesforceRestDataProvider::SalesforceRestObjectDataProvider::createRecordImpl |
( |
hash< auto > |
rec, |
|
|
*hash< auto > |
create_options |
|
) |
| |
|
protected |
Creates the given record to the data provider.
- Parameters
-
| rec | a hash representing a single input record |
| create_options | the create options after processing by validateCreateOptions() |
- Returns
- the data written to the data provider with the
"id" field of the new record
- Exceptions
-
| DUPLICATE-RECORD | this exception should be thrown if the provider fails due to an attempt to create a duplicate record |
◆ deleteRecordsImpl()
| int SalesforceRestDataProvider::SalesforceRestObjectDataProvider::deleteRecordsImpl |
( |
*hash< auto > |
where_cond, |
|
|
*hash< auto > |
search_options |
|
) |
| |
|
protected |
Deletes zero or more records.
- Parameters
-
| where_cond | a hash for identifying the record(s) to be deleted |
| search_options | the delete options after processing by validateSearchOptions() |
- Returns
- the number of records deleted
◆ fixSalesforceRecord()
| *hash<auto> SalesforceRestDataProvider::SalesforceRestObjectDataProvider::fixSalesforceRecord |
( |
*hash< auto > |
rec | ) |
|
|
protected |
Fix salesforce records for serialization.
Ensure that:
DATE fields are serialized as YYYY-MM-DD strings
TIME fields are serialized as HH:mm:SS.xx strings
◆ searchRecordsImpl()
| AbstractDataProviderRecordIterator SalesforceRestDataProvider::SalesforceRestObjectDataProvider::searchRecordsImpl |
( |
*hash< auto > |
where_cond, |
|
|
*hash< auto > |
search_options |
|
) |
| |
|
protected |
Returns an iterator for zero or more records matching the search options.
- Parameters
-
| where_cond | the search criteria |
| search_options | the search options after processing by validateSearchOptions() |
- See also
- requestSearchRecordsImpl()
◆ updateRecordsImpl()
| int SalesforceRestDataProvider::SalesforceRestObjectDataProvider::updateRecordsImpl |
( |
hash< auto > |
set, |
|
|
hash< auto > |
where_cond, |
|
|
*hash< auto > |
search_options |
|
) |
| |
|
protected |
Updates zero or more records matching the search options.
- Parameters
-
| set | the hash of field data to set |
| where_cond | a hash for identifying the record(s) to be updated |
| search_options | the update options after processing by validateSearchOptions() |
- Returns
- the number of records updated
◆ upsertRecordImpl()
| string SalesforceRestDataProvider::SalesforceRestObjectDataProvider::upsertRecordImpl |
( |
hash< auto > |
rec, |
|
|
*hash< auto > |
upsert_options |
|
) |
| |
|
protected |
Upserts the given record to the data provider.
- Parameters
-
| rec | a hash representing a single input record |
| upsert_options | the create options after processing by validateUpsertOptions() |
- Returns
- see db_provider_upsert_results for possible values