Package flyteidl.core
Interface Tasks.RuntimeMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Tasks.RuntimeMetadata,Tasks.RuntimeMetadata.Builder
- Enclosing class:
- Tasks
public static interface Tasks.RuntimeMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFlavor()+optional It can be used to provide extra information about the runtime (e.g.com.google.protobuf.ByteStringgetFlavorBytes()+optional It can be used to provide extra information about the runtime (e.g.Tasks.RuntimeMetadata.RuntimeTypegetType()Type of runtime.intgetTypeValue()Type of runtime.StringgetVersion()Version of the runtime.com.google.protobuf.ByteStringgetVersionBytes()Version of the runtime.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Type of runtime.
.flyteidl.core.RuntimeMetadata.RuntimeType type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
Tasks.RuntimeMetadata.RuntimeType getType()
Type of runtime.
.flyteidl.core.RuntimeMetadata.RuntimeType type = 1;- Returns:
- The type.
-
getVersion
String getVersion()
Version of the runtime. All versions should be backward compatible. However, certain cases call for version checks to ensure tighter validation or setting expectations.
string version = 2;- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
Version of the runtime. All versions should be backward compatible. However, certain cases call for version checks to ensure tighter validation or setting expectations.
string version = 2;- Returns:
- The bytes for version.
-
getFlavor
String getFlavor()
+optional It can be used to provide extra information about the runtime (e.g. python, golang... etc.).
string flavor = 3;- Returns:
- The flavor.
-
getFlavorBytes
com.google.protobuf.ByteString getFlavorBytes()
+optional It can be used to provide extra information about the runtime (e.g. python, golang... etc.).
string flavor = 3;- Returns:
- The bytes for flavor.
-
-