Skip to main content

providers

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

Overview

Nameproviders
TypeResource
Idgoogle.eventarc.providers

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. In projects/{project}/locations/{location}/providers/{provider_id} format.
displayNamestringOutput only. Human friendly name for the Provider. For example "Cloud Storage".
eventTypesarrayOutput only. Event types for this provider.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, providersIdGet a single Provider.
listselectprojectsId, locationsIdpageSize, pageToken, orderBy, filterList providers.

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
locationsIdstring
projectsIdstring
providersIdstring
filterstring
orderBystring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Get a single Provider.

SELECT
name,
displayName,
eventTypes
FROM google.eventarc.providers
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND providersId = '{{ providersId }}' -- required;