Interface ChangelogOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Changelog,Changelog.Builder
public interface ChangelogOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()The action of the change.com.google.protobuf.ByteStringgetActionBytes()The action of the change.com.google.protobuf.TimestampgetCreateTime()The timestamp of the change.com.google.protobuf.TimestampOrBuildergetCreateTimeOrBuilder()The timestamp of the change.StringgetDisplayName()The affected resource display name of the change.com.google.protobuf.ByteStringgetDisplayNameBytes()The affected resource display name of the change.StringgetName()The unique identifier of the changelog.com.google.protobuf.ByteStringgetNameBytes()The unique identifier of the changelog.StringgetResource()The affected resource name of the change.com.google.protobuf.ByteStringgetResourceBytes()The affected resource name of the change.StringgetType()The affected resource type.com.google.protobuf.ByteStringgetTypeBytes()The affected resource type.StringgetUserEmail()Email address of the authenticated user.com.google.protobuf.ByteStringgetUserEmailBytes()Email address of the authenticated user.booleanhasCreateTime()The timestamp of the change.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The unique identifier of the changelog. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/changelogs/<Changelog ID>`.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The unique identifier of the changelog. Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/changelogs/<Changelog ID>`.
string name = 1;- Returns:
- The bytes for name.
-
getUserEmail
String getUserEmail()
Email address of the authenticated user.
string user_email = 2;- Returns:
- The userEmail.
-
getUserEmailBytes
com.google.protobuf.ByteString getUserEmailBytes()
Email address of the authenticated user.
string user_email = 2;- Returns:
- The bytes for userEmail.
-
getDisplayName
String getDisplayName()
The affected resource display name of the change.
string display_name = 7;- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The affected resource display name of the change.
string display_name = 7;- Returns:
- The bytes for displayName.
-
getAction
String getAction()
The action of the change.
string action = 11;- Returns:
- The action.
-
getActionBytes
com.google.protobuf.ByteString getActionBytes()
The action of the change.
string action = 11;- Returns:
- The bytes for action.
-
getType
String getType()
The affected resource type.
string type = 8;- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
The affected resource type.
string type = 8;- Returns:
- The bytes for type.
-
getResource
String getResource()
The affected resource name of the change.
string resource = 3;- Returns:
- The resource.
-
getResourceBytes
com.google.protobuf.ByteString getResourceBytes()
The affected resource name of the change.
string resource = 3;- Returns:
- The bytes for resource.
-
hasCreateTime
boolean hasCreateTime()
The timestamp of the change.
.google.protobuf.Timestamp create_time = 4;- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
The timestamp of the change.
.google.protobuf.Timestamp create_time = 4;- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
The timestamp of the change.
.google.protobuf.Timestamp create_time = 4;
-
-