Skip to content

Commit c00a076

Browse files
chore: generate libraries at Mon Dec 15 22:37:25 UTC 2025
1 parent 0bf4bcf commit c00a076

File tree

1,136 files changed

+217493
-33212
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,136 files changed

+217493
-33212
lines changed

java-chat/proto-google-cloud-chat-v1/src/main/java/com/google/chat/v1/AnnotationProto.java

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
106106
+ "\004Type\022\024\n"
107107
+ "\020TYPE_UNSPECIFIED\020\000\022\007\n"
108108
+ "\003ADD\020\001\022\n\n"
109-
+ "\006INVOKE\020\002\"\355\003\n"
109+
+ "\006INVOKE\020\002\"\201\004\n"
110110
+ "\020RichLinkMetadata\022\013\n"
111111
+ "\003uri\030\001 \001(\t\022E\n"
112112
+ "\016rich_link_type\030\002"
@@ -117,11 +117,12 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
117117
+ "\024meet_space_link_data\030\005"
118118
+ " \001(\0132!.google.chat.v1.MeetSpaceLinkDataH\000\022I\n"
119119
+ "\030calendar_event_link_data\030\006 "
120-
+ "\001(\0132%.google.chat.v1.CalendarEventLinkDataH\000\"r\n"
120+
+ "\001(\0132%.google.chat.v1.CalendarEventLinkDataH\000\"\205\001\n"
121121
+ "\014RichLinkType\022\036\n"
122122
+ "\032RICH_LINK_TYPE_UNSPECIFIED\020\000\022\016\n\n"
123123
+ "DRIVE_FILE\020\001\022\016\n\n"
124-
+ "CHAT_SPACE\020\002\022\016\n\n"
124+
+ "CHAT_SPACE\020\002\022\021\n\r"
125+
+ "GMAIL_MESSAGE\020\003\022\016\n\n"
125126
+ "MEET_SPACE\020\004\022\022\n"
126127
+ "\016CALENDAR_EVENT\020\005B\006\n"
127128
+ "\004data\"H\n"
@@ -140,8 +141,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
140141
+ "\021MeetSpaceLinkData\022\024\n"
141142
+ "\014meeting_code\030\001 \001(\t\0224\n"
142143
+ "\004type\030\002 \001(\0162&.google.chat.v1.MeetSpaceLinkData.Type\022M\n\r"
143-
+ "huddle_status\030\003 \001(\0162..google.chat.v1."
144-
+ "MeetSpaceLinkData.HuddleStatusB\006\340A\001\340A\003\"5\n"
144+
+ "huddle_status\030\003 \001"
145+
+ "(\0162..google.chat.v1.MeetSpaceLinkData.HuddleStatusB\006\340A\001\340A\003\"5\n"
145146
+ "\004Type\022\024\n"
146147
+ "\020TYPE_UNSPECIFIED\020\000\022\013\n"
147148
+ "\007MEETING\020\001\022\n\n"
@@ -160,9 +161,10 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
160161
+ "SLASH_COMMAND\020\002\022\r\n"
161162
+ "\tRICH_LINK\020\003\022\020\n"
162163
+ "\014CUSTOM_EMOJI\020\004B\250\001\n"
163-
+ "\022com.google.chat.v1B\017AnnotationProtoP\001Z,cloud.google.com/go/chat/apiv1/chat"
164-
+ "pb;chatpb\242\002\013DYNAPIProto\252\002\023Google.Apps.Ch"
165-
+ "at.V1\312\002\023Google\\Apps\\Chat\\V1\352\002\026Google::Apps::Chat::V1b\006proto3"
164+
+ "\022com.google.chat.v1B\017AnnotationProtoP\001Z,cloud.google.co"
165+
+ "m/go/chat/apiv1/chatpb;chatpb\242\002\013DYNAPIPr"
166+
+ "oto\252\002\023Google.Apps.Chat.V1\312\002\023Google\\Apps\\"
167+
+ "Chat\\V1\352\002\026Google::Apps::Chat::V1b\006proto3"
166168
};
167169
descriptor =
168170
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(

java-chat/proto-google-cloud-chat-v1/src/main/java/com/google/chat/v1/RichLinkMetadata.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,18 @@ public enum RichLinkType implements com.google.protobuf.ProtocolMessageEnum {
108108
* <code>CHAT_SPACE = 2;</code>
109109
*/
110110
CHAT_SPACE(2),
111+
/**
112+
*
113+
*
114+
* <pre>
115+
* A Gmail message rich link type. Specifically, a Gmail chip from [Share to
116+
* Chat](https://support.google.com/chat?p=chat_gmail). The API only
117+
* supports reading messages with GMAIL_MESSAGE rich links.
118+
* </pre>
119+
*
120+
* <code>GMAIL_MESSAGE = 3;</code>
121+
*/
122+
GMAIL_MESSAGE(3),
111123
/**
112124
*
113125
*
@@ -164,6 +176,19 @@ public enum RichLinkType implements com.google.protobuf.ProtocolMessageEnum {
164176
*/
165177
public static final int CHAT_SPACE_VALUE = 2;
166178

179+
/**
180+
*
181+
*
182+
* <pre>
183+
* A Gmail message rich link type. Specifically, a Gmail chip from [Share to
184+
* Chat](https://support.google.com/chat?p=chat_gmail). The API only
185+
* supports reading messages with GMAIL_MESSAGE rich links.
186+
* </pre>
187+
*
188+
* <code>GMAIL_MESSAGE = 3;</code>
189+
*/
190+
public static final int GMAIL_MESSAGE_VALUE = 3;
191+
167192
/**
168193
*
169194
*
@@ -216,6 +241,8 @@ public static RichLinkType forNumber(int value) {
216241
return DRIVE_FILE;
217242
case 2:
218243
return CHAT_SPACE;
244+
case 3:
245+
return GMAIL_MESSAGE;
219246
case 4:
220247
return MEET_SPACE;
221248
case 5:

java-chat/proto-google-cloud-chat-v1/src/main/proto/google/chat/v1/annotation.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ message RichLinkMetadata {
152152
// A Chat space rich link type. For example, a space smart chip.
153153
CHAT_SPACE = 2;
154154

155+
// A Gmail message rich link type. Specifically, a Gmail chip from [Share to
156+
// Chat](https://support.google.com/chat?p=chat_gmail). The API only
157+
// supports reading messages with GMAIL_MESSAGE rich links.
158+
GMAIL_MESSAGE = 3;
159+
155160
// A Meet message rich link type. For example, a Meet chip.
156161
MEET_SPACE = 4;
157162

0 commit comments

Comments
 (0)