Skip to main content

entities_entities_with_conditions

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

Overview

Nameentities_entities_with_conditions
TypeResource
Idgoogle.connectors.entities_entities_with_conditions

Fields

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

Methods

NameAccessible byRequired ParamsDescription
delete_entities_with_conditionsDELETEconnectionsId, entityTypesId, locationsId, projectsIdDeletes entities based on conditions specified in the request and not on entity id.
update_entities_with_conditionsUPDATEconnectionsId, entityTypesId, locationsId, projectsIdUpdates entities based on conditions specified in the request and not on entity id.

UPDATE example

Updates a entities_entities_with_conditions resource.

/*+ update */
UPDATE google.connectors.entities_entities_with_conditions
SET
fields = '{{ fields }}'
WHERE
connectionsId = '{{ connectionsId }}'
AND entityTypesId = '{{ entityTypesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';

DELETE example

Deletes the specified entities_entities_with_conditions resource.

/*+ delete */
DELETE FROM google.connectors.entities_entities_with_conditions
WHERE connectionsId = '{{ connectionsId }}'
AND entityTypesId = '{{ entityTypesId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';