Returns the list of all integrations in the specified project.
Arguments
Parameters | |
---|---|
parent |
Required. Project and location from which the integrations should be listed. Format: projects/{project} |
filter |
Filter on fields of IntegrationVersion. Fields can be compared with literal values by use of ":" (containment), "=" (equality), ">" (greater), "<" (less than), >=" (greater than or equal to), "<=" (less than or equal to), and "!=" (inequality) operators. Negation, conjunction, and disjunction are written using NOT, AND, and OR keywords. For example, organization_id=\"1\" AND state=ACTIVE AND description:"test". Filtering cannot be performed on repeated fields like |
orderBy |
The results would be returned in order you specified here. Supported sort keys are: Descending sort order by "last_modified_time", "created_time", "snapshot_number". Ascending sort order by the integration name. |
pageSize |
The page size for the resquest. |
pageToken |
The page token for the resquest. |
location |
Location of the HTTP endpoint. For example, if location is set to |
Raised exceptions
Exceptions | |
---|---|
ConnectionError |
In case of a network problem (such as DNS failure or refused connection). |
HttpError |
If the response status is >= 400 (excluding 429 and 503). |
TimeoutError |
If a long-running operation takes longer to finish than the specified timeout limit. |
TypeError |
If an operation or function receives an argument of the wrong type. |
ValueError |
If an operation or function receives an argument of the right type but an inappropriate value. For example, a negative timeout. |
Response
If successful, the response contains an instance of GoogleCloudIntegrationsV1alphaListIntegrationsResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation.
YAML
- list: call: googleapis.integrations.v1.projects.locations.integrations.list args: parent: ... filter: ... orderBy: ... pageSize: ... pageToken: ... result: listResult
JSON
[ { "list": { "call": "googleapis.integrations.v1.projects.locations.integrations.list", "args": { "parent": "...", "filter": "...", "orderBy": "...", "pageSize": "...", "pageToken": "..." }, "result": "listResult" } } ]