@@ -102,6 +102,26 @@ public com.microsoft.graph.requests.GroupCollectionRequestBuilder memberOfAsGrou
102102 public com .microsoft .graph .requests .GroupRequestBuilder memberOfAsGroup (@ Nonnull final String id ) {
103103 return new com .microsoft .graph .requests .GroupRequestBuilder (getRequestUrlWithAdditionalSegment ("memberOf" ) + "/" + id + "/microsoft.graph.group" , getClient (), null );
104104 }
105+ /**
106+ * Gets a request builder for the AdministrativeUnit collection
107+ *
108+ * @return the collection request builder
109+ */
110+ @ Nonnull
111+ public com .microsoft .graph .requests .AdministrativeUnitCollectionRequestBuilder memberOfAsAdministrativeUnit () {
112+ return new com .microsoft .graph .requests .AdministrativeUnitCollectionRequestBuilder (getRequestUrlWithAdditionalSegment ("memberOf" ) + "/microsoft.graph.administrativeUnit" , getClient (), null );
113+ }
114+
115+ /**
116+ * Gets a request builder for the AdministrativeUnit item
117+ *
118+ * @return the request builder
119+ * @param id the item identifier
120+ */
121+ @ Nonnull
122+ public com .microsoft .graph .requests .AdministrativeUnitRequestBuilder memberOfAsAdministrativeUnit (@ Nonnull final String id ) {
123+ return new com .microsoft .graph .requests .AdministrativeUnitRequestBuilder (getRequestUrlWithAdditionalSegment ("memberOf" ) + "/" + id + "/microsoft.graph.administrativeUnit" , getClient (), null );
124+ }
105125 /**
106126 * Gets a request builder for the DirectoryObject collection
107127 *
@@ -342,6 +362,26 @@ public com.microsoft.graph.requests.GroupCollectionRequestBuilder transitiveMemb
342362 public com .microsoft .graph .requests .GroupRequestBuilder transitiveMemberOfAsGroup (@ Nonnull final String id ) {
343363 return new com .microsoft .graph .requests .GroupRequestBuilder (getRequestUrlWithAdditionalSegment ("transitiveMemberOf" ) + "/" + id + "/microsoft.graph.group" , getClient (), null );
344364 }
365+ /**
366+ * Gets a request builder for the AdministrativeUnit collection
367+ *
368+ * @return the collection request builder
369+ */
370+ @ Nonnull
371+ public com .microsoft .graph .requests .AdministrativeUnitCollectionRequestBuilder transitiveMemberOfAsAdministrativeUnit () {
372+ return new com .microsoft .graph .requests .AdministrativeUnitCollectionRequestBuilder (getRequestUrlWithAdditionalSegment ("transitiveMemberOf" ) + "/microsoft.graph.administrativeUnit" , getClient (), null );
373+ }
374+
375+ /**
376+ * Gets a request builder for the AdministrativeUnit item
377+ *
378+ * @return the request builder
379+ * @param id the item identifier
380+ */
381+ @ Nonnull
382+ public com .microsoft .graph .requests .AdministrativeUnitRequestBuilder transitiveMemberOfAsAdministrativeUnit (@ Nonnull final String id ) {
383+ return new com .microsoft .graph .requests .AdministrativeUnitRequestBuilder (getRequestUrlWithAdditionalSegment ("transitiveMemberOf" ) + "/" + id + "/microsoft.graph.administrativeUnit" , getClient (), null );
384+ }
345385 /**
346386 * Gets a request builder for the Extension collection
347387 *
0 commit comments