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 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.