Skip to main content

goldengate_deployment_environments

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

Overview

Namegoldengate_deployment_environments
TypeResource
Idgoogle.oracledatabase.goldengate_deployment_environments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsIdpageToken, pageSizeLists 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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 }}'
;