Package com.google.cloud.datafusion.v1
Interface VersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Version
,Version.Builder
public interface VersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAvailableFeatures(int index)
Represents a list of available feature names for a given version.com.google.protobuf.ByteString
getAvailableFeaturesBytes(int index)
Represents a list of available feature names for a given version.int
getAvailableFeaturesCount()
Represents a list of available feature names for a given version.List<String>
getAvailableFeaturesList()
Represents a list of available feature names for a given version.boolean
getDefaultVersion()
Whether this is currently the default version for Cloud Data FusionVersion.Type
getType()
Type represents the release availability of the versionint
getTypeValue()
Type represents the release availability of the versionString
getVersionNumber()
The version number of the Data Fusion instance, such as '6.0.1.0'.com.google.protobuf.ByteString
getVersionNumberBytes()
The version number of the Data Fusion instance, such as '6.0.1.0'.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersionNumber
String getVersionNumber()
The version number of the Data Fusion instance, such as '6.0.1.0'.
string version_number = 1;
- Returns:
- The versionNumber.
-
getVersionNumberBytes
com.google.protobuf.ByteString getVersionNumberBytes()
The version number of the Data Fusion instance, such as '6.0.1.0'.
string version_number = 1;
- Returns:
- The bytes for versionNumber.
-
getDefaultVersion
boolean getDefaultVersion()
Whether this is currently the default version for Cloud Data Fusion
bool default_version = 2;
- Returns:
- The defaultVersion.
-
getAvailableFeaturesList
List<String> getAvailableFeaturesList()
Represents a list of available feature names for a given version.
repeated string available_features = 3;
- Returns:
- A list containing the availableFeatures.
-
getAvailableFeaturesCount
int getAvailableFeaturesCount()
Represents a list of available feature names for a given version.
repeated string available_features = 3;
- Returns:
- The count of availableFeatures.
-
getAvailableFeatures
String getAvailableFeatures(int index)
Represents a list of available feature names for a given version.
repeated string available_features = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The availableFeatures at the given index.
-
getAvailableFeaturesBytes
com.google.protobuf.ByteString getAvailableFeaturesBytes(int index)
Represents a list of available feature names for a given version.
repeated string available_features = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the availableFeatures at the given index.
-
getTypeValue
int getTypeValue()
Type represents the release availability of the version
.google.cloud.datafusion.v1.Version.Type type = 4;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Version.Type getType()
Type represents the release availability of the version
.google.cloud.datafusion.v1.Version.Type type = 4;
- Returns:
- The type.
-
-