Package flyteidl.admin
Interface Common.SlackNotificationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Common.SlackNotification,Common.SlackNotification.Builder
- Enclosing class:
- Common
public static interface Common.SlackNotificationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetRecipientsEmail(int index)Currently, Slack notifications leverage email to trigger a notification.com.google.protobuf.ByteStringgetRecipientsEmailBytes(int index)Currently, Slack notifications leverage email to trigger a notification.intgetRecipientsEmailCount()Currently, Slack notifications leverage email to trigger a notification.List<String>getRecipientsEmailList()Currently, Slack notifications leverage email to trigger a notification.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRecipientsEmailList
List<String> getRecipientsEmailList()
Currently, Slack notifications leverage email to trigger a notification. +required
repeated string recipients_email = 1;- Returns:
- A list containing the recipientsEmail.
-
getRecipientsEmailCount
int getRecipientsEmailCount()
Currently, Slack notifications leverage email to trigger a notification. +required
repeated string recipients_email = 1;- Returns:
- The count of recipientsEmail.
-
getRecipientsEmail
String getRecipientsEmail(int index)
Currently, Slack notifications leverage email to trigger a notification. +required
repeated string recipients_email = 1;- Parameters:
index- The index of the element to return.- Returns:
- The recipientsEmail at the given index.
-
getRecipientsEmailBytes
com.google.protobuf.ByteString getRecipientsEmailBytes(int index)
Currently, Slack notifications leverage email to trigger a notification. +required
repeated string recipients_email = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the recipientsEmail at the given index.
-
-