Package org.mlflow.api.proto
Interface Service.WorkspaceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.Workspace,Service.Workspace.Builder
- Enclosing class:
- Service
public static interface Service.WorkspaceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefaultArtifactRoot()Optional default artifact root override for this workspace.com.google.protobuf.ByteStringgetDefaultArtifactRootBytes()Optional default artifact root override for this workspace.java.lang.StringgetDescription()Optional workspace description.com.google.protobuf.ByteStringgetDescriptionBytes()Optional workspace description.java.lang.StringgetName()The unique workspace name.com.google.protobuf.ByteStringgetNameBytes()The unique workspace name.booleanhasDefaultArtifactRoot()Optional default artifact root override for this workspace.booleanhasDescription()Optional workspace description.booleanhasName()The unique workspace name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
The unique workspace name.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The unique workspace name.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The unique workspace name.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for name.
-
hasDescription
boolean hasDescription()
Optional workspace description.
optional string description = 2;- Returns:
- Whether the description field is set.
-
getDescription
java.lang.String getDescription()
Optional workspace description.
optional string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Optional workspace description.
optional string description = 2;- Returns:
- The bytes for description.
-
hasDefaultArtifactRoot
boolean hasDefaultArtifactRoot()
Optional default artifact root override for this workspace.
optional string default_artifact_root = 3;- Returns:
- Whether the defaultArtifactRoot field is set.
-
getDefaultArtifactRoot
java.lang.String getDefaultArtifactRoot()
Optional default artifact root override for this workspace.
optional string default_artifact_root = 3;- Returns:
- The defaultArtifactRoot.
-
getDefaultArtifactRootBytes
com.google.protobuf.ByteString getDefaultArtifactRootBytes()
Optional default artifact root override for this workspace.
optional string default_artifact_root = 3;- Returns:
- The bytes for defaultArtifactRoot.
-
-