Interface ModelSourceInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ModelSourceInfo
,ModelSourceInfo.Builder
public interface ModelSourceInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getCopy()
If this Model is copy of another Model.ModelSourceInfo.ModelSourceType
getSourceType()
Type of the model source.int
getSourceTypeValue()
Type of the model source.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSourceTypeValue
int getSourceTypeValue()
Type of the model source.
.google.cloud.aiplatform.v1beta1.ModelSourceInfo.ModelSourceType source_type = 1;
- Returns:
- The enum numeric value on the wire for sourceType.
-
getSourceType
ModelSourceInfo.ModelSourceType getSourceType()
Type of the model source.
.google.cloud.aiplatform.v1beta1.ModelSourceInfo.ModelSourceType source_type = 1;
- Returns:
- The sourceType.
-
getCopy
boolean getCopy()
If this Model is copy of another Model. If true then [source_type][google.cloud.aiplatform.v1beta1.ModelSourceInfo.source_type] pertains to the original.
bool copy = 2;
- Returns:
- The copy.
-
-