Package com.google.cloud.iot.v1
Interface EventNotificationConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EventNotificationConfig,EventNotificationConfig.Builder
public interface EventNotificationConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPubsubTopicName()A Cloud Pub/Sub topic name.com.google.protobuf.ByteStringgetPubsubTopicNameBytes()A Cloud Pub/Sub topic name.StringgetSubfolderMatches()If the subfolder name matches this string exactly, this configuration will be used.com.google.protobuf.ByteStringgetSubfolderMatchesBytes()If the subfolder name matches this string exactly, this configuration will be used.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSubfolderMatches
String getSubfolderMatches()
If the subfolder name matches this string exactly, this configuration will be used. The string must not include the leading '/' character. If empty, all strings are matched. This field is used only for telemetry events; subfolders are not supported for state changes.
string subfolder_matches = 2;- Returns:
- The subfolderMatches.
-
getSubfolderMatchesBytes
com.google.protobuf.ByteString getSubfolderMatchesBytes()
If the subfolder name matches this string exactly, this configuration will be used. The string must not include the leading '/' character. If empty, all strings are matched. This field is used only for telemetry events; subfolders are not supported for state changes.
string subfolder_matches = 2;- Returns:
- The bytes for subfolderMatches.
-
getPubsubTopicName
String getPubsubTopicName()
A Cloud Pub/Sub topic name. For example, `projects/myProject/topics/deviceEvents`.
string pubsub_topic_name = 1;- Returns:
- The pubsubTopicName.
-
getPubsubTopicNameBytes
com.google.protobuf.ByteString getPubsubTopicNameBytes()
A Cloud Pub/Sub topic name. For example, `projects/myProject/topics/deviceEvents`.
string pubsub_topic_name = 1;- Returns:
- The bytes for pubsubTopicName.
-
-