blob: 21b6269a381d1c4bcd0af6024264272e057c3ad6 [file] [log] [blame]
Bu Sun Kim715bd7f2019-06-14 16:50:42 -07001<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="cloudidentity_v1.html">Cloud Identity API</a> . <a href="cloudidentity_v1.groups.html">groups</a> . <a href="cloudidentity_v1.groups.memberships.html">memberships</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070079<p class="firstline">Creates a Membership.</p>
80<p class="toc_element">
81 <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a Membership.</p>
83<p class="toc_element">
84 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Retrieves a Membership.</p>
86<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070087 <code><a href="#list">list(parent, view=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Dan O'Mearadd494642020-05-01 07:42:23 -070088<p class="firstline">Lists Memberships within a Group.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070089<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070093 <code><a href="#lookup">lookup(parent, memberKey_id=None, memberKey_namespace=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070094<p class="firstline">Looks up [resource</p>
95<h3>Method Details</h3>
96<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -070097 <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070098 <pre>Creates a Membership.
99
100Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700101 parent: string, Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700102Group to create Membership within. Format: `groups/{group_id}`, where
103`group_id` is the unique ID assigned to the Group. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700104 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700105 The object takes the form of:
106
107{ # Resource representing a Membership within a Group
Bu Sun Kim65020912020-05-20 12:08:20 -0700108 &quot;roles&quot;: [ # Roles for a member within the Group.
109 #
110 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
111 { # Resource representing a role within a Membership.
112 &quot;name&quot;: &quot;A String&quot;, # MembershipRole in string format.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700113 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700115 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700116 ],
117 &quot;preferredMemberKey&quot;: { # An EntityKey uniquely identifies an Entity. Namespaces are used to provide # Required. Immutable. EntityKey of the entity to be added as the member. Must be set while
118 # creating a Membership, read-only afterwards.
119 #
120 # Currently allowed entity types: `Users`, `Groups`.
121 # isolation for IDs. A single ID can be reused across namespaces but the
122 # combination of a namespace and an ID must be unique.
123 &quot;id&quot;: &quot;A String&quot;, # The ID of the entity within the given namespace. The ID must be unique
124 # within its namespace.
125 &quot;namespace&quot;: &quot;A String&quot;, # Namespaces provide isolation for IDs, so an ID only needs to be unique
126 # within its namespace.
127 #
128 # Namespaces are currently only created as part of IdentitySource creation
129 # from Admin Console. A namespace `&quot;identitysources/{identity_source_id}&quot;` is
130 # created corresponding to every Identity Source `identity_source_id`.
131 },
132 &quot;createTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp of the Membership. Output only.
133 &quot;name&quot;: &quot;A String&quot;, # Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
134 # Membership in the format: `groups/{group_id}/memberships/{member_id}`,
135 # where group_id is the unique ID assigned to the Group to which Membership
136 # belongs to, and member_id is the unique ID assigned to the member
137 #
138 # Must be left blank while creating a Membership.
139 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Last updated timestamp of the Membership. Output only.
140}
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700141
142 x__xgafv: string, V1 error format.
143 Allowed values
144 1 - v1 error format
145 2 - v2 error format
146
147Returns:
148 An object of the form:
149
150 { # This resource represents a long-running operation that is the result of a
151 # network API call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700153 # If `true`, the operation is completed, and either `error` or `response` is
154 # available.
Bu Sun Kim65020912020-05-20 12:08:20 -0700155 &quot;response&quot;: { # The normal response of the operation in case of success. If the original
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700156 # method returns no data on success, such as `Delete`, the response is
157 # `google.protobuf.Empty`. If the original method is standard
158 # `Get`/`Create`/`Update`, the response should be the resource. For other
159 # methods, the response should have the type `XxxResponse`, where `Xxx`
160 # is the original method name. For example, if the original method name
161 # is `TakeSnapshot()`, the inferred response type is
162 # `TakeSnapshotResponse`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700163 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700164 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700165 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700166 # originally returns it. If you use the default HTTP mapping, the
167 # `name` should be a resource name ending with `operations/{unique_id}`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700168 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically
169 # contains progress information and common metadata such as create time.
170 # Some services might not provide such metadata. Any method that returns a
171 # long-running operation should document the metadata type, if any.
172 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
173 },
174 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for # The error result of the operation in case of failure or cancellation.
175 # different programming environments, including REST APIs and RPC APIs. It is
176 # used by [gRPC](https://github.com/grpc). Each `Status` message contains
177 # three pieces of data: error code, error message, and error details.
178 #
179 # You can find out more about this error model and how to work with it in the
180 # [API Design Guide](https://cloud.google.com/apis/design/errors).
181 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any
182 # user-facing error message should be localized and sent in the
183 # google.rpc.Status.details field, or localized by the client.
184 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
185 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of
186 # message types for APIs to use.
187 {
188 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
189 },
190 ],
191 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700192 }</pre>
193</div>
194
195<div class="method">
196 <code class="details" id="delete">delete(name, x__xgafv=None)</code>
197 <pre>Deletes a Membership.
198
199Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700200 name: string, Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700201Membership to be deleted.
202
203Format: `groups/{group_id}/memberships/{member_id}`, where `group_id` is
204the unique ID assigned to the Group to which Membership belongs to, and
205member_id is the unique ID assigned to the member. (required)
206 x__xgafv: string, V1 error format.
207 Allowed values
208 1 - v1 error format
209 2 - v2 error format
210
211Returns:
212 An object of the form:
213
214 { # This resource represents a long-running operation that is the result of a
215 # network API call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700217 # If `true`, the operation is completed, and either `error` or `response` is
218 # available.
Bu Sun Kim65020912020-05-20 12:08:20 -0700219 &quot;response&quot;: { # The normal response of the operation in case of success. If the original
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700220 # method returns no data on success, such as `Delete`, the response is
221 # `google.protobuf.Empty`. If the original method is standard
222 # `Get`/`Create`/`Update`, the response should be the resource. For other
223 # methods, the response should have the type `XxxResponse`, where `Xxx`
224 # is the original method name. For example, if the original method name
225 # is `TakeSnapshot()`, the inferred response type is
226 # `TakeSnapshotResponse`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700228 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700229 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700230 # originally returns it. If you use the default HTTP mapping, the
231 # `name` should be a resource name ending with `operations/{unique_id}`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700232 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically
233 # contains progress information and common metadata such as create time.
234 # Some services might not provide such metadata. Any method that returns a
235 # long-running operation should document the metadata type, if any.
236 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
237 },
238 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for # The error result of the operation in case of failure or cancellation.
239 # different programming environments, including REST APIs and RPC APIs. It is
240 # used by [gRPC](https://github.com/grpc). Each `Status` message contains
241 # three pieces of data: error code, error message, and error details.
242 #
243 # You can find out more about this error model and how to work with it in the
244 # [API Design Guide](https://cloud.google.com/apis/design/errors).
245 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any
246 # user-facing error message should be localized and sent in the
247 # google.rpc.Status.details field, or localized by the client.
248 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
249 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of
250 # message types for APIs to use.
251 {
252 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
253 },
254 ],
255 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700256 }</pre>
257</div>
258
259<div class="method">
260 <code class="details" id="get">get(name, x__xgafv=None)</code>
261 <pre>Retrieves a Membership.
262
263Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700264 name: string, Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700265Membership to be retrieved.
266
267Format: `groups/{group_id}/memberships/{member_id}`, where `group_id` is
268the unique id assigned to the Group to which Membership belongs to, and
269`member_id` is the unique ID assigned to the member. (required)
270 x__xgafv: string, V1 error format.
271 Allowed values
272 1 - v1 error format
273 2 - v2 error format
274
275Returns:
276 An object of the form:
277
278 { # Resource representing a Membership within a Group
Bu Sun Kim65020912020-05-20 12:08:20 -0700279 &quot;roles&quot;: [ # Roles for a member within the Group.
280 #
281 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
282 { # Resource representing a role within a Membership.
283 &quot;name&quot;: &quot;A String&quot;, # MembershipRole in string format.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700284 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700285 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700286 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700287 ],
288 &quot;preferredMemberKey&quot;: { # An EntityKey uniquely identifies an Entity. Namespaces are used to provide # Required. Immutable. EntityKey of the entity to be added as the member. Must be set while
289 # creating a Membership, read-only afterwards.
290 #
291 # Currently allowed entity types: `Users`, `Groups`.
292 # isolation for IDs. A single ID can be reused across namespaces but the
293 # combination of a namespace and an ID must be unique.
294 &quot;id&quot;: &quot;A String&quot;, # The ID of the entity within the given namespace. The ID must be unique
295 # within its namespace.
296 &quot;namespace&quot;: &quot;A String&quot;, # Namespaces provide isolation for IDs, so an ID only needs to be unique
297 # within its namespace.
Dan O'Mearadd494642020-05-01 07:42:23 -0700298 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700299 # Namespaces are currently only created as part of IdentitySource creation
300 # from Admin Console. A namespace `&quot;identitysources/{identity_source_id}&quot;` is
301 # created corresponding to every Identity Source `identity_source_id`.
302 },
303 &quot;createTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp of the Membership. Output only.
304 &quot;name&quot;: &quot;A String&quot;, # Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
305 # Membership in the format: `groups/{group_id}/memberships/{member_id}`,
306 # where group_id is the unique ID assigned to the Group to which Membership
307 # belongs to, and member_id is the unique ID assigned to the member
308 #
309 # Must be left blank while creating a Membership.
310 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Last updated timestamp of the Membership. Output only.
311 }</pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700312</div>
313
314<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 <code class="details" id="list">list(parent, view=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
Dan O'Mearadd494642020-05-01 07:42:23 -0700316 <pre>Lists Memberships within a Group.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700317
318Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700319 parent: string, Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700320Group to list Memberships within.
321
322Format: `groups/{group_id}`, where `group_id` is the unique ID assigned to
323the Group. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700324 view: string, Membership resource view to be returned. Defaults to View.BASIC.
Dan O'Mearadd494642020-05-01 07:42:23 -0700325 pageSize: integer, The default page size is 200 (max 1000) for the BASIC view, and 50
326(max 500) for the FULL view.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700327 pageToken: string, The next_page_token value returned from a previous list request, if any.
328 x__xgafv: string, V1 error format.
329 Allowed values
330 1 - v1 error format
331 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700332
333Returns:
334 An object of the form:
335
336 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700337 &quot;memberships&quot;: [ # List of Memberships.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700338 { # Resource representing a Membership within a Group
Bu Sun Kim65020912020-05-20 12:08:20 -0700339 &quot;roles&quot;: [ # Roles for a member within the Group.
340 #
341 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
342 { # Resource representing a role within a Membership.
343 &quot;name&quot;: &quot;A String&quot;, # MembershipRole in string format.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700344 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700345 # Currently supported MembershipRoles: `&quot;MEMBER&quot;`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700346 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700347 ],
348 &quot;preferredMemberKey&quot;: { # An EntityKey uniquely identifies an Entity. Namespaces are used to provide # Required. Immutable. EntityKey of the entity to be added as the member. Must be set while
349 # creating a Membership, read-only afterwards.
350 #
351 # Currently allowed entity types: `Users`, `Groups`.
352 # isolation for IDs. A single ID can be reused across namespaces but the
353 # combination of a namespace and an ID must be unique.
354 &quot;id&quot;: &quot;A String&quot;, # The ID of the entity within the given namespace. The ID must be unique
355 # within its namespace.
356 &quot;namespace&quot;: &quot;A String&quot;, # Namespaces provide isolation for IDs, so an ID only needs to be unique
357 # within its namespace.
Dan O'Mearadd494642020-05-01 07:42:23 -0700358 #
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 # Namespaces are currently only created as part of IdentitySource creation
360 # from Admin Console. A namespace `&quot;identitysources/{identity_source_id}&quot;` is
361 # created corresponding to every Identity Source `identity_source_id`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700362 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700363 &quot;createTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp of the Membership. Output only.
364 &quot;name&quot;: &quot;A String&quot;, # Output only. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
365 # Membership in the format: `groups/{group_id}/memberships/{member_id}`,
366 # where group_id is the unique ID assigned to the Group to which Membership
367 # belongs to, and member_id is the unique ID assigned to the member
368 #
369 # Must be left blank while creating a Membership.
370 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Last updated timestamp of the Membership. Output only.
371 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700372 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 &quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no
374 # more results available for listing.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700375 }</pre>
376</div>
377
378<div class="method">
379 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
380 <pre>Retrieves the next page of results.
381
382Args:
383 previous_request: The request for the previous page. (required)
384 previous_response: The response from the request for the previous page. (required)
385
386Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700387 A request object that you can call &#x27;execute()&#x27; on to request the next
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700388 page. Returns None if there are no more items in the collection.
389 </pre>
390</div>
391
392<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700393 <code class="details" id="lookup">lookup(parent, memberKey_id=None, memberKey_namespace=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700394 <pre>Looks up [resource
395name](https://cloud.google.com/apis/design/resource_names) of a Membership
Bu Sun Kim65020912020-05-20 12:08:20 -0700396within a Group by member&#x27;s EntityKey.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700397
398Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700399 parent: string, Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700400Group to lookup Membership within.
401
402Format: `groups/{group_id}`, where `group_id` is the unique ID assigned to
403the Group. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700404 memberKey_id: string, The ID of the entity within the given namespace. The ID must be unique
405within its namespace.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700406 memberKey_namespace: string, Namespaces provide isolation for IDs, so an ID only needs to be unique
407within its namespace.
408
409Namespaces are currently only created as part of IdentitySource creation
Bu Sun Kim65020912020-05-20 12:08:20 -0700410from Admin Console. A namespace `&quot;identitysources/{identity_source_id}&quot;` is
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700411created corresponding to every Identity Source `identity_source_id`.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700412 x__xgafv: string, V1 error format.
413 Allowed values
414 1 - v1 error format
415 2 - v2 error format
416
417Returns:
418 An object of the form:
419
420 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700421 &quot;name&quot;: &quot;A String&quot;, # [Resource name](https://cloud.google.com/apis/design/resource_names) of the
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700422 # Membership being looked up.
423 #
424 # Format: `groups/{group_id}/memberships/{member_id}`, where `group_id` is
425 # the unique ID assigned to the Group to which Membership belongs to, and
426 # `member_id` is the unique ID assigned to the member.
427 }</pre>
428</div>
429
430</body></html>