Package org.mlflow.api.proto
Interface Webhooks.WebhookEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Webhooks.WebhookEvent
,Webhooks.WebhookEvent.Builder
- Enclosing class:
- Webhooks
public static interface Webhooks.WebhookEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Webhooks.WebhookAction
getAction()
Action type (required)Webhooks.WebhookEntity
getEntity()
Entity type (required)boolean
hasAction()
Action type (required)boolean
hasEntity()
Entity type (required)-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEntity
boolean hasEntity()
Entity type (required)
optional .mlflow.WebhookEntity entity = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the entity field is set.
-
getEntity
Webhooks.WebhookEntity getEntity()
Entity type (required)
optional .mlflow.WebhookEntity entity = 1 [(.mlflow.validate_required) = true];
- Returns:
- The entity.
-
hasAction
boolean hasAction()
Action type (required)
optional .mlflow.WebhookAction action = 2 [(.mlflow.validate_required) = true];
- Returns:
- Whether the action field is set.
-
getAction
Webhooks.WebhookAction getAction()
Action type (required)
optional .mlflow.WebhookAction action = 2 [(.mlflow.validate_required) = true];
- Returns:
- The action.
-
-