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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -1174,11 +1174,8 @@ public GroupsWithUniqueNameRequestBuilder groupsWithUniqueName(@jakarta.annotati
* Provides operations to manage the collection of servicePrincipal entities.
* @param appId Alternate key of servicePrincipal
* @return a {@link ServicePrincipalsWithAppIdRequestBuilder}
* @deprecated
* Private preview for correlations report as of 2025-08/correlations on 2025-08-01 and will be removed 2026-08-01
*/
@jakarta.annotation.Nonnull
@Deprecated
public ServicePrincipalsWithAppIdRequestBuilder servicePrincipalsWithAppId(@jakarta.annotation.Nonnull final String appId) {
Objects.requireNonNull(appId);
return new ServicePrincipalsWithAppIdRequestBuilder(pathParameters, requestAdapter, appId);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.microsoft.graph.beta.app.calls.item.participants;

import com.microsoft.graph.beta.app.calls.item.participants.admitallfromlobby.AdmitAllFromLobbyRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.count.CountRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.invite.InviteRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.ParticipantItemRequestBuilder;
Expand All @@ -26,14 +25,6 @@
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ParticipantsRequestBuilder extends BaseRequestBuilder {
/**
* Provides operations to call the admitAllFromLobby method.
* @return a {@link AdmitAllFromLobbyRequestBuilder}
*/
@jakarta.annotation.Nonnull
public AdmitAllFromLobbyRequestBuilder admitAllFromLobby() {
return new AdmitAllFromLobbyRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package com.microsoft.graph.beta.app.calls.item.participants.item;

import com.microsoft.graph.beta.app.calls.item.participants.item.admitfromlobby.AdmitFromLobbyRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.mute.MuteRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.removefromlobby.RemoveFromLobbyRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.reportsyntheticmedia.ReportSyntheticMediaRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.startholdmusic.StartHoldMusicRequestBuilder;
import com.microsoft.graph.beta.app.calls.item.participants.item.stopholdmusic.StopHoldMusicRequestBuilder;
Expand All @@ -26,14 +24,6 @@
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ParticipantItemRequestBuilder extends BaseRequestBuilder {
/**
* Provides operations to call the admitFromLobby method.
* @return a {@link AdmitFromLobbyRequestBuilder}
*/
@jakarta.annotation.Nonnull
public AdmitFromLobbyRequestBuilder admitFromLobby() {
return new AdmitFromLobbyRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the mute method.
* @return a {@link MuteRequestBuilder}
Expand All @@ -42,14 +32,6 @@ public AdmitFromLobbyRequestBuilder admitFromLobby() {
public MuteRequestBuilder mute() {
return new MuteRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the removeFromLobby method.
* @return a {@link RemoveFromLobbyRequestBuilder}
*/
@jakarta.annotation.Nonnull
public RemoveFromLobbyRequestBuilder removeFromLobby() {
return new RemoveFromLobbyRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the reportSyntheticMedia method.
* @return a {@link ReportSyntheticMediaRequestBuilder}
Expand Down

This file was deleted.

Loading
Loading