Skip to main content

delete_table_row

Creates, updates, deletes, gets or lists a delete_table_row resource.

Overview

Namedelete_table_row
TypeResource
Idsumologic.lookup_tables.delete_table_row

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
deleteTableRowexecid, region, primaryKeyDelete a row from lookup table by providing the row's primary keys' values. The complete set of primary key fields of the lookup table should be provided.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringIdentifier of the lookup table.
regionstringSumoLogic region (enum: [us2, au, ca, de, eu, fed, in, jp], default: us2)

Lifecycle Methods

Delete a row from lookup table by providing the row's primary keys' values. The complete set of primary key fields of the lookup table should be provided.

EXEC sumologic.lookup_tables.delete_table_row.deleteTableRow 
@id='{{ id }}' --required,
@region='{{ region }}' --required
@@json=
'{
"primaryKey": "{{ primaryKey }}"
}'
;