Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package com.microsoft.graph.groups.item.team;
import com.microsoft.graph.groups.item.team.allchannels.AllChannelsRequestBuilder;
import com.microsoft.graph.groups.item.team.archive.ArchiveRequestBuilder;
import com.microsoft.graph.groups.item.team.channels.ChannelsRequestBuilder;
import com.microsoft.graph.groups.item.team.clone.CloneRequestBuilder;
import com.microsoft.graph.groups.item.team.completemigration.CompleteMigrationRequestBuilder;
import com.microsoft.graph.groups.item.team.group.GroupRequestBuilder;
import com.microsoft.graph.groups.item.team.incomingchannels.IncomingChannelsRequestBuilder;
import com.microsoft.graph.groups.item.team.installedapps.InstalledAppsRequestBuilder;
import com.microsoft.graph.groups.item.team.members.MembersRequestBuilder;
import com.microsoft.graph.groups.item.team.operations.OperationsRequestBuilder;
import com.microsoft.graph.groups.item.team.permissiongrants.PermissionGrantsRequestBuilder;
import com.microsoft.graph.groups.item.team.photo.PhotoRequestBuilder;
import com.microsoft.graph.groups.item.team.primarychannel.PrimaryChannelRequestBuilder;
import com.microsoft.graph.groups.item.team.schedule.ScheduleRequestBuilder;
import com.microsoft.graph.groups.item.team.sendactivitynotification.SendActivityNotificationRequestBuilder;
import com.microsoft.graph.groups.item.team.tags.TagsRequestBuilder;
import com.microsoft.graph.groups.item.team.template.TemplateRequestBuilder;
import com.microsoft.graph.groups.item.team.unarchive.UnarchiveRequestBuilder;
import com.microsoft.graph.models.odataerrors.ODataError;
import com.microsoft.graph.models.Team;
import com.microsoft.kiota.BaseRequestBuilder;
import com.microsoft.kiota.BaseRequestConfiguration;
import com.microsoft.kiota.HttpMethod;
import com.microsoft.kiota.QueryParameters;
import com.microsoft.kiota.RequestAdapter;
import com.microsoft.kiota.RequestInformation;
import com.microsoft.kiota.RequestOption;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParsableFactory;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Provides operations to manage the team property of the microsoft.graph.group entity.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class TeamRequestBuilder extends BaseRequestBuilder {
/**
* Provides operations to manage the allChannels property of the microsoft.graph.team entity.
* @return a {@link AllChannelsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public AllChannelsRequestBuilder allChannels() {
return new AllChannelsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the archive method.
* @return a {@link ArchiveRequestBuilder}
*/
@jakarta.annotation.Nonnull
public ArchiveRequestBuilder archive() {
return new ArchiveRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the channels property of the microsoft.graph.team entity.
* @return a {@link ChannelsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public ChannelsRequestBuilder channels() {
return new ChannelsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the clone method.
* @return a {@link CloneRequestBuilder}
*/
@jakarta.annotation.Nonnull
public CloneRequestBuilder clone() {
return new CloneRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the completeMigration method.
* @return a {@link CompleteMigrationRequestBuilder}
*/
@jakarta.annotation.Nonnull
public CompleteMigrationRequestBuilder completeMigration() {
return new CompleteMigrationRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the group property of the microsoft.graph.team entity.
* @return a {@link GroupRequestBuilder}
*/
@jakarta.annotation.Nonnull
public GroupRequestBuilder group() {
return new GroupRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the incomingChannels property of the microsoft.graph.team entity.
* @return a {@link IncomingChannelsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public IncomingChannelsRequestBuilder incomingChannels() {
return new IncomingChannelsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the installedApps property of the microsoft.graph.team entity.
* @return a {@link InstalledAppsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public InstalledAppsRequestBuilder installedApps() {
return new InstalledAppsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the members property of the microsoft.graph.team entity.
* @return a {@link MembersRequestBuilder}
*/
@jakarta.annotation.Nonnull
public MembersRequestBuilder members() {
return new MembersRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the operations property of the microsoft.graph.team entity.
* @return a {@link OperationsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public OperationsRequestBuilder operations() {
return new OperationsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the permissionGrants property of the microsoft.graph.team entity.
* @return a {@link PermissionGrantsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public PermissionGrantsRequestBuilder permissionGrants() {
return new PermissionGrantsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the photo property of the microsoft.graph.team entity.
* @return a {@link PhotoRequestBuilder}
*/
@jakarta.annotation.Nonnull
public PhotoRequestBuilder photo() {
return new PhotoRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the primaryChannel property of the microsoft.graph.team entity.
* @return a {@link PrimaryChannelRequestBuilder}
*/
@jakarta.annotation.Nonnull
public PrimaryChannelRequestBuilder primaryChannel() {
return new PrimaryChannelRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the schedule property of the microsoft.graph.team entity.
* @return a {@link ScheduleRequestBuilder}
*/
@jakarta.annotation.Nonnull
public ScheduleRequestBuilder schedule() {
return new ScheduleRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the sendActivityNotification method.
* @return a {@link SendActivityNotificationRequestBuilder}
*/
@jakarta.annotation.Nonnull
public SendActivityNotificationRequestBuilder sendActivityNotification() {
return new SendActivityNotificationRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the tags property of the microsoft.graph.team entity.
* @return a {@link TagsRequestBuilder}
*/
@jakarta.annotation.Nonnull
public TagsRequestBuilder tags() {
return new TagsRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to manage the template property of the microsoft.graph.team entity.
* @return a {@link TemplateRequestBuilder}
*/
@jakarta.annotation.Nonnull
public TemplateRequestBuilder template() {
return new TemplateRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the unarchive method.
* @return a {@link UnarchiveRequestBuilder}
*/
@jakarta.annotation.Nonnull
public UnarchiveRequestBuilder unarchive() {
return new UnarchiveRequestBuilder(pathParameters, requestAdapter);
}
/**
* Instantiates a new {@link TeamRequestBuilder} and sets the default values.
* @param pathParameters Path parameters for the request
* @param requestAdapter The request adapter to use to execute the requests.
*/
public TeamRequestBuilder(@jakarta.annotation.Nonnull final HashMap pathParameters, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team{?%24expand,%24select}", pathParameters);
}
/**
* Instantiates a new {@link TeamRequestBuilder} and sets the default values.
* @param rawUrl The raw URL to use for the request builder.
* @param requestAdapter The request adapter to use to execute the requests.
*/
public TeamRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakarta.annotation.Nonnull final RequestAdapter requestAdapter) {
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team{?%24expand,%24select}", rawUrl);
}
/**
* Delete navigation property team for groups
* @throws ODataError When receiving a 4XX or 5XX status code
*/
public void delete() {
delete(null);
}
/**
* Delete navigation property team for groups
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
* The team associated with this group.
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Team get() {
return get(null);
}
/**
* The team associated with this group.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@jakarta.annotation.Nullable
public Team get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toGetRequestInformation(requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.send(requestInfo, errorMapping, Team::createFromDiscriminatorValue);
}
/**
* Create a new team under a group. In order to create a team, the group must have a least one owner. If the creation of the team call is delayed, you can retry the call up to three times before you have to wait for 15 minutes due to a propagation delay. If the group was created less than 15 minutes ago, the call might fail with a 404 error code due to replication delays. If the group was created less than 15 minutes ago, it's possible for a call to create a team to fail with a 404 error code, due to ongoing replication delays.The recommended pattern is to retry the Create team call three times, with a 10 second delay between calls.
* @param body The request body
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see Find more info here
*/
@jakarta.annotation.Nullable
public Team put(@jakarta.annotation.Nonnull final Team body) {
return put(body, null);
}
/**
* Create a new team under a group. In order to create a team, the group must have a least one owner. If the creation of the team call is delayed, you can retry the call up to three times before you have to wait for 15 minutes due to a propagation delay. If the group was created less than 15 minutes ago, the call might fail with a 404 error code due to replication delays. If the group was created less than 15 minutes ago, it's possible for a call to create a team to fail with a 404 error code, due to ongoing replication delays.The recommended pattern is to retry the Create team call three times, with a 10 second delay between calls.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see Find more info here
*/
@jakarta.annotation.Nullable
public Team put(@jakarta.annotation.Nonnull final Team body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
final RequestInformation requestInfo = toPutRequestInformation(body, requestConfiguration);
final HashMap> errorMapping = new HashMap>();
errorMapping.put("XXX", ODataError::createFromDiscriminatorValue);
return this.requestAdapter.send(requestInfo, errorMapping, Team::createFromDiscriminatorValue);
}
/**
* Delete navigation property team for groups
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
* Delete navigation property team for groups
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = new RequestInformation(HttpMethod.DELETE, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, DeleteRequestConfiguration::new);
requestInfo.headers.tryAdd("Accept", "application/json");
return requestInfo;
}
/**
* The team associated with this group.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
* The team associated with this group.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = new RequestInformation(HttpMethod.GET, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, GetRequestConfiguration::new, x -> x.queryParameters);
requestInfo.headers.tryAdd("Accept", "application/json");
return requestInfo;
}
/**
* Create a new team under a group. In order to create a team, the group must have a least one owner. If the creation of the team call is delayed, you can retry the call up to three times before you have to wait for 15 minutes due to a propagation delay. If the group was created less than 15 minutes ago, the call might fail with a 404 error code due to replication delays. If the group was created less than 15 minutes ago, it's possible for a call to create a team to fail with a 404 error code, due to ongoing replication delays.The recommended pattern is to retry the Create team call three times, with a 10 second delay between calls.
* @param body The request body
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull final Team body) {
return toPutRequestInformation(body, null);
}
/**
* Create a new team under a group. In order to create a team, the group must have a least one owner. If the creation of the team call is delayed, you can retry the call up to three times before you have to wait for 15 minutes due to a propagation delay. If the group was created less than 15 minutes ago, the call might fail with a 404 error code due to replication delays. If the group was created less than 15 minutes ago, it's possible for a call to create a team to fail with a 404 error code, due to ongoing replication delays.The recommended pattern is to retry the Create team call three times, with a 10 second delay between calls.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull final Team body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
final RequestInformation requestInfo = new RequestInformation(HttpMethod.PUT, urlTemplate, pathParameters);
requestInfo.configure(requestConfiguration, PutRequestConfiguration::new);
requestInfo.headers.tryAdd("Accept", "application/json");
requestInfo.setContentFromParsable(requestAdapter, "application/json", body);
return requestInfo;
}
/**
* Returns a request builder with the provided arbitrary URL. Using this method means any other path or query parameters are ignored.
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link TeamRequestBuilder}
*/
@jakarta.annotation.Nonnull
public TeamRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl) {
Objects.requireNonNull(rawUrl);
return new TeamRequestBuilder(rawUrl, requestAdapter);
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
* The team associated with this group.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
/**
* Expand related entities
*/
@jakarta.annotation.Nullable
public String[] expand;
/**
* Select properties to be returned
*/
@jakarta.annotation.Nullable
public String[] select;
/**
* Extracts the query parameters into a map for the URI template parsing.
* @return a {@link Map}
*/
@jakarta.annotation.Nonnull
public Map toQueryParameters() {
final Map allQueryParams = new HashMap();
allQueryParams.put("%24expand", expand);
allQueryParams.put("%24select", select);
return allQueryParams;
}
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetRequestConfiguration extends BaseRequestConfiguration {
/**
* Request query parameters
*/
@jakarta.annotation.Nullable
public GetQueryParameters queryParameters = new GetQueryParameters();
}
/**
* Configuration for the request such as headers, query parameters, and middleware options.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class PutRequestConfiguration extends BaseRequestConfiguration {
}
}