Skip to main content

versions

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

Overview

Nameversions
TypeResource
Idgoogle.datafusion.versions

Fields

NameDatatypeDescription
availableFeaturesarrayRepresents a list of available feature names for a given version.
defaultVersionbooleanWhether this is currently the default version for Cloud Data Fusion
typestringType represents the release availability of the version
versionNumberstringThe version number of the Data Fusion instance, such as '6.0.1.0'.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationsId, projectsIdLists possible versions for Data Fusion instances in the specified project and location.

SELECT examples

Lists possible versions for Data Fusion instances in the specified project and location.

SELECT
availableFeatures,
defaultVersion,
type,
versionNumber
FROM google.datafusion.versions
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';