Package com.google.cloud.notebooks.v1
Interface EventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Event
,Event.Builder
public interface EventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsDetails(String key)
Optional.Map<String,String>
getDetails()
Deprecated.int
getDetailsCount()
Optional.Map<String,String>
getDetailsMap()
Optional.String
getDetailsOrDefault(String key, String defaultValue)
Optional.String
getDetailsOrThrow(String key)
Optional.com.google.protobuf.Timestamp
getReportTime()
Event report time.com.google.protobuf.TimestampOrBuilder
getReportTimeOrBuilder()
Event report time.Event.EventType
getType()
Event type.int
getTypeValue()
Event type.boolean
hasReportTime()
Event report time.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasReportTime
boolean hasReportTime()
Event report time.
.google.protobuf.Timestamp report_time = 1;
- Returns:
- Whether the reportTime field is set.
-
getReportTime
com.google.protobuf.Timestamp getReportTime()
Event report time.
.google.protobuf.Timestamp report_time = 1;
- Returns:
- The reportTime.
-
getReportTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getReportTimeOrBuilder()
Event report time.
.google.protobuf.Timestamp report_time = 1;
-
getTypeValue
int getTypeValue()
Event type.
.google.cloud.notebooks.v1.Event.EventType type = 2;
- Returns:
- The enum numeric value on the wire for type.
-
getType
Event.EventType getType()
Event type.
.google.cloud.notebooks.v1.Event.EventType type = 2;
- Returns:
- The type.
-
getDetailsCount
int getDetailsCount()
Optional. Event details. This field is used to pass event information.
map<string, string> details = 3 [(.google.api.field_behavior) = OPTIONAL];
-
containsDetails
boolean containsDetails(String key)
Optional. Event details. This field is used to pass event information.
map<string, string> details = 3 [(.google.api.field_behavior) = OPTIONAL];
-
getDetails
@Deprecated Map<String,String> getDetails()
Deprecated.UsegetDetailsMap()
instead.
-
getDetailsMap
Map<String,String> getDetailsMap()
Optional. Event details. This field is used to pass event information.
map<string, string> details = 3 [(.google.api.field_behavior) = OPTIONAL];
-
getDetailsOrDefault
String getDetailsOrDefault(String key, String defaultValue)
Optional. Event details. This field is used to pass event information.
map<string, string> details = 3 [(.google.api.field_behavior) = OPTIONAL];
-
-