resources_resource_post
Creates, updates, deletes, gets or lists a resources_resource_post resource.
Overview
| Name | resources_resource_post |
| Type | Resource |
| Id | google.connectors.resources_resource_post |
Fields
The following fields are returned by SELECT queries:
- get_resource_post
| Name | Datatype | Description |
|---|---|---|
_meta | object | Metadata for the resource. |
data | string (byte) | The content of the resource. |
metadata | object | Metadata like service latency, etc. |
mimeType | string | The MIME type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_resource_post | select | projectsId, locationsId, connectionsId, resourcesId | Gets 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.
| Name | Datatype | Description |
|---|---|---|
connectionsId | string | |
locationsId | string | |
projectsId | string | |
resourcesId | string |
SELECT examples
- get_resource_post
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
;