Package org.mlflow.api.proto
Interface ModelRegistry.GetModelVersionDownloadUri.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ModelRegistry.GetModelVersionDownloadUri.Response
,ModelRegistry.GetModelVersionDownloadUri.Response.Builder
- Enclosing class:
- ModelRegistry.GetModelVersionDownloadUri
public static interface ModelRegistry.GetModelVersionDownloadUri.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArtifactUri()
URI corresponding to where artifacts for this model version are stored.com.google.protobuf.ByteString
getArtifactUriBytes()
URI corresponding to where artifacts for this model version are stored.boolean
hasArtifactUri()
URI corresponding to where artifacts for this model version are stored.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasArtifactUri
boolean hasArtifactUri()
URI corresponding to where artifacts for this model version are stored.
optional string artifact_uri = 1;
- Returns:
- Whether the artifactUri field is set.
-
getArtifactUri
java.lang.String getArtifactUri()
URI corresponding to where artifacts for this model version are stored.
optional string artifact_uri = 1;
- Returns:
- The artifactUri.
-
getArtifactUriBytes
com.google.protobuf.ByteString getArtifactUriBytes()
URI corresponding to where artifacts for this model version are stored.
optional string artifact_uri = 1;
- Returns:
- The bytes for artifactUri.
-
-