Skip to main content

resources_resource_post

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

Overview

Nameresources_resource_post
TypeResource
Idgoogle.connectors.resources_resource_post

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
_metaobjectMetadata for the resource.
datastring (byte)The content of the resource.
metadataobjectMetadata like service latency, etc.
mimeTypestringThe MIME type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_resource_postselectprojectsId, locationsId, connectionsId, resourcesIdGets a specific resource with POST.

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
connectionsIdstring
locationsIdstring
projectsIdstring
resourcesIdstring

SELECT examples

Gets a specific resource with POST.

SELECT
_meta,
data,
metadata,
mimeType
FROM google.connectors.resources_resource_post
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND connectionsId = '{{ connectionsId }}' -- required
AND resourcesId = '{{ resourcesId }}' -- required
;