goldengate_deployment_environments
Creates, updates, deletes, gets or lists a goldengate_deployment_environments resource.
Overview
| Name | goldengate_deployment_environments |
| Type | Resource |
| Id | google.oracledatabase.goldengate_deployment_environments |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | projectsId, locationsId | pageToken, pageSize | Lists GoldengateDeploymentEnvironments in a given project and location. |
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 | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- list
Lists GoldengateDeploymentEnvironments in a given project and location.
SELECT
*
FROM google.oracledatabase.goldengate_deployment_environments
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageToken = '{{ pageToken }}'
AND pageSize = '{{ pageSize }}'
;