versions
Creates, updates, deletes, gets or lists a versions
resource.
Overview
Name | versions |
Type | Resource |
Id | google.datafusion.versions |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
availableFeatures | array | Represents a list of available feature names for a given version. |
defaultVersion | boolean | Whether this is currently the default version for Cloud Data Fusion |
type | string | Type represents the release availability of the version |
versionNumber | string | The version number of the Data Fusion instance, such as '6.0.1.0'. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId | pageSize , pageToken , latestPatchOnly | Lists possible versions for Data Fusion instances in the specified 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 | |
latestPatchOnly | boolean | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
Lists possible versions for Data Fusion instances in the specified project and location.
SELECT
availableFeatures,
defaultVersion,
type,
versionNumber
FROM google.datafusion.versions
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND latestPatchOnly = '{{ latestPatchOnly }}';