Package org.mlflow.api.proto
Interface Webhooks.UpdateWebhookOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Webhooks.UpdateWebhook
,Webhooks.UpdateWebhook.Builder
- Enclosing class:
- Webhooks
public static interface Webhooks.UpdateWebhookOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
New description for the webhookcom.google.protobuf.ByteString
getDescriptionBytes()
New description for the webhookWebhooks.WebhookEvent
getEvents(int index)
New list of events to subscribe toint
getEventsCount()
New list of events to subscribe tojava.util.List<Webhooks.WebhookEvent>
getEventsList()
New list of events to subscribe toWebhooks.WebhookEventOrBuilder
getEventsOrBuilder(int index)
New list of events to subscribe tojava.util.List<? extends Webhooks.WebhookEventOrBuilder>
getEventsOrBuilderList()
New list of events to subscribe tojava.lang.String
getName()
New name for the webhookcom.google.protobuf.ByteString
getNameBytes()
New name for the webhookjava.lang.String
getSecret()
New secret key for HMAC signaturecom.google.protobuf.ByteString
getSecretBytes()
New secret key for HMAC signatureWebhooks.WebhookStatus
getStatus()
New status for the webhookjava.lang.String
getUrl()
New URL for the webhookcom.google.protobuf.ByteString
getUrlBytes()
New URL for the webhookjava.lang.String
getWebhookId()
ID of the webhook to updatecom.google.protobuf.ByteString
getWebhookIdBytes()
ID of the webhook to updateboolean
hasDescription()
New description for the webhookboolean
hasName()
New name for the webhookboolean
hasSecret()
New secret key for HMAC signatureboolean
hasStatus()
New status for the webhookboolean
hasUrl()
New URL for the webhookboolean
hasWebhookId()
ID of the webhook to update-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasWebhookId
boolean hasWebhookId()
ID of the webhook to update
optional string webhook_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- Whether the webhookId field is set.
-
getWebhookId
java.lang.String getWebhookId()
ID of the webhook to update
optional string webhook_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The webhookId.
-
getWebhookIdBytes
com.google.protobuf.ByteString getWebhookIdBytes()
ID of the webhook to update
optional string webhook_id = 1 [(.mlflow.validate_required) = true];
- Returns:
- The bytes for webhookId.
-
hasName
boolean hasName()
New name for the webhook
optional string name = 2;
- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
New name for the webhook
optional string name = 2;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
New name for the webhook
optional string name = 2;
- Returns:
- The bytes for name.
-
hasDescription
boolean hasDescription()
New description for the webhook
optional string description = 3;
- Returns:
- Whether the description field is set.
-
getDescription
java.lang.String getDescription()
New description for the webhook
optional string description = 3;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
New description for the webhook
optional string description = 3;
- Returns:
- The bytes for description.
-
hasUrl
boolean hasUrl()
New URL for the webhook
optional string url = 4;
- Returns:
- Whether the url field is set.
-
getUrl
java.lang.String getUrl()
New URL for the webhook
optional string url = 4;
- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
New URL for the webhook
optional string url = 4;
- Returns:
- The bytes for url.
-
getEventsList
java.util.List<Webhooks.WebhookEvent> getEventsList()
New list of events to subscribe to
repeated .mlflow.WebhookEvent events = 5;
-
getEvents
Webhooks.WebhookEvent getEvents(int index)
New list of events to subscribe to
repeated .mlflow.WebhookEvent events = 5;
-
getEventsCount
int getEventsCount()
New list of events to subscribe to
repeated .mlflow.WebhookEvent events = 5;
-
getEventsOrBuilderList
java.util.List<? extends Webhooks.WebhookEventOrBuilder> getEventsOrBuilderList()
New list of events to subscribe to
repeated .mlflow.WebhookEvent events = 5;
-
getEventsOrBuilder
Webhooks.WebhookEventOrBuilder getEventsOrBuilder(int index)
New list of events to subscribe to
repeated .mlflow.WebhookEvent events = 5;
-
hasSecret
boolean hasSecret()
New secret key for HMAC signature
optional string secret = 6;
- Returns:
- Whether the secret field is set.
-
getSecret
java.lang.String getSecret()
New secret key for HMAC signature
optional string secret = 6;
- Returns:
- The secret.
-
getSecretBytes
com.google.protobuf.ByteString getSecretBytes()
New secret key for HMAC signature
optional string secret = 6;
- Returns:
- The bytes for secret.
-
hasStatus
boolean hasStatus()
New status for the webhook
optional .mlflow.WebhookStatus status = 7;
- Returns:
- Whether the status field is set.
-
getStatus
Webhooks.WebhookStatus getStatus()
New status for the webhook
optional .mlflow.WebhookStatus status = 7;
- Returns:
- The status.
-
-