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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public UpdateAdDomainPasswordRequestBuilder(@jakarta.annotation.Nonnull final St
super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection%2Did}/updateAdDomainPassword", rawUrl);
}
/**
* Update the Active Directory domain password for a cloudPcOnPremisesConnection object. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta">Find more info here</a>
Expand All @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final UpdateAdDomainPasswordPostReq
post(body, null);
}
/**
* Update the Active Directory domain password for a cloudPcOnPremisesConnection object. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
Expand All @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final UpdateAdDomainPasswordPostReq
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
* Update the Active Directory domain password for a cloudPcOnPremisesConnection object. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* @param body The request body
* @return a {@link RequestInformation}
*/
Expand All @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
* Update the Active Directory domain password for a cloudPcOnPremisesConnection object. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* Update the Active Directory domain password for a successful cloudPcOnPremisesConnection. This API is supported when the type of the cloudPcOnPremisesConnection object is hybridAzureADJoin.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,16 @@ public PermanentDeleteRequestBuilder(@jakarta.annotation.Nonnull final String ra
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/permanentDelete", rawUrl);
}
/**
* Permanently delete a calendar folder and the events that it contains and remove them from the mailbox. For more information about item retention, see Configure Deleted Item retention and Recoverable Items quotas.
* Invoke action permanentDelete
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/calendar-permanentdelete?view=graph-rest-beta">Find more info here</a>
*/
public void post() {
post(null);
}
/**
* Permanently delete a calendar folder and the events that it contains and remove them from the mailbox. For more information about item retention, see Configure Deleted Item retention and Recoverable Items quotas.
* Invoke action permanentDelete
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/calendar-permanentdelete?view=graph-rest-beta">Find more info here</a>
*/
public void post(@jakarta.annotation.Nullable final java.util.function.Consumer<PostRequestConfiguration> requestConfiguration) {
final RequestInformation requestInfo = toPostRequestInformation(requestConfiguration);
Expand All @@ -55,15 +53,15 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer<
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
* Permanently delete a calendar folder and the events that it contains and remove them from the mailbox. For more information about item retention, see Configure Deleted Item retention and Recoverable Items quotas.
* Invoke action permanentDelete
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toPostRequestInformation() {
return toPostRequestInformation(null);
}
/**
* Permanently delete a calendar folder and the events that it contains and remove them from the mailbox. For more information about item retention, see Configure Deleted Item retention and Recoverable Items quotas.
* Invoke action permanentDelete
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,21 +90,23 @@ public CustomAuthenticationExtension get(@jakarta.annotation.Nullable final java
return this.requestAdapter.send(requestInfo, errorMapping, CustomAuthenticationExtension::createFromDiscriminatorValue);
}
/**
* Update the navigation property customAuthenticationExtensions in identity
* Update the properties of a customAuthenticationExtension object. The following derived types are currently supported.
* @param body The request body
* @return a {@link CustomAuthenticationExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/customauthenticationextension-update?view=graph-rest-beta">Find more info here</a>
*/
@jakarta.annotation.Nullable
public CustomAuthenticationExtension patch(@jakarta.annotation.Nonnull final CustomAuthenticationExtension body) {
return patch(body, null);
}
/**
* Update the navigation property customAuthenticationExtensions in identity
* Update the properties of a customAuthenticationExtension object. The following derived types are currently supported.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link CustomAuthenticationExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
* @see <a href="https://learn.microsoft.com/graph/api/customauthenticationextension-update?view=graph-rest-beta">Find more info here</a>
*/
@jakarta.annotation.Nullable
public CustomAuthenticationExtension patch(@jakarta.annotation.Nonnull final CustomAuthenticationExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer<PatchRequestConfiguration> requestConfiguration) {
Expand Down Expand Up @@ -155,7 +157,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
* Update the navigation property customAuthenticationExtensions in identity
* Update the properties of a customAuthenticationExtension object. The following derived types are currently supported.
* @param body The request body
* @return a {@link RequestInformation}
*/
Expand All @@ -164,7 +166,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
* Update the navigation property customAuthenticationExtensions in identity
* Update the properties of a customAuthenticationExtension object. The following derived types are currently supported.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
* Get verifiedId from identity
* Entry point for verified ID operations.
* @return a {@link IdentityVerifiedIdRoot}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
Expand All @@ -73,7 +73,7 @@ public IdentityVerifiedIdRoot get() {
return get(null);
}
/**
* Get verifiedId from identity
* Entry point for verified ID operations.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link IdentityVerifiedIdRoot}
* @throws ODataError When receiving a 4XX or 5XX status code
Expand Down Expand Up @@ -131,15 +131,15 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
* Get verifiedId from identity
* Entry point for verified ID operations.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
* Get verifiedId from identity
* Entry point for verified ID operations.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
Expand Down Expand Up @@ -191,7 +191,7 @@ public VerifiedIdRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
* Get verifiedId from identity
* Entry point for verified ID operations.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.microsoft.graph.beta.identitygovernance.catalogs.item.accesspackageresourceroles.item.accesspackageresource.accesspackageresourcescopes.item.accesspackageresource.uploadsessions.item;

import com.microsoft.graph.beta.identitygovernance.catalogs.item.accesspackageresourceroles.item.accesspackageresource.accesspackageresourcescopes.item.accesspackageresource.uploadsessions.item.files.FilesRequestBuilder;
import com.microsoft.graph.beta.identitygovernance.catalogs.item.accesspackageresourceroles.item.accesspackageresource.accesspackageresourcescopes.item.accesspackageresource.uploadsessions.item.uploadfile.UploadFileRequestBuilder;
import com.microsoft.graph.beta.models.CustomDataProvidedResourceUploadSession;
import com.microsoft.graph.beta.models.odataerrors.ODataError;
Expand All @@ -21,6 +22,17 @@
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class CustomDataProvidedResourceUploadSessionItemRequestBuilder extends BaseRequestBuilder {
/**
* Provides operations to manage the files property of the microsoft.graph.customDataProvidedResourceUploadSession entity.
* @return a {@link FilesRequestBuilder}
* @deprecated
* as of 2022-10/PrivatePreview:MicrosofEntitlementManagementCustomextensions on 2023-03-01 and will be removed 2023-12-31
*/
@Deprecated
@jakarta.annotation.Nonnull
public FilesRequestBuilder files() {
return new FilesRequestBuilder(pathParameters, requestAdapter);
}
/**
* Provides operations to call the uploadFile method.
* @return a {@link UploadFileRequestBuilder}
Expand Down
Loading
Loading