providers
Creates, updates, deletes, gets or lists a providers
resource.
Overview
Name | providers |
Type | Resource |
Id | google.eventarc.providers |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Output only. In projects/{project}/locations/{location}/providers/{provider_id} format. |
displayName | string | Output only. Human friendly name for the Provider. For example "Cloud Storage". |
eventTypes | array | Output only. Event types for this provider. |
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Output only. In projects/{project}/locations/{location}/providers/{provider_id} format. |
displayName | string | Output only. Human friendly name for the Provider. For example "Cloud Storage". |
eventTypes | array | Output only. Event types for this provider. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , providersId | Get a single Provider. | |
list | select | projectsId , locationsId | pageSize , pageToken , orderBy , filter | List 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.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
projectsId | string | |
providersId | string | |
filter | string | |
orderBy | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Get a single Provider.
SELECT
name,
displayName,
eventTypes
FROM google.eventarc.providers
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND providersId = '{{ providersId }}' -- required;
List providers.
SELECT
name,
displayName,
eventTypes
FROM google.eventarc.providers
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND orderBy = '{{ orderBy }}'
AND filter = '{{ filter }}';