versions
Creates, updates, deletes, gets or lists a versions
resource.
Overview
Name | versions |
Type | Resource |
Id | google.datafusion.versions |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationsId, projectsId | Lists 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 }}';