blob: f13b795d55c259fe56771766f90b0c964f3bec54 [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="groupssettings_v1.html">Groups Settings API</a> . <a href="groupssettings_v1.groups.html">groups</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -040081 <code><a href="#get">get(groupUniqueId)</a></code></p>
82<p class="firstline">Gets one resource by id.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#patch">patch(groupUniqueId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Updates an existing resource. This method supports patch semantics.</p>
86<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070087 <code><a href="#update">update(groupUniqueId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Updates an existing resource.</p>
89<h3>Method Details</h3>
90<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070091 <code class="details" id="close">close()</code>
92 <pre>Close httplib2 connections.</pre>
93</div>
94
95<div class="method">
John Asmuth614db982014-04-24 15:46:26 -040096 <code class="details" id="get">get(groupUniqueId)</code>
97 <pre>Gets one resource by id.
98
99Args:
Bu Sun Kim65020912020-05-20 12:08:20 -0700100 groupUniqueId: string, The group&#x27;s email address. (required)
John Asmuth614db982014-04-24 15:46:26 -0400101
102Returns:
103 An object of the form:
104
105 { # JSON template for Group resource
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700106 &quot;whoCanViewMembership&quot;: &quot;A String&quot;, # Permissions to view membership. Possible values are:
107 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in the account can view the group members list.
108 # If a group already has external members, those members can still send email to this group.
109 #
110 # - ALL_MEMBERS_CAN_VIEW: The group members can view the group members list.
111 # - ALL_MANAGERS_CAN_VIEW: The group managers can view group members list.
112 &quot;description&quot;: &quot;A String&quot;, # Description of the group. This property value may be an empty string if no group description has been entered. If entered, the maximum group description is no more than 300 characters.
113 &quot;whoCanInvite&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to invite new members. Possible values are:
114 # - ALL_MEMBERS_CAN_INVITE: Managers and members can invite a new member candidate.
115 # - ALL_MANAGERS_CAN_INVITE: Only managers can invite a new member. This includes the group&#x27;s owner.
116 # - ALL_OWNERS_CAN_INVITE: Only owners can invite a new member.
117 # - NONE_CAN_INVITE: No one can invite a new member candidate.
118 &quot;whoCanUnmarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unmark any post from a favorite reply. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700119 # - ALL_MEMBERS
120 # - OWNERS_AND_MANAGERS
121 # - MANAGERS_ONLY
122 # - OWNERS_ONLY
123 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700124 &quot;whoCanModerateMembers&quot;: &quot;A String&quot;, # Specifies who can manage members. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700125 # - ALL_MEMBERS
126 # - OWNERS_AND_MANAGERS
127 # - OWNERS_ONLY
128 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 &quot;whoCanMoveTopicsOut&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics out of the group or forum. Possible values are:
130 # - ALL_MEMBERS
131 # - OWNERS_AND_MANAGERS
132 # - OWNERS_ONLY
133 # - NONE
134 &quot;isArchived&quot;: &quot;A String&quot;, # Allows the Group contents to be archived. Possible values are:
135 # - true: Archive messages sent to the group.
136 # - false: Do not keep an archive of messages sent to this group. If false, previously archived messages remain in the archive.
137 &quot;whoCanApproveMessages&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can approve pending messages in the moderation queue. Possible values are:
138 # - ALL_MEMBERS
139 # - OWNERS_AND_MANAGERS
140 # - OWNERS_ONLY
141 # - NONE
142 &quot;whoCanAdd&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to add members. Possible values are:
143 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
144 # - ALL_MANAGERS_CAN_ADD: Only managers can directly add new members. this includes the group&#x27;s owner.
145 # - ALL_OWNERS_CAN_ADD: Only owners can directly add new members.
146 # - NONE_CAN_ADD: No one can directly add new members.
147 &quot;replyTo&quot;: &quot;A String&quot;, # Specifies who receives the default reply. Possible values are:
148 # - REPLY_TO_CUSTOM: For replies to messages, use the group&#x27;s custom email address.
149 # When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds the custom email address used when replying to a message. If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a value. Otherwise an error is returned.
150 #
151 # - REPLY_TO_SENDER: The reply sent to author of message.
152 # - REPLY_TO_LIST: This reply message is sent to the group.
153 # - REPLY_TO_OWNER: The reply is sent to the owner(s) of the group. This does not include the group&#x27;s managers.
154 # - REPLY_TO_IGNORE: Group users individually decide where the message reply is sent.
155 # - REPLY_TO_MANAGERS: This reply message is sent to the group&#x27;s managers, which includes all managers and the group owner.
156 &quot;whoCanViewGroup&quot;: &quot;A String&quot;, # Permissions to view group messages. Possible values are:
157 # - ANYONE_CAN_VIEW: Any Internet user can view the group&#x27;s messages.
158 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in your account can view this group&#x27;s messages.
159 # - ALL_MEMBERS_CAN_VIEW: All group members can view the group&#x27;s messages.
160 # - ALL_MANAGERS_CAN_VIEW: Any group manager can view this group&#x27;s messages.
161 &quot;allowGoogleCommunication&quot;: &quot;A String&quot;, # Deprecated. Allows Google to contact administrator of the group.
162 # - true: Allow Google to contact managers of this group. Occasionally Google may send updates on the latest features, ask for input on new features, or ask for permission to highlight your group.
163 # - false: Google can not contact managers of this group.
Bu Sun Kim65020912020-05-20 12:08:20 -0700164 &quot;whoCanMarkDuplicate&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as a duplicate of another topic. Possible values are:
165 # - ALL_MEMBERS
166 # - OWNERS_AND_MANAGERS
167 # - MANAGERS_ONLY
168 # - OWNERS_ONLY
169 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700170 &quot;includeInGlobalAddressList&quot;: &quot;A String&quot;, # Enables the group to be included in the Global Address List. For more information, see the help center. Possible values are:
171 # - true: Group is included in the Global Address List.
172 # - false: Group is not included in the Global Address List.
173 &quot;allowWebPosting&quot;: &quot;A String&quot;, # Allows posting from web. Possible values are:
174 # - true: Allows any member to post to the group forum.
175 # - false: Members only use Gmail to communicate with the group.
176 &quot;customReplyTo&quot;: &quot;A String&quot;, # An email address used when replying to a message if the replyTo property is set to REPLY_TO_CUSTOM. This address is defined by an account administrator.
177 # - When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds a custom email address used when replying to a message.
178 # - If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a text value or an error is returned.
179 &quot;whoCanMakeTopicsSticky&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can make topics appear at the top of the topic list. Possible values are:
180 # - ALL_MEMBERS
181 # - OWNERS_AND_MANAGERS
182 # - OWNERS_ONLY
183 # - NONE
184 &quot;whoCanMarkNoResponseNeeded&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as not needing a response. Possible values are:
185 # - ALL_MEMBERS
186 # - OWNERS_AND_MANAGERS
187 # - MANAGERS_ONLY
188 # - OWNERS_ONLY
189 # - NONE
190 &quot;whoCanApproveMembers&quot;: &quot;A String&quot;, # Specifies who can approve members who ask to join groups. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
191 # - ALL_MEMBERS_CAN_APPROVE
192 # - ALL_MANAGERS_CAN_APPROVE
193 # - ALL_OWNERS_CAN_APPROVE
194 # - NONE_CAN_APPROVE
195 &quot;primaryLanguage&quot;: &quot;A String&quot;, # The primary language for group. For a group&#x27;s primary language use the language tags from the G Suite languages found at G Suite Email Settings API Email Language Tags.
196 &quot;sendMessageDenyNotification&quot;: &quot;A String&quot;, # Allows a member to be notified if the member&#x27;s message to the group is denied by the group owner. Possible values are:
197 # - true: When a message is rejected, send the deny message notification to the message author.
198 # The defaultMessageDenyNotificationText property is dependent on the sendMessageDenyNotification property being true.
199 #
200 # - false: When a message is rejected, no notification is sent.
201 &quot;messageModerationLevel&quot;: &quot;A String&quot;, # Moderation level of incoming messages. Possible values are:
202 # - MODERATE_ALL_MESSAGES: All messages are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
203 # - MODERATE_NON_MEMBERS: All messages from non group members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
204 # - MODERATE_NEW_MEMBERS: All messages from new members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
205 # - MODERATE_NONE: No moderator approval is required. Messages are delivered directly to the group. Note: When the whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
206 # When memberCanPostAsTheGroup is true, any message moderation settings on individual users or new members will not apply to posts made on behalf of the group.
207 &quot;whoCanDeleteAnyPost&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete replies to topics. (Authors can always delete their own posts). Possible values are:
208 # - ALL_MEMBERS
209 # - OWNERS_AND_MANAGERS
210 # - OWNERS_ONLY
211 # - NONE
212 &quot;enableCollaborativeInbox&quot;: &quot;A String&quot;, # Specifies whether a collaborative inbox will remain turned on for the group. Possible values are:
213 # - true
214 # - false
215 &quot;whoCanHideAbuse&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can hide posts by reporting them as abuse. Possible values are:
216 # - ALL_MEMBERS
217 # - OWNERS_AND_MANAGERS
218 # - OWNERS_ONLY
219 # - NONE
220 &quot;whoCanPostAnnouncements&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can post announcements, a special topic type. Possible values are:
221 # - ALL_MEMBERS
222 # - OWNERS_AND_MANAGERS
223 # - OWNERS_ONLY
224 # - NONE
225 &quot;favoriteRepliesOnTop&quot;: &quot;A String&quot;, # Indicates if favorite replies should be displayed above other replies.
226 # - true: Favorite replies will be displayed above other replies.
227 # - false: Favorite replies will not be displayed above other replies.
228 &quot;whoCanModifyTagsAndCategories&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to change tags and categories. Possible values are:
229 # - ALL_MEMBERS
230 # - OWNERS_AND_MANAGERS
231 # - MANAGERS_ONLY
232 # - OWNERS_ONLY
233 # - NONE
234 &quot;includeCustomFooter&quot;: &quot;A String&quot;, # Whether to include custom footer. Possible values are:
235 # - true
236 # - false
237 &quot;whoCanMoveTopicsIn&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics into the group or forum. Possible values are:
238 # - ALL_MEMBERS
239 # - OWNERS_AND_MANAGERS
240 # - OWNERS_ONLY
241 # - NONE
Bu Sun Kim65020912020-05-20 12:08:20 -0700242 &quot;whoCanModifyMembers&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Specifies who can change group members&#x27; roles. Possible values are:
243 # - ALL_MEMBERS
244 # - OWNERS_AND_MANAGERS
245 # - OWNERS_ONLY
246 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700247 &quot;whoCanEnterFreeFormTags&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to enter free form tags for topics in a forum. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700248 # - ALL_MEMBERS
249 # - OWNERS_AND_MANAGERS
250 # - MANAGERS_ONLY
251 # - OWNERS_ONLY
252 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700253 &quot;whoCanDeleteTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete topics. Possible values are:
254 # - ALL_MEMBERS
255 # - OWNERS_AND_MANAGERS
256 # - OWNERS_ONLY
257 # - NONE
258 &quot;whoCanModerateContent&quot;: &quot;A String&quot;, # Specifies who can moderate content. Possible values are:
259 # - ALL_MEMBERS
260 # - OWNERS_AND_MANAGERS
261 # - OWNERS_ONLY
262 # - NONE
263 &quot;whoCanBanUsers&quot;: &quot;A String&quot;, # Specifies who can deny membership to users. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
264 # - ALL_MEMBERS
265 # - OWNERS_AND_MANAGERS
266 # - OWNERS_ONLY
267 # - NONE
268 &quot;defaultMessageDenyNotificationText&quot;: &quot;A String&quot;, # When a message is rejected, this is text for the rejection notification sent to the message&#x27;s author. By default, this property is empty and has no value in the API&#x27;s response body. The maximum notification text size is 10,000 characters. Note: Requires sendMessageDenyNotification property to be true.
269 &quot;whoCanAddReferences&quot;: &quot;A String&quot;, # Deprecated. This functionality is no longer supported in the Google Groups UI. The value is always &quot;NONE&quot;.
270 &quot;whoCanJoin&quot;: &quot;A String&quot;, # Permission to join group. Possible values are:
271 # - ANYONE_CAN_JOIN: Anyone in the account domain can join. This includes accounts with multiple domains.
272 # - ALL_IN_DOMAIN_CAN_JOIN: Any Internet user who is outside your domain can access your Google Groups service and view the list of groups in your Groups directory. Warning: Group owners can add external addresses, outside of the domain to their groups. They can also allow people outside your domain to join their groups. If you later disable this option, any external addresses already added to users&#x27; groups remain in those groups.
273 # - INVITED_CAN_JOIN: Candidates for membership can be invited to join.
274 # - CAN_REQUEST_TO_JOIN: Non members can request an invitation to join.
275 &quot;spamModerationLevel&quot;: &quot;A String&quot;, # Specifies moderation levels for messages detected as spam. Possible values are:
276 # - ALLOW: Post the message to the group.
277 # - MODERATE: Send the message to the moderation queue. This is the default.
278 # - SILENTLY_MODERATE: Send the message to the moderation queue, but do not send notification to moderators.
279 # - REJECT: Immediately reject the message.
280 &quot;whoCanContactOwner&quot;: &quot;A String&quot;, # Permission to contact owner of the group via web UI. Possible values are:
281 # - ALL_IN_DOMAIN_CAN_CONTACT
282 # - ALL_MANAGERS_CAN_CONTACT
283 # - ALL_MEMBERS_CAN_CONTACT
284 # - ANYONE_CAN_CONTACT
285 &quot;maxMessageBytes&quot;: 42, # Deprecated. The maximum size of a message is 25Mb.
286 &quot;whoCanAssistContent&quot;: &quot;A String&quot;, # Specifies who can moderate metadata. Possible values are:
287 # - ALL_MEMBERS
288 # - OWNERS_AND_MANAGERS
289 # - MANAGERS_ONLY
290 # - OWNERS_ONLY
291 # - NONE
292 &quot;allowExternalMembers&quot;: &quot;A String&quot;, # Identifies whether members external to your organization can join the group. Possible values are:
293 # - true: G Suite users external to your organization can become members of this group.
294 # - false: Users not belonging to the organization are not allowed to become members of this group.
295 &quot;whoCanUnassignTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unassign any topic in a forum. Possible values are:
296 # - ALL_MEMBERS
297 # - OWNERS_AND_MANAGERS
298 # - MANAGERS_ONLY
299 # - OWNERS_ONLY
300 # - NONE
301 &quot;whoCanDiscoverGroup&quot;: &quot;A String&quot;, # Specifies the set of users for whom this group is discoverable. Possible values are:
302 # - ANYONE_CAN_DISCOVER
303 # - ALL_IN_DOMAIN_CAN_DISCOVER
304 # - ALL_MEMBERS_CAN_DISCOVER
305 &quot;whoCanMarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark any other user&#x27;s post as a favorite reply. Possible values are:
306 # - ALL_MEMBERS
307 # - OWNERS_AND_MANAGERS
308 # - MANAGERS_ONLY
309 # - OWNERS_ONLY
310 # - NONE
311 &quot;archiveOnly&quot;: &quot;A String&quot;, # Allows the group to be archived only. Possible values are:
312 # - true: Group is archived and the group is inactive. New messages to this group are rejected. The older archived messages are browseable and searchable.
313 # - If true, the whoCanPostMessage property is set to NONE_CAN_POST.
314 # - If reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
315 # - false: The group is active and can receive messages.
316 # - When false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
317 &quot;membersCanPostAsTheGroup&quot;: &quot;A String&quot;, # Enables members to post messages as the group. Possible values are:
318 # - true: Group member can post messages using the group&#x27;s email address instead of their own email address. Message appear to originate from the group itself. Note: When true, any message moderation settings on individual users or new members do not apply to posts made on behalf of the group.
319 # - false: Members can not post in behalf of the group&#x27;s email address.
320 &quot;whoCanTakeTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to take topics in a forum. Possible values are:
321 # - ALL_MEMBERS
322 # - OWNERS_AND_MANAGERS
323 # - MANAGERS_ONLY
324 # - OWNERS_ONLY
325 # - NONE
326 &quot;kind&quot;: &quot;groupsSettings#groups&quot;, # The type of the resource. It is always groupsSettings#groups.
327 &quot;whoCanAssignTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to assign topics in a forum to another user. Possible values are:
328 # - ALL_MEMBERS
329 # - OWNERS_AND_MANAGERS
330 # - MANAGERS_ONLY
331 # - OWNERS_ONLY
332 # - NONE
333 &quot;showInGroupDirectory&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanDiscoverGroup setting. Allows the group to be visible in the Groups Directory. Possible values are:
334 # - true: All groups in the account are listed in the Groups directory.
335 # - false: All groups in the account are not listed in the directory.
Bu Sun Kim65020912020-05-20 12:08:20 -0700336 &quot;whoCanPostMessage&quot;: &quot;A String&quot;, # Permissions to post messages. Possible values are:
337 # - NONE_CAN_POST: The group is disabled and archived. No one can post a message to this group.
338 # - When archiveOnly is false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
339 # - If archiveOnly is reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
340 # - ALL_MANAGERS_CAN_POST: Managers, including group owners, can post messages.
341 # - ALL_MEMBERS_CAN_POST: Any group member can post a message.
342 # - ALL_OWNERS_CAN_POST: Only group owners can post a message.
343 # - ALL_IN_DOMAIN_CAN_POST: Anyone in the account can post a message.
344 # - ANYONE_CAN_POST: Any Internet user who outside your account can access your Google Groups service and post a message. Note: When whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700345 &quot;name&quot;: &quot;A String&quot;, # Name of the group, which has a maximum size of 75 characters.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700346 &quot;whoCanMarkFavoriteReplyOnOwnTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a post for a topic they started as a favorite reply. Possible values are:
347 # - ALL_MEMBERS
348 # - OWNERS_AND_MANAGERS
349 # - MANAGERS_ONLY
350 # - OWNERS_ONLY
351 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700352 &quot;whoCanLockTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can prevent users from posting replies to topics. Possible values are:
353 # - ALL_MEMBERS
354 # - OWNERS_AND_MANAGERS
355 # - OWNERS_ONLY
356 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700357 &quot;email&quot;: &quot;A String&quot;, # The group&#x27;s email address. This property can be updated using the Directory API. Note: Only a group owner can change a group&#x27;s email address. A group manager can&#x27;t do this.
358 # When you change your group&#x27;s address using the Directory API or the control panel, you are changing the address your subscribers use to send email and the web address people use to access your group. People can&#x27;t reach your group by visiting the old address.
359 &quot;messageDisplayFont&quot;: &quot;A String&quot;, # Deprecated. The default message display font always has a value of &quot;DEFAULT_FONT&quot;.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700360 &quot;customFooterText&quot;: &quot;A String&quot;, # Set the content of custom footer text. The maximum number of characters is 1,000.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700361 &quot;customRolesEnabledForSettingsToBeMerged&quot;: &quot;A String&quot;, # Specifies whether the group has a custom role that&#x27;s included in one of the settings being merged. This field is read-only and update/patch requests to it are ignored. Possible values are:
362 # - true
363 # - false
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700364 &quot;whoCanLeaveGroup&quot;: &quot;A String&quot;, # Permission to leave the group. Possible values are:
365 # - ALL_MANAGERS_CAN_LEAVE
366 # - ALL_MEMBERS_CAN_LEAVE
367 # - NONE_CAN_LEAVE
Bu Sun Kim65020912020-05-20 12:08:20 -0700368 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400369</div>
370
371<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700372 <code class="details" id="patch">patch(groupUniqueId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400373 <pre>Updates an existing resource. This method supports patch semantics.
374
375Args:
Bu Sun Kim65020912020-05-20 12:08:20 -0700376 groupUniqueId: string, The group&#x27;s email address. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700377 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400378 The object takes the form of:
379
380{ # JSON template for Group resource
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700381 &quot;whoCanViewMembership&quot;: &quot;A String&quot;, # Permissions to view membership. Possible values are:
382 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in the account can view the group members list.
383 # If a group already has external members, those members can still send email to this group.
384 #
385 # - ALL_MEMBERS_CAN_VIEW: The group members can view the group members list.
386 # - ALL_MANAGERS_CAN_VIEW: The group managers can view group members list.
387 &quot;description&quot;: &quot;A String&quot;, # Description of the group. This property value may be an empty string if no group description has been entered. If entered, the maximum group description is no more than 300 characters.
388 &quot;whoCanInvite&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to invite new members. Possible values are:
389 # - ALL_MEMBERS_CAN_INVITE: Managers and members can invite a new member candidate.
390 # - ALL_MANAGERS_CAN_INVITE: Only managers can invite a new member. This includes the group&#x27;s owner.
391 # - ALL_OWNERS_CAN_INVITE: Only owners can invite a new member.
392 # - NONE_CAN_INVITE: No one can invite a new member candidate.
393 &quot;whoCanUnmarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unmark any post from a favorite reply. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700394 # - ALL_MEMBERS
395 # - OWNERS_AND_MANAGERS
396 # - MANAGERS_ONLY
397 # - OWNERS_ONLY
398 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700399 &quot;whoCanModerateMembers&quot;: &quot;A String&quot;, # Specifies who can manage members. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700400 # - ALL_MEMBERS
401 # - OWNERS_AND_MANAGERS
402 # - OWNERS_ONLY
403 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700404 &quot;whoCanMoveTopicsOut&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics out of the group or forum. Possible values are:
405 # - ALL_MEMBERS
406 # - OWNERS_AND_MANAGERS
407 # - OWNERS_ONLY
408 # - NONE
409 &quot;isArchived&quot;: &quot;A String&quot;, # Allows the Group contents to be archived. Possible values are:
410 # - true: Archive messages sent to the group.
411 # - false: Do not keep an archive of messages sent to this group. If false, previously archived messages remain in the archive.
412 &quot;whoCanApproveMessages&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can approve pending messages in the moderation queue. Possible values are:
413 # - ALL_MEMBERS
414 # - OWNERS_AND_MANAGERS
415 # - OWNERS_ONLY
416 # - NONE
417 &quot;whoCanAdd&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to add members. Possible values are:
418 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
419 # - ALL_MANAGERS_CAN_ADD: Only managers can directly add new members. this includes the group&#x27;s owner.
420 # - ALL_OWNERS_CAN_ADD: Only owners can directly add new members.
421 # - NONE_CAN_ADD: No one can directly add new members.
422 &quot;replyTo&quot;: &quot;A String&quot;, # Specifies who receives the default reply. Possible values are:
423 # - REPLY_TO_CUSTOM: For replies to messages, use the group&#x27;s custom email address.
424 # When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds the custom email address used when replying to a message. If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a value. Otherwise an error is returned.
425 #
426 # - REPLY_TO_SENDER: The reply sent to author of message.
427 # - REPLY_TO_LIST: This reply message is sent to the group.
428 # - REPLY_TO_OWNER: The reply is sent to the owner(s) of the group. This does not include the group&#x27;s managers.
429 # - REPLY_TO_IGNORE: Group users individually decide where the message reply is sent.
430 # - REPLY_TO_MANAGERS: This reply message is sent to the group&#x27;s managers, which includes all managers and the group owner.
431 &quot;whoCanViewGroup&quot;: &quot;A String&quot;, # Permissions to view group messages. Possible values are:
432 # - ANYONE_CAN_VIEW: Any Internet user can view the group&#x27;s messages.
433 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in your account can view this group&#x27;s messages.
434 # - ALL_MEMBERS_CAN_VIEW: All group members can view the group&#x27;s messages.
435 # - ALL_MANAGERS_CAN_VIEW: Any group manager can view this group&#x27;s messages.
436 &quot;allowGoogleCommunication&quot;: &quot;A String&quot;, # Deprecated. Allows Google to contact administrator of the group.
437 # - true: Allow Google to contact managers of this group. Occasionally Google may send updates on the latest features, ask for input on new features, or ask for permission to highlight your group.
438 # - false: Google can not contact managers of this group.
Bu Sun Kim65020912020-05-20 12:08:20 -0700439 &quot;whoCanMarkDuplicate&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as a duplicate of another topic. Possible values are:
440 # - ALL_MEMBERS
441 # - OWNERS_AND_MANAGERS
442 # - MANAGERS_ONLY
443 # - OWNERS_ONLY
444 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700445 &quot;includeInGlobalAddressList&quot;: &quot;A String&quot;, # Enables the group to be included in the Global Address List. For more information, see the help center. Possible values are:
446 # - true: Group is included in the Global Address List.
447 # - false: Group is not included in the Global Address List.
448 &quot;allowWebPosting&quot;: &quot;A String&quot;, # Allows posting from web. Possible values are:
449 # - true: Allows any member to post to the group forum.
450 # - false: Members only use Gmail to communicate with the group.
451 &quot;customReplyTo&quot;: &quot;A String&quot;, # An email address used when replying to a message if the replyTo property is set to REPLY_TO_CUSTOM. This address is defined by an account administrator.
452 # - When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds a custom email address used when replying to a message.
453 # - If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a text value or an error is returned.
454 &quot;whoCanMakeTopicsSticky&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can make topics appear at the top of the topic list. Possible values are:
455 # - ALL_MEMBERS
456 # - OWNERS_AND_MANAGERS
457 # - OWNERS_ONLY
458 # - NONE
459 &quot;whoCanMarkNoResponseNeeded&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as not needing a response. Possible values are:
460 # - ALL_MEMBERS
461 # - OWNERS_AND_MANAGERS
462 # - MANAGERS_ONLY
463 # - OWNERS_ONLY
464 # - NONE
465 &quot;whoCanApproveMembers&quot;: &quot;A String&quot;, # Specifies who can approve members who ask to join groups. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
466 # - ALL_MEMBERS_CAN_APPROVE
467 # - ALL_MANAGERS_CAN_APPROVE
468 # - ALL_OWNERS_CAN_APPROVE
469 # - NONE_CAN_APPROVE
470 &quot;primaryLanguage&quot;: &quot;A String&quot;, # The primary language for group. For a group&#x27;s primary language use the language tags from the G Suite languages found at G Suite Email Settings API Email Language Tags.
471 &quot;sendMessageDenyNotification&quot;: &quot;A String&quot;, # Allows a member to be notified if the member&#x27;s message to the group is denied by the group owner. Possible values are:
472 # - true: When a message is rejected, send the deny message notification to the message author.
473 # The defaultMessageDenyNotificationText property is dependent on the sendMessageDenyNotification property being true.
474 #
475 # - false: When a message is rejected, no notification is sent.
476 &quot;messageModerationLevel&quot;: &quot;A String&quot;, # Moderation level of incoming messages. Possible values are:
477 # - MODERATE_ALL_MESSAGES: All messages are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
478 # - MODERATE_NON_MEMBERS: All messages from non group members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
479 # - MODERATE_NEW_MEMBERS: All messages from new members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
480 # - MODERATE_NONE: No moderator approval is required. Messages are delivered directly to the group. Note: When the whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
481 # When memberCanPostAsTheGroup is true, any message moderation settings on individual users or new members will not apply to posts made on behalf of the group.
482 &quot;whoCanDeleteAnyPost&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete replies to topics. (Authors can always delete their own posts). Possible values are:
483 # - ALL_MEMBERS
484 # - OWNERS_AND_MANAGERS
485 # - OWNERS_ONLY
486 # - NONE
487 &quot;enableCollaborativeInbox&quot;: &quot;A String&quot;, # Specifies whether a collaborative inbox will remain turned on for the group. Possible values are:
488 # - true
489 # - false
490 &quot;whoCanHideAbuse&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can hide posts by reporting them as abuse. Possible values are:
491 # - ALL_MEMBERS
492 # - OWNERS_AND_MANAGERS
493 # - OWNERS_ONLY
494 # - NONE
495 &quot;whoCanPostAnnouncements&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can post announcements, a special topic type. Possible values are:
496 # - ALL_MEMBERS
497 # - OWNERS_AND_MANAGERS
498 # - OWNERS_ONLY
499 # - NONE
500 &quot;favoriteRepliesOnTop&quot;: &quot;A String&quot;, # Indicates if favorite replies should be displayed above other replies.
501 # - true: Favorite replies will be displayed above other replies.
502 # - false: Favorite replies will not be displayed above other replies.
503 &quot;whoCanModifyTagsAndCategories&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to change tags and categories. Possible values are:
504 # - ALL_MEMBERS
505 # - OWNERS_AND_MANAGERS
506 # - MANAGERS_ONLY
507 # - OWNERS_ONLY
508 # - NONE
509 &quot;includeCustomFooter&quot;: &quot;A String&quot;, # Whether to include custom footer. Possible values are:
510 # - true
511 # - false
512 &quot;whoCanMoveTopicsIn&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics into the group or forum. Possible values are:
513 # - ALL_MEMBERS
514 # - OWNERS_AND_MANAGERS
515 # - OWNERS_ONLY
516 # - NONE
Bu Sun Kim65020912020-05-20 12:08:20 -0700517 &quot;whoCanModifyMembers&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Specifies who can change group members&#x27; roles. Possible values are:
518 # - ALL_MEMBERS
519 # - OWNERS_AND_MANAGERS
520 # - OWNERS_ONLY
521 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700522 &quot;whoCanEnterFreeFormTags&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to enter free form tags for topics in a forum. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700523 # - ALL_MEMBERS
524 # - OWNERS_AND_MANAGERS
525 # - MANAGERS_ONLY
526 # - OWNERS_ONLY
527 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700528 &quot;whoCanDeleteTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete topics. Possible values are:
529 # - ALL_MEMBERS
530 # - OWNERS_AND_MANAGERS
531 # - OWNERS_ONLY
532 # - NONE
533 &quot;whoCanModerateContent&quot;: &quot;A String&quot;, # Specifies who can moderate content. Possible values are:
534 # - ALL_MEMBERS
535 # - OWNERS_AND_MANAGERS
536 # - OWNERS_ONLY
537 # - NONE
538 &quot;whoCanBanUsers&quot;: &quot;A String&quot;, # Specifies who can deny membership to users. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
539 # - ALL_MEMBERS
540 # - OWNERS_AND_MANAGERS
541 # - OWNERS_ONLY
542 # - NONE
543 &quot;defaultMessageDenyNotificationText&quot;: &quot;A String&quot;, # When a message is rejected, this is text for the rejection notification sent to the message&#x27;s author. By default, this property is empty and has no value in the API&#x27;s response body. The maximum notification text size is 10,000 characters. Note: Requires sendMessageDenyNotification property to be true.
544 &quot;whoCanAddReferences&quot;: &quot;A String&quot;, # Deprecated. This functionality is no longer supported in the Google Groups UI. The value is always &quot;NONE&quot;.
545 &quot;whoCanJoin&quot;: &quot;A String&quot;, # Permission to join group. Possible values are:
546 # - ANYONE_CAN_JOIN: Anyone in the account domain can join. This includes accounts with multiple domains.
547 # - ALL_IN_DOMAIN_CAN_JOIN: Any Internet user who is outside your domain can access your Google Groups service and view the list of groups in your Groups directory. Warning: Group owners can add external addresses, outside of the domain to their groups. They can also allow people outside your domain to join their groups. If you later disable this option, any external addresses already added to users&#x27; groups remain in those groups.
548 # - INVITED_CAN_JOIN: Candidates for membership can be invited to join.
549 # - CAN_REQUEST_TO_JOIN: Non members can request an invitation to join.
550 &quot;spamModerationLevel&quot;: &quot;A String&quot;, # Specifies moderation levels for messages detected as spam. Possible values are:
551 # - ALLOW: Post the message to the group.
552 # - MODERATE: Send the message to the moderation queue. This is the default.
553 # - SILENTLY_MODERATE: Send the message to the moderation queue, but do not send notification to moderators.
554 # - REJECT: Immediately reject the message.
555 &quot;whoCanContactOwner&quot;: &quot;A String&quot;, # Permission to contact owner of the group via web UI. Possible values are:
556 # - ALL_IN_DOMAIN_CAN_CONTACT
557 # - ALL_MANAGERS_CAN_CONTACT
558 # - ALL_MEMBERS_CAN_CONTACT
559 # - ANYONE_CAN_CONTACT
560 &quot;maxMessageBytes&quot;: 42, # Deprecated. The maximum size of a message is 25Mb.
561 &quot;whoCanAssistContent&quot;: &quot;A String&quot;, # Specifies who can moderate metadata. Possible values are:
562 # - ALL_MEMBERS
563 # - OWNERS_AND_MANAGERS
564 # - MANAGERS_ONLY
565 # - OWNERS_ONLY
566 # - NONE
567 &quot;allowExternalMembers&quot;: &quot;A String&quot;, # Identifies whether members external to your organization can join the group. Possible values are:
568 # - true: G Suite users external to your organization can become members of this group.
569 # - false: Users not belonging to the organization are not allowed to become members of this group.
570 &quot;whoCanUnassignTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unassign any topic in a forum. Possible values are:
571 # - ALL_MEMBERS
572 # - OWNERS_AND_MANAGERS
573 # - MANAGERS_ONLY
574 # - OWNERS_ONLY
575 # - NONE
576 &quot;whoCanDiscoverGroup&quot;: &quot;A String&quot;, # Specifies the set of users for whom this group is discoverable. Possible values are:
577 # - ANYONE_CAN_DISCOVER
578 # - ALL_IN_DOMAIN_CAN_DISCOVER
579 # - ALL_MEMBERS_CAN_DISCOVER
580 &quot;whoCanMarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark any other user&#x27;s post as a favorite reply. Possible values are:
581 # - ALL_MEMBERS
582 # - OWNERS_AND_MANAGERS
583 # - MANAGERS_ONLY
584 # - OWNERS_ONLY
585 # - NONE
586 &quot;archiveOnly&quot;: &quot;A String&quot;, # Allows the group to be archived only. Possible values are:
587 # - true: Group is archived and the group is inactive. New messages to this group are rejected. The older archived messages are browseable and searchable.
588 # - If true, the whoCanPostMessage property is set to NONE_CAN_POST.
589 # - If reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
590 # - false: The group is active and can receive messages.
591 # - When false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
592 &quot;membersCanPostAsTheGroup&quot;: &quot;A String&quot;, # Enables members to post messages as the group. Possible values are:
593 # - true: Group member can post messages using the group&#x27;s email address instead of their own email address. Message appear to originate from the group itself. Note: When true, any message moderation settings on individual users or new members do not apply to posts made on behalf of the group.
594 # - false: Members can not post in behalf of the group&#x27;s email address.
595 &quot;whoCanTakeTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to take topics in a forum. Possible values are:
596 # - ALL_MEMBERS
597 # - OWNERS_AND_MANAGERS
598 # - MANAGERS_ONLY
599 # - OWNERS_ONLY
600 # - NONE
601 &quot;kind&quot;: &quot;groupsSettings#groups&quot;, # The type of the resource. It is always groupsSettings#groups.
602 &quot;whoCanAssignTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to assign topics in a forum to another user. Possible values are:
603 # - ALL_MEMBERS
604 # - OWNERS_AND_MANAGERS
605 # - MANAGERS_ONLY
606 # - OWNERS_ONLY
607 # - NONE
608 &quot;showInGroupDirectory&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanDiscoverGroup setting. Allows the group to be visible in the Groups Directory. Possible values are:
609 # - true: All groups in the account are listed in the Groups directory.
610 # - false: All groups in the account are not listed in the directory.
Bu Sun Kim65020912020-05-20 12:08:20 -0700611 &quot;whoCanPostMessage&quot;: &quot;A String&quot;, # Permissions to post messages. Possible values are:
612 # - NONE_CAN_POST: The group is disabled and archived. No one can post a message to this group.
613 # - When archiveOnly is false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
614 # - If archiveOnly is reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
615 # - ALL_MANAGERS_CAN_POST: Managers, including group owners, can post messages.
616 # - ALL_MEMBERS_CAN_POST: Any group member can post a message.
617 # - ALL_OWNERS_CAN_POST: Only group owners can post a message.
618 # - ALL_IN_DOMAIN_CAN_POST: Anyone in the account can post a message.
619 # - ANYONE_CAN_POST: Any Internet user who outside your account can access your Google Groups service and post a message. Note: When whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700620 &quot;name&quot;: &quot;A String&quot;, # Name of the group, which has a maximum size of 75 characters.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700621 &quot;whoCanMarkFavoriteReplyOnOwnTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a post for a topic they started as a favorite reply. Possible values are:
622 # - ALL_MEMBERS
623 # - OWNERS_AND_MANAGERS
624 # - MANAGERS_ONLY
625 # - OWNERS_ONLY
626 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700627 &quot;whoCanLockTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can prevent users from posting replies to topics. Possible values are:
628 # - ALL_MEMBERS
629 # - OWNERS_AND_MANAGERS
630 # - OWNERS_ONLY
631 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700632 &quot;email&quot;: &quot;A String&quot;, # The group&#x27;s email address. This property can be updated using the Directory API. Note: Only a group owner can change a group&#x27;s email address. A group manager can&#x27;t do this.
633 # When you change your group&#x27;s address using the Directory API or the control panel, you are changing the address your subscribers use to send email and the web address people use to access your group. People can&#x27;t reach your group by visiting the old address.
634 &quot;messageDisplayFont&quot;: &quot;A String&quot;, # Deprecated. The default message display font always has a value of &quot;DEFAULT_FONT&quot;.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700635 &quot;customFooterText&quot;: &quot;A String&quot;, # Set the content of custom footer text. The maximum number of characters is 1,000.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700636 &quot;customRolesEnabledForSettingsToBeMerged&quot;: &quot;A String&quot;, # Specifies whether the group has a custom role that&#x27;s included in one of the settings being merged. This field is read-only and update/patch requests to it are ignored. Possible values are:
637 # - true
638 # - false
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700639 &quot;whoCanLeaveGroup&quot;: &quot;A String&quot;, # Permission to leave the group. Possible values are:
640 # - ALL_MANAGERS_CAN_LEAVE
641 # - ALL_MEMBERS_CAN_LEAVE
642 # - NONE_CAN_LEAVE
Bu Sun Kim65020912020-05-20 12:08:20 -0700643}
644
645
646Returns:
647 An object of the form:
648
649 { # JSON template for Group resource
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700650 &quot;whoCanViewMembership&quot;: &quot;A String&quot;, # Permissions to view membership. Possible values are:
651 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in the account can view the group members list.
652 # If a group already has external members, those members can still send email to this group.
653 #
654 # - ALL_MEMBERS_CAN_VIEW: The group members can view the group members list.
655 # - ALL_MANAGERS_CAN_VIEW: The group managers can view group members list.
656 &quot;description&quot;: &quot;A String&quot;, # Description of the group. This property value may be an empty string if no group description has been entered. If entered, the maximum group description is no more than 300 characters.
657 &quot;whoCanInvite&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to invite new members. Possible values are:
658 # - ALL_MEMBERS_CAN_INVITE: Managers and members can invite a new member candidate.
659 # - ALL_MANAGERS_CAN_INVITE: Only managers can invite a new member. This includes the group&#x27;s owner.
660 # - ALL_OWNERS_CAN_INVITE: Only owners can invite a new member.
661 # - NONE_CAN_INVITE: No one can invite a new member candidate.
662 &quot;whoCanUnmarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unmark any post from a favorite reply. Possible values are:
Dan O'Mearadd494642020-05-01 07:42:23 -0700663 # - ALL_MEMBERS
664 # - OWNERS_AND_MANAGERS
665 # - MANAGERS_ONLY
666 # - OWNERS_ONLY
667 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700668 &quot;whoCanModerateMembers&quot;: &quot;A String&quot;, # Specifies who can manage members. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700669 # - ALL_MEMBERS
670 # - OWNERS_AND_MANAGERS
671 # - OWNERS_ONLY
672 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700673 &quot;whoCanMoveTopicsOut&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics out of the group or forum. Possible values are:
674 # - ALL_MEMBERS
675 # - OWNERS_AND_MANAGERS
676 # - OWNERS_ONLY
677 # - NONE
678 &quot;isArchived&quot;: &quot;A String&quot;, # Allows the Group contents to be archived. Possible values are:
679 # - true: Archive messages sent to the group.
680 # - false: Do not keep an archive of messages sent to this group. If false, previously archived messages remain in the archive.
681 &quot;whoCanApproveMessages&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can approve pending messages in the moderation queue. Possible values are:
682 # - ALL_MEMBERS
683 # - OWNERS_AND_MANAGERS
684 # - OWNERS_ONLY
685 # - NONE
686 &quot;whoCanAdd&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to add members. Possible values are:
687 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
688 # - ALL_MANAGERS_CAN_ADD: Only managers can directly add new members. this includes the group&#x27;s owner.
689 # - ALL_OWNERS_CAN_ADD: Only owners can directly add new members.
690 # - NONE_CAN_ADD: No one can directly add new members.
691 &quot;replyTo&quot;: &quot;A String&quot;, # Specifies who receives the default reply. Possible values are:
692 # - REPLY_TO_CUSTOM: For replies to messages, use the group&#x27;s custom email address.
693 # When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds the custom email address used when replying to a message. If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a value. Otherwise an error is returned.
694 #
695 # - REPLY_TO_SENDER: The reply sent to author of message.
696 # - REPLY_TO_LIST: This reply message is sent to the group.
697 # - REPLY_TO_OWNER: The reply is sent to the owner(s) of the group. This does not include the group&#x27;s managers.
698 # - REPLY_TO_IGNORE: Group users individually decide where the message reply is sent.
699 # - REPLY_TO_MANAGERS: This reply message is sent to the group&#x27;s managers, which includes all managers and the group owner.
700 &quot;whoCanViewGroup&quot;: &quot;A String&quot;, # Permissions to view group messages. Possible values are:
701 # - ANYONE_CAN_VIEW: Any Internet user can view the group&#x27;s messages.
702 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in your account can view this group&#x27;s messages.
703 # - ALL_MEMBERS_CAN_VIEW: All group members can view the group&#x27;s messages.
704 # - ALL_MANAGERS_CAN_VIEW: Any group manager can view this group&#x27;s messages.
705 &quot;allowGoogleCommunication&quot;: &quot;A String&quot;, # Deprecated. Allows Google to contact administrator of the group.
706 # - true: Allow Google to contact managers of this group. Occasionally Google may send updates on the latest features, ask for input on new features, or ask for permission to highlight your group.
707 # - false: Google can not contact managers of this group.
Bu Sun Kim65020912020-05-20 12:08:20 -0700708 &quot;whoCanMarkDuplicate&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as a duplicate of another topic. Possible values are:
709 # - ALL_MEMBERS
710 # - OWNERS_AND_MANAGERS
711 # - MANAGERS_ONLY
712 # - OWNERS_ONLY
713 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700714 &quot;includeInGlobalAddressList&quot;: &quot;A String&quot;, # Enables the group to be included in the Global Address List. For more information, see the help center. Possible values are:
715 # - true: Group is included in the Global Address List.
716 # - false: Group is not included in the Global Address List.
717 &quot;allowWebPosting&quot;: &quot;A String&quot;, # Allows posting from web. Possible values are:
718 # - true: Allows any member to post to the group forum.
719 # - false: Members only use Gmail to communicate with the group.
720 &quot;customReplyTo&quot;: &quot;A String&quot;, # An email address used when replying to a message if the replyTo property is set to REPLY_TO_CUSTOM. This address is defined by an account administrator.
721 # - When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds a custom email address used when replying to a message.
722 # - If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a text value or an error is returned.
723 &quot;whoCanMakeTopicsSticky&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can make topics appear at the top of the topic list. Possible values are:
724 # - ALL_MEMBERS
725 # - OWNERS_AND_MANAGERS
726 # - OWNERS_ONLY
727 # - NONE
728 &quot;whoCanMarkNoResponseNeeded&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as not needing a response. Possible values are:
729 # - ALL_MEMBERS
730 # - OWNERS_AND_MANAGERS
731 # - MANAGERS_ONLY
732 # - OWNERS_ONLY
733 # - NONE
734 &quot;whoCanApproveMembers&quot;: &quot;A String&quot;, # Specifies who can approve members who ask to join groups. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
735 # - ALL_MEMBERS_CAN_APPROVE
736 # - ALL_MANAGERS_CAN_APPROVE
737 # - ALL_OWNERS_CAN_APPROVE
738 # - NONE_CAN_APPROVE
739 &quot;primaryLanguage&quot;: &quot;A String&quot;, # The primary language for group. For a group&#x27;s primary language use the language tags from the G Suite languages found at G Suite Email Settings API Email Language Tags.
740 &quot;sendMessageDenyNotification&quot;: &quot;A String&quot;, # Allows a member to be notified if the member&#x27;s message to the group is denied by the group owner. Possible values are:
741 # - true: When a message is rejected, send the deny message notification to the message author.
742 # The defaultMessageDenyNotificationText property is dependent on the sendMessageDenyNotification property being true.
743 #
744 # - false: When a message is rejected, no notification is sent.
745 &quot;messageModerationLevel&quot;: &quot;A String&quot;, # Moderation level of incoming messages. Possible values are:
746 # - MODERATE_ALL_MESSAGES: All messages are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
747 # - MODERATE_NON_MEMBERS: All messages from non group members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
748 # - MODERATE_NEW_MEMBERS: All messages from new members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
749 # - MODERATE_NONE: No moderator approval is required. Messages are delivered directly to the group. Note: When the whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
750 # When memberCanPostAsTheGroup is true, any message moderation settings on individual users or new members will not apply to posts made on behalf of the group.
751 &quot;whoCanDeleteAnyPost&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete replies to topics. (Authors can always delete their own posts). Possible values are:
752 # - ALL_MEMBERS
753 # - OWNERS_AND_MANAGERS
754 # - OWNERS_ONLY
755 # - NONE
756 &quot;enableCollaborativeInbox&quot;: &quot;A String&quot;, # Specifies whether a collaborative inbox will remain turned on for the group. Possible values are:
757 # - true
758 # - false
759 &quot;whoCanHideAbuse&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can hide posts by reporting them as abuse. Possible values are:
760 # - ALL_MEMBERS
761 # - OWNERS_AND_MANAGERS
762 # - OWNERS_ONLY
763 # - NONE
764 &quot;whoCanPostAnnouncements&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can post announcements, a special topic type. Possible values are:
765 # - ALL_MEMBERS
766 # - OWNERS_AND_MANAGERS
767 # - OWNERS_ONLY
768 # - NONE
769 &quot;favoriteRepliesOnTop&quot;: &quot;A String&quot;, # Indicates if favorite replies should be displayed above other replies.
770 # - true: Favorite replies will be displayed above other replies.
771 # - false: Favorite replies will not be displayed above other replies.
772 &quot;whoCanModifyTagsAndCategories&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to change tags and categories. Possible values are:
773 # - ALL_MEMBERS
774 # - OWNERS_AND_MANAGERS
775 # - MANAGERS_ONLY
776 # - OWNERS_ONLY
777 # - NONE
778 &quot;includeCustomFooter&quot;: &quot;A String&quot;, # Whether to include custom footer. Possible values are:
779 # - true
780 # - false
781 &quot;whoCanMoveTopicsIn&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics into the group or forum. Possible values are:
782 # - ALL_MEMBERS
783 # - OWNERS_AND_MANAGERS
784 # - OWNERS_ONLY
785 # - NONE
Bu Sun Kim65020912020-05-20 12:08:20 -0700786 &quot;whoCanModifyMembers&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Specifies who can change group members&#x27; roles. Possible values are:
787 # - ALL_MEMBERS
788 # - OWNERS_AND_MANAGERS
789 # - OWNERS_ONLY
790 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700791 &quot;whoCanEnterFreeFormTags&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to enter free form tags for topics in a forum. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700792 # - ALL_MEMBERS
793 # - OWNERS_AND_MANAGERS
794 # - MANAGERS_ONLY
795 # - OWNERS_ONLY
796 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700797 &quot;whoCanDeleteTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete topics. Possible values are:
798 # - ALL_MEMBERS
799 # - OWNERS_AND_MANAGERS
800 # - OWNERS_ONLY
801 # - NONE
802 &quot;whoCanModerateContent&quot;: &quot;A String&quot;, # Specifies who can moderate content. Possible values are:
803 # - ALL_MEMBERS
804 # - OWNERS_AND_MANAGERS
805 # - OWNERS_ONLY
806 # - NONE
807 &quot;whoCanBanUsers&quot;: &quot;A String&quot;, # Specifies who can deny membership to users. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
808 # - ALL_MEMBERS
809 # - OWNERS_AND_MANAGERS
810 # - OWNERS_ONLY
811 # - NONE
812 &quot;defaultMessageDenyNotificationText&quot;: &quot;A String&quot;, # When a message is rejected, this is text for the rejection notification sent to the message&#x27;s author. By default, this property is empty and has no value in the API&#x27;s response body. The maximum notification text size is 10,000 characters. Note: Requires sendMessageDenyNotification property to be true.
813 &quot;whoCanAddReferences&quot;: &quot;A String&quot;, # Deprecated. This functionality is no longer supported in the Google Groups UI. The value is always &quot;NONE&quot;.
814 &quot;whoCanJoin&quot;: &quot;A String&quot;, # Permission to join group. Possible values are:
815 # - ANYONE_CAN_JOIN: Anyone in the account domain can join. This includes accounts with multiple domains.
816 # - ALL_IN_DOMAIN_CAN_JOIN: Any Internet user who is outside your domain can access your Google Groups service and view the list of groups in your Groups directory. Warning: Group owners can add external addresses, outside of the domain to their groups. They can also allow people outside your domain to join their groups. If you later disable this option, any external addresses already added to users&#x27; groups remain in those groups.
817 # - INVITED_CAN_JOIN: Candidates for membership can be invited to join.
818 # - CAN_REQUEST_TO_JOIN: Non members can request an invitation to join.
819 &quot;spamModerationLevel&quot;: &quot;A String&quot;, # Specifies moderation levels for messages detected as spam. Possible values are:
820 # - ALLOW: Post the message to the group.
821 # - MODERATE: Send the message to the moderation queue. This is the default.
822 # - SILENTLY_MODERATE: Send the message to the moderation queue, but do not send notification to moderators.
823 # - REJECT: Immediately reject the message.
824 &quot;whoCanContactOwner&quot;: &quot;A String&quot;, # Permission to contact owner of the group via web UI. Possible values are:
825 # - ALL_IN_DOMAIN_CAN_CONTACT
826 # - ALL_MANAGERS_CAN_CONTACT
827 # - ALL_MEMBERS_CAN_CONTACT
828 # - ANYONE_CAN_CONTACT
829 &quot;maxMessageBytes&quot;: 42, # Deprecated. The maximum size of a message is 25Mb.
830 &quot;whoCanAssistContent&quot;: &quot;A String&quot;, # Specifies who can moderate metadata. Possible values are:
831 # - ALL_MEMBERS
832 # - OWNERS_AND_MANAGERS
833 # - MANAGERS_ONLY
834 # - OWNERS_ONLY
835 # - NONE
836 &quot;allowExternalMembers&quot;: &quot;A String&quot;, # Identifies whether members external to your organization can join the group. Possible values are:
837 # - true: G Suite users external to your organization can become members of this group.
838 # - false: Users not belonging to the organization are not allowed to become members of this group.
839 &quot;whoCanUnassignTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unassign any topic in a forum. Possible values are:
840 # - ALL_MEMBERS
841 # - OWNERS_AND_MANAGERS
842 # - MANAGERS_ONLY
843 # - OWNERS_ONLY
844 # - NONE
845 &quot;whoCanDiscoverGroup&quot;: &quot;A String&quot;, # Specifies the set of users for whom this group is discoverable. Possible values are:
846 # - ANYONE_CAN_DISCOVER
847 # - ALL_IN_DOMAIN_CAN_DISCOVER
848 # - ALL_MEMBERS_CAN_DISCOVER
849 &quot;whoCanMarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark any other user&#x27;s post as a favorite reply. Possible values are:
850 # - ALL_MEMBERS
851 # - OWNERS_AND_MANAGERS
852 # - MANAGERS_ONLY
853 # - OWNERS_ONLY
854 # - NONE
855 &quot;archiveOnly&quot;: &quot;A String&quot;, # Allows the group to be archived only. Possible values are:
856 # - true: Group is archived and the group is inactive. New messages to this group are rejected. The older archived messages are browseable and searchable.
857 # - If true, the whoCanPostMessage property is set to NONE_CAN_POST.
858 # - If reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
859 # - false: The group is active and can receive messages.
860 # - When false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
861 &quot;membersCanPostAsTheGroup&quot;: &quot;A String&quot;, # Enables members to post messages as the group. Possible values are:
862 # - true: Group member can post messages using the group&#x27;s email address instead of their own email address. Message appear to originate from the group itself. Note: When true, any message moderation settings on individual users or new members do not apply to posts made on behalf of the group.
863 # - false: Members can not post in behalf of the group&#x27;s email address.
864 &quot;whoCanTakeTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to take topics in a forum. Possible values are:
865 # - ALL_MEMBERS
866 # - OWNERS_AND_MANAGERS
867 # - MANAGERS_ONLY
868 # - OWNERS_ONLY
869 # - NONE
870 &quot;kind&quot;: &quot;groupsSettings#groups&quot;, # The type of the resource. It is always groupsSettings#groups.
871 &quot;whoCanAssignTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to assign topics in a forum to another user. Possible values are:
872 # - ALL_MEMBERS
873 # - OWNERS_AND_MANAGERS
874 # - MANAGERS_ONLY
875 # - OWNERS_ONLY
876 # - NONE
877 &quot;showInGroupDirectory&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanDiscoverGroup setting. Allows the group to be visible in the Groups Directory. Possible values are:
878 # - true: All groups in the account are listed in the Groups directory.
879 # - false: All groups in the account are not listed in the directory.
Bu Sun Kim65020912020-05-20 12:08:20 -0700880 &quot;whoCanPostMessage&quot;: &quot;A String&quot;, # Permissions to post messages. Possible values are:
Dan O'Mearadd494642020-05-01 07:42:23 -0700881 # - NONE_CAN_POST: The group is disabled and archived. No one can post a message to this group.
882 # - When archiveOnly is false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
883 # - If archiveOnly is reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
884 # - ALL_MANAGERS_CAN_POST: Managers, including group owners, can post messages.
885 # - ALL_MEMBERS_CAN_POST: Any group member can post a message.
886 # - ALL_OWNERS_CAN_POST: Only group owners can post a message.
887 # - ALL_IN_DOMAIN_CAN_POST: Anyone in the account can post a message.
888 # - ANYONE_CAN_POST: Any Internet user who outside your account can access your Google Groups service and post a message. Note: When whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700889 &quot;name&quot;: &quot;A String&quot;, # Name of the group, which has a maximum size of 75 characters.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700890 &quot;whoCanMarkFavoriteReplyOnOwnTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a post for a topic they started as a favorite reply. Possible values are:
891 # - ALL_MEMBERS
892 # - OWNERS_AND_MANAGERS
893 # - MANAGERS_ONLY
894 # - OWNERS_ONLY
895 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700896 &quot;whoCanLockTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can prevent users from posting replies to topics. Possible values are:
897 # - ALL_MEMBERS
898 # - OWNERS_AND_MANAGERS
899 # - OWNERS_ONLY
900 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700901 &quot;email&quot;: &quot;A String&quot;, # The group&#x27;s email address. This property can be updated using the Directory API. Note: Only a group owner can change a group&#x27;s email address. A group manager can&#x27;t do this.
902 # When you change your group&#x27;s address using the Directory API or the control panel, you are changing the address your subscribers use to send email and the web address people use to access your group. People can&#x27;t reach your group by visiting the old address.
903 &quot;messageDisplayFont&quot;: &quot;A String&quot;, # Deprecated. The default message display font always has a value of &quot;DEFAULT_FONT&quot;.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700904 &quot;customFooterText&quot;: &quot;A String&quot;, # Set the content of custom footer text. The maximum number of characters is 1,000.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700905 &quot;customRolesEnabledForSettingsToBeMerged&quot;: &quot;A String&quot;, # Specifies whether the group has a custom role that&#x27;s included in one of the settings being merged. This field is read-only and update/patch requests to it are ignored. Possible values are:
906 # - true
907 # - false
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700908 &quot;whoCanLeaveGroup&quot;: &quot;A String&quot;, # Permission to leave the group. Possible values are:
909 # - ALL_MANAGERS_CAN_LEAVE
910 # - ALL_MEMBERS_CAN_LEAVE
911 # - NONE_CAN_LEAVE
Bu Sun Kim65020912020-05-20 12:08:20 -0700912 }</pre>
John Asmuth614db982014-04-24 15:46:26 -0400913</div>
914
915<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700916 <code class="details" id="update">update(groupUniqueId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400917 <pre>Updates an existing resource.
918
919Args:
Bu Sun Kim65020912020-05-20 12:08:20 -0700920 groupUniqueId: string, The group&#x27;s email address. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700921 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400922 The object takes the form of:
923
924{ # JSON template for Group resource
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700925 &quot;whoCanViewMembership&quot;: &quot;A String&quot;, # Permissions to view membership. Possible values are:
926 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in the account can view the group members list.
927 # If a group already has external members, those members can still send email to this group.
928 #
929 # - ALL_MEMBERS_CAN_VIEW: The group members can view the group members list.
930 # - ALL_MANAGERS_CAN_VIEW: The group managers can view group members list.
931 &quot;description&quot;: &quot;A String&quot;, # Description of the group. This property value may be an empty string if no group description has been entered. If entered, the maximum group description is no more than 300 characters.
932 &quot;whoCanInvite&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to invite new members. Possible values are:
933 # - ALL_MEMBERS_CAN_INVITE: Managers and members can invite a new member candidate.
934 # - ALL_MANAGERS_CAN_INVITE: Only managers can invite a new member. This includes the group&#x27;s owner.
935 # - ALL_OWNERS_CAN_INVITE: Only owners can invite a new member.
936 # - NONE_CAN_INVITE: No one can invite a new member candidate.
937 &quot;whoCanUnmarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unmark any post from a favorite reply. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700938 # - ALL_MEMBERS
939 # - OWNERS_AND_MANAGERS
940 # - MANAGERS_ONLY
941 # - OWNERS_ONLY
942 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700943 &quot;whoCanModerateMembers&quot;: &quot;A String&quot;, # Specifies who can manage members. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700944 # - ALL_MEMBERS
945 # - OWNERS_AND_MANAGERS
946 # - OWNERS_ONLY
947 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700948 &quot;whoCanMoveTopicsOut&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics out of the group or forum. Possible values are:
949 # - ALL_MEMBERS
950 # - OWNERS_AND_MANAGERS
951 # - OWNERS_ONLY
952 # - NONE
953 &quot;isArchived&quot;: &quot;A String&quot;, # Allows the Group contents to be archived. Possible values are:
954 # - true: Archive messages sent to the group.
955 # - false: Do not keep an archive of messages sent to this group. If false, previously archived messages remain in the archive.
956 &quot;whoCanApproveMessages&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can approve pending messages in the moderation queue. Possible values are:
957 # - ALL_MEMBERS
958 # - OWNERS_AND_MANAGERS
959 # - OWNERS_ONLY
960 # - NONE
961 &quot;whoCanAdd&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to add members. Possible values are:
962 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
963 # - ALL_MANAGERS_CAN_ADD: Only managers can directly add new members. this includes the group&#x27;s owner.
964 # - ALL_OWNERS_CAN_ADD: Only owners can directly add new members.
965 # - NONE_CAN_ADD: No one can directly add new members.
966 &quot;replyTo&quot;: &quot;A String&quot;, # Specifies who receives the default reply. Possible values are:
967 # - REPLY_TO_CUSTOM: For replies to messages, use the group&#x27;s custom email address.
968 # When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds the custom email address used when replying to a message. If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a value. Otherwise an error is returned.
969 #
970 # - REPLY_TO_SENDER: The reply sent to author of message.
971 # - REPLY_TO_LIST: This reply message is sent to the group.
972 # - REPLY_TO_OWNER: The reply is sent to the owner(s) of the group. This does not include the group&#x27;s managers.
973 # - REPLY_TO_IGNORE: Group users individually decide where the message reply is sent.
974 # - REPLY_TO_MANAGERS: This reply message is sent to the group&#x27;s managers, which includes all managers and the group owner.
975 &quot;whoCanViewGroup&quot;: &quot;A String&quot;, # Permissions to view group messages. Possible values are:
976 # - ANYONE_CAN_VIEW: Any Internet user can view the group&#x27;s messages.
977 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in your account can view this group&#x27;s messages.
978 # - ALL_MEMBERS_CAN_VIEW: All group members can view the group&#x27;s messages.
979 # - ALL_MANAGERS_CAN_VIEW: Any group manager can view this group&#x27;s messages.
980 &quot;allowGoogleCommunication&quot;: &quot;A String&quot;, # Deprecated. Allows Google to contact administrator of the group.
981 # - true: Allow Google to contact managers of this group. Occasionally Google may send updates on the latest features, ask for input on new features, or ask for permission to highlight your group.
982 # - false: Google can not contact managers of this group.
Bu Sun Kim65020912020-05-20 12:08:20 -0700983 &quot;whoCanMarkDuplicate&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as a duplicate of another topic. Possible values are:
984 # - ALL_MEMBERS
985 # - OWNERS_AND_MANAGERS
986 # - MANAGERS_ONLY
987 # - OWNERS_ONLY
988 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700989 &quot;includeInGlobalAddressList&quot;: &quot;A String&quot;, # Enables the group to be included in the Global Address List. For more information, see the help center. Possible values are:
990 # - true: Group is included in the Global Address List.
991 # - false: Group is not included in the Global Address List.
992 &quot;allowWebPosting&quot;: &quot;A String&quot;, # Allows posting from web. Possible values are:
993 # - true: Allows any member to post to the group forum.
994 # - false: Members only use Gmail to communicate with the group.
995 &quot;customReplyTo&quot;: &quot;A String&quot;, # An email address used when replying to a message if the replyTo property is set to REPLY_TO_CUSTOM. This address is defined by an account administrator.
996 # - When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds a custom email address used when replying to a message.
997 # - If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a text value or an error is returned.
998 &quot;whoCanMakeTopicsSticky&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can make topics appear at the top of the topic list. Possible values are:
999 # - ALL_MEMBERS
1000 # - OWNERS_AND_MANAGERS
1001 # - OWNERS_ONLY
1002 # - NONE
1003 &quot;whoCanMarkNoResponseNeeded&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as not needing a response. Possible values are:
1004 # - ALL_MEMBERS
1005 # - OWNERS_AND_MANAGERS
1006 # - MANAGERS_ONLY
1007 # - OWNERS_ONLY
1008 # - NONE
1009 &quot;whoCanApproveMembers&quot;: &quot;A String&quot;, # Specifies who can approve members who ask to join groups. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
1010 # - ALL_MEMBERS_CAN_APPROVE
1011 # - ALL_MANAGERS_CAN_APPROVE
1012 # - ALL_OWNERS_CAN_APPROVE
1013 # - NONE_CAN_APPROVE
1014 &quot;primaryLanguage&quot;: &quot;A String&quot;, # The primary language for group. For a group&#x27;s primary language use the language tags from the G Suite languages found at G Suite Email Settings API Email Language Tags.
1015 &quot;sendMessageDenyNotification&quot;: &quot;A String&quot;, # Allows a member to be notified if the member&#x27;s message to the group is denied by the group owner. Possible values are:
1016 # - true: When a message is rejected, send the deny message notification to the message author.
1017 # The defaultMessageDenyNotificationText property is dependent on the sendMessageDenyNotification property being true.
1018 #
1019 # - false: When a message is rejected, no notification is sent.
1020 &quot;messageModerationLevel&quot;: &quot;A String&quot;, # Moderation level of incoming messages. Possible values are:
1021 # - MODERATE_ALL_MESSAGES: All messages are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1022 # - MODERATE_NON_MEMBERS: All messages from non group members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1023 # - MODERATE_NEW_MEMBERS: All messages from new members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1024 # - MODERATE_NONE: No moderator approval is required. Messages are delivered directly to the group. Note: When the whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
1025 # When memberCanPostAsTheGroup is true, any message moderation settings on individual users or new members will not apply to posts made on behalf of the group.
1026 &quot;whoCanDeleteAnyPost&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete replies to topics. (Authors can always delete their own posts). Possible values are:
1027 # - ALL_MEMBERS
1028 # - OWNERS_AND_MANAGERS
1029 # - OWNERS_ONLY
1030 # - NONE
1031 &quot;enableCollaborativeInbox&quot;: &quot;A String&quot;, # Specifies whether a collaborative inbox will remain turned on for the group. Possible values are:
1032 # - true
1033 # - false
1034 &quot;whoCanHideAbuse&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can hide posts by reporting them as abuse. Possible values are:
1035 # - ALL_MEMBERS
1036 # - OWNERS_AND_MANAGERS
1037 # - OWNERS_ONLY
1038 # - NONE
1039 &quot;whoCanPostAnnouncements&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can post announcements, a special topic type. Possible values are:
1040 # - ALL_MEMBERS
1041 # - OWNERS_AND_MANAGERS
1042 # - OWNERS_ONLY
1043 # - NONE
1044 &quot;favoriteRepliesOnTop&quot;: &quot;A String&quot;, # Indicates if favorite replies should be displayed above other replies.
1045 # - true: Favorite replies will be displayed above other replies.
1046 # - false: Favorite replies will not be displayed above other replies.
1047 &quot;whoCanModifyTagsAndCategories&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to change tags and categories. Possible values are:
1048 # - ALL_MEMBERS
1049 # - OWNERS_AND_MANAGERS
1050 # - MANAGERS_ONLY
1051 # - OWNERS_ONLY
1052 # - NONE
1053 &quot;includeCustomFooter&quot;: &quot;A String&quot;, # Whether to include custom footer. Possible values are:
1054 # - true
1055 # - false
1056 &quot;whoCanMoveTopicsIn&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics into the group or forum. Possible values are:
1057 # - ALL_MEMBERS
1058 # - OWNERS_AND_MANAGERS
1059 # - OWNERS_ONLY
1060 # - NONE
Bu Sun Kim65020912020-05-20 12:08:20 -07001061 &quot;whoCanModifyMembers&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Specifies who can change group members&#x27; roles. Possible values are:
1062 # - ALL_MEMBERS
1063 # - OWNERS_AND_MANAGERS
1064 # - OWNERS_ONLY
1065 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001066 &quot;whoCanEnterFreeFormTags&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to enter free form tags for topics in a forum. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -07001067 # - ALL_MEMBERS
1068 # - OWNERS_AND_MANAGERS
1069 # - MANAGERS_ONLY
1070 # - OWNERS_ONLY
1071 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001072 &quot;whoCanDeleteTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete topics. Possible values are:
1073 # - ALL_MEMBERS
1074 # - OWNERS_AND_MANAGERS
1075 # - OWNERS_ONLY
1076 # - NONE
1077 &quot;whoCanModerateContent&quot;: &quot;A String&quot;, # Specifies who can moderate content. Possible values are:
1078 # - ALL_MEMBERS
1079 # - OWNERS_AND_MANAGERS
1080 # - OWNERS_ONLY
1081 # - NONE
1082 &quot;whoCanBanUsers&quot;: &quot;A String&quot;, # Specifies who can deny membership to users. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
1083 # - ALL_MEMBERS
1084 # - OWNERS_AND_MANAGERS
1085 # - OWNERS_ONLY
1086 # - NONE
1087 &quot;defaultMessageDenyNotificationText&quot;: &quot;A String&quot;, # When a message is rejected, this is text for the rejection notification sent to the message&#x27;s author. By default, this property is empty and has no value in the API&#x27;s response body. The maximum notification text size is 10,000 characters. Note: Requires sendMessageDenyNotification property to be true.
1088 &quot;whoCanAddReferences&quot;: &quot;A String&quot;, # Deprecated. This functionality is no longer supported in the Google Groups UI. The value is always &quot;NONE&quot;.
1089 &quot;whoCanJoin&quot;: &quot;A String&quot;, # Permission to join group. Possible values are:
1090 # - ANYONE_CAN_JOIN: Anyone in the account domain can join. This includes accounts with multiple domains.
1091 # - ALL_IN_DOMAIN_CAN_JOIN: Any Internet user who is outside your domain can access your Google Groups service and view the list of groups in your Groups directory. Warning: Group owners can add external addresses, outside of the domain to their groups. They can also allow people outside your domain to join their groups. If you later disable this option, any external addresses already added to users&#x27; groups remain in those groups.
1092 # - INVITED_CAN_JOIN: Candidates for membership can be invited to join.
1093 # - CAN_REQUEST_TO_JOIN: Non members can request an invitation to join.
1094 &quot;spamModerationLevel&quot;: &quot;A String&quot;, # Specifies moderation levels for messages detected as spam. Possible values are:
1095 # - ALLOW: Post the message to the group.
1096 # - MODERATE: Send the message to the moderation queue. This is the default.
1097 # - SILENTLY_MODERATE: Send the message to the moderation queue, but do not send notification to moderators.
1098 # - REJECT: Immediately reject the message.
1099 &quot;whoCanContactOwner&quot;: &quot;A String&quot;, # Permission to contact owner of the group via web UI. Possible values are:
1100 # - ALL_IN_DOMAIN_CAN_CONTACT
1101 # - ALL_MANAGERS_CAN_CONTACT
1102 # - ALL_MEMBERS_CAN_CONTACT
1103 # - ANYONE_CAN_CONTACT
1104 &quot;maxMessageBytes&quot;: 42, # Deprecated. The maximum size of a message is 25Mb.
1105 &quot;whoCanAssistContent&quot;: &quot;A String&quot;, # Specifies who can moderate metadata. Possible values are:
1106 # - ALL_MEMBERS
1107 # - OWNERS_AND_MANAGERS
1108 # - MANAGERS_ONLY
1109 # - OWNERS_ONLY
1110 # - NONE
1111 &quot;allowExternalMembers&quot;: &quot;A String&quot;, # Identifies whether members external to your organization can join the group. Possible values are:
1112 # - true: G Suite users external to your organization can become members of this group.
1113 # - false: Users not belonging to the organization are not allowed to become members of this group.
1114 &quot;whoCanUnassignTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unassign any topic in a forum. Possible values are:
1115 # - ALL_MEMBERS
1116 # - OWNERS_AND_MANAGERS
1117 # - MANAGERS_ONLY
1118 # - OWNERS_ONLY
1119 # - NONE
1120 &quot;whoCanDiscoverGroup&quot;: &quot;A String&quot;, # Specifies the set of users for whom this group is discoverable. Possible values are:
1121 # - ANYONE_CAN_DISCOVER
1122 # - ALL_IN_DOMAIN_CAN_DISCOVER
1123 # - ALL_MEMBERS_CAN_DISCOVER
1124 &quot;whoCanMarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark any other user&#x27;s post as a favorite reply. Possible values are:
1125 # - ALL_MEMBERS
1126 # - OWNERS_AND_MANAGERS
1127 # - MANAGERS_ONLY
1128 # - OWNERS_ONLY
1129 # - NONE
1130 &quot;archiveOnly&quot;: &quot;A String&quot;, # Allows the group to be archived only. Possible values are:
1131 # - true: Group is archived and the group is inactive. New messages to this group are rejected. The older archived messages are browseable and searchable.
1132 # - If true, the whoCanPostMessage property is set to NONE_CAN_POST.
1133 # - If reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
1134 # - false: The group is active and can receive messages.
1135 # - When false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
1136 &quot;membersCanPostAsTheGroup&quot;: &quot;A String&quot;, # Enables members to post messages as the group. Possible values are:
1137 # - true: Group member can post messages using the group&#x27;s email address instead of their own email address. Message appear to originate from the group itself. Note: When true, any message moderation settings on individual users or new members do not apply to posts made on behalf of the group.
1138 # - false: Members can not post in behalf of the group&#x27;s email address.
1139 &quot;whoCanTakeTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to take topics in a forum. Possible values are:
1140 # - ALL_MEMBERS
1141 # - OWNERS_AND_MANAGERS
1142 # - MANAGERS_ONLY
1143 # - OWNERS_ONLY
1144 # - NONE
1145 &quot;kind&quot;: &quot;groupsSettings#groups&quot;, # The type of the resource. It is always groupsSettings#groups.
1146 &quot;whoCanAssignTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to assign topics in a forum to another user. Possible values are:
1147 # - ALL_MEMBERS
1148 # - OWNERS_AND_MANAGERS
1149 # - MANAGERS_ONLY
1150 # - OWNERS_ONLY
1151 # - NONE
1152 &quot;showInGroupDirectory&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanDiscoverGroup setting. Allows the group to be visible in the Groups Directory. Possible values are:
1153 # - true: All groups in the account are listed in the Groups directory.
1154 # - false: All groups in the account are not listed in the directory.
Bu Sun Kim65020912020-05-20 12:08:20 -07001155 &quot;whoCanPostMessage&quot;: &quot;A String&quot;, # Permissions to post messages. Possible values are:
1156 # - NONE_CAN_POST: The group is disabled and archived. No one can post a message to this group.
1157 # - When archiveOnly is false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
1158 # - If archiveOnly is reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
1159 # - ALL_MANAGERS_CAN_POST: Managers, including group owners, can post messages.
1160 # - ALL_MEMBERS_CAN_POST: Any group member can post a message.
1161 # - ALL_OWNERS_CAN_POST: Only group owners can post a message.
1162 # - ALL_IN_DOMAIN_CAN_POST: Anyone in the account can post a message.
1163 # - ANYONE_CAN_POST: Any Internet user who outside your account can access your Google Groups service and post a message. Note: When whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001164 &quot;name&quot;: &quot;A String&quot;, # Name of the group, which has a maximum size of 75 characters.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001165 &quot;whoCanMarkFavoriteReplyOnOwnTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a post for a topic they started as a favorite reply. Possible values are:
1166 # - ALL_MEMBERS
1167 # - OWNERS_AND_MANAGERS
1168 # - MANAGERS_ONLY
1169 # - OWNERS_ONLY
1170 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001171 &quot;whoCanLockTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can prevent users from posting replies to topics. Possible values are:
1172 # - ALL_MEMBERS
1173 # - OWNERS_AND_MANAGERS
1174 # - OWNERS_ONLY
1175 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001176 &quot;email&quot;: &quot;A String&quot;, # The group&#x27;s email address. This property can be updated using the Directory API. Note: Only a group owner can change a group&#x27;s email address. A group manager can&#x27;t do this.
1177 # When you change your group&#x27;s address using the Directory API or the control panel, you are changing the address your subscribers use to send email and the web address people use to access your group. People can&#x27;t reach your group by visiting the old address.
1178 &quot;messageDisplayFont&quot;: &quot;A String&quot;, # Deprecated. The default message display font always has a value of &quot;DEFAULT_FONT&quot;.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001179 &quot;customFooterText&quot;: &quot;A String&quot;, # Set the content of custom footer text. The maximum number of characters is 1,000.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001180 &quot;customRolesEnabledForSettingsToBeMerged&quot;: &quot;A String&quot;, # Specifies whether the group has a custom role that&#x27;s included in one of the settings being merged. This field is read-only and update/patch requests to it are ignored. Possible values are:
1181 # - true
1182 # - false
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001183 &quot;whoCanLeaveGroup&quot;: &quot;A String&quot;, # Permission to leave the group. Possible values are:
1184 # - ALL_MANAGERS_CAN_LEAVE
1185 # - ALL_MEMBERS_CAN_LEAVE
1186 # - NONE_CAN_LEAVE
Bu Sun Kim65020912020-05-20 12:08:20 -07001187}
1188
1189
1190Returns:
1191 An object of the form:
1192
1193 { # JSON template for Group resource
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001194 &quot;whoCanViewMembership&quot;: &quot;A String&quot;, # Permissions to view membership. Possible values are:
1195 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in the account can view the group members list.
1196 # If a group already has external members, those members can still send email to this group.
1197 #
1198 # - ALL_MEMBERS_CAN_VIEW: The group members can view the group members list.
1199 # - ALL_MANAGERS_CAN_VIEW: The group managers can view group members list.
1200 &quot;description&quot;: &quot;A String&quot;, # Description of the group. This property value may be an empty string if no group description has been entered. If entered, the maximum group description is no more than 300 characters.
1201 &quot;whoCanInvite&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to invite new members. Possible values are:
1202 # - ALL_MEMBERS_CAN_INVITE: Managers and members can invite a new member candidate.
1203 # - ALL_MANAGERS_CAN_INVITE: Only managers can invite a new member. This includes the group&#x27;s owner.
1204 # - ALL_OWNERS_CAN_INVITE: Only owners can invite a new member.
1205 # - NONE_CAN_INVITE: No one can invite a new member candidate.
1206 &quot;whoCanUnmarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unmark any post from a favorite reply. Possible values are:
Dan O'Mearadd494642020-05-01 07:42:23 -07001207 # - ALL_MEMBERS
1208 # - OWNERS_AND_MANAGERS
1209 # - MANAGERS_ONLY
1210 # - OWNERS_ONLY
1211 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001212 &quot;whoCanModerateMembers&quot;: &quot;A String&quot;, # Specifies who can manage members. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -07001213 # - ALL_MEMBERS
1214 # - OWNERS_AND_MANAGERS
1215 # - OWNERS_ONLY
1216 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001217 &quot;whoCanMoveTopicsOut&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics out of the group or forum. Possible values are:
1218 # - ALL_MEMBERS
1219 # - OWNERS_AND_MANAGERS
1220 # - OWNERS_ONLY
1221 # - NONE
1222 &quot;isArchived&quot;: &quot;A String&quot;, # Allows the Group contents to be archived. Possible values are:
1223 # - true: Archive messages sent to the group.
1224 # - false: Do not keep an archive of messages sent to this group. If false, previously archived messages remain in the archive.
1225 &quot;whoCanApproveMessages&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can approve pending messages in the moderation queue. Possible values are:
1226 # - ALL_MEMBERS
1227 # - OWNERS_AND_MANAGERS
1228 # - OWNERS_ONLY
1229 # - NONE
1230 &quot;whoCanAdd&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Permissions to add members. Possible values are:
1231 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
1232 # - ALL_MANAGERS_CAN_ADD: Only managers can directly add new members. this includes the group&#x27;s owner.
1233 # - ALL_OWNERS_CAN_ADD: Only owners can directly add new members.
1234 # - NONE_CAN_ADD: No one can directly add new members.
1235 &quot;replyTo&quot;: &quot;A String&quot;, # Specifies who receives the default reply. Possible values are:
1236 # - REPLY_TO_CUSTOM: For replies to messages, use the group&#x27;s custom email address.
1237 # When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds the custom email address used when replying to a message. If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a value. Otherwise an error is returned.
1238 #
1239 # - REPLY_TO_SENDER: The reply sent to author of message.
1240 # - REPLY_TO_LIST: This reply message is sent to the group.
1241 # - REPLY_TO_OWNER: The reply is sent to the owner(s) of the group. This does not include the group&#x27;s managers.
1242 # - REPLY_TO_IGNORE: Group users individually decide where the message reply is sent.
1243 # - REPLY_TO_MANAGERS: This reply message is sent to the group&#x27;s managers, which includes all managers and the group owner.
1244 &quot;whoCanViewGroup&quot;: &quot;A String&quot;, # Permissions to view group messages. Possible values are:
1245 # - ANYONE_CAN_VIEW: Any Internet user can view the group&#x27;s messages.
1246 # - ALL_IN_DOMAIN_CAN_VIEW: Anyone in your account can view this group&#x27;s messages.
1247 # - ALL_MEMBERS_CAN_VIEW: All group members can view the group&#x27;s messages.
1248 # - ALL_MANAGERS_CAN_VIEW: Any group manager can view this group&#x27;s messages.
1249 &quot;allowGoogleCommunication&quot;: &quot;A String&quot;, # Deprecated. Allows Google to contact administrator of the group.
1250 # - true: Allow Google to contact managers of this group. Occasionally Google may send updates on the latest features, ask for input on new features, or ask for permission to highlight your group.
1251 # - false: Google can not contact managers of this group.
Bu Sun Kim65020912020-05-20 12:08:20 -07001252 &quot;whoCanMarkDuplicate&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as a duplicate of another topic. Possible values are:
1253 # - ALL_MEMBERS
1254 # - OWNERS_AND_MANAGERS
1255 # - MANAGERS_ONLY
1256 # - OWNERS_ONLY
1257 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001258 &quot;includeInGlobalAddressList&quot;: &quot;A String&quot;, # Enables the group to be included in the Global Address List. For more information, see the help center. Possible values are:
1259 # - true: Group is included in the Global Address List.
1260 # - false: Group is not included in the Global Address List.
1261 &quot;allowWebPosting&quot;: &quot;A String&quot;, # Allows posting from web. Possible values are:
1262 # - true: Allows any member to post to the group forum.
1263 # - false: Members only use Gmail to communicate with the group.
1264 &quot;customReplyTo&quot;: &quot;A String&quot;, # An email address used when replying to a message if the replyTo property is set to REPLY_TO_CUSTOM. This address is defined by an account administrator.
1265 # - When the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property holds a custom email address used when replying to a message.
1266 # - If the group&#x27;s ReplyTo property is set to REPLY_TO_CUSTOM, the customReplyTo property must have a text value or an error is returned.
1267 &quot;whoCanMakeTopicsSticky&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can make topics appear at the top of the topic list. Possible values are:
1268 # - ALL_MEMBERS
1269 # - OWNERS_AND_MANAGERS
1270 # - OWNERS_ONLY
1271 # - NONE
1272 &quot;whoCanMarkNoResponseNeeded&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a topic as not needing a response. Possible values are:
1273 # - ALL_MEMBERS
1274 # - OWNERS_AND_MANAGERS
1275 # - MANAGERS_ONLY
1276 # - OWNERS_ONLY
1277 # - NONE
1278 &quot;whoCanApproveMembers&quot;: &quot;A String&quot;, # Specifies who can approve members who ask to join groups. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
1279 # - ALL_MEMBERS_CAN_APPROVE
1280 # - ALL_MANAGERS_CAN_APPROVE
1281 # - ALL_OWNERS_CAN_APPROVE
1282 # - NONE_CAN_APPROVE
1283 &quot;primaryLanguage&quot;: &quot;A String&quot;, # The primary language for group. For a group&#x27;s primary language use the language tags from the G Suite languages found at G Suite Email Settings API Email Language Tags.
1284 &quot;sendMessageDenyNotification&quot;: &quot;A String&quot;, # Allows a member to be notified if the member&#x27;s message to the group is denied by the group owner. Possible values are:
1285 # - true: When a message is rejected, send the deny message notification to the message author.
1286 # The defaultMessageDenyNotificationText property is dependent on the sendMessageDenyNotification property being true.
1287 #
1288 # - false: When a message is rejected, no notification is sent.
1289 &quot;messageModerationLevel&quot;: &quot;A String&quot;, # Moderation level of incoming messages. Possible values are:
1290 # - MODERATE_ALL_MESSAGES: All messages are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1291 # - MODERATE_NON_MEMBERS: All messages from non group members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1292 # - MODERATE_NEW_MEMBERS: All messages from new members are sent to the group owner&#x27;s email address for approval. If approved, the message is sent to the group.
1293 # - MODERATE_NONE: No moderator approval is required. Messages are delivered directly to the group. Note: When the whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
1294 # When memberCanPostAsTheGroup is true, any message moderation settings on individual users or new members will not apply to posts made on behalf of the group.
1295 &quot;whoCanDeleteAnyPost&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete replies to topics. (Authors can always delete their own posts). Possible values are:
1296 # - ALL_MEMBERS
1297 # - OWNERS_AND_MANAGERS
1298 # - OWNERS_ONLY
1299 # - NONE
1300 &quot;enableCollaborativeInbox&quot;: &quot;A String&quot;, # Specifies whether a collaborative inbox will remain turned on for the group. Possible values are:
1301 # - true
1302 # - false
1303 &quot;whoCanHideAbuse&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can hide posts by reporting them as abuse. Possible values are:
1304 # - ALL_MEMBERS
1305 # - OWNERS_AND_MANAGERS
1306 # - OWNERS_ONLY
1307 # - NONE
1308 &quot;whoCanPostAnnouncements&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can post announcements, a special topic type. Possible values are:
1309 # - ALL_MEMBERS
1310 # - OWNERS_AND_MANAGERS
1311 # - OWNERS_ONLY
1312 # - NONE
1313 &quot;favoriteRepliesOnTop&quot;: &quot;A String&quot;, # Indicates if favorite replies should be displayed above other replies.
1314 # - true: Favorite replies will be displayed above other replies.
1315 # - false: Favorite replies will not be displayed above other replies.
1316 &quot;whoCanModifyTagsAndCategories&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to change tags and categories. Possible values are:
1317 # - ALL_MEMBERS
1318 # - OWNERS_AND_MANAGERS
1319 # - MANAGERS_ONLY
1320 # - OWNERS_ONLY
1321 # - NONE
1322 &quot;includeCustomFooter&quot;: &quot;A String&quot;, # Whether to include custom footer. Possible values are:
1323 # - true
1324 # - false
1325 &quot;whoCanMoveTopicsIn&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can move topics into the group or forum. Possible values are:
1326 # - ALL_MEMBERS
1327 # - OWNERS_AND_MANAGERS
1328 # - OWNERS_ONLY
1329 # - NONE
Bu Sun Kim65020912020-05-20 12:08:20 -07001330 &quot;whoCanModifyMembers&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateMembers setting. Specifies who can change group members&#x27; roles. Possible values are:
1331 # - ALL_MEMBERS
1332 # - OWNERS_AND_MANAGERS
1333 # - OWNERS_ONLY
1334 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001335 &quot;whoCanEnterFreeFormTags&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to enter free form tags for topics in a forum. Possible values are:
Bu Sun Kim65020912020-05-20 12:08:20 -07001336 # - ALL_MEMBERS
1337 # - OWNERS_AND_MANAGERS
1338 # - MANAGERS_ONLY
1339 # - OWNERS_ONLY
1340 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001341 &quot;whoCanDeleteTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can delete topics. Possible values are:
1342 # - ALL_MEMBERS
1343 # - OWNERS_AND_MANAGERS
1344 # - OWNERS_ONLY
1345 # - NONE
1346 &quot;whoCanModerateContent&quot;: &quot;A String&quot;, # Specifies who can moderate content. Possible values are:
1347 # - ALL_MEMBERS
1348 # - OWNERS_AND_MANAGERS
1349 # - OWNERS_ONLY
1350 # - NONE
1351 &quot;whoCanBanUsers&quot;: &quot;A String&quot;, # Specifies who can deny membership to users. This permission will be deprecated once it is merged into the new whoCanModerateMembers setting. Possible values are:
1352 # - ALL_MEMBERS
1353 # - OWNERS_AND_MANAGERS
1354 # - OWNERS_ONLY
1355 # - NONE
1356 &quot;defaultMessageDenyNotificationText&quot;: &quot;A String&quot;, # When a message is rejected, this is text for the rejection notification sent to the message&#x27;s author. By default, this property is empty and has no value in the API&#x27;s response body. The maximum notification text size is 10,000 characters. Note: Requires sendMessageDenyNotification property to be true.
1357 &quot;whoCanAddReferences&quot;: &quot;A String&quot;, # Deprecated. This functionality is no longer supported in the Google Groups UI. The value is always &quot;NONE&quot;.
1358 &quot;whoCanJoin&quot;: &quot;A String&quot;, # Permission to join group. Possible values are:
1359 # - ANYONE_CAN_JOIN: Anyone in the account domain can join. This includes accounts with multiple domains.
1360 # - ALL_IN_DOMAIN_CAN_JOIN: Any Internet user who is outside your domain can access your Google Groups service and view the list of groups in your Groups directory. Warning: Group owners can add external addresses, outside of the domain to their groups. They can also allow people outside your domain to join their groups. If you later disable this option, any external addresses already added to users&#x27; groups remain in those groups.
1361 # - INVITED_CAN_JOIN: Candidates for membership can be invited to join.
1362 # - CAN_REQUEST_TO_JOIN: Non members can request an invitation to join.
1363 &quot;spamModerationLevel&quot;: &quot;A String&quot;, # Specifies moderation levels for messages detected as spam. Possible values are:
1364 # - ALLOW: Post the message to the group.
1365 # - MODERATE: Send the message to the moderation queue. This is the default.
1366 # - SILENTLY_MODERATE: Send the message to the moderation queue, but do not send notification to moderators.
1367 # - REJECT: Immediately reject the message.
1368 &quot;whoCanContactOwner&quot;: &quot;A String&quot;, # Permission to contact owner of the group via web UI. Possible values are:
1369 # - ALL_IN_DOMAIN_CAN_CONTACT
1370 # - ALL_MANAGERS_CAN_CONTACT
1371 # - ALL_MEMBERS_CAN_CONTACT
1372 # - ANYONE_CAN_CONTACT
1373 &quot;maxMessageBytes&quot;: 42, # Deprecated. The maximum size of a message is 25Mb.
1374 &quot;whoCanAssistContent&quot;: &quot;A String&quot;, # Specifies who can moderate metadata. Possible values are:
1375 # - ALL_MEMBERS
1376 # - OWNERS_AND_MANAGERS
1377 # - MANAGERS_ONLY
1378 # - OWNERS_ONLY
1379 # - NONE
1380 &quot;allowExternalMembers&quot;: &quot;A String&quot;, # Identifies whether members external to your organization can join the group. Possible values are:
1381 # - true: G Suite users external to your organization can become members of this group.
1382 # - false: Users not belonging to the organization are not allowed to become members of this group.
1383 &quot;whoCanUnassignTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to unassign any topic in a forum. Possible values are:
1384 # - ALL_MEMBERS
1385 # - OWNERS_AND_MANAGERS
1386 # - MANAGERS_ONLY
1387 # - OWNERS_ONLY
1388 # - NONE
1389 &quot;whoCanDiscoverGroup&quot;: &quot;A String&quot;, # Specifies the set of users for whom this group is discoverable. Possible values are:
1390 # - ANYONE_CAN_DISCOVER
1391 # - ALL_IN_DOMAIN_CAN_DISCOVER
1392 # - ALL_MEMBERS_CAN_DISCOVER
1393 &quot;whoCanMarkFavoriteReplyOnAnyTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark any other user&#x27;s post as a favorite reply. Possible values are:
1394 # - ALL_MEMBERS
1395 # - OWNERS_AND_MANAGERS
1396 # - MANAGERS_ONLY
1397 # - OWNERS_ONLY
1398 # - NONE
1399 &quot;archiveOnly&quot;: &quot;A String&quot;, # Allows the group to be archived only. Possible values are:
1400 # - true: Group is archived and the group is inactive. New messages to this group are rejected. The older archived messages are browseable and searchable.
1401 # - If true, the whoCanPostMessage property is set to NONE_CAN_POST.
1402 # - If reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
1403 # - false: The group is active and can receive messages.
1404 # - When false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
1405 &quot;membersCanPostAsTheGroup&quot;: &quot;A String&quot;, # Enables members to post messages as the group. Possible values are:
1406 # - true: Group member can post messages using the group&#x27;s email address instead of their own email address. Message appear to originate from the group itself. Note: When true, any message moderation settings on individual users or new members do not apply to posts made on behalf of the group.
1407 # - false: Members can not post in behalf of the group&#x27;s email address.
1408 &quot;whoCanTakeTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to take topics in a forum. Possible values are:
1409 # - ALL_MEMBERS
1410 # - OWNERS_AND_MANAGERS
1411 # - MANAGERS_ONLY
1412 # - OWNERS_ONLY
1413 # - NONE
1414 &quot;kind&quot;: &quot;groupsSettings#groups&quot;, # The type of the resource. It is always groupsSettings#groups.
1415 &quot;whoCanAssignTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to assign topics in a forum to another user. Possible values are:
1416 # - ALL_MEMBERS
1417 # - OWNERS_AND_MANAGERS
1418 # - MANAGERS_ONLY
1419 # - OWNERS_ONLY
1420 # - NONE
1421 &quot;showInGroupDirectory&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanDiscoverGroup setting. Allows the group to be visible in the Groups Directory. Possible values are:
1422 # - true: All groups in the account are listed in the Groups directory.
1423 # - false: All groups in the account are not listed in the directory.
Bu Sun Kim65020912020-05-20 12:08:20 -07001424 &quot;whoCanPostMessage&quot;: &quot;A String&quot;, # Permissions to post messages. Possible values are:
Dan O'Mearadd494642020-05-01 07:42:23 -07001425 # - NONE_CAN_POST: The group is disabled and archived. No one can post a message to this group.
1426 # - When archiveOnly is false, updating whoCanPostMessage to NONE_CAN_POST, results in an error.
1427 # - If archiveOnly is reverted from true to false, whoCanPostMessages is set to ALL_MANAGERS_CAN_POST.
1428 # - ALL_MANAGERS_CAN_POST: Managers, including group owners, can post messages.
1429 # - ALL_MEMBERS_CAN_POST: Any group member can post a message.
1430 # - ALL_OWNERS_CAN_POST: Only group owners can post a message.
1431 # - ALL_IN_DOMAIN_CAN_POST: Anyone in the account can post a message.
1432 # - ANYONE_CAN_POST: Any Internet user who outside your account can access your Google Groups service and post a message. Note: When whoCanPostMessage is set to ANYONE_CAN_POST, we recommend the messageModerationLevel be set to MODERATE_NON_MEMBERS to protect the group from possible spam.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001433 &quot;name&quot;: &quot;A String&quot;, # Name of the group, which has a maximum size of 75 characters.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001434 &quot;whoCanMarkFavoriteReplyOnOwnTopic&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanAssistContent setting. Permission to mark a post for a topic they started as a favorite reply. Possible values are:
1435 # - ALL_MEMBERS
1436 # - OWNERS_AND_MANAGERS
1437 # - MANAGERS_ONLY
1438 # - OWNERS_ONLY
1439 # - NONE
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001440 &quot;whoCanLockTopics&quot;: &quot;A String&quot;, # Deprecated. This is merged into the new whoCanModerateContent setting. Specifies who can prevent users from posting replies to topics. Possible values are:
1441 # - ALL_MEMBERS
1442 # - OWNERS_AND_MANAGERS
1443 # - OWNERS_ONLY
1444 # - NONE
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001445 &quot;email&quot;: &quot;A String&quot;, # The group&#x27;s email address. This property can be updated using the Directory API. Note: Only a group owner can change a group&#x27;s email address. A group manager can&#x27;t do this.
1446 # When you change your group&#x27;s address using the Directory API or the control panel, you are changing the address your subscribers use to send email and the web address people use to access your group. People can&#x27;t reach your group by visiting the old address.
1447 &quot;messageDisplayFont&quot;: &quot;A String&quot;, # Deprecated. The default message display font always has a value of &quot;DEFAULT_FONT&quot;.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001448 &quot;customFooterText&quot;: &quot;A String&quot;, # Set the content of custom footer text. The maximum number of characters is 1,000.
Bu Sun Kimd059ad82020-07-22 17:02:09 -07001449 &quot;customRolesEnabledForSettingsToBeMerged&quot;: &quot;A String&quot;, # Specifies whether the group has a custom role that&#x27;s included in one of the settings being merged. This field is read-only and update/patch requests to it are ignored. Possible values are:
1450 # - true
1451 # - false
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001452 &quot;whoCanLeaveGroup&quot;: &quot;A String&quot;, # Permission to leave the group. Possible values are:
1453 # - ALL_MANAGERS_CAN_LEAVE
1454 # - ALL_MEMBERS_CAN_LEAVE
1455 # - NONE_CAN_LEAVE
Bu Sun Kim65020912020-05-20 12:08:20 -07001456 }</pre>
John Asmuth614db982014-04-24 15:46:26 -04001457</div>
1458
1459</body></html>