Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gapic_generator_version: 2.64.2
googleapis_commitish: 05f65958eb7f2a8bc59db87ad40487f0fb093097
googleapis_commitish: b60f5a5783d5ec0e8a8d254f73ad00316b9b646f
libraries_bom_version: 26.72.0

# the libraries are ordered with respect to library name, which is
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\004Type\022\024\n"
+ "\020TYPE_UNSPECIFIED\020\000\022\007\n"
+ "\003ADD\020\001\022\n\n"
+ "\006INVOKE\020\002\"\355\003\n"
+ "\006INVOKE\020\002\"\201\004\n"
+ "\020RichLinkMetadata\022\013\n"
+ "\003uri\030\001 \001(\t\022E\n"
+ "\016rich_link_type\030\002"
Expand All @@ -117,11 +117,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\024meet_space_link_data\030\005"
+ " \001(\0132!.google.chat.v1.MeetSpaceLinkDataH\000\022I\n"
+ "\030calendar_event_link_data\030\006 "
+ "\001(\0132%.google.chat.v1.CalendarEventLinkDataH\000\"r\n"
+ "\001(\0132%.google.chat.v1.CalendarEventLinkDataH\000\"\205\001\n"
+ "\014RichLinkType\022\036\n"
+ "\032RICH_LINK_TYPE_UNSPECIFIED\020\000\022\016\n\n"
+ "DRIVE_FILE\020\001\022\016\n\n"
+ "CHAT_SPACE\020\002\022\016\n\n"
+ "CHAT_SPACE\020\002\022\021\n\r"
+ "GMAIL_MESSAGE\020\003\022\016\n\n"
+ "MEET_SPACE\020\004\022\022\n"
+ "\016CALENDAR_EVENT\020\005B\006\n"
+ "\004data\"H\n"
Expand All @@ -140,8 +141,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "\021MeetSpaceLinkData\022\024\n"
+ "\014meeting_code\030\001 \001(\t\0224\n"
+ "\004type\030\002 \001(\0162&.google.chat.v1.MeetSpaceLinkData.Type\022M\n\r"
+ "huddle_status\030\003 \001(\0162..google.chat.v1."
+ "MeetSpaceLinkData.HuddleStatusB\006\340A\001\340A\003\"5\n"
+ "huddle_status\030\003 \001"
+ "(\0162..google.chat.v1.MeetSpaceLinkData.HuddleStatusB\006\340A\001\340A\003\"5\n"
+ "\004Type\022\024\n"
+ "\020TYPE_UNSPECIFIED\020\000\022\013\n"
+ "\007MEETING\020\001\022\n\n"
Expand All @@ -160,9 +161,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "SLASH_COMMAND\020\002\022\r\n"
+ "\tRICH_LINK\020\003\022\020\n"
+ "\014CUSTOM_EMOJI\020\004B\250\001\n"
+ "\022com.google.chat.v1B\017AnnotationProtoP\001Z,cloud.google.com/go/chat/apiv1/chat"
+ "pb;chatpb\242\002\013DYNAPIProto\252\002\023Google.Apps.Ch"
+ "at.V1\312\002\023Google\\Apps\\Chat\\V1\352\002\026Google::Apps::Chat::V1b\006proto3"
+ "\022com.google.chat.v1B\017AnnotationProtoP\001Z,cloud.google.co"
+ "m/go/chat/apiv1/chatpb;chatpb\242\002\013DYNAPIPr"
+ "oto\252\002\023Google.Apps.Chat.V1\312\002\023Google\\Apps\\"
+ "Chat\\V1\352\002\026Google::Apps::Chat::V1b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,18 @@ public enum RichLinkType implements com.google.protobuf.ProtocolMessageEnum {
* <code>CHAT_SPACE = 2;</code>
*/
CHAT_SPACE(2),
/**
*
*
* <pre>
* A Gmail message rich link type. Specifically, a Gmail chip from [Share to
* Chat](https://support.google.com/chat?p=chat_gmail). The API only
* supports reading messages with GMAIL_MESSAGE rich links.
* </pre>
*
* <code>GMAIL_MESSAGE = 3;</code>
*/
GMAIL_MESSAGE(3),
/**
*
*
Expand Down Expand Up @@ -164,6 +176,19 @@ public enum RichLinkType implements com.google.protobuf.ProtocolMessageEnum {
*/
public static final int CHAT_SPACE_VALUE = 2;

/**
*
*
* <pre>
* A Gmail message rich link type. Specifically, a Gmail chip from [Share to
* Chat](https://support.google.com/chat?p=chat_gmail). The API only
* supports reading messages with GMAIL_MESSAGE rich links.
* </pre>
*
* <code>GMAIL_MESSAGE = 3;</code>
*/
public static final int GMAIL_MESSAGE_VALUE = 3;

/**
*
*
Expand Down Expand Up @@ -216,6 +241,8 @@ public static RichLinkType forNumber(int value) {
return DRIVE_FILE;
case 2:
return CHAT_SPACE;
case 3:
return GMAIL_MESSAGE;
case 4:
return MEET_SPACE;
case 5:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ message RichLinkMetadata {
// A Chat space rich link type. For example, a space smart chip.
CHAT_SPACE = 2;

// A Gmail message rich link type. Specifically, a Gmail chip from [Share to
// Chat](https://support.google.com/chat?p=chat_gmail). The API only
// supports reading messages with GMAIL_MESSAGE rich links.
GMAIL_MESSAGE = 3;

// A Meet message rich link type. For example, a Meet chip.
MEET_SPACE = 4;

Expand Down
Loading
Loading