Package org.mlflow.api.proto
Interface Service.CreateWorkspaceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.CreateWorkspace,Service.CreateWorkspace.Builder
- Enclosing class:
- Service
public static interface Service.CreateWorkspaceOrBuilder 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 to apply at creation time.com.google.protobuf.ByteStringgetDefaultArtifactRootBytes()Optional default artifact root override to apply at creation time.java.lang.StringgetDescription()Optional workspace description.com.google.protobuf.ByteStringgetDescriptionBytes()Optional workspace description.java.lang.StringgetName()Workspace name to create.com.google.protobuf.ByteStringgetNameBytes()Workspace name to create.booleanhasDefaultArtifactRoot()Optional default artifact root override to apply at creation time.booleanhasDescription()Optional workspace description.booleanhasName()Workspace name to create.-
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()
Workspace name to create.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
Workspace name to create.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Workspace name to create.
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 to apply at creation time.
optional string default_artifact_root = 3;- Returns:
- Whether the defaultArtifactRoot field is set.
-
getDefaultArtifactRoot
java.lang.String getDefaultArtifactRoot()
Optional default artifact root override to apply at creation time.
optional string default_artifact_root = 3;- Returns:
- The defaultArtifactRoot.
-
getDefaultArtifactRootBytes
com.google.protobuf.ByteString getDefaultArtifactRootBytes()
Optional default artifact root override to apply at creation time.
optional string default_artifact_root = 3;- Returns:
- The bytes for defaultArtifactRoot.
-
-