Package com.google.dataflow.v1beta3
Interface SdkVersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SdkVersion
,SdkVersion.Builder
public interface SdkVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SdkVersion.SdkSupportStatus
getSdkSupportStatus()
The support status for this SDK version.int
getSdkSupportStatusValue()
The support status for this SDK version.String
getVersion()
The version of the SDK used to run the job.com.google.protobuf.ByteString
getVersionBytes()
The version of the SDK used to run the job.String
getVersionDisplayName()
A readable string describing the version of the SDK.com.google.protobuf.ByteString
getVersionDisplayNameBytes()
A readable string describing the version of the SDK.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVersion
String getVersion()
The version of the SDK used to run the job.
string version = 1;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The version of the SDK used to run the job.
string version = 1;
- Returns:
- The bytes for version.
-
getVersionDisplayName
String getVersionDisplayName()
A readable string describing the version of the SDK.
string version_display_name = 2;
- Returns:
- The versionDisplayName.
-
getVersionDisplayNameBytes
com.google.protobuf.ByteString getVersionDisplayNameBytes()
A readable string describing the version of the SDK.
string version_display_name = 2;
- Returns:
- The bytes for versionDisplayName.
-
getSdkSupportStatusValue
int getSdkSupportStatusValue()
The support status for this SDK version.
.google.dataflow.v1beta3.SdkVersion.SdkSupportStatus sdk_support_status = 3;
- Returns:
- The enum numeric value on the wire for sdkSupportStatus.
-
getSdkSupportStatus
SdkVersion.SdkSupportStatus getSdkSupportStatus()
The support status for this SDK version.
.google.dataflow.v1beta3.SdkVersion.SdkSupportStatus sdk_support_status = 3;
- Returns:
- The sdkSupportStatus.
-
-