diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/CallRecordRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/CallRecordRequest.cs index dd5664a2b2b..66ed26268c4 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/CallRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/CallRecordRequest.cs @@ -139,6 +139,34 @@ public CallRecordRequest( return this.SendAsyncWithGraphResponse(callRecordToUpdate, cancellationToken); } + /// + /// Updates the specified CallRecord using PUT. + /// + /// The CallRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CallRecord callRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(callRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CallRecord using PUT and returns a object. + /// + /// The CallRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CallRecord callRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(callRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/ICallRecordRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/ICallRecordRequest.cs index 02993886fc9..81591a062cc 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/ICallRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/ICallRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface ICallRecordRequest : Microsoft.Graph.IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CallRecord callRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CallRecord using PUT. + /// + /// The CallRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CallRecord callRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CallRecord using PUT and returns a object. + /// + /// The CallRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CallRecord callRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/ISegmentRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/ISegmentRequest.cs index 58a7352a668..a3d6b1b7f60 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/ISegmentRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/ISegmentRequest.cs @@ -82,6 +82,22 @@ public partial interface ISegmentRequest : Microsoft.Graph.IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Segment segmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Segment using PUT. + /// + /// The Segment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Segment segmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Segment using PUT and returns a object. + /// + /// The Segment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Segment segmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/ISessionRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/ISessionRequest.cs index ea40be92211..77a0d8cc566 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/ISessionRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/ISessionRequest.cs @@ -82,6 +82,22 @@ public partial interface ISessionRequest : Microsoft.Graph.IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Session sessionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Session using PUT. + /// + /// The Session object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Session sessionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Session using PUT and returns a object. + /// + /// The Session object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Session sessionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/SegmentRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/SegmentRequest.cs index 55004593dc5..a1b80c83955 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/SegmentRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/SegmentRequest.cs @@ -139,6 +139,34 @@ public SegmentRequest( return this.SendAsyncWithGraphResponse(segmentToUpdate, cancellationToken); } + /// + /// Updates the specified Segment using PUT. + /// + /// The Segment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Segment segmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(segmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Segment using PUT and returns a object. + /// + /// The Segment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Segment segmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(segmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/callrecords/requests/SessionRequest.cs b/src/Microsoft.Graph/Generated/callrecords/requests/SessionRequest.cs index c533c08fcb7..125707ff30a 100644 --- a/src/Microsoft.Graph/Generated/callrecords/requests/SessionRequest.cs +++ b/src/Microsoft.Graph/Generated/callrecords/requests/SessionRequest.cs @@ -139,6 +139,34 @@ public SessionRequest( return this.SendAsyncWithGraphResponse(sessionToUpdate, cancellationToken); } + /// + /// Updates the specified Session using PUT. + /// + /// The Session object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Session sessionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(sessionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Session using PUT and returns a object. + /// + /// The Session object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Session sessionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(sessionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AadUserConversationMemberRequest.cs b/src/Microsoft.Graph/Generated/requests/AadUserConversationMemberRequest.cs index 6a04062246a..d4e06e10561 100644 --- a/src/Microsoft.Graph/Generated/requests/AadUserConversationMemberRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AadUserConversationMemberRequest.cs @@ -139,6 +139,34 @@ public AadUserConversationMemberRequest( return this.SendAsyncWithGraphResponse(aadUserConversationMemberToUpdate, cancellationToken); } + /// + /// Updates the specified AadUserConversationMember using PUT. + /// + /// The AadUserConversationMember object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AadUserConversationMember aadUserConversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(aadUserConversationMemberToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AadUserConversationMember using PUT and returns a object. + /// + /// The AadUserConversationMember object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AadUserConversationMember aadUserConversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(aadUserConversationMemberToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ActivityBasedTimeoutPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ActivityBasedTimeoutPolicyRequest.cs index 13cda5a29d4..382f705e4f2 100644 --- a/src/Microsoft.Graph/Generated/requests/ActivityBasedTimeoutPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ActivityBasedTimeoutPolicyRequest.cs @@ -139,6 +139,34 @@ public ActivityBasedTimeoutPolicyRequest( return this.SendAsyncWithGraphResponse(activityBasedTimeoutPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified ActivityBasedTimeoutPolicy using PUT. + /// + /// The ActivityBasedTimeoutPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ActivityBasedTimeoutPolicy activityBasedTimeoutPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(activityBasedTimeoutPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ActivityBasedTimeoutPolicy using PUT and returns a object. + /// + /// The ActivityBasedTimeoutPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ActivityBasedTimeoutPolicy activityBasedTimeoutPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(activityBasedTimeoutPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ActivityHistoryItemRequest.cs b/src/Microsoft.Graph/Generated/requests/ActivityHistoryItemRequest.cs index 4c542d2efa1..26e537e768c 100644 --- a/src/Microsoft.Graph/Generated/requests/ActivityHistoryItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ActivityHistoryItemRequest.cs @@ -139,6 +139,34 @@ public ActivityHistoryItemRequest( return this.SendAsyncWithGraphResponse(activityHistoryItemToUpdate, cancellationToken); } + /// + /// Updates the specified ActivityHistoryItem using PUT. + /// + /// The ActivityHistoryItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ActivityHistoryItem activityHistoryItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(activityHistoryItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ActivityHistoryItem using PUT and returns a object. + /// + /// The ActivityHistoryItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ActivityHistoryItem activityHistoryItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(activityHistoryItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AdministrativeUnitRequest.cs b/src/Microsoft.Graph/Generated/requests/AdministrativeUnitRequest.cs index c9bf2b9e9bc..cbb8bbacd67 100644 --- a/src/Microsoft.Graph/Generated/requests/AdministrativeUnitRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AdministrativeUnitRequest.cs @@ -139,6 +139,34 @@ public AdministrativeUnitRequest( return this.SendAsyncWithGraphResponse(administrativeUnitToUpdate, cancellationToken); } + /// + /// Updates the specified AdministrativeUnit using PUT. + /// + /// The AdministrativeUnit object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AdministrativeUnit administrativeUnitToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(administrativeUnitToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AdministrativeUnit using PUT and returns a object. + /// + /// The AdministrativeUnit object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AdministrativeUnit administrativeUnitToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(administrativeUnitToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementAcceptanceRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementAcceptanceRequest.cs index a4d2947ac84..1741be701f2 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementAcceptanceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementAcceptanceRequest.cs @@ -139,6 +139,34 @@ public AgreementAcceptanceRequest( return this.SendAsyncWithGraphResponse(agreementAcceptanceToUpdate, cancellationToken); } + /// + /// Updates the specified AgreementAcceptance using PUT. + /// + /// The AgreementAcceptance object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AgreementAcceptance agreementAcceptanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementAcceptanceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AgreementAcceptance using PUT and returns a object. + /// + /// The AgreementAcceptance object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AgreementAcceptance agreementAcceptanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementAcceptanceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementFileLocalizationRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementFileLocalizationRequest.cs index 8d29aff2248..d2e2eff62c8 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementFileLocalizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementFileLocalizationRequest.cs @@ -139,6 +139,34 @@ public AgreementFileLocalizationRequest( return this.SendAsyncWithGraphResponse(agreementFileLocalizationToUpdate, cancellationToken); } + /// + /// Updates the specified AgreementFileLocalization using PUT. + /// + /// The AgreementFileLocalization object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AgreementFileLocalization agreementFileLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementFileLocalizationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AgreementFileLocalization using PUT and returns a object. + /// + /// The AgreementFileLocalization object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AgreementFileLocalization agreementFileLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementFileLocalizationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementFilePropertiesRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementFilePropertiesRequest.cs index 10696c1cb61..65043a53023 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementFilePropertiesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementFilePropertiesRequest.cs @@ -139,6 +139,34 @@ public AgreementFilePropertiesRequest( return this.SendAsyncWithGraphResponse(agreementFilePropertiesToUpdate, cancellationToken); } + /// + /// Updates the specified AgreementFileProperties using PUT. + /// + /// The AgreementFileProperties object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AgreementFileProperties agreementFilePropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementFilePropertiesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AgreementFileProperties using PUT and returns a object. + /// + /// The AgreementFileProperties object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AgreementFileProperties agreementFilePropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementFilePropertiesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementFileRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementFileRequest.cs index 66d43a884cf..3c7c0e6c023 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementFileRequest.cs @@ -139,6 +139,34 @@ public AgreementFileRequest( return this.SendAsyncWithGraphResponse(agreementFileToUpdate, cancellationToken); } + /// + /// Updates the specified AgreementFile using PUT. + /// + /// The AgreementFile object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AgreementFile agreementFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementFileToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AgreementFile using PUT and returns a object. + /// + /// The AgreementFile object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AgreementFile agreementFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementFileToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementFileVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementFileVersionRequest.cs index 116d8681517..5c78244216c 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementFileVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementFileVersionRequest.cs @@ -139,6 +139,34 @@ public AgreementFileVersionRequest( return this.SendAsyncWithGraphResponse(agreementFileVersionToUpdate, cancellationToken); } + /// + /// Updates the specified AgreementFileVersion using PUT. + /// + /// The AgreementFileVersion object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AgreementFileVersion agreementFileVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementFileVersionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AgreementFileVersion using PUT and returns a object. + /// + /// The AgreementFileVersion object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AgreementFileVersion agreementFileVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementFileVersionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AgreementRequest.cs b/src/Microsoft.Graph/Generated/requests/AgreementRequest.cs index a67a7be8c81..017cc091bdf 100644 --- a/src/Microsoft.Graph/Generated/requests/AgreementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AgreementRequest.cs @@ -139,6 +139,34 @@ public AgreementRequest( return this.SendAsyncWithGraphResponse(agreementToUpdate, cancellationToken); } + /// + /// Updates the specified Agreement using PUT. + /// + /// The Agreement object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Agreement agreementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(agreementToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Agreement using PUT and returns a object. + /// + /// The Agreement object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Agreement agreementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(agreementToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AlertRequest.cs b/src/Microsoft.Graph/Generated/requests/AlertRequest.cs index 823bbe2d910..073f82818a8 100644 --- a/src/Microsoft.Graph/Generated/requests/AlertRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AlertRequest.cs @@ -139,6 +139,34 @@ public AlertRequest( return this.SendAsyncWithGraphResponse(alertToUpdate, cancellationToken); } + /// + /// Updates the specified Alert using PUT. + /// + /// The Alert object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Alert alertToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(alertToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Alert using PUT and returns a object. + /// + /// The Alert object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Alert alertToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(alertToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidCompliancePolicyRequest.cs index ed230b1178b..6d5c134c74f 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public AndroidCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(androidCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidCompliancePolicy using PUT. + /// + /// The AndroidCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidCompliancePolicy androidCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidCompliancePolicy using PUT and returns a object. + /// + /// The AndroidCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidCompliancePolicy androidCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidCustomConfigurationRequest.cs index a711c0bf31c..2f62a43246d 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidCustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public AndroidCustomConfigurationRequest( return this.SendAsyncWithGraphResponse(androidCustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidCustomConfiguration using PUT. + /// + /// The AndroidCustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidCustomConfiguration androidCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidCustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidCustomConfiguration using PUT and returns a object. + /// + /// The AndroidCustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidCustomConfiguration androidCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidCustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidGeneralDeviceConfigurationRequest.cs index 596ae2f1be5..f2b92a09da8 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidGeneralDeviceConfigurationRequest.cs @@ -139,6 +139,34 @@ public AndroidGeneralDeviceConfigurationRequest( return this.SendAsyncWithGraphResponse(androidGeneralDeviceConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidGeneralDeviceConfiguration using PUT. + /// + /// The AndroidGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidGeneralDeviceConfiguration androidGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidGeneralDeviceConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The AndroidGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidGeneralDeviceConfiguration androidGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidGeneralDeviceConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidLobAppRequest.cs index b7f27958488..fac6323d404 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidLobAppRequest.cs @@ -139,6 +139,34 @@ public AndroidLobAppRequest( return this.SendAsyncWithGraphResponse(androidLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidLobApp using PUT. + /// + /// The AndroidLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidLobApp androidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidLobApp using PUT and returns a object. + /// + /// The AndroidLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidLobApp androidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidManagedAppProtectionRequest.cs index a7e4375837b..327f93def1f 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidManagedAppProtectionRequest.cs @@ -139,6 +139,34 @@ public AndroidManagedAppProtectionRequest( return this.SendAsyncWithGraphResponse(androidManagedAppProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidManagedAppProtection using PUT. + /// + /// The AndroidManagedAppProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidManagedAppProtection androidManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidManagedAppProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidManagedAppProtection using PUT and returns a object. + /// + /// The AndroidManagedAppProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidManagedAppProtection androidManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidManagedAppProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidManagedAppRegistrationRequest.cs index 70ff6bd0c1e..17b43990a31 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidManagedAppRegistrationRequest.cs @@ -139,6 +139,34 @@ public AndroidManagedAppRegistrationRequest( return this.SendAsyncWithGraphResponse(androidManagedAppRegistrationToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidManagedAppRegistration using PUT. + /// + /// The AndroidManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidManagedAppRegistration androidManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidManagedAppRegistrationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidManagedAppRegistration using PUT and returns a object. + /// + /// The AndroidManagedAppRegistration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidManagedAppRegistration androidManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidManagedAppRegistrationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidStoreAppRequest.cs index 0c8e2d1ce60..01df0f23450 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidStoreAppRequest.cs @@ -139,6 +139,34 @@ public AndroidStoreAppRequest( return this.SendAsyncWithGraphResponse(androidStoreAppToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidStoreApp using PUT. + /// + /// The AndroidStoreApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidStoreApp androidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidStoreAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidStoreApp using PUT and returns a object. + /// + /// The AndroidStoreApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidStoreApp androidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidStoreAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCompliancePolicyRequest.cs index e3a46dc3778..1e4d4735228 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public AndroidWorkProfileCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(androidWorkProfileCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidWorkProfileCompliancePolicy using PUT. + /// + /// The AndroidWorkProfileCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidWorkProfileCompliancePolicy androidWorkProfileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidWorkProfileCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidWorkProfileCompliancePolicy using PUT and returns a object. + /// + /// The AndroidWorkProfileCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileCompliancePolicy androidWorkProfileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidWorkProfileCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCustomConfigurationRequest.cs index ca28c8d8ac3..c127481226e 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileCustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public AndroidWorkProfileCustomConfigurationRequest( return this.SendAsyncWithGraphResponse(androidWorkProfileCustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidWorkProfileCustomConfiguration using PUT. + /// + /// The AndroidWorkProfileCustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidWorkProfileCustomConfiguration androidWorkProfileCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidWorkProfileCustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidWorkProfileCustomConfiguration using PUT and returns a object. + /// + /// The AndroidWorkProfileCustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileCustomConfiguration androidWorkProfileCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidWorkProfileCustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileGeneralDeviceConfigurationRequest.cs index a16d5b0db34..1c424c9aa6c 100644 --- a/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AndroidWorkProfileGeneralDeviceConfigurationRequest.cs @@ -139,6 +139,34 @@ public AndroidWorkProfileGeneralDeviceConfigurationRequest( return this.SendAsyncWithGraphResponse(androidWorkProfileGeneralDeviceConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified AndroidWorkProfileGeneralDeviceConfiguration using PUT. + /// + /// The AndroidWorkProfileGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AndroidWorkProfileGeneralDeviceConfiguration androidWorkProfileGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(androidWorkProfileGeneralDeviceConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AndroidWorkProfileGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The AndroidWorkProfileGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileGeneralDeviceConfiguration androidWorkProfileGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(androidWorkProfileGeneralDeviceConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AppCatalogsRequest.cs b/src/Microsoft.Graph/Generated/requests/AppCatalogsRequest.cs index c9b69fe9cde..c7631e9d16f 100644 --- a/src/Microsoft.Graph/Generated/requests/AppCatalogsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AppCatalogsRequest.cs @@ -139,6 +139,34 @@ public AppCatalogsRequest( return this.SendAsyncWithGraphResponse(appCatalogsToUpdate, cancellationToken); } + /// + /// Updates the specified AppCatalogs using PUT. + /// + /// The AppCatalogs object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AppCatalogs appCatalogsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(appCatalogsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AppCatalogs using PUT and returns a object. + /// + /// The AppCatalogs object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AppCatalogs appCatalogsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(appCatalogsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AppRoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/AppRoleAssignmentRequest.cs index 5beba75704c..b2d9dc091ba 100644 --- a/src/Microsoft.Graph/Generated/requests/AppRoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AppRoleAssignmentRequest.cs @@ -139,6 +139,34 @@ public AppRoleAssignmentRequest( return this.SendAsyncWithGraphResponse(appRoleAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified AppRoleAssignment using PUT. + /// + /// The AppRoleAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AppRoleAssignment appRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(appRoleAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AppRoleAssignment using PUT and returns a object. + /// + /// The AppRoleAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AppRoleAssignment appRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(appRoleAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AppleDeviceFeaturesConfigurationBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/AppleDeviceFeaturesConfigurationBaseRequest.cs index c2b5972110a..1ec00d67526 100644 --- a/src/Microsoft.Graph/Generated/requests/AppleDeviceFeaturesConfigurationBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AppleDeviceFeaturesConfigurationBaseRequest.cs @@ -139,6 +139,34 @@ public AppleDeviceFeaturesConfigurationBaseRequest( return this.SendAsyncWithGraphResponse(appleDeviceFeaturesConfigurationBaseToUpdate, cancellationToken); } + /// + /// Updates the specified AppleDeviceFeaturesConfigurationBase using PUT. + /// + /// The AppleDeviceFeaturesConfigurationBase object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AppleDeviceFeaturesConfigurationBase appleDeviceFeaturesConfigurationBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(appleDeviceFeaturesConfigurationBaseToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AppleDeviceFeaturesConfigurationBase using PUT and returns a object. + /// + /// The AppleDeviceFeaturesConfigurationBase object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AppleDeviceFeaturesConfigurationBase appleDeviceFeaturesConfigurationBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(appleDeviceFeaturesConfigurationBaseToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ApplePushNotificationCertificateRequest.cs b/src/Microsoft.Graph/Generated/requests/ApplePushNotificationCertificateRequest.cs index 3d152982b98..0c265acd5f4 100644 --- a/src/Microsoft.Graph/Generated/requests/ApplePushNotificationCertificateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ApplePushNotificationCertificateRequest.cs @@ -139,6 +139,34 @@ public ApplePushNotificationCertificateRequest( return this.SendAsyncWithGraphResponse(applePushNotificationCertificateToUpdate, cancellationToken); } + /// + /// Updates the specified ApplePushNotificationCertificate using PUT. + /// + /// The ApplePushNotificationCertificate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ApplePushNotificationCertificate applePushNotificationCertificateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(applePushNotificationCertificateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ApplePushNotificationCertificate using PUT and returns a object. + /// + /// The ApplePushNotificationCertificate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ApplePushNotificationCertificate applePushNotificationCertificateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(applePushNotificationCertificateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ApplicationRequest.cs b/src/Microsoft.Graph/Generated/requests/ApplicationRequest.cs index e15f434ad31..76e1a16d79d 100644 --- a/src/Microsoft.Graph/Generated/requests/ApplicationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ApplicationRequest.cs @@ -139,6 +139,34 @@ public ApplicationRequest( return this.SendAsyncWithGraphResponse(applicationToUpdate, cancellationToken); } + /// + /// Updates the specified Application using PUT. + /// + /// The Application object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Application applicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(applicationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Application using PUT and returns a object. + /// + /// The Application object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Application applicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(applicationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ApplicationTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/ApplicationTemplateRequest.cs index 8e0fd122c74..893d1526495 100644 --- a/src/Microsoft.Graph/Generated/requests/ApplicationTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ApplicationTemplateRequest.cs @@ -139,6 +139,34 @@ public ApplicationTemplateRequest( return this.SendAsyncWithGraphResponse(applicationTemplateToUpdate, cancellationToken); } + /// + /// Updates the specified ApplicationTemplate using PUT. + /// + /// The ApplicationTemplate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ApplicationTemplate applicationTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(applicationTemplateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ApplicationTemplate using PUT and returns a object. + /// + /// The ApplicationTemplate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ApplicationTemplate applicationTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(applicationTemplateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/AttachmentRequest.cs index e2b16f8d1e4..b6303776f0b 100644 --- a/src/Microsoft.Graph/Generated/requests/AttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AttachmentRequest.cs @@ -139,6 +139,34 @@ public AttachmentRequest( return this.SendAsyncWithGraphResponse(attachmentToUpdate, cancellationToken); } + /// + /// Updates the specified Attachment using PUT. + /// + /// The Attachment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Attachment attachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(attachmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Attachment using PUT and returns a object. + /// + /// The Attachment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Attachment attachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(attachmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuditLogRootRequest.cs b/src/Microsoft.Graph/Generated/requests/AuditLogRootRequest.cs index ba2b4366e33..eb90a6e5033 100644 --- a/src/Microsoft.Graph/Generated/requests/AuditLogRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuditLogRootRequest.cs @@ -139,6 +139,34 @@ public AuditLogRootRequest( return this.SendAsyncWithGraphResponse(auditLogRootToUpdate, cancellationToken); } + /// + /// Updates the specified AuditLogRoot using PUT. + /// + /// The AuditLogRoot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuditLogRoot auditLogRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(auditLogRootToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuditLogRoot using PUT and returns a object. + /// + /// The AuditLogRoot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuditLogRoot auditLogRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(auditLogRootToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodConfigurationRequest.cs index a82dd9a9585..f93051be2aa 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodConfigurationRequest.cs @@ -139,6 +139,34 @@ public AuthenticationMethodConfigurationRequest( return this.SendAsyncWithGraphResponse(authenticationMethodConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified AuthenticationMethodConfiguration using PUT. + /// + /// The AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuthenticationMethodConfiguration authenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authenticationMethodConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodConfiguration authenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authenticationMethodConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodRequest.cs index 32b93ad3601..f10f85b2ee4 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodRequest.cs @@ -139,6 +139,34 @@ public AuthenticationMethodRequest( return this.SendAsyncWithGraphResponse(authenticationMethodToUpdate, cancellationToken); } + /// + /// Updates the specified AuthenticationMethod using PUT. + /// + /// The AuthenticationMethod object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuthenticationMethod authenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authenticationMethodToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuthenticationMethod using PUT and returns a object. + /// + /// The AuthenticationMethod object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethod authenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authenticationMethodToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodTargetRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodTargetRequest.cs index bf523f4465b..d0c4c07eec6 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodTargetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodTargetRequest.cs @@ -139,6 +139,34 @@ public AuthenticationMethodTargetRequest( return this.SendAsyncWithGraphResponse(authenticationMethodTargetToUpdate, cancellationToken); } + /// + /// Updates the specified AuthenticationMethodTarget using PUT. + /// + /// The AuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuthenticationMethodTarget authenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authenticationMethodTargetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuthenticationMethodTarget using PUT and returns a object. + /// + /// The AuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodTarget authenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authenticationMethodTargetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodsPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodsPolicyRequest.cs index bd92e18e653..53c66218756 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthenticationMethodsPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthenticationMethodsPolicyRequest.cs @@ -139,6 +139,34 @@ public AuthenticationMethodsPolicyRequest( return this.SendAsyncWithGraphResponse(authenticationMethodsPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified AuthenticationMethodsPolicy using PUT. + /// + /// The AuthenticationMethodsPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuthenticationMethodsPolicy authenticationMethodsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authenticationMethodsPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuthenticationMethodsPolicy using PUT and returns a object. + /// + /// The AuthenticationMethodsPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodsPolicy authenticationMethodsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authenticationMethodsPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthenticationRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthenticationRequest.cs index f40e56c272a..0338ff49bf6 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthenticationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthenticationRequest.cs @@ -139,6 +139,34 @@ public AuthenticationRequest( return this.SendAsyncWithGraphResponse(authenticationToUpdate, cancellationToken); } + /// + /// Updates the specified Authentication using PUT. + /// + /// The Authentication object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Authentication authenticationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authenticationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Authentication using PUT and returns a object. + /// + /// The Authentication object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Authentication authenticationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authenticationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/AuthorizationPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/AuthorizationPolicyRequest.cs index ba72d626edc..383b5ce33a3 100644 --- a/src/Microsoft.Graph/Generated/requests/AuthorizationPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/AuthorizationPolicyRequest.cs @@ -139,6 +139,34 @@ public AuthorizationPolicyRequest( return this.SendAsyncWithGraphResponse(authorizationPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified AuthorizationPolicy using PUT. + /// + /// The AuthorizationPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(AuthorizationPolicy authorizationPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(authorizationPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified AuthorizationPolicy using PUT and returns a object. + /// + /// The AuthorizationPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(AuthorizationPolicy authorizationPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(authorizationPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/BaseItemRequest.cs b/src/Microsoft.Graph/Generated/requests/BaseItemRequest.cs index c354967b884..40a6252128e 100644 --- a/src/Microsoft.Graph/Generated/requests/BaseItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/BaseItemRequest.cs @@ -139,6 +139,34 @@ public BaseItemRequest( return this.SendAsyncWithGraphResponse(baseItemToUpdate, cancellationToken); } + /// + /// Updates the specified BaseItem using PUT. + /// + /// The BaseItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(BaseItem baseItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(baseItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified BaseItem using PUT and returns a object. + /// + /// The BaseItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(BaseItem baseItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(baseItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/BaseItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/BaseItemVersionRequest.cs index 4560d6e405c..6b99107de15 100644 --- a/src/Microsoft.Graph/Generated/requests/BaseItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/BaseItemVersionRequest.cs @@ -139,6 +139,34 @@ public BaseItemVersionRequest( return this.SendAsyncWithGraphResponse(baseItemVersionToUpdate, cancellationToken); } + /// + /// Updates the specified BaseItemVersion using PUT. + /// + /// The BaseItemVersion object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(BaseItemVersion baseItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(baseItemVersionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified BaseItemVersion using PUT and returns a object. + /// + /// The BaseItemVersion object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(BaseItemVersion baseItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(baseItemVersionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CalendarGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/CalendarGroupRequest.cs index bfd4dda1440..edeab87a4ed 100644 --- a/src/Microsoft.Graph/Generated/requests/CalendarGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CalendarGroupRequest.cs @@ -139,6 +139,34 @@ public CalendarGroupRequest( return this.SendAsyncWithGraphResponse(calendarGroupToUpdate, cancellationToken); } + /// + /// Updates the specified CalendarGroup using PUT. + /// + /// The CalendarGroup object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CalendarGroup calendarGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(calendarGroupToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CalendarGroup using PUT and returns a object. + /// + /// The CalendarGroup object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CalendarGroup calendarGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(calendarGroupToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CalendarPermissionRequest.cs b/src/Microsoft.Graph/Generated/requests/CalendarPermissionRequest.cs index 54d78ea075d..66bb63ad47a 100644 --- a/src/Microsoft.Graph/Generated/requests/CalendarPermissionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CalendarPermissionRequest.cs @@ -139,6 +139,34 @@ public CalendarPermissionRequest( return this.SendAsyncWithGraphResponse(calendarPermissionToUpdate, cancellationToken); } + /// + /// Updates the specified CalendarPermission using PUT. + /// + /// The CalendarPermission object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CalendarPermission calendarPermissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(calendarPermissionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CalendarPermission using PUT and returns a object. + /// + /// The CalendarPermission object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CalendarPermission calendarPermissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(calendarPermissionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CalendarRequest.cs b/src/Microsoft.Graph/Generated/requests/CalendarRequest.cs index 6b78a296372..978fb9cd845 100644 --- a/src/Microsoft.Graph/Generated/requests/CalendarRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CalendarRequest.cs @@ -139,6 +139,34 @@ public CalendarRequest( return this.SendAsyncWithGraphResponse(calendarToUpdate, cancellationToken); } + /// + /// Updates the specified Calendar using PUT. + /// + /// The Calendar object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Calendar calendarToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(calendarToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Calendar using PUT and returns a object. + /// + /// The Calendar object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Calendar calendarToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(calendarToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CalendarSharingMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/CalendarSharingMessageRequest.cs index 1c1e28a4769..e254b233062 100644 --- a/src/Microsoft.Graph/Generated/requests/CalendarSharingMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CalendarSharingMessageRequest.cs @@ -139,6 +139,34 @@ public CalendarSharingMessageRequest( return this.SendAsyncWithGraphResponse(calendarSharingMessageToUpdate, cancellationToken); } + /// + /// Updates the specified CalendarSharingMessage using PUT. + /// + /// The CalendarSharingMessage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CalendarSharingMessage calendarSharingMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(calendarSharingMessageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CalendarSharingMessage using PUT and returns a object. + /// + /// The CalendarSharingMessage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CalendarSharingMessage calendarSharingMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(calendarSharingMessageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CallRequest.cs b/src/Microsoft.Graph/Generated/requests/CallRequest.cs index 768614a6d88..cfa768db485 100644 --- a/src/Microsoft.Graph/Generated/requests/CallRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CallRequest.cs @@ -139,6 +139,34 @@ public CallRequest( return this.SendAsyncWithGraphResponse(callToUpdate, cancellationToken); } + /// + /// Updates the specified Call using PUT. + /// + /// The Call object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Call callToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(callToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Call using PUT and returns a object. + /// + /// The Call object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Call callToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(callToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CancelMediaProcessingOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/CancelMediaProcessingOperationRequest.cs index 5ae0cb7b9f8..e87c376f5af 100644 --- a/src/Microsoft.Graph/Generated/requests/CancelMediaProcessingOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CancelMediaProcessingOperationRequest.cs @@ -139,6 +139,34 @@ public CancelMediaProcessingOperationRequest( return this.SendAsyncWithGraphResponse(cancelMediaProcessingOperationToUpdate, cancellationToken); } + /// + /// Updates the specified CancelMediaProcessingOperation using PUT. + /// + /// The CancelMediaProcessingOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CancelMediaProcessingOperation cancelMediaProcessingOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(cancelMediaProcessingOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CancelMediaProcessingOperation using PUT and returns a object. + /// + /// The CancelMediaProcessingOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CancelMediaProcessingOperation cancelMediaProcessingOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(cancelMediaProcessingOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CertificateBasedAuthConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/CertificateBasedAuthConfigurationRequest.cs index b2a800228b7..db69eaf4e8f 100644 --- a/src/Microsoft.Graph/Generated/requests/CertificateBasedAuthConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CertificateBasedAuthConfigurationRequest.cs @@ -139,6 +139,34 @@ public CertificateBasedAuthConfigurationRequest( return this.SendAsyncWithGraphResponse(certificateBasedAuthConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified CertificateBasedAuthConfiguration using PUT. + /// + /// The CertificateBasedAuthConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CertificateBasedAuthConfiguration certificateBasedAuthConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(certificateBasedAuthConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CertificateBasedAuthConfiguration using PUT and returns a object. + /// + /// The CertificateBasedAuthConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CertificateBasedAuthConfiguration certificateBasedAuthConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(certificateBasedAuthConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ChangeTrackedEntityRequest.cs b/src/Microsoft.Graph/Generated/requests/ChangeTrackedEntityRequest.cs index 9e2ac3cc2bc..ea8db5205b3 100644 --- a/src/Microsoft.Graph/Generated/requests/ChangeTrackedEntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ChangeTrackedEntityRequest.cs @@ -139,6 +139,34 @@ public ChangeTrackedEntityRequest( return this.SendAsyncWithGraphResponse(changeTrackedEntityToUpdate, cancellationToken); } + /// + /// Updates the specified ChangeTrackedEntity using PUT. + /// + /// The ChangeTrackedEntity object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ChangeTrackedEntity changeTrackedEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(changeTrackedEntityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ChangeTrackedEntity using PUT and returns a object. + /// + /// The ChangeTrackedEntity object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ChangeTrackedEntity changeTrackedEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(changeTrackedEntityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ChannelRequest.cs b/src/Microsoft.Graph/Generated/requests/ChannelRequest.cs index e56aa6def50..cb342b32def 100644 --- a/src/Microsoft.Graph/Generated/requests/ChannelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ChannelRequest.cs @@ -139,6 +139,34 @@ public ChannelRequest( return this.SendAsyncWithGraphResponse(channelToUpdate, cancellationToken); } + /// + /// Updates the specified Channel using PUT. + /// + /// The Channel object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Channel channelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(channelToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Channel using PUT and returns a object. + /// + /// The Channel object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Channel channelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(channelToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ChatMessageHostedContentRequest.cs b/src/Microsoft.Graph/Generated/requests/ChatMessageHostedContentRequest.cs index b9520f92b00..9bfaf7b2ebb 100644 --- a/src/Microsoft.Graph/Generated/requests/ChatMessageHostedContentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ChatMessageHostedContentRequest.cs @@ -139,6 +139,34 @@ public ChatMessageHostedContentRequest( return this.SendAsyncWithGraphResponse(chatMessageHostedContentToUpdate, cancellationToken); } + /// + /// Updates the specified ChatMessageHostedContent using PUT. + /// + /// The ChatMessageHostedContent object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ChatMessageHostedContent chatMessageHostedContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(chatMessageHostedContentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ChatMessageHostedContent using PUT and returns a object. + /// + /// The ChatMessageHostedContent object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ChatMessageHostedContent chatMessageHostedContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(chatMessageHostedContentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ChatMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/ChatMessageRequest.cs index e3d3112e72c..e4328e6f5ad 100644 --- a/src/Microsoft.Graph/Generated/requests/ChatMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ChatMessageRequest.cs @@ -139,6 +139,34 @@ public ChatMessageRequest( return this.SendAsyncWithGraphResponse(chatMessageToUpdate, cancellationToken); } + /// + /// Updates the specified ChatMessage using PUT. + /// + /// The ChatMessage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ChatMessage chatMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(chatMessageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ChatMessage using PUT and returns a object. + /// + /// The ChatMessage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ChatMessage chatMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(chatMessageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ChatRequest.cs b/src/Microsoft.Graph/Generated/requests/ChatRequest.cs index 336ddbbb5d3..d62b549f8e4 100644 --- a/src/Microsoft.Graph/Generated/requests/ChatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ChatRequest.cs @@ -139,6 +139,34 @@ public ChatRequest( return this.SendAsyncWithGraphResponse(chatToUpdate, cancellationToken); } + /// + /// Updates the specified Chat using PUT. + /// + /// The Chat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Chat chatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(chatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Chat using PUT and returns a object. + /// + /// The Chat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Chat chatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(chatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ClaimsMappingPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ClaimsMappingPolicyRequest.cs index d1e1f60ef9d..18de0e71d2a 100644 --- a/src/Microsoft.Graph/Generated/requests/ClaimsMappingPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ClaimsMappingPolicyRequest.cs @@ -139,6 +139,34 @@ public ClaimsMappingPolicyRequest( return this.SendAsyncWithGraphResponse(claimsMappingPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified ClaimsMappingPolicy using PUT. + /// + /// The ClaimsMappingPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ClaimsMappingPolicy claimsMappingPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(claimsMappingPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ClaimsMappingPolicy using PUT and returns a object. + /// + /// The ClaimsMappingPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ClaimsMappingPolicy claimsMappingPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(claimsMappingPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CloudCommunicationsRequest.cs b/src/Microsoft.Graph/Generated/requests/CloudCommunicationsRequest.cs index 84934c34012..13f7463bc8f 100644 --- a/src/Microsoft.Graph/Generated/requests/CloudCommunicationsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CloudCommunicationsRequest.cs @@ -139,6 +139,34 @@ public CloudCommunicationsRequest( return this.SendAsyncWithGraphResponse(cloudCommunicationsToUpdate, cancellationToken); } + /// + /// Updates the specified CloudCommunications using PUT. + /// + /// The CloudCommunications object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CloudCommunications cloudCommunicationsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(cloudCommunicationsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CloudCommunications using PUT and returns a object. + /// + /// The CloudCommunications object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CloudCommunications cloudCommunicationsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(cloudCommunicationsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ColumnDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/ColumnDefinitionRequest.cs index eb03a994c58..aac22dbab32 100644 --- a/src/Microsoft.Graph/Generated/requests/ColumnDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ColumnDefinitionRequest.cs @@ -139,6 +139,34 @@ public ColumnDefinitionRequest( return this.SendAsyncWithGraphResponse(columnDefinitionToUpdate, cancellationToken); } + /// + /// Updates the specified ColumnDefinition using PUT. + /// + /// The ColumnDefinition object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ColumnDefinition columnDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(columnDefinitionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ColumnDefinition using PUT and returns a object. + /// + /// The ColumnDefinition object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ColumnDefinition columnDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(columnDefinitionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ColumnLinkRequest.cs b/src/Microsoft.Graph/Generated/requests/ColumnLinkRequest.cs index 6c7c31b74e2..29cc4ac785e 100644 --- a/src/Microsoft.Graph/Generated/requests/ColumnLinkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ColumnLinkRequest.cs @@ -139,6 +139,34 @@ public ColumnLinkRequest( return this.SendAsyncWithGraphResponse(columnLinkToUpdate, cancellationToken); } + /// + /// Updates the specified ColumnLink using PUT. + /// + /// The ColumnLink object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ColumnLink columnLinkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(columnLinkToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ColumnLink using PUT and returns a object. + /// + /// The ColumnLink object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ColumnLink columnLinkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(columnLinkToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CommsOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/CommsOperationRequest.cs index 44a2425d2ee..aec24d694c3 100644 --- a/src/Microsoft.Graph/Generated/requests/CommsOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CommsOperationRequest.cs @@ -139,6 +139,34 @@ public CommsOperationRequest( return this.SendAsyncWithGraphResponse(commsOperationToUpdate, cancellationToken); } + /// + /// Updates the specified CommsOperation using PUT. + /// + /// The CommsOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CommsOperation commsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(commsOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CommsOperation using PUT and returns a object. + /// + /// The CommsOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CommsOperation commsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(commsOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ComplianceManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/ComplianceManagementPartnerRequest.cs index 7da809629dc..2ffa41c4047 100644 --- a/src/Microsoft.Graph/Generated/requests/ComplianceManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ComplianceManagementPartnerRequest.cs @@ -139,6 +139,34 @@ public ComplianceManagementPartnerRequest( return this.SendAsyncWithGraphResponse(complianceManagementPartnerToUpdate, cancellationToken); } + /// + /// Updates the specified ComplianceManagementPartner using PUT. + /// + /// The ComplianceManagementPartner object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ComplianceManagementPartner complianceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(complianceManagementPartnerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ComplianceManagementPartner using PUT and returns a object. + /// + /// The ComplianceManagementPartner object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ComplianceManagementPartner complianceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(complianceManagementPartnerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ConditionalAccessPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ConditionalAccessPolicyRequest.cs index 803d7e3f450..cedb111dd79 100644 --- a/src/Microsoft.Graph/Generated/requests/ConditionalAccessPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ConditionalAccessPolicyRequest.cs @@ -139,6 +139,34 @@ public ConditionalAccessPolicyRequest( return this.SendAsyncWithGraphResponse(conditionalAccessPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified ConditionalAccessPolicy using PUT. + /// + /// The ConditionalAccessPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ConditionalAccessPolicy conditionalAccessPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(conditionalAccessPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ConditionalAccessPolicy using PUT and returns a object. + /// + /// The ConditionalAccessPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ConditionalAccessPolicy conditionalAccessPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(conditionalAccessPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ConditionalAccessRootRequest.cs b/src/Microsoft.Graph/Generated/requests/ConditionalAccessRootRequest.cs index 3beb233e61b..c469f65cd28 100644 --- a/src/Microsoft.Graph/Generated/requests/ConditionalAccessRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ConditionalAccessRootRequest.cs @@ -139,6 +139,34 @@ public ConditionalAccessRootRequest( return this.SendAsyncWithGraphResponse(conditionalAccessRootToUpdate, cancellationToken); } + /// + /// Updates the specified ConditionalAccessRoot using PUT. + /// + /// The ConditionalAccessRoot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ConditionalAccessRoot conditionalAccessRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(conditionalAccessRootToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ConditionalAccessRoot using PUT and returns a object. + /// + /// The ConditionalAccessRoot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ConditionalAccessRoot conditionalAccessRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(conditionalAccessRootToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ContactFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/ContactFolderRequest.cs index 06badb2befd..c980b471f11 100644 --- a/src/Microsoft.Graph/Generated/requests/ContactFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ContactFolderRequest.cs @@ -139,6 +139,34 @@ public ContactFolderRequest( return this.SendAsyncWithGraphResponse(contactFolderToUpdate, cancellationToken); } + /// + /// Updates the specified ContactFolder using PUT. + /// + /// The ContactFolder object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ContactFolder contactFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(contactFolderToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ContactFolder using PUT and returns a object. + /// + /// The ContactFolder object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ContactFolder contactFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(contactFolderToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ContactRequest.cs b/src/Microsoft.Graph/Generated/requests/ContactRequest.cs index 71eddfaeef6..b528c86c138 100644 --- a/src/Microsoft.Graph/Generated/requests/ContactRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ContactRequest.cs @@ -139,6 +139,34 @@ public ContactRequest( return this.SendAsyncWithGraphResponse(contactToUpdate, cancellationToken); } + /// + /// Updates the specified Contact using PUT. + /// + /// The Contact object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Contact contactToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(contactToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Contact using PUT and returns a object. + /// + /// The Contact object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Contact contactToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(contactToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ContentTypeRequest.cs b/src/Microsoft.Graph/Generated/requests/ContentTypeRequest.cs index 3de63dc688e..bc9eb687265 100644 --- a/src/Microsoft.Graph/Generated/requests/ContentTypeRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ContentTypeRequest.cs @@ -139,6 +139,34 @@ public ContentTypeRequest( return this.SendAsyncWithGraphResponse(contentTypeToUpdate, cancellationToken); } + /// + /// Updates the specified ContentType using PUT. + /// + /// The ContentType object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ContentType contentTypeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(contentTypeToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ContentType using PUT and returns a object. + /// + /// The ContentType object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ContentType contentTypeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(contentTypeToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ContractRequest.cs b/src/Microsoft.Graph/Generated/requests/ContractRequest.cs index 4b009474d43..d9b717fb22e 100644 --- a/src/Microsoft.Graph/Generated/requests/ContractRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ContractRequest.cs @@ -139,6 +139,34 @@ public ContractRequest( return this.SendAsyncWithGraphResponse(contractToUpdate, cancellationToken); } + /// + /// Updates the specified Contract using PUT. + /// + /// The Contract object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Contract contractToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(contractToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Contract using PUT and returns a object. + /// + /// The Contract object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Contract contractToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(contractToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ConversationMemberRequest.cs b/src/Microsoft.Graph/Generated/requests/ConversationMemberRequest.cs index 647579cd838..5023b4a1ea3 100644 --- a/src/Microsoft.Graph/Generated/requests/ConversationMemberRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ConversationMemberRequest.cs @@ -139,6 +139,34 @@ public ConversationMemberRequest( return this.SendAsyncWithGraphResponse(conversationMemberToUpdate, cancellationToken); } + /// + /// Updates the specified ConversationMember using PUT. + /// + /// The ConversationMember object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ConversationMember conversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(conversationMemberToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ConversationMember using PUT and returns a object. + /// + /// The ConversationMember object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ConversationMember conversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(conversationMemberToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ConversationRequest.cs b/src/Microsoft.Graph/Generated/requests/ConversationRequest.cs index 9a137f8e85a..5cb0124d873 100644 --- a/src/Microsoft.Graph/Generated/requests/ConversationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ConversationRequest.cs @@ -139,6 +139,34 @@ public ConversationRequest( return this.SendAsyncWithGraphResponse(conversationToUpdate, cancellationToken); } + /// + /// Updates the specified Conversation using PUT. + /// + /// The Conversation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Conversation conversationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(conversationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Conversation using PUT and returns a object. + /// + /// The Conversation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Conversation conversationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(conversationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ConversationThreadRequest.cs b/src/Microsoft.Graph/Generated/requests/ConversationThreadRequest.cs index 3d1efaf675f..b377789ecaa 100644 --- a/src/Microsoft.Graph/Generated/requests/ConversationThreadRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ConversationThreadRequest.cs @@ -139,6 +139,34 @@ public ConversationThreadRequest( return this.SendAsyncWithGraphResponse(conversationThreadToUpdate, cancellationToken); } + /// + /// Updates the specified ConversationThread using PUT. + /// + /// The ConversationThread object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ConversationThread conversationThreadToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(conversationThreadToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ConversationThread using PUT and returns a object. + /// + /// The ConversationThread object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ConversationThread conversationThreadToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(conversationThreadToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/CountryNamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/CountryNamedLocationRequest.cs index 532eacaa336..da745914be3 100644 --- a/src/Microsoft.Graph/Generated/requests/CountryNamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/CountryNamedLocationRequest.cs @@ -139,6 +139,34 @@ public CountryNamedLocationRequest( return this.SendAsyncWithGraphResponse(countryNamedLocationToUpdate, cancellationToken); } + /// + /// Updates the specified CountryNamedLocation using PUT. + /// + /// The CountryNamedLocation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(CountryNamedLocation countryNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(countryNamedLocationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified CountryNamedLocation using PUT and returns a object. + /// + /// The CountryNamedLocation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(CountryNamedLocation countryNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(countryNamedLocationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DataPolicyOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/DataPolicyOperationRequest.cs index 62988b30633..dfb913db074 100644 --- a/src/Microsoft.Graph/Generated/requests/DataPolicyOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DataPolicyOperationRequest.cs @@ -139,6 +139,34 @@ public DataPolicyOperationRequest( return this.SendAsyncWithGraphResponse(dataPolicyOperationToUpdate, cancellationToken); } + /// + /// Updates the specified DataPolicyOperation using PUT. + /// + /// The DataPolicyOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DataPolicyOperation dataPolicyOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(dataPolicyOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DataPolicyOperation using PUT and returns a object. + /// + /// The DataPolicyOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DataPolicyOperation dataPolicyOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(dataPolicyOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DefaultManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/DefaultManagedAppProtectionRequest.cs index 46407b773ef..9018fda353a 100644 --- a/src/Microsoft.Graph/Generated/requests/DefaultManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DefaultManagedAppProtectionRequest.cs @@ -139,6 +139,34 @@ public DefaultManagedAppProtectionRequest( return this.SendAsyncWithGraphResponse(defaultManagedAppProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified DefaultManagedAppProtection using PUT. + /// + /// The DefaultManagedAppProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DefaultManagedAppProtection defaultManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(defaultManagedAppProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DefaultManagedAppProtection using PUT and returns a object. + /// + /// The DefaultManagedAppProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DefaultManagedAppProtection defaultManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(defaultManagedAppProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DelegatedPermissionClassificationRequest.cs b/src/Microsoft.Graph/Generated/requests/DelegatedPermissionClassificationRequest.cs index 1274e409f1d..8b5c672fcf2 100644 --- a/src/Microsoft.Graph/Generated/requests/DelegatedPermissionClassificationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DelegatedPermissionClassificationRequest.cs @@ -139,6 +139,34 @@ public DelegatedPermissionClassificationRequest( return this.SendAsyncWithGraphResponse(delegatedPermissionClassificationToUpdate, cancellationToken); } + /// + /// Updates the specified DelegatedPermissionClassification using PUT. + /// + /// The DelegatedPermissionClassification object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DelegatedPermissionClassification delegatedPermissionClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(delegatedPermissionClassificationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DelegatedPermissionClassification using PUT and returns a object. + /// + /// The DelegatedPermissionClassification object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DelegatedPermissionClassification delegatedPermissionClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(delegatedPermissionClassificationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DetectedAppRequest.cs b/src/Microsoft.Graph/Generated/requests/DetectedAppRequest.cs index 54607f70df7..4b9ff29bdfd 100644 --- a/src/Microsoft.Graph/Generated/requests/DetectedAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DetectedAppRequest.cs @@ -139,6 +139,34 @@ public DetectedAppRequest( return this.SendAsyncWithGraphResponse(detectedAppToUpdate, cancellationToken); } + /// + /// Updates the specified DetectedApp using PUT. + /// + /// The DetectedApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DetectedApp detectedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(detectedAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DetectedApp using PUT and returns a object. + /// + /// The DetectedApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DetectedApp detectedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(detectedAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleAssignmentRequest.cs index 56f47f55d78..633d16868bd 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleAssignmentRequest.cs @@ -139,6 +139,34 @@ public DeviceAndAppManagementRoleAssignmentRequest( return this.SendAsyncWithGraphResponse(deviceAndAppManagementRoleAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceAndAppManagementRoleAssignment using PUT. + /// + /// The DeviceAndAppManagementRoleAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceAndAppManagementRoleAssignment deviceAndAppManagementRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceAndAppManagementRoleAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceAndAppManagementRoleAssignment using PUT and returns a object. + /// + /// The DeviceAndAppManagementRoleAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceAndAppManagementRoleAssignment deviceAndAppManagementRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceAndAppManagementRoleAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleDefinitionRequest.cs index 73287803be5..986be0b5d2c 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceAndAppManagementRoleDefinitionRequest.cs @@ -139,6 +139,34 @@ public DeviceAndAppManagementRoleDefinitionRequest( return this.SendAsyncWithGraphResponse(deviceAndAppManagementRoleDefinitionToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceAndAppManagementRoleDefinition using PUT. + /// + /// The DeviceAndAppManagementRoleDefinition object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceAndAppManagementRoleDefinition deviceAndAppManagementRoleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceAndAppManagementRoleDefinitionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceAndAppManagementRoleDefinition using PUT and returns a object. + /// + /// The DeviceAndAppManagementRoleDefinition object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceAndAppManagementRoleDefinition deviceAndAppManagementRoleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceAndAppManagementRoleDefinitionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceAppManagementRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceAppManagementRequest.cs index 957bf91d4ae..f2f2858068e 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceAppManagementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceAppManagementRequest.cs @@ -139,6 +139,34 @@ public DeviceAppManagementRequest( return this.SendAsyncWithGraphResponse(deviceAppManagementToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceAppManagement using PUT. + /// + /// The DeviceAppManagement object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceAppManagement deviceAppManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceAppManagementToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceAppManagement using PUT and returns a object. + /// + /// The DeviceAppManagement object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceAppManagement deviceAppManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceAppManagementToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCategoryRequest.cs index b2e62cdf58b..e23088e12f3 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCategoryRequest.cs @@ -139,6 +139,34 @@ public DeviceCategoryRequest( return this.SendAsyncWithGraphResponse(deviceCategoryToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCategory using PUT. + /// + /// The DeviceCategory object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCategory deviceCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCategoryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCategory using PUT and returns a object. + /// + /// The DeviceCategory object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCategory deviceCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCategoryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceActionItemRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceActionItemRequest.cs index ee4185b5adc..b50eee96e9e 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceActionItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceActionItemRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceActionItemRequest( return this.SendAsyncWithGraphResponse(deviceComplianceActionItemToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceActionItem using PUT. + /// + /// The DeviceComplianceActionItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceActionItem deviceComplianceActionItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceActionItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceActionItem using PUT and returns a object. + /// + /// The DeviceComplianceActionItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceActionItem deviceComplianceActionItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceActionItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceOverviewRequest.cs index 401e55bb8cf..7b7aaff1ebc 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceOverviewRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceDeviceOverviewRequest( return this.SendAsyncWithGraphResponse(deviceComplianceDeviceOverviewToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceDeviceOverview using PUT. + /// + /// The DeviceComplianceDeviceOverview object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceDeviceOverview deviceComplianceDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceDeviceOverviewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceDeviceOverview using PUT and returns a object. + /// + /// The DeviceComplianceDeviceOverview object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceDeviceOverview deviceComplianceDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceDeviceOverviewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceStatusRequest.cs index 777d71d9b5e..74a74902a50 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceDeviceStatusRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceDeviceStatusRequest( return this.SendAsyncWithGraphResponse(deviceComplianceDeviceStatusToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceDeviceStatus using PUT. + /// + /// The DeviceComplianceDeviceStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceDeviceStatus deviceComplianceDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceDeviceStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceDeviceStatus using PUT and returns a object. + /// + /// The DeviceComplianceDeviceStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceDeviceStatus deviceComplianceDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceDeviceStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyAssignmentRequest.cs index 76f254b2a87..6c7573ab856 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyAssignmentRequest.cs @@ -139,6 +139,34 @@ public DeviceCompliancePolicyAssignmentRequest( return this.SendAsyncWithGraphResponse(deviceCompliancePolicyAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCompliancePolicyAssignment using PUT. + /// + /// The DeviceCompliancePolicyAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyAssignment deviceCompliancePolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCompliancePolicyAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCompliancePolicyAssignment using PUT and returns a object. + /// + /// The DeviceCompliancePolicyAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyAssignment deviceCompliancePolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCompliancePolicyAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyDeviceStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyDeviceStateSummaryRequest.cs index cfb8e808a80..db8f72eaa45 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyDeviceStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyDeviceStateSummaryRequest.cs @@ -139,6 +139,34 @@ public DeviceCompliancePolicyDeviceStateSummaryRequest( return this.SendAsyncWithGraphResponse(deviceCompliancePolicyDeviceStateSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCompliancePolicyDeviceStateSummary using PUT. + /// + /// The DeviceCompliancePolicyDeviceStateSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyDeviceStateSummary deviceCompliancePolicyDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCompliancePolicyDeviceStateSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCompliancePolicyDeviceStateSummary using PUT and returns a object. + /// + /// The DeviceCompliancePolicyDeviceStateSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyDeviceStateSummary deviceCompliancePolicyDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCompliancePolicyDeviceStateSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyRequest.cs index eb7fb932252..16b938e4d63 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public DeviceCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(deviceCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCompliancePolicy using PUT. + /// + /// The DeviceCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicy deviceCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCompliancePolicy using PUT and returns a object. + /// + /// The DeviceCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicy deviceCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicySettingStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicySettingStateSummaryRequest.cs index 031aba33f09..12f6a44d2e0 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicySettingStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicySettingStateSummaryRequest.cs @@ -139,6 +139,34 @@ public DeviceCompliancePolicySettingStateSummaryRequest( return this.SendAsyncWithGraphResponse(deviceCompliancePolicySettingStateSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCompliancePolicySettingStateSummary using PUT. + /// + /// The DeviceCompliancePolicySettingStateSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicySettingStateSummary deviceCompliancePolicySettingStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCompliancePolicySettingStateSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCompliancePolicySettingStateSummary using PUT and returns a object. + /// + /// The DeviceCompliancePolicySettingStateSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicySettingStateSummary deviceCompliancePolicySettingStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCompliancePolicySettingStateSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyStateRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyStateRequest.cs index a8917283475..6cc01e6df87 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceCompliancePolicyStateRequest.cs @@ -139,6 +139,34 @@ public DeviceCompliancePolicyStateRequest( return this.SendAsyncWithGraphResponse(deviceCompliancePolicyStateToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceCompliancePolicyState using PUT. + /// + /// The DeviceCompliancePolicyState object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyState deviceCompliancePolicyStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceCompliancePolicyStateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceCompliancePolicyState using PUT and returns a object. + /// + /// The DeviceCompliancePolicyState object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyState deviceCompliancePolicyStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceCompliancePolicyStateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceScheduledActionForRuleRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceScheduledActionForRuleRequest.cs index ac06323b93e..d38690d5fdc 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceScheduledActionForRuleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceScheduledActionForRuleRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceScheduledActionForRuleRequest( return this.SendAsyncWithGraphResponse(deviceComplianceScheduledActionForRuleToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceScheduledActionForRule using PUT. + /// + /// The DeviceComplianceScheduledActionForRule object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceScheduledActionForRule deviceComplianceScheduledActionForRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceScheduledActionForRuleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceScheduledActionForRule using PUT and returns a object. + /// + /// The DeviceComplianceScheduledActionForRule object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceScheduledActionForRule deviceComplianceScheduledActionForRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceScheduledActionForRuleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceSettingStateRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceSettingStateRequest.cs index fcc634f4cf8..1c3d416dbe6 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceSettingStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceSettingStateRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceSettingStateRequest( return this.SendAsyncWithGraphResponse(deviceComplianceSettingStateToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceSettingState using PUT. + /// + /// The DeviceComplianceSettingState object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceSettingState deviceComplianceSettingStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceSettingStateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceSettingState using PUT and returns a object. + /// + /// The DeviceComplianceSettingState object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceSettingState deviceComplianceSettingStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceSettingStateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserOverviewRequest.cs index fde7328650c..efa128a9c25 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserOverviewRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceUserOverviewRequest( return this.SendAsyncWithGraphResponse(deviceComplianceUserOverviewToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceUserOverview using PUT. + /// + /// The DeviceComplianceUserOverview object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceUserOverview deviceComplianceUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceUserOverviewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceUserOverview using PUT and returns a object. + /// + /// The DeviceComplianceUserOverview object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceUserOverview deviceComplianceUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceUserOverviewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserStatusRequest.cs index 20fff1d25aa..d40fd6a9a0f 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceComplianceUserStatusRequest.cs @@ -139,6 +139,34 @@ public DeviceComplianceUserStatusRequest( return this.SendAsyncWithGraphResponse(deviceComplianceUserStatusToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceComplianceUserStatus using PUT. + /// + /// The DeviceComplianceUserStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceComplianceUserStatus deviceComplianceUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceComplianceUserStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceComplianceUserStatus using PUT and returns a object. + /// + /// The DeviceComplianceUserStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceUserStatus deviceComplianceUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceComplianceUserStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationAssignmentRequest.cs index d00b16fcc93..586ba4b9031 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationAssignmentRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationAssignmentRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationAssignment using PUT. + /// + /// The DeviceConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationAssignment deviceConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationAssignment using PUT and returns a object. + /// + /// The DeviceConfigurationAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationAssignment deviceConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceOverviewRequest.cs index 87788a52cd2..fa32a645dd7 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceOverviewRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationDeviceOverviewRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceOverviewToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationDeviceOverview using PUT. + /// + /// The DeviceConfigurationDeviceOverview object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceOverview deviceConfigurationDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationDeviceOverviewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationDeviceOverview using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceOverview object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceOverview deviceConfigurationDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceOverviewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStateSummaryRequest.cs index 6630fd03d64..000f4b89d94 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStateSummaryRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationDeviceStateSummaryRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceStateSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationDeviceStateSummary using PUT. + /// + /// The DeviceConfigurationDeviceStateSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceStateSummary deviceConfigurationDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationDeviceStateSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationDeviceStateSummary using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceStateSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceStateSummary deviceConfigurationDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceStateSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStatusRequest.cs index ac33cc2e3a8..87a234ade77 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationDeviceStatusRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationDeviceStatusRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceStatusToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationDeviceStatus using PUT. + /// + /// The DeviceConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceStatus deviceConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationDeviceStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationDeviceStatus using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceStatus deviceConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationDeviceStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationRequest.cs index 893a582f47f..caa030ed489 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfiguration using PUT. + /// + /// The DeviceConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfiguration deviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfiguration using PUT and returns a object. + /// + /// The DeviceConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfiguration deviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationStateRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationStateRequest.cs index c481cd6807b..1009b59856e 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationStateRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationStateRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationStateToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationState using PUT. + /// + /// The DeviceConfigurationState object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationState deviceConfigurationStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationStateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationState using PUT and returns a object. + /// + /// The DeviceConfigurationState object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationState deviceConfigurationStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationStateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserOverviewRequest.cs index 913afb1eccf..7dd0bb379d2 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserOverviewRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationUserOverviewRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationUserOverviewToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationUserOverview using PUT. + /// + /// The DeviceConfigurationUserOverview object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationUserOverview deviceConfigurationUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationUserOverviewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationUserOverview using PUT and returns a object. + /// + /// The DeviceConfigurationUserOverview object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationUserOverview deviceConfigurationUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationUserOverviewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserStatusRequest.cs index 8b422b9dc19..546710eb979 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceConfigurationUserStatusRequest.cs @@ -139,6 +139,34 @@ public DeviceConfigurationUserStatusRequest( return this.SendAsyncWithGraphResponse(deviceConfigurationUserStatusToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceConfigurationUserStatus using PUT. + /// + /// The DeviceConfigurationUserStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceConfigurationUserStatus deviceConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceConfigurationUserStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceConfigurationUserStatus using PUT and returns a object. + /// + /// The DeviceConfigurationUserStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationUserStatus deviceConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceConfigurationUserStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentConfigurationRequest.cs index cbfe7e895aa..0a5854ef034 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentConfigurationRequest.cs @@ -139,6 +139,34 @@ public DeviceEnrollmentConfigurationRequest( return this.SendAsyncWithGraphResponse(deviceEnrollmentConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceEnrollmentConfiguration using PUT. + /// + /// The DeviceEnrollmentConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceEnrollmentConfiguration deviceEnrollmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceEnrollmentConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceEnrollmentConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentConfiguration deviceEnrollmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceEnrollmentConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentLimitConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentLimitConfigurationRequest.cs index dc763835370..fa48536ca29 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentLimitConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentLimitConfigurationRequest.cs @@ -139,6 +139,34 @@ public DeviceEnrollmentLimitConfigurationRequest( return this.SendAsyncWithGraphResponse(deviceEnrollmentLimitConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceEnrollmentLimitConfiguration using PUT. + /// + /// The DeviceEnrollmentLimitConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceEnrollmentLimitConfiguration deviceEnrollmentLimitConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceEnrollmentLimitConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceEnrollmentLimitConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentLimitConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentLimitConfiguration deviceEnrollmentLimitConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceEnrollmentLimitConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs index 69bb17fd072..0a574e45ee0 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs @@ -139,6 +139,34 @@ public DeviceEnrollmentPlatformRestrictionsConfigurationRequest( return this.SendAsyncWithGraphResponse(deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceEnrollmentPlatformRestrictionsConfiguration using PUT. + /// + /// The DeviceEnrollmentPlatformRestrictionsConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceEnrollmentPlatformRestrictionsConfiguration deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceEnrollmentPlatformRestrictionsConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentPlatformRestrictionsConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentPlatformRestrictionsConfiguration deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs index 838a0e7dc46..c2e3c44662e 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs @@ -139,6 +139,34 @@ public DeviceEnrollmentWindowsHelloForBusinessConfigurationRequest( return this.SendAsyncWithGraphResponse(deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceEnrollmentWindowsHelloForBusinessConfiguration using PUT. + /// + /// The DeviceEnrollmentWindowsHelloForBusinessConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceEnrollmentWindowsHelloForBusinessConfiguration deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceEnrollmentWindowsHelloForBusinessConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentWindowsHelloForBusinessConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentWindowsHelloForBusinessConfiguration deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceInstallStateRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceInstallStateRequest.cs index d48d1e9a88e..556da03eb94 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceInstallStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceInstallStateRequest.cs @@ -139,6 +139,34 @@ public DeviceInstallStateRequest( return this.SendAsyncWithGraphResponse(deviceInstallStateToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceInstallState using PUT. + /// + /// The DeviceInstallState object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceInstallState deviceInstallStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceInstallStateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceInstallState using PUT and returns a object. + /// + /// The DeviceInstallState object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceInstallState deviceInstallStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceInstallStateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceManagementExchangeConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceManagementExchangeConnectorRequest.cs index 3cf0cd8d727..c65050ae6c5 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceManagementExchangeConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceManagementExchangeConnectorRequest.cs @@ -139,6 +139,34 @@ public DeviceManagementExchangeConnectorRequest( return this.SendAsyncWithGraphResponse(deviceManagementExchangeConnectorToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceManagementExchangeConnector using PUT. + /// + /// The DeviceManagementExchangeConnector object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceManagementExchangeConnector deviceManagementExchangeConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceManagementExchangeConnectorToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceManagementExchangeConnector using PUT and returns a object. + /// + /// The DeviceManagementExchangeConnector object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementExchangeConnector deviceManagementExchangeConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceManagementExchangeConnectorToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceManagementPartnerRequest.cs index 0c3d314bc10..7e7f9c59368 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceManagementPartnerRequest.cs @@ -139,6 +139,34 @@ public DeviceManagementPartnerRequest( return this.SendAsyncWithGraphResponse(deviceManagementPartnerToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceManagementPartner using PUT. + /// + /// The DeviceManagementPartner object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceManagementPartner deviceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceManagementPartnerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceManagementPartner using PUT and returns a object. + /// + /// The DeviceManagementPartner object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementPartner deviceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceManagementPartnerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceManagementRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceManagementRequest.cs index db6ec86fa86..4dde15d859c 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceManagementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceManagementRequest.cs @@ -139,6 +139,34 @@ public DeviceManagementRequest( return this.SendAsyncWithGraphResponse(deviceManagementToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceManagement using PUT. + /// + /// The DeviceManagement object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceManagement deviceManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceManagementToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceManagement using PUT and returns a object. + /// + /// The DeviceManagement object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceManagement deviceManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceManagementToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceManagementTroubleshootingEventRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceManagementTroubleshootingEventRequest.cs index 0bff44f690d..0987647b089 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceManagementTroubleshootingEventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceManagementTroubleshootingEventRequest.cs @@ -139,6 +139,34 @@ public DeviceManagementTroubleshootingEventRequest( return this.SendAsyncWithGraphResponse(deviceManagementTroubleshootingEventToUpdate, cancellationToken); } + /// + /// Updates the specified DeviceManagementTroubleshootingEvent using PUT. + /// + /// The DeviceManagementTroubleshootingEvent object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DeviceManagementTroubleshootingEvent deviceManagementTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceManagementTroubleshootingEventToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DeviceManagementTroubleshootingEvent using PUT and returns a object. + /// + /// The DeviceManagementTroubleshootingEvent object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementTroubleshootingEvent deviceManagementTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceManagementTroubleshootingEventToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DeviceRequest.cs b/src/Microsoft.Graph/Generated/requests/DeviceRequest.cs index 81f354084e2..c0da722cddb 100644 --- a/src/Microsoft.Graph/Generated/requests/DeviceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DeviceRequest.cs @@ -139,6 +139,34 @@ public DeviceRequest( return this.SendAsyncWithGraphResponse(deviceToUpdate, cancellationToken); } + /// + /// Updates the specified Device using PUT. + /// + /// The Device object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Device deviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(deviceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Device using PUT and returns a object. + /// + /// The Device object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Device deviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(deviceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryAuditRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryAuditRequest.cs index caddd8e858b..46944036ff2 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryAuditRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryAuditRequest.cs @@ -139,6 +139,34 @@ public DirectoryAuditRequest( return this.SendAsyncWithGraphResponse(directoryAuditToUpdate, cancellationToken); } + /// + /// Updates the specified DirectoryAudit using PUT. + /// + /// The DirectoryAudit object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DirectoryAudit directoryAuditToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryAuditToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DirectoryAudit using PUT and returns a object. + /// + /// The DirectoryAudit object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DirectoryAudit directoryAuditToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryAuditToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryObjectPartnerReferenceRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryObjectPartnerReferenceRequest.cs index 3cf75dafc72..5fda93387d8 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryObjectPartnerReferenceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryObjectPartnerReferenceRequest.cs @@ -139,6 +139,34 @@ public DirectoryObjectPartnerReferenceRequest( return this.SendAsyncWithGraphResponse(directoryObjectPartnerReferenceToUpdate, cancellationToken); } + /// + /// Updates the specified DirectoryObjectPartnerReference using PUT. + /// + /// The DirectoryObjectPartnerReference object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DirectoryObjectPartnerReference directoryObjectPartnerReferenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryObjectPartnerReferenceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DirectoryObjectPartnerReference using PUT and returns a object. + /// + /// The DirectoryObjectPartnerReference object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DirectoryObjectPartnerReference directoryObjectPartnerReferenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryObjectPartnerReferenceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryObjectRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryObjectRequest.cs index 97f236a6565..de73edd2893 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryObjectRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryObjectRequest.cs @@ -139,6 +139,34 @@ public DirectoryObjectRequest( return this.SendAsyncWithGraphResponse(directoryObjectToUpdate, cancellationToken); } + /// + /// Updates the specified DirectoryObject using PUT. + /// + /// The DirectoryObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DirectoryObject directoryObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DirectoryObject using PUT and returns a object. + /// + /// The DirectoryObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DirectoryObject directoryObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryRequest.cs index f6967b45c3b..6503c2b771b 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryRequest.cs @@ -139,6 +139,34 @@ public DirectoryRequest( return this.SendAsyncWithGraphResponse(directoryToUpdate, cancellationToken); } + /// + /// Updates the specified Directory using PUT. + /// + /// The Directory object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Directory directoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Directory using PUT and returns a object. + /// + /// The Directory object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Directory directoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryRoleRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryRoleRequest.cs index a3aa7e6a898..89bb379528c 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryRoleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryRoleRequest.cs @@ -139,6 +139,34 @@ public DirectoryRoleRequest( return this.SendAsyncWithGraphResponse(directoryRoleToUpdate, cancellationToken); } + /// + /// Updates the specified DirectoryRole using PUT. + /// + /// The DirectoryRole object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DirectoryRole directoryRoleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryRoleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DirectoryRole using PUT and returns a object. + /// + /// The DirectoryRole object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DirectoryRole directoryRoleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryRoleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DirectoryRoleTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/DirectoryRoleTemplateRequest.cs index e67ba04fbf2..3e9ea90191a 100644 --- a/src/Microsoft.Graph/Generated/requests/DirectoryRoleTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DirectoryRoleTemplateRequest.cs @@ -139,6 +139,34 @@ public DirectoryRoleTemplateRequest( return this.SendAsyncWithGraphResponse(directoryRoleTemplateToUpdate, cancellationToken); } + /// + /// Updates the specified DirectoryRoleTemplate using PUT. + /// + /// The DirectoryRoleTemplate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DirectoryRoleTemplate directoryRoleTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(directoryRoleTemplateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DirectoryRoleTemplate using PUT and returns a object. + /// + /// The DirectoryRoleTemplate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DirectoryRoleTemplate directoryRoleTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(directoryRoleTemplateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsCnameRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsCnameRecordRequest.cs index d228efc8feb..4dfd935faf6 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsCnameRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsCnameRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsCnameRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsCnameRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsCnameRecord using PUT. + /// + /// The DomainDnsCnameRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsCnameRecord domainDnsCnameRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsCnameRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsCnameRecord using PUT and returns a object. + /// + /// The DomainDnsCnameRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsCnameRecord domainDnsCnameRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsCnameRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsMxRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsMxRecordRequest.cs index 122b0a23433..0d2025a6853 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsMxRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsMxRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsMxRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsMxRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsMxRecord using PUT. + /// + /// The DomainDnsMxRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsMxRecord domainDnsMxRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsMxRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsMxRecord using PUT and returns a object. + /// + /// The DomainDnsMxRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsMxRecord domainDnsMxRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsMxRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsRecordRequest.cs index bb4b5a11075..25c8b7af7d9 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsRecord using PUT. + /// + /// The DomainDnsRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsRecord domainDnsRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsRecord using PUT and returns a object. + /// + /// The DomainDnsRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsRecord domainDnsRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsSrvRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsSrvRecordRequest.cs index 4e70b8f1c4a..942bcf1a4cc 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsSrvRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsSrvRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsSrvRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsSrvRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsSrvRecord using PUT. + /// + /// The DomainDnsSrvRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsSrvRecord domainDnsSrvRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsSrvRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsSrvRecord using PUT and returns a object. + /// + /// The DomainDnsSrvRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsSrvRecord domainDnsSrvRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsSrvRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsTxtRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsTxtRecordRequest.cs index 7f39f4e07f2..e58aaa08b06 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsTxtRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsTxtRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsTxtRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsTxtRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsTxtRecord using PUT. + /// + /// The DomainDnsTxtRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsTxtRecord domainDnsTxtRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsTxtRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsTxtRecord using PUT and returns a object. + /// + /// The DomainDnsTxtRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsTxtRecord domainDnsTxtRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsTxtRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainDnsUnavailableRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainDnsUnavailableRecordRequest.cs index 419c9d834fd..32b88a5ecfb 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainDnsUnavailableRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainDnsUnavailableRecordRequest.cs @@ -139,6 +139,34 @@ public DomainDnsUnavailableRecordRequest( return this.SendAsyncWithGraphResponse(domainDnsUnavailableRecordToUpdate, cancellationToken); } + /// + /// Updates the specified DomainDnsUnavailableRecord using PUT. + /// + /// The DomainDnsUnavailableRecord object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DomainDnsUnavailableRecord domainDnsUnavailableRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainDnsUnavailableRecordToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DomainDnsUnavailableRecord using PUT and returns a object. + /// + /// The DomainDnsUnavailableRecord object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DomainDnsUnavailableRecord domainDnsUnavailableRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainDnsUnavailableRecordToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DomainRequest.cs b/src/Microsoft.Graph/Generated/requests/DomainRequest.cs index fb7b99e5129..c147d81a081 100644 --- a/src/Microsoft.Graph/Generated/requests/DomainRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DomainRequest.cs @@ -139,6 +139,34 @@ public DomainRequest( return this.SendAsyncWithGraphResponse(domainToUpdate, cancellationToken); } + /// + /// Updates the specified Domain using PUT. + /// + /// The Domain object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Domain domainToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(domainToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Domain using PUT and returns a object. + /// + /// The Domain object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Domain domainToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(domainToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DriveItemRequest.cs b/src/Microsoft.Graph/Generated/requests/DriveItemRequest.cs index 0d3f68b63df..f5ace9e33ee 100644 --- a/src/Microsoft.Graph/Generated/requests/DriveItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DriveItemRequest.cs @@ -139,6 +139,34 @@ public DriveItemRequest( return this.SendAsyncWithGraphResponse(driveItemToUpdate, cancellationToken); } + /// + /// Updates the specified DriveItem using PUT. + /// + /// The DriveItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DriveItem driveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(driveItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DriveItem using PUT and returns a object. + /// + /// The DriveItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DriveItem driveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(driveItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DriveItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/DriveItemVersionRequest.cs index a0303b5133b..2ce90aadfc6 100644 --- a/src/Microsoft.Graph/Generated/requests/DriveItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DriveItemVersionRequest.cs @@ -139,6 +139,34 @@ public DriveItemVersionRequest( return this.SendAsyncWithGraphResponse(driveItemVersionToUpdate, cancellationToken); } + /// + /// Updates the specified DriveItemVersion using PUT. + /// + /// The DriveItemVersion object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(DriveItemVersion driveItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(driveItemVersionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified DriveItemVersion using PUT and returns a object. + /// + /// The DriveItemVersion object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(DriveItemVersion driveItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(driveItemVersionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/DriveRequest.cs b/src/Microsoft.Graph/Generated/requests/DriveRequest.cs index c5e83b95d8a..380d46a8962 100644 --- a/src/Microsoft.Graph/Generated/requests/DriveRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/DriveRequest.cs @@ -139,6 +139,34 @@ public DriveRequest( return this.SendAsyncWithGraphResponse(driveToUpdate, cancellationToken); } + /// + /// Updates the specified Drive using PUT. + /// + /// The Drive object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Drive driveToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(driveToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Drive using PUT and returns a object. + /// + /// The Drive object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Drive driveToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(driveToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EBookInstallSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/EBookInstallSummaryRequest.cs index d348167f97f..4dfb3666825 100644 --- a/src/Microsoft.Graph/Generated/requests/EBookInstallSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EBookInstallSummaryRequest.cs @@ -139,6 +139,34 @@ public EBookInstallSummaryRequest( return this.SendAsyncWithGraphResponse(eBookInstallSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified EBookInstallSummary using PUT. + /// + /// The EBookInstallSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EBookInstallSummary eBookInstallSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(eBookInstallSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EBookInstallSummary using PUT and returns a object. + /// + /// The EBookInstallSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EBookInstallSummary eBookInstallSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(eBookInstallSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EditionUpgradeConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/EditionUpgradeConfigurationRequest.cs index d05a0276e07..56239500bc7 100644 --- a/src/Microsoft.Graph/Generated/requests/EditionUpgradeConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EditionUpgradeConfigurationRequest.cs @@ -139,6 +139,34 @@ public EditionUpgradeConfigurationRequest( return this.SendAsyncWithGraphResponse(editionUpgradeConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified EditionUpgradeConfiguration using PUT. + /// + /// The EditionUpgradeConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EditionUpgradeConfiguration editionUpgradeConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(editionUpgradeConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EditionUpgradeConfiguration using PUT and returns a object. + /// + /// The EditionUpgradeConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EditionUpgradeConfiguration editionUpgradeConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(editionUpgradeConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EducationClassRequest.cs b/src/Microsoft.Graph/Generated/requests/EducationClassRequest.cs index 09d6c69778c..16d3d0a1059 100644 --- a/src/Microsoft.Graph/Generated/requests/EducationClassRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EducationClassRequest.cs @@ -139,6 +139,34 @@ public EducationClassRequest( return this.SendAsyncWithGraphResponse(educationClassToUpdate, cancellationToken); } + /// + /// Updates the specified EducationClass using PUT. + /// + /// The EducationClass object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EducationClass educationClassToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(educationClassToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EducationClass using PUT and returns a object. + /// + /// The EducationClass object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EducationClass educationClassToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(educationClassToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EducationOrganizationRequest.cs b/src/Microsoft.Graph/Generated/requests/EducationOrganizationRequest.cs index 0789f5d0186..7f986b36824 100644 --- a/src/Microsoft.Graph/Generated/requests/EducationOrganizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EducationOrganizationRequest.cs @@ -139,6 +139,34 @@ public EducationOrganizationRequest( return this.SendAsyncWithGraphResponse(educationOrganizationToUpdate, cancellationToken); } + /// + /// Updates the specified EducationOrganization using PUT. + /// + /// The EducationOrganization object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EducationOrganization educationOrganizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(educationOrganizationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EducationOrganization using PUT and returns a object. + /// + /// The EducationOrganization object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EducationOrganization educationOrganizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(educationOrganizationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EducationRootRequest.cs b/src/Microsoft.Graph/Generated/requests/EducationRootRequest.cs index 9930d3ba281..e49216f92d7 100644 --- a/src/Microsoft.Graph/Generated/requests/EducationRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EducationRootRequest.cs @@ -139,6 +139,34 @@ public EducationRootRequest( return this.SendAsyncWithGraphResponse(educationRootToUpdate, cancellationToken); } + /// + /// Updates the specified EducationRoot using PUT. + /// + /// The EducationRoot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EducationRoot educationRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(educationRootToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EducationRoot using PUT and returns a object. + /// + /// The EducationRoot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EducationRoot educationRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(educationRootToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EducationSchoolRequest.cs b/src/Microsoft.Graph/Generated/requests/EducationSchoolRequest.cs index 3a987912636..1214041bfed 100644 --- a/src/Microsoft.Graph/Generated/requests/EducationSchoolRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EducationSchoolRequest.cs @@ -139,6 +139,34 @@ public EducationSchoolRequest( return this.SendAsyncWithGraphResponse(educationSchoolToUpdate, cancellationToken); } + /// + /// Updates the specified EducationSchool using PUT. + /// + /// The EducationSchool object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EducationSchool educationSchoolToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(educationSchoolToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EducationSchool using PUT and returns a object. + /// + /// The EducationSchool object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EducationSchool educationSchoolToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(educationSchoolToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EducationUserRequest.cs b/src/Microsoft.Graph/Generated/requests/EducationUserRequest.cs index e4e7fcbeb5f..d1102907ab2 100644 --- a/src/Microsoft.Graph/Generated/requests/EducationUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EducationUserRequest.cs @@ -139,6 +139,34 @@ public EducationUserRequest( return this.SendAsyncWithGraphResponse(educationUserToUpdate, cancellationToken); } + /// + /// Updates the specified EducationUser using PUT. + /// + /// The EducationUser object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EducationUser educationUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(educationUserToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EducationUser using PUT and returns a object. + /// + /// The EducationUser object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EducationUser educationUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(educationUserToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EmailAuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/EmailAuthenticationMethodConfigurationRequest.cs index 5bae0740591..f9d345257a6 100644 --- a/src/Microsoft.Graph/Generated/requests/EmailAuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EmailAuthenticationMethodConfigurationRequest.cs @@ -139,6 +139,34 @@ public EmailAuthenticationMethodConfigurationRequest( return this.SendAsyncWithGraphResponse(emailAuthenticationMethodConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified EmailAuthenticationMethodConfiguration using PUT. + /// + /// The EmailAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EmailAuthenticationMethodConfiguration emailAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(emailAuthenticationMethodConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EmailAuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The EmailAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EmailAuthenticationMethodConfiguration emailAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(emailAuthenticationMethodConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EmailFileAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/EmailFileAssessmentRequestRequest.cs index 1e49135c24e..aa26144a82d 100644 --- a/src/Microsoft.Graph/Generated/requests/EmailFileAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EmailFileAssessmentRequestRequest.cs @@ -139,6 +139,34 @@ public EmailFileAssessmentRequestRequest( return this.SendAsyncWithGraphResponse(emailFileAssessmentRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified EmailFileAssessmentRequestObject using PUT. + /// + /// The EmailFileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EmailFileAssessmentRequestObject emailFileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(emailFileAssessmentRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EmailFileAssessmentRequestObject using PUT and returns a object. + /// + /// The EmailFileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EmailFileAssessmentRequestObject emailFileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(emailFileAssessmentRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EndpointRequest.cs b/src/Microsoft.Graph/Generated/requests/EndpointRequest.cs index 4a964cb4ec8..7daa2990786 100644 --- a/src/Microsoft.Graph/Generated/requests/EndpointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EndpointRequest.cs @@ -139,6 +139,34 @@ public EndpointRequest( return this.SendAsyncWithGraphResponse(endpointToUpdate, cancellationToken); } + /// + /// Updates the specified Endpoint using PUT. + /// + /// The Endpoint object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Endpoint endpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(endpointToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Endpoint using PUT and returns a object. + /// + /// The Endpoint object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Endpoint endpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(endpointToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EnrollmentConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/EnrollmentConfigurationAssignmentRequest.cs index ed8fd4a9af7..857744895a0 100644 --- a/src/Microsoft.Graph/Generated/requests/EnrollmentConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EnrollmentConfigurationAssignmentRequest.cs @@ -139,6 +139,34 @@ public EnrollmentConfigurationAssignmentRequest( return this.SendAsyncWithGraphResponse(enrollmentConfigurationAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified EnrollmentConfigurationAssignment using PUT. + /// + /// The EnrollmentConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EnrollmentConfigurationAssignment enrollmentConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(enrollmentConfigurationAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EnrollmentConfigurationAssignment using PUT and returns a object. + /// + /// The EnrollmentConfigurationAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EnrollmentConfigurationAssignment enrollmentConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(enrollmentConfigurationAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EnrollmentTroubleshootingEventRequest.cs b/src/Microsoft.Graph/Generated/requests/EnrollmentTroubleshootingEventRequest.cs index 82096cd9349..8a0f6ec5da1 100644 --- a/src/Microsoft.Graph/Generated/requests/EnrollmentTroubleshootingEventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EnrollmentTroubleshootingEventRequest.cs @@ -139,6 +139,34 @@ public EnrollmentTroubleshootingEventRequest( return this.SendAsyncWithGraphResponse(enrollmentTroubleshootingEventToUpdate, cancellationToken); } + /// + /// Updates the specified EnrollmentTroubleshootingEvent using PUT. + /// + /// The EnrollmentTroubleshootingEvent object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(enrollmentTroubleshootingEventToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EnrollmentTroubleshootingEvent using PUT and returns a object. + /// + /// The EnrollmentTroubleshootingEvent object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(enrollmentTroubleshootingEventToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EntityRequest.cs b/src/Microsoft.Graph/Generated/requests/EntityRequest.cs index 47e75068f8f..0f099a252ab 100644 --- a/src/Microsoft.Graph/Generated/requests/EntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EntityRequest.cs @@ -139,6 +139,34 @@ public EntityRequest( return this.SendAsyncWithGraphResponse(entityToUpdate, cancellationToken); } + /// + /// Updates the specified Entity using PUT. + /// + /// The Entity object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Entity entityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(entityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Entity using PUT and returns a object. + /// + /// The Entity object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Entity entityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(entityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EventMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/EventMessageRequest.cs index f66fef25462..f28325d6e0a 100644 --- a/src/Microsoft.Graph/Generated/requests/EventMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EventMessageRequest.cs @@ -139,6 +139,34 @@ public EventMessageRequest( return this.SendAsyncWithGraphResponse(eventMessageToUpdate, cancellationToken); } + /// + /// Updates the specified EventMessage using PUT. + /// + /// The EventMessage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EventMessage eventMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(eventMessageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EventMessage using PUT and returns a object. + /// + /// The EventMessage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EventMessage eventMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(eventMessageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EventMessageRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/EventMessageRequestRequest.cs index 69c2cdfb774..0eaf0204136 100644 --- a/src/Microsoft.Graph/Generated/requests/EventMessageRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EventMessageRequestRequest.cs @@ -139,6 +139,34 @@ public EventMessageRequestRequest( return this.SendAsyncWithGraphResponse(eventMessageRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified EventMessageRequestObject using PUT. + /// + /// The EventMessageRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EventMessageRequestObject eventMessageRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(eventMessageRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EventMessageRequestObject using PUT and returns a object. + /// + /// The EventMessageRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EventMessageRequestObject eventMessageRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(eventMessageRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EventMessageResponseRequest.cs b/src/Microsoft.Graph/Generated/requests/EventMessageResponseRequest.cs index bdd673f7639..f3d03cd91d5 100644 --- a/src/Microsoft.Graph/Generated/requests/EventMessageResponseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EventMessageResponseRequest.cs @@ -139,6 +139,34 @@ public EventMessageResponseRequest( return this.SendAsyncWithGraphResponse(eventMessageResponseToUpdate, cancellationToken); } + /// + /// Updates the specified EventMessageResponse using PUT. + /// + /// The EventMessageResponse object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(EventMessageResponse eventMessageResponseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(eventMessageResponseToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified EventMessageResponse using PUT and returns a object. + /// + /// The EventMessageResponse object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(EventMessageResponse eventMessageResponseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(eventMessageResponseToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/EventRequest.cs b/src/Microsoft.Graph/Generated/requests/EventRequest.cs index 8764623994d..35296f14dbb 100644 --- a/src/Microsoft.Graph/Generated/requests/EventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/EventRequest.cs @@ -139,6 +139,34 @@ public EventRequest( return this.SendAsyncWithGraphResponse(eventToUpdate, cancellationToken); } + /// + /// Updates the specified Event using PUT. + /// + /// The Event object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Event eventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(eventToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Event using PUT and returns a object. + /// + /// The Event object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Event eventToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(eventToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ExtensionPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/ExtensionPropertyRequest.cs index 7c496aa463a..e726f2c290a 100644 --- a/src/Microsoft.Graph/Generated/requests/ExtensionPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ExtensionPropertyRequest.cs @@ -139,6 +139,34 @@ public ExtensionPropertyRequest( return this.SendAsyncWithGraphResponse(extensionPropertyToUpdate, cancellationToken); } + /// + /// Updates the specified ExtensionProperty using PUT. + /// + /// The ExtensionProperty object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ExtensionProperty extensionPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(extensionPropertyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ExtensionProperty using PUT and returns a object. + /// + /// The ExtensionProperty object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ExtensionProperty extensionPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(extensionPropertyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/ExtensionRequest.cs index 23cb1ff2343..5f692174a51 100644 --- a/src/Microsoft.Graph/Generated/requests/ExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ExtensionRequest.cs @@ -139,6 +139,34 @@ public ExtensionRequest( return this.SendAsyncWithGraphResponse(extensionToUpdate, cancellationToken); } + /// + /// Updates the specified Extension using PUT. + /// + /// The Extension object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Extension extensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(extensionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Extension using PUT and returns a object. + /// + /// The Extension object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Extension extensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(extensionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodConfigurationRequest.cs index ddddc687d87..c25355191bc 100644 --- a/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodConfigurationRequest.cs @@ -139,6 +139,34 @@ public Fido2AuthenticationMethodConfigurationRequest( return this.SendAsyncWithGraphResponse(fido2AuthenticationMethodConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Fido2AuthenticationMethodConfiguration using PUT. + /// + /// The Fido2AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Fido2AuthenticationMethodConfiguration fido2AuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(fido2AuthenticationMethodConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Fido2AuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The Fido2AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Fido2AuthenticationMethodConfiguration fido2AuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(fido2AuthenticationMethodConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodRequest.cs index 9bb0df3ead8..d105885f637 100644 --- a/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Fido2AuthenticationMethodRequest.cs @@ -139,6 +139,34 @@ public Fido2AuthenticationMethodRequest( return this.SendAsyncWithGraphResponse(fido2AuthenticationMethodToUpdate, cancellationToken); } + /// + /// Updates the specified Fido2AuthenticationMethod using PUT. + /// + /// The Fido2AuthenticationMethod object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Fido2AuthenticationMethod fido2AuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(fido2AuthenticationMethodToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Fido2AuthenticationMethod using PUT and returns a object. + /// + /// The Fido2AuthenticationMethod object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Fido2AuthenticationMethod fido2AuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(fido2AuthenticationMethodToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/FieldValueSetRequest.cs b/src/Microsoft.Graph/Generated/requests/FieldValueSetRequest.cs index 0b18f21ebdb..c20daecbb9b 100644 --- a/src/Microsoft.Graph/Generated/requests/FieldValueSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/FieldValueSetRequest.cs @@ -139,6 +139,34 @@ public FieldValueSetRequest( return this.SendAsyncWithGraphResponse(fieldValueSetToUpdate, cancellationToken); } + /// + /// Updates the specified FieldValueSet using PUT. + /// + /// The FieldValueSet object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(FieldValueSet fieldValueSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(fieldValueSetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified FieldValueSet using PUT and returns a object. + /// + /// The FieldValueSet object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(FieldValueSet fieldValueSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(fieldValueSetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/FileAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/FileAssessmentRequestRequest.cs index e5dcd764685..fa19fe5badd 100644 --- a/src/Microsoft.Graph/Generated/requests/FileAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/FileAssessmentRequestRequest.cs @@ -139,6 +139,34 @@ public FileAssessmentRequestRequest( return this.SendAsyncWithGraphResponse(fileAssessmentRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified FileAssessmentRequestObject using PUT. + /// + /// The FileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(FileAssessmentRequestObject fileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(fileAssessmentRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified FileAssessmentRequestObject using PUT and returns a object. + /// + /// The FileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(FileAssessmentRequestObject fileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(fileAssessmentRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/FileAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/FileAttachmentRequest.cs index f3e9f58d1a7..546199670d9 100644 --- a/src/Microsoft.Graph/Generated/requests/FileAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/FileAttachmentRequest.cs @@ -139,6 +139,34 @@ public FileAttachmentRequest( return this.SendAsyncWithGraphResponse(fileAttachmentToUpdate, cancellationToken); } + /// + /// Updates the specified FileAttachment using PUT. + /// + /// The FileAttachment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(FileAttachment fileAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(fileAttachmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified FileAttachment using PUT and returns a object. + /// + /// The FileAttachment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(FileAttachment fileAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(fileAttachmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/GroupLifecyclePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/GroupLifecyclePolicyRequest.cs index 3bb06f5f355..222c29de365 100644 --- a/src/Microsoft.Graph/Generated/requests/GroupLifecyclePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/GroupLifecyclePolicyRequest.cs @@ -139,6 +139,34 @@ public GroupLifecyclePolicyRequest( return this.SendAsyncWithGraphResponse(groupLifecyclePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified GroupLifecyclePolicy using PUT. + /// + /// The GroupLifecyclePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(GroupLifecyclePolicy groupLifecyclePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(groupLifecyclePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified GroupLifecyclePolicy using PUT and returns a object. + /// + /// The GroupLifecyclePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(GroupLifecyclePolicy groupLifecyclePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(groupLifecyclePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/GroupRequest.cs b/src/Microsoft.Graph/Generated/requests/GroupRequest.cs index 0158b1a7c52..2694c291a3c 100644 --- a/src/Microsoft.Graph/Generated/requests/GroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/GroupRequest.cs @@ -139,6 +139,34 @@ public GroupRequest( return this.SendAsyncWithGraphResponse(groupToUpdate, cancellationToken); } + /// + /// Updates the specified Group using PUT. + /// + /// The Group object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Group groupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(groupToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Group using PUT and returns a object. + /// + /// The Group object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Group groupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(groupToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/GroupSettingRequest.cs b/src/Microsoft.Graph/Generated/requests/GroupSettingRequest.cs index 683bbf577da..3bfbb89a990 100644 --- a/src/Microsoft.Graph/Generated/requests/GroupSettingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/GroupSettingRequest.cs @@ -139,6 +139,34 @@ public GroupSettingRequest( return this.SendAsyncWithGraphResponse(groupSettingToUpdate, cancellationToken); } + /// + /// Updates the specified GroupSetting using PUT. + /// + /// The GroupSetting object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(GroupSetting groupSettingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(groupSettingToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified GroupSetting using PUT and returns a object. + /// + /// The GroupSetting object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(GroupSetting groupSettingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(groupSettingToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/GroupSettingTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/GroupSettingTemplateRequest.cs index 8c38d549680..0242f4efc77 100644 --- a/src/Microsoft.Graph/Generated/requests/GroupSettingTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/GroupSettingTemplateRequest.cs @@ -139,6 +139,34 @@ public GroupSettingTemplateRequest( return this.SendAsyncWithGraphResponse(groupSettingTemplateToUpdate, cancellationToken); } + /// + /// Updates the specified GroupSettingTemplate using PUT. + /// + /// The GroupSettingTemplate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(GroupSettingTemplate groupSettingTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(groupSettingTemplateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified GroupSettingTemplate using PUT and returns a object. + /// + /// The GroupSettingTemplate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(GroupSettingTemplate groupSettingTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(groupSettingTemplateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/HomeRealmDiscoveryPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/HomeRealmDiscoveryPolicyRequest.cs index 263e0050f83..03c78981742 100644 --- a/src/Microsoft.Graph/Generated/requests/HomeRealmDiscoveryPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/HomeRealmDiscoveryPolicyRequest.cs @@ -139,6 +139,34 @@ public HomeRealmDiscoveryPolicyRequest( return this.SendAsyncWithGraphResponse(homeRealmDiscoveryPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified HomeRealmDiscoveryPolicy using PUT. + /// + /// The HomeRealmDiscoveryPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(HomeRealmDiscoveryPolicy homeRealmDiscoveryPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(homeRealmDiscoveryPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified HomeRealmDiscoveryPolicy using PUT and returns a object. + /// + /// The HomeRealmDiscoveryPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(HomeRealmDiscoveryPolicy homeRealmDiscoveryPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(homeRealmDiscoveryPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAadUserConversationMemberRequest.cs b/src/Microsoft.Graph/Generated/requests/IAadUserConversationMemberRequest.cs index 9d3666f9624..d97fd64e04d 100644 --- a/src/Microsoft.Graph/Generated/requests/IAadUserConversationMemberRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAadUserConversationMemberRequest.cs @@ -82,6 +82,22 @@ public partial interface IAadUserConversationMemberRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AadUserConversationMember aadUserConversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AadUserConversationMember using PUT. + /// + /// The AadUserConversationMember object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AadUserConversationMember aadUserConversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AadUserConversationMember using PUT and returns a object. + /// + /// The AadUserConversationMember object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AadUserConversationMember aadUserConversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IActivityBasedTimeoutPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IActivityBasedTimeoutPolicyRequest.cs index e52d0860efe..9a3c48cb3d1 100644 --- a/src/Microsoft.Graph/Generated/requests/IActivityBasedTimeoutPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IActivityBasedTimeoutPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IActivityBasedTimeoutPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ActivityBasedTimeoutPolicy activityBasedTimeoutPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ActivityBasedTimeoutPolicy using PUT. + /// + /// The ActivityBasedTimeoutPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ActivityBasedTimeoutPolicy activityBasedTimeoutPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ActivityBasedTimeoutPolicy using PUT and returns a object. + /// + /// The ActivityBasedTimeoutPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ActivityBasedTimeoutPolicy activityBasedTimeoutPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IActivityHistoryItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IActivityHistoryItemRequest.cs index af65ca55e60..d8e10599a06 100644 --- a/src/Microsoft.Graph/Generated/requests/IActivityHistoryItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IActivityHistoryItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IActivityHistoryItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ActivityHistoryItem activityHistoryItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ActivityHistoryItem using PUT. + /// + /// The ActivityHistoryItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ActivityHistoryItem activityHistoryItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ActivityHistoryItem using PUT and returns a object. + /// + /// The ActivityHistoryItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ActivityHistoryItem activityHistoryItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAdministrativeUnitRequest.cs b/src/Microsoft.Graph/Generated/requests/IAdministrativeUnitRequest.cs index 6f31871314e..c1125a314ff 100644 --- a/src/Microsoft.Graph/Generated/requests/IAdministrativeUnitRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAdministrativeUnitRequest.cs @@ -82,6 +82,22 @@ public partial interface IAdministrativeUnitRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AdministrativeUnit administrativeUnitToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AdministrativeUnit using PUT. + /// + /// The AdministrativeUnit object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AdministrativeUnit administrativeUnitToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AdministrativeUnit using PUT and returns a object. + /// + /// The AdministrativeUnit object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AdministrativeUnit administrativeUnitToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementAcceptanceRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementAcceptanceRequest.cs index 63ca7e2264d..b950103544a 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementAcceptanceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementAcceptanceRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementAcceptanceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AgreementAcceptance agreementAcceptanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AgreementAcceptance using PUT. + /// + /// The AgreementAcceptance object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AgreementAcceptance agreementAcceptanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AgreementAcceptance using PUT and returns a object. + /// + /// The AgreementAcceptance object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AgreementAcceptance agreementAcceptanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementFileLocalizationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementFileLocalizationRequest.cs index 1d5c9c5d57d..f72c566c707 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementFileLocalizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementFileLocalizationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementFileLocalizationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AgreementFileLocalization agreementFileLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AgreementFileLocalization using PUT. + /// + /// The AgreementFileLocalization object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AgreementFileLocalization agreementFileLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AgreementFileLocalization using PUT and returns a object. + /// + /// The AgreementFileLocalization object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AgreementFileLocalization agreementFileLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementFilePropertiesRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementFilePropertiesRequest.cs index 91103ef37b1..9a0978288a3 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementFilePropertiesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementFilePropertiesRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementFilePropertiesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AgreementFileProperties agreementFilePropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AgreementFileProperties using PUT. + /// + /// The AgreementFileProperties object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AgreementFileProperties agreementFilePropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AgreementFileProperties using PUT and returns a object. + /// + /// The AgreementFileProperties object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AgreementFileProperties agreementFilePropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementFileRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementFileRequest.cs index f321983766f..d1e91b2b839 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementFileRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementFileRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AgreementFile agreementFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AgreementFile using PUT. + /// + /// The AgreementFile object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AgreementFile agreementFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AgreementFile using PUT and returns a object. + /// + /// The AgreementFile object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AgreementFile agreementFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementFileVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementFileVersionRequest.cs index 0c4f3bc1b37..5536199d624 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementFileVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementFileVersionRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementFileVersionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AgreementFileVersion agreementFileVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AgreementFileVersion using PUT. + /// + /// The AgreementFileVersion object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AgreementFileVersion agreementFileVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AgreementFileVersion using PUT and returns a object. + /// + /// The AgreementFileVersion object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AgreementFileVersion agreementFileVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAgreementRequest.cs b/src/Microsoft.Graph/Generated/requests/IAgreementRequest.cs index 5361547d918..21c36b23ec0 100644 --- a/src/Microsoft.Graph/Generated/requests/IAgreementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAgreementRequest.cs @@ -82,6 +82,22 @@ public partial interface IAgreementRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Agreement agreementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Agreement using PUT. + /// + /// The Agreement object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Agreement agreementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Agreement using PUT and returns a object. + /// + /// The Agreement object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Agreement agreementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAlertRequest.cs b/src/Microsoft.Graph/Generated/requests/IAlertRequest.cs index 91517fe022b..ed3d2c85886 100644 --- a/src/Microsoft.Graph/Generated/requests/IAlertRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAlertRequest.cs @@ -82,6 +82,22 @@ public partial interface IAlertRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Alert alertToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Alert using PUT. + /// + /// The Alert object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Alert alertToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Alert using PUT and returns a object. + /// + /// The Alert object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Alert alertToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidCompliancePolicyRequest.cs index a3b97342476..5bc1fa38ad3 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidCompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidCompliancePolicy androidCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidCompliancePolicy using PUT. + /// + /// The AndroidCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidCompliancePolicy androidCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidCompliancePolicy using PUT and returns a object. + /// + /// The AndroidCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidCompliancePolicy androidCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidCustomConfigurationRequest.cs index 4be94c0c43d..a12b23abda2 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidCustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidCustomConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidCustomConfiguration androidCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidCustomConfiguration using PUT. + /// + /// The AndroidCustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidCustomConfiguration androidCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidCustomConfiguration using PUT and returns a object. + /// + /// The AndroidCustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidCustomConfiguration androidCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidGeneralDeviceConfigurationRequest.cs index 095e0500cfa..9beea42f5a3 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidGeneralDeviceConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidGeneralDeviceConfigurationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidGeneralDeviceConfiguration androidGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidGeneralDeviceConfiguration using PUT. + /// + /// The AndroidGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidGeneralDeviceConfiguration androidGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The AndroidGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidGeneralDeviceConfiguration androidGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidLobAppRequest.cs index 17f7678fe3d..4adac7d7544 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidLobApp androidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidLobApp using PUT. + /// + /// The AndroidLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidLobApp androidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidLobApp using PUT and returns a object. + /// + /// The AndroidLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidLobApp androidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppProtectionRequest.cs index 7af6579fbdf..24c9a053b2e 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidManagedAppProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidManagedAppProtection androidManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidManagedAppProtection using PUT. + /// + /// The AndroidManagedAppProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidManagedAppProtection androidManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidManagedAppProtection using PUT and returns a object. + /// + /// The AndroidManagedAppProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidManagedAppProtection androidManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppRegistrationRequest.cs index 69302b66437..ad6aeecb856 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidManagedAppRegistrationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidManagedAppRegistrationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidManagedAppRegistration androidManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidManagedAppRegistration using PUT. + /// + /// The AndroidManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidManagedAppRegistration androidManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidManagedAppRegistration using PUT and returns a object. + /// + /// The AndroidManagedAppRegistration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidManagedAppRegistration androidManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidStoreAppRequest.cs index acb8891a26e..ae1547691e7 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidStoreAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidStoreAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidStoreApp androidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidStoreApp using PUT. + /// + /// The AndroidStoreApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidStoreApp androidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidStoreApp using PUT and returns a object. + /// + /// The AndroidStoreApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidStoreApp androidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCompliancePolicyRequest.cs index f91403019e2..c51d8a3c710 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidWorkProfileCompliancePolicyRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidWorkProfileCompliancePolicy androidWorkProfileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidWorkProfileCompliancePolicy using PUT. + /// + /// The AndroidWorkProfileCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidWorkProfileCompliancePolicy androidWorkProfileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidWorkProfileCompliancePolicy using PUT and returns a object. + /// + /// The AndroidWorkProfileCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileCompliancePolicy androidWorkProfileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCustomConfigurationRequest.cs index d39f7296923..5c6191f763b 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileCustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidWorkProfileCustomConfigurationRequest : IBaseRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidWorkProfileCustomConfiguration androidWorkProfileCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidWorkProfileCustomConfiguration using PUT. + /// + /// The AndroidWorkProfileCustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidWorkProfileCustomConfiguration androidWorkProfileCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidWorkProfileCustomConfiguration using PUT and returns a object. + /// + /// The AndroidWorkProfileCustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileCustomConfiguration androidWorkProfileCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileGeneralDeviceConfigurationRequest.cs index 6c359fbfc56..0b475a89ed0 100644 --- a/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAndroidWorkProfileGeneralDeviceConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAndroidWorkProfileGeneralDeviceConfigurationRequest : /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AndroidWorkProfileGeneralDeviceConfiguration androidWorkProfileGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AndroidWorkProfileGeneralDeviceConfiguration using PUT. + /// + /// The AndroidWorkProfileGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AndroidWorkProfileGeneralDeviceConfiguration androidWorkProfileGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AndroidWorkProfileGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The AndroidWorkProfileGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AndroidWorkProfileGeneralDeviceConfiguration androidWorkProfileGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAppCatalogsRequest.cs b/src/Microsoft.Graph/Generated/requests/IAppCatalogsRequest.cs index a9763d04118..096d4cfaf49 100644 --- a/src/Microsoft.Graph/Generated/requests/IAppCatalogsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAppCatalogsRequest.cs @@ -82,6 +82,22 @@ public partial interface IAppCatalogsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AppCatalogs appCatalogsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AppCatalogs using PUT. + /// + /// The AppCatalogs object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AppCatalogs appCatalogsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AppCatalogs using PUT and returns a object. + /// + /// The AppCatalogs object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AppCatalogs appCatalogsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAppRoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IAppRoleAssignmentRequest.cs index 2f9d5383f83..19c629e5674 100644 --- a/src/Microsoft.Graph/Generated/requests/IAppRoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAppRoleAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IAppRoleAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AppRoleAssignment appRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AppRoleAssignment using PUT. + /// + /// The AppRoleAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AppRoleAssignment appRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AppRoleAssignment using PUT and returns a object. + /// + /// The AppRoleAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AppRoleAssignment appRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAppleDeviceFeaturesConfigurationBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/IAppleDeviceFeaturesConfigurationBaseRequest.cs index ad23a806587..8b58304926a 100644 --- a/src/Microsoft.Graph/Generated/requests/IAppleDeviceFeaturesConfigurationBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAppleDeviceFeaturesConfigurationBaseRequest.cs @@ -82,6 +82,22 @@ public partial interface IAppleDeviceFeaturesConfigurationBaseRequest : IBaseReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AppleDeviceFeaturesConfigurationBase appleDeviceFeaturesConfigurationBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AppleDeviceFeaturesConfigurationBase using PUT. + /// + /// The AppleDeviceFeaturesConfigurationBase object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AppleDeviceFeaturesConfigurationBase appleDeviceFeaturesConfigurationBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AppleDeviceFeaturesConfigurationBase using PUT and returns a object. + /// + /// The AppleDeviceFeaturesConfigurationBase object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AppleDeviceFeaturesConfigurationBase appleDeviceFeaturesConfigurationBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IApplePushNotificationCertificateRequest.cs b/src/Microsoft.Graph/Generated/requests/IApplePushNotificationCertificateRequest.cs index 41fcdcd1959..92a504f0ade 100644 --- a/src/Microsoft.Graph/Generated/requests/IApplePushNotificationCertificateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IApplePushNotificationCertificateRequest.cs @@ -82,6 +82,22 @@ public partial interface IApplePushNotificationCertificateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ApplePushNotificationCertificate applePushNotificationCertificateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ApplePushNotificationCertificate using PUT. + /// + /// The ApplePushNotificationCertificate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ApplePushNotificationCertificate applePushNotificationCertificateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ApplePushNotificationCertificate using PUT and returns a object. + /// + /// The ApplePushNotificationCertificate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ApplePushNotificationCertificate applePushNotificationCertificateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IApplicationRequest.cs b/src/Microsoft.Graph/Generated/requests/IApplicationRequest.cs index 4b5136fc9bf..d4e2497a9cb 100644 --- a/src/Microsoft.Graph/Generated/requests/IApplicationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IApplicationRequest.cs @@ -82,6 +82,22 @@ public partial interface IApplicationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Application applicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Application using PUT. + /// + /// The Application object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Application applicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Application using PUT and returns a object. + /// + /// The Application object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Application applicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IApplicationTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/IApplicationTemplateRequest.cs index 3fb732347b0..85c6ea471a2 100644 --- a/src/Microsoft.Graph/Generated/requests/IApplicationTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IApplicationTemplateRequest.cs @@ -82,6 +82,22 @@ public partial interface IApplicationTemplateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ApplicationTemplate applicationTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ApplicationTemplate using PUT. + /// + /// The ApplicationTemplate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ApplicationTemplate applicationTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ApplicationTemplate using PUT and returns a object. + /// + /// The ApplicationTemplate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ApplicationTemplate applicationTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IAttachmentRequest.cs index 873d563cdbf..c96fcc4df1f 100644 --- a/src/Microsoft.Graph/Generated/requests/IAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAttachmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IAttachmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Attachment attachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Attachment using PUT. + /// + /// The Attachment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Attachment attachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Attachment using PUT and returns a object. + /// + /// The Attachment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Attachment attachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuditLogRootRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuditLogRootRequest.cs index ca4bb5980f2..50289aad421 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuditLogRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuditLogRootRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuditLogRootRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuditLogRoot auditLogRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuditLogRoot using PUT. + /// + /// The AuditLogRoot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuditLogRoot auditLogRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuditLogRoot using PUT and returns a object. + /// + /// The AuditLogRoot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuditLogRoot auditLogRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodConfigurationRequest.cs index 2ace3941991..1a00637d338 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthenticationMethodConfigurationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuthenticationMethodConfiguration authenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuthenticationMethodConfiguration using PUT. + /// + /// The AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuthenticationMethodConfiguration authenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodConfiguration authenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodRequest.cs index d7a8d69ea2e..b534aea121f 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthenticationMethodRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuthenticationMethod authenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuthenticationMethod using PUT. + /// + /// The AuthenticationMethod object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuthenticationMethod authenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuthenticationMethod using PUT and returns a object. + /// + /// The AuthenticationMethod object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethod authenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodTargetRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodTargetRequest.cs index 50dd21d8edb..78572606835 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodTargetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodTargetRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthenticationMethodTargetRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuthenticationMethodTarget authenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuthenticationMethodTarget using PUT. + /// + /// The AuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuthenticationMethodTarget authenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuthenticationMethodTarget using PUT and returns a object. + /// + /// The AuthenticationMethodTarget object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodTarget authenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodsPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodsPolicyRequest.cs index a79802549df..3c1bf6f0e1b 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodsPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthenticationMethodsPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthenticationMethodsPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuthenticationMethodsPolicy authenticationMethodsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuthenticationMethodsPolicy using PUT. + /// + /// The AuthenticationMethodsPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuthenticationMethodsPolicy authenticationMethodsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuthenticationMethodsPolicy using PUT and returns a object. + /// + /// The AuthenticationMethodsPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuthenticationMethodsPolicy authenticationMethodsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthenticationRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthenticationRequest.cs index 3352220a853..d15298009f3 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthenticationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthenticationRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthenticationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Authentication authenticationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Authentication using PUT. + /// + /// The Authentication object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Authentication authenticationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Authentication using PUT and returns a object. + /// + /// The Authentication object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Authentication authenticationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IAuthorizationPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IAuthorizationPolicyRequest.cs index f1a54122939..8b4e6e9f649 100644 --- a/src/Microsoft.Graph/Generated/requests/IAuthorizationPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IAuthorizationPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IAuthorizationPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(AuthorizationPolicy authorizationPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified AuthorizationPolicy using PUT. + /// + /// The AuthorizationPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(AuthorizationPolicy authorizationPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified AuthorizationPolicy using PUT and returns a object. + /// + /// The AuthorizationPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(AuthorizationPolicy authorizationPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IBaseItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IBaseItemRequest.cs index 6055514794e..a525ef2bd4b 100644 --- a/src/Microsoft.Graph/Generated/requests/IBaseItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IBaseItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IBaseItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(BaseItem baseItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified BaseItem using PUT. + /// + /// The BaseItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(BaseItem baseItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified BaseItem using PUT and returns a object. + /// + /// The BaseItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(BaseItem baseItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IBaseItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/IBaseItemVersionRequest.cs index 70f7aba3171..bdf7146c2d4 100644 --- a/src/Microsoft.Graph/Generated/requests/IBaseItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IBaseItemVersionRequest.cs @@ -82,6 +82,22 @@ public partial interface IBaseItemVersionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(BaseItemVersion baseItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified BaseItemVersion using PUT. + /// + /// The BaseItemVersion object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(BaseItemVersion baseItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified BaseItemVersion using PUT and returns a object. + /// + /// The BaseItemVersion object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(BaseItemVersion baseItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICalendarGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/ICalendarGroupRequest.cs index b363f68b13c..451f1aeaef2 100644 --- a/src/Microsoft.Graph/Generated/requests/ICalendarGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICalendarGroupRequest.cs @@ -82,6 +82,22 @@ public partial interface ICalendarGroupRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CalendarGroup calendarGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CalendarGroup using PUT. + /// + /// The CalendarGroup object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CalendarGroup calendarGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CalendarGroup using PUT and returns a object. + /// + /// The CalendarGroup object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CalendarGroup calendarGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICalendarPermissionRequest.cs b/src/Microsoft.Graph/Generated/requests/ICalendarPermissionRequest.cs index cc22115a207..e36a2e1557d 100644 --- a/src/Microsoft.Graph/Generated/requests/ICalendarPermissionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICalendarPermissionRequest.cs @@ -82,6 +82,22 @@ public partial interface ICalendarPermissionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CalendarPermission calendarPermissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CalendarPermission using PUT. + /// + /// The CalendarPermission object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CalendarPermission calendarPermissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CalendarPermission using PUT and returns a object. + /// + /// The CalendarPermission object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CalendarPermission calendarPermissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICalendarRequest.cs b/src/Microsoft.Graph/Generated/requests/ICalendarRequest.cs index 490505621b8..7b0f56fd35f 100644 --- a/src/Microsoft.Graph/Generated/requests/ICalendarRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICalendarRequest.cs @@ -82,6 +82,22 @@ public partial interface ICalendarRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Calendar calendarToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Calendar using PUT. + /// + /// The Calendar object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Calendar calendarToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Calendar using PUT and returns a object. + /// + /// The Calendar object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Calendar calendarToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICalendarSharingMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/ICalendarSharingMessageRequest.cs index 180b59c6ca1..444c0d2b5cd 100644 --- a/src/Microsoft.Graph/Generated/requests/ICalendarSharingMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICalendarSharingMessageRequest.cs @@ -82,6 +82,22 @@ public partial interface ICalendarSharingMessageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CalendarSharingMessage calendarSharingMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CalendarSharingMessage using PUT. + /// + /// The CalendarSharingMessage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CalendarSharingMessage calendarSharingMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CalendarSharingMessage using PUT and returns a object. + /// + /// The CalendarSharingMessage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CalendarSharingMessage calendarSharingMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICallRequest.cs b/src/Microsoft.Graph/Generated/requests/ICallRequest.cs index 35a3f358e6e..6124eb8a4ca 100644 --- a/src/Microsoft.Graph/Generated/requests/ICallRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICallRequest.cs @@ -82,6 +82,22 @@ public partial interface ICallRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Call callToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Call using PUT. + /// + /// The Call object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Call callToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Call using PUT and returns a object. + /// + /// The Call object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Call callToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICancelMediaProcessingOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ICancelMediaProcessingOperationRequest.cs index fbf014a71f1..256904178e0 100644 --- a/src/Microsoft.Graph/Generated/requests/ICancelMediaProcessingOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICancelMediaProcessingOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface ICancelMediaProcessingOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CancelMediaProcessingOperation cancelMediaProcessingOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CancelMediaProcessingOperation using PUT. + /// + /// The CancelMediaProcessingOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CancelMediaProcessingOperation cancelMediaProcessingOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CancelMediaProcessingOperation using PUT and returns a object. + /// + /// The CancelMediaProcessingOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CancelMediaProcessingOperation cancelMediaProcessingOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICertificateBasedAuthConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/ICertificateBasedAuthConfigurationRequest.cs index 1a0fac9a6f2..8439f43b846 100644 --- a/src/Microsoft.Graph/Generated/requests/ICertificateBasedAuthConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICertificateBasedAuthConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface ICertificateBasedAuthConfigurationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CertificateBasedAuthConfiguration certificateBasedAuthConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CertificateBasedAuthConfiguration using PUT. + /// + /// The CertificateBasedAuthConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CertificateBasedAuthConfiguration certificateBasedAuthConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CertificateBasedAuthConfiguration using PUT and returns a object. + /// + /// The CertificateBasedAuthConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CertificateBasedAuthConfiguration certificateBasedAuthConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IChangeTrackedEntityRequest.cs b/src/Microsoft.Graph/Generated/requests/IChangeTrackedEntityRequest.cs index e3c66301cd0..181de16600f 100644 --- a/src/Microsoft.Graph/Generated/requests/IChangeTrackedEntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IChangeTrackedEntityRequest.cs @@ -82,6 +82,22 @@ public partial interface IChangeTrackedEntityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ChangeTrackedEntity changeTrackedEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ChangeTrackedEntity using PUT. + /// + /// The ChangeTrackedEntity object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ChangeTrackedEntity changeTrackedEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ChangeTrackedEntity using PUT and returns a object. + /// + /// The ChangeTrackedEntity object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ChangeTrackedEntity changeTrackedEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IChannelRequest.cs b/src/Microsoft.Graph/Generated/requests/IChannelRequest.cs index a955a2fc03f..3f182695c05 100644 --- a/src/Microsoft.Graph/Generated/requests/IChannelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IChannelRequest.cs @@ -82,6 +82,22 @@ public partial interface IChannelRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Channel channelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Channel using PUT. + /// + /// The Channel object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Channel channelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Channel using PUT and returns a object. + /// + /// The Channel object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Channel channelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IChatMessageHostedContentRequest.cs b/src/Microsoft.Graph/Generated/requests/IChatMessageHostedContentRequest.cs index c895c0cd523..95bca691d05 100644 --- a/src/Microsoft.Graph/Generated/requests/IChatMessageHostedContentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IChatMessageHostedContentRequest.cs @@ -82,6 +82,22 @@ public partial interface IChatMessageHostedContentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ChatMessageHostedContent chatMessageHostedContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ChatMessageHostedContent using PUT. + /// + /// The ChatMessageHostedContent object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ChatMessageHostedContent chatMessageHostedContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ChatMessageHostedContent using PUT and returns a object. + /// + /// The ChatMessageHostedContent object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ChatMessageHostedContent chatMessageHostedContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IChatMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/IChatMessageRequest.cs index 9f3c3ef7443..5f316446ff1 100644 --- a/src/Microsoft.Graph/Generated/requests/IChatMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IChatMessageRequest.cs @@ -82,6 +82,22 @@ public partial interface IChatMessageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ChatMessage chatMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ChatMessage using PUT. + /// + /// The ChatMessage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ChatMessage chatMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ChatMessage using PUT and returns a object. + /// + /// The ChatMessage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ChatMessage chatMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IChatRequest.cs b/src/Microsoft.Graph/Generated/requests/IChatRequest.cs index 30a5927f474..d7a3c8e58de 100644 --- a/src/Microsoft.Graph/Generated/requests/IChatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IChatRequest.cs @@ -82,6 +82,22 @@ public partial interface IChatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Chat chatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Chat using PUT. + /// + /// The Chat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Chat chatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Chat using PUT and returns a object. + /// + /// The Chat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Chat chatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IClaimsMappingPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IClaimsMappingPolicyRequest.cs index 18305efea66..7c4c60aa514 100644 --- a/src/Microsoft.Graph/Generated/requests/IClaimsMappingPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IClaimsMappingPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IClaimsMappingPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ClaimsMappingPolicy claimsMappingPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ClaimsMappingPolicy using PUT. + /// + /// The ClaimsMappingPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ClaimsMappingPolicy claimsMappingPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ClaimsMappingPolicy using PUT and returns a object. + /// + /// The ClaimsMappingPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ClaimsMappingPolicy claimsMappingPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICloudCommunicationsRequest.cs b/src/Microsoft.Graph/Generated/requests/ICloudCommunicationsRequest.cs index 4c3cf65e37c..a111baa232f 100644 --- a/src/Microsoft.Graph/Generated/requests/ICloudCommunicationsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICloudCommunicationsRequest.cs @@ -82,6 +82,22 @@ public partial interface ICloudCommunicationsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CloudCommunications cloudCommunicationsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CloudCommunications using PUT. + /// + /// The CloudCommunications object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CloudCommunications cloudCommunicationsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CloudCommunications using PUT and returns a object. + /// + /// The CloudCommunications object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CloudCommunications cloudCommunicationsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IColumnDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/IColumnDefinitionRequest.cs index 523815b83ff..135985af92b 100644 --- a/src/Microsoft.Graph/Generated/requests/IColumnDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IColumnDefinitionRequest.cs @@ -82,6 +82,22 @@ public partial interface IColumnDefinitionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ColumnDefinition columnDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ColumnDefinition using PUT. + /// + /// The ColumnDefinition object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ColumnDefinition columnDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ColumnDefinition using PUT and returns a object. + /// + /// The ColumnDefinition object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ColumnDefinition columnDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IColumnLinkRequest.cs b/src/Microsoft.Graph/Generated/requests/IColumnLinkRequest.cs index d6b7736a017..d7ae84ba561 100644 --- a/src/Microsoft.Graph/Generated/requests/IColumnLinkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IColumnLinkRequest.cs @@ -82,6 +82,22 @@ public partial interface IColumnLinkRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ColumnLink columnLinkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ColumnLink using PUT. + /// + /// The ColumnLink object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ColumnLink columnLinkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ColumnLink using PUT and returns a object. + /// + /// The ColumnLink object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ColumnLink columnLinkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICommsOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ICommsOperationRequest.cs index 83d67297441..bf0286d5b3c 100644 --- a/src/Microsoft.Graph/Generated/requests/ICommsOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICommsOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface ICommsOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CommsOperation commsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CommsOperation using PUT. + /// + /// The CommsOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CommsOperation commsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CommsOperation using PUT and returns a object. + /// + /// The CommsOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CommsOperation commsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IComplianceManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/IComplianceManagementPartnerRequest.cs index 776ece55d2a..f4fccea9a9b 100644 --- a/src/Microsoft.Graph/Generated/requests/IComplianceManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IComplianceManagementPartnerRequest.cs @@ -82,6 +82,22 @@ public partial interface IComplianceManagementPartnerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ComplianceManagementPartner complianceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ComplianceManagementPartner using PUT. + /// + /// The ComplianceManagementPartner object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ComplianceManagementPartner complianceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ComplianceManagementPartner using PUT and returns a object. + /// + /// The ComplianceManagementPartner object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ComplianceManagementPartner complianceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IConditionalAccessPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IConditionalAccessPolicyRequest.cs index 4aed3dee9e3..19d92c9b3e9 100644 --- a/src/Microsoft.Graph/Generated/requests/IConditionalAccessPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IConditionalAccessPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IConditionalAccessPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ConditionalAccessPolicy conditionalAccessPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ConditionalAccessPolicy using PUT. + /// + /// The ConditionalAccessPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ConditionalAccessPolicy conditionalAccessPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ConditionalAccessPolicy using PUT and returns a object. + /// + /// The ConditionalAccessPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ConditionalAccessPolicy conditionalAccessPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IConditionalAccessRootRequest.cs b/src/Microsoft.Graph/Generated/requests/IConditionalAccessRootRequest.cs index 5663ed2c7f5..623db3e3147 100644 --- a/src/Microsoft.Graph/Generated/requests/IConditionalAccessRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IConditionalAccessRootRequest.cs @@ -82,6 +82,22 @@ public partial interface IConditionalAccessRootRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ConditionalAccessRoot conditionalAccessRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ConditionalAccessRoot using PUT. + /// + /// The ConditionalAccessRoot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ConditionalAccessRoot conditionalAccessRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ConditionalAccessRoot using PUT and returns a object. + /// + /// The ConditionalAccessRoot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ConditionalAccessRoot conditionalAccessRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IContactFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/IContactFolderRequest.cs index 0d6f368756f..d3f75905f6c 100644 --- a/src/Microsoft.Graph/Generated/requests/IContactFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IContactFolderRequest.cs @@ -82,6 +82,22 @@ public partial interface IContactFolderRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ContactFolder contactFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ContactFolder using PUT. + /// + /// The ContactFolder object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ContactFolder contactFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ContactFolder using PUT and returns a object. + /// + /// The ContactFolder object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ContactFolder contactFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IContactRequest.cs b/src/Microsoft.Graph/Generated/requests/IContactRequest.cs index c560c0117be..007842433e2 100644 --- a/src/Microsoft.Graph/Generated/requests/IContactRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IContactRequest.cs @@ -82,6 +82,22 @@ public partial interface IContactRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Contact contactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Contact using PUT. + /// + /// The Contact object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Contact contactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Contact using PUT and returns a object. + /// + /// The Contact object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Contact contactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IContentTypeRequest.cs b/src/Microsoft.Graph/Generated/requests/IContentTypeRequest.cs index 2fa1500e5d9..c6a4f836b18 100644 --- a/src/Microsoft.Graph/Generated/requests/IContentTypeRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IContentTypeRequest.cs @@ -82,6 +82,22 @@ public partial interface IContentTypeRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ContentType contentTypeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ContentType using PUT. + /// + /// The ContentType object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ContentType contentTypeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ContentType using PUT and returns a object. + /// + /// The ContentType object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ContentType contentTypeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IContractRequest.cs b/src/Microsoft.Graph/Generated/requests/IContractRequest.cs index f3d55a28697..0ccb0ff34dd 100644 --- a/src/Microsoft.Graph/Generated/requests/IContractRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IContractRequest.cs @@ -82,6 +82,22 @@ public partial interface IContractRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Contract contractToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Contract using PUT. + /// + /// The Contract object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Contract contractToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Contract using PUT and returns a object. + /// + /// The Contract object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Contract contractToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IConversationMemberRequest.cs b/src/Microsoft.Graph/Generated/requests/IConversationMemberRequest.cs index 16b74e4d1d8..99ebecaac43 100644 --- a/src/Microsoft.Graph/Generated/requests/IConversationMemberRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IConversationMemberRequest.cs @@ -82,6 +82,22 @@ public partial interface IConversationMemberRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ConversationMember conversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ConversationMember using PUT. + /// + /// The ConversationMember object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ConversationMember conversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ConversationMember using PUT and returns a object. + /// + /// The ConversationMember object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ConversationMember conversationMemberToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IConversationRequest.cs b/src/Microsoft.Graph/Generated/requests/IConversationRequest.cs index 8c7321b2c55..378455a2562 100644 --- a/src/Microsoft.Graph/Generated/requests/IConversationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IConversationRequest.cs @@ -82,6 +82,22 @@ public partial interface IConversationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Conversation conversationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Conversation using PUT. + /// + /// The Conversation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Conversation conversationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Conversation using PUT and returns a object. + /// + /// The Conversation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Conversation conversationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IConversationThreadRequest.cs b/src/Microsoft.Graph/Generated/requests/IConversationThreadRequest.cs index 62ac5dce307..020792365a7 100644 --- a/src/Microsoft.Graph/Generated/requests/IConversationThreadRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IConversationThreadRequest.cs @@ -82,6 +82,22 @@ public partial interface IConversationThreadRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ConversationThread conversationThreadToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ConversationThread using PUT. + /// + /// The ConversationThread object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ConversationThread conversationThreadToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ConversationThread using PUT and returns a object. + /// + /// The ConversationThread object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ConversationThread conversationThreadToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ICountryNamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/ICountryNamedLocationRequest.cs index 19489e6be90..b8d20592438 100644 --- a/src/Microsoft.Graph/Generated/requests/ICountryNamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ICountryNamedLocationRequest.cs @@ -82,6 +82,22 @@ public partial interface ICountryNamedLocationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(CountryNamedLocation countryNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified CountryNamedLocation using PUT. + /// + /// The CountryNamedLocation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(CountryNamedLocation countryNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified CountryNamedLocation using PUT and returns a object. + /// + /// The CountryNamedLocation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(CountryNamedLocation countryNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDataPolicyOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDataPolicyOperationRequest.cs index b2526e59e9f..591a54bca80 100644 --- a/src/Microsoft.Graph/Generated/requests/IDataPolicyOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDataPolicyOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDataPolicyOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DataPolicyOperation dataPolicyOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DataPolicyOperation using PUT. + /// + /// The DataPolicyOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DataPolicyOperation dataPolicyOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DataPolicyOperation using PUT and returns a object. + /// + /// The DataPolicyOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DataPolicyOperation dataPolicyOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDefaultManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IDefaultManagedAppProtectionRequest.cs index 7d6c75f35d2..3aba7be0685 100644 --- a/src/Microsoft.Graph/Generated/requests/IDefaultManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDefaultManagedAppProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IDefaultManagedAppProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DefaultManagedAppProtection defaultManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DefaultManagedAppProtection using PUT. + /// + /// The DefaultManagedAppProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DefaultManagedAppProtection defaultManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DefaultManagedAppProtection using PUT and returns a object. + /// + /// The DefaultManagedAppProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DefaultManagedAppProtection defaultManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDelegatedPermissionClassificationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDelegatedPermissionClassificationRequest.cs index 28f331e1b0c..846baaf23d3 100644 --- a/src/Microsoft.Graph/Generated/requests/IDelegatedPermissionClassificationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDelegatedPermissionClassificationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDelegatedPermissionClassificationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DelegatedPermissionClassification delegatedPermissionClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DelegatedPermissionClassification using PUT. + /// + /// The DelegatedPermissionClassification object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DelegatedPermissionClassification delegatedPermissionClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DelegatedPermissionClassification using PUT and returns a object. + /// + /// The DelegatedPermissionClassification object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DelegatedPermissionClassification delegatedPermissionClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDetectedAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IDetectedAppRequest.cs index 37402695716..d45968d95c3 100644 --- a/src/Microsoft.Graph/Generated/requests/IDetectedAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDetectedAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IDetectedAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DetectedApp detectedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DetectedApp using PUT. + /// + /// The DetectedApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DetectedApp detectedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DetectedApp using PUT and returns a object. + /// + /// The DetectedApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DetectedApp detectedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleAssignmentRequest.cs index a33a0f60b5c..7b16eed100d 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceAndAppManagementRoleAssignmentRequest : IBaseReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceAndAppManagementRoleAssignment deviceAndAppManagementRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceAndAppManagementRoleAssignment using PUT. + /// + /// The DeviceAndAppManagementRoleAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceAndAppManagementRoleAssignment deviceAndAppManagementRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceAndAppManagementRoleAssignment using PUT and returns a object. + /// + /// The DeviceAndAppManagementRoleAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceAndAppManagementRoleAssignment deviceAndAppManagementRoleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleDefinitionRequest.cs index f1218e182b4..d9f3bc2043e 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceAndAppManagementRoleDefinitionRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceAndAppManagementRoleDefinitionRequest : IBaseReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceAndAppManagementRoleDefinition deviceAndAppManagementRoleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceAndAppManagementRoleDefinition using PUT. + /// + /// The DeviceAndAppManagementRoleDefinition object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceAndAppManagementRoleDefinition deviceAndAppManagementRoleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceAndAppManagementRoleDefinition using PUT and returns a object. + /// + /// The DeviceAndAppManagementRoleDefinition object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceAndAppManagementRoleDefinition deviceAndAppManagementRoleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceAppManagementRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceAppManagementRequest.cs index 4af86dcd0cd..51906da77f7 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceAppManagementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceAppManagementRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceAppManagementRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceAppManagement deviceAppManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceAppManagement using PUT. + /// + /// The DeviceAppManagement object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceAppManagement deviceAppManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceAppManagement using PUT and returns a object. + /// + /// The DeviceAppManagement object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceAppManagement deviceAppManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCategoryRequest.cs index ab427213176..d8fd00c941f 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCategoryRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCategoryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCategory deviceCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCategory using PUT. + /// + /// The DeviceCategory object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCategory deviceCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCategory using PUT and returns a object. + /// + /// The DeviceCategory object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCategory deviceCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceActionItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceActionItemRequest.cs index 9253c22fa66..c5f62d538a4 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceActionItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceActionItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceActionItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceActionItem deviceComplianceActionItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceActionItem using PUT. + /// + /// The DeviceComplianceActionItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceActionItem deviceComplianceActionItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceActionItem using PUT and returns a object. + /// + /// The DeviceComplianceActionItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceActionItem deviceComplianceActionItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceOverviewRequest.cs index 484d2575128..b6362ece223 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceOverviewRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceDeviceOverviewRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceDeviceOverview deviceComplianceDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceDeviceOverview using PUT. + /// + /// The DeviceComplianceDeviceOverview object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceDeviceOverview deviceComplianceDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceDeviceOverview using PUT and returns a object. + /// + /// The DeviceComplianceDeviceOverview object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceDeviceOverview deviceComplianceDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceStatusRequest.cs index 9190f9172ae..013b3bd3d61 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceDeviceStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceDeviceStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceDeviceStatus deviceComplianceDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceDeviceStatus using PUT. + /// + /// The DeviceComplianceDeviceStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceDeviceStatus deviceComplianceDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceDeviceStatus using PUT and returns a object. + /// + /// The DeviceComplianceDeviceStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceDeviceStatus deviceComplianceDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyAssignmentRequest.cs index 82fe86c0ddb..3286d6e2897 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCompliancePolicyAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCompliancePolicyAssignment deviceCompliancePolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCompliancePolicyAssignment using PUT. + /// + /// The DeviceCompliancePolicyAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyAssignment deviceCompliancePolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCompliancePolicyAssignment using PUT and returns a object. + /// + /// The DeviceCompliancePolicyAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyAssignment deviceCompliancePolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyDeviceStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyDeviceStateSummaryRequest.cs index a6f8dda3adf..c2448bd887c 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyDeviceStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyDeviceStateSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCompliancePolicyDeviceStateSummaryRequest : IBas /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCompliancePolicyDeviceStateSummary deviceCompliancePolicyDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCompliancePolicyDeviceStateSummary using PUT. + /// + /// The DeviceCompliancePolicyDeviceStateSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyDeviceStateSummary deviceCompliancePolicyDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCompliancePolicyDeviceStateSummary using PUT and returns a object. + /// + /// The DeviceCompliancePolicyDeviceStateSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyDeviceStateSummary deviceCompliancePolicyDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyRequest.cs index 96fd8e4b332..8ec778dba8e 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCompliancePolicy deviceCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCompliancePolicy using PUT. + /// + /// The DeviceCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicy deviceCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCompliancePolicy using PUT and returns a object. + /// + /// The DeviceCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicy deviceCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicySettingStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicySettingStateSummaryRequest.cs index 521b38aa8ce..4af615fa58b 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicySettingStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicySettingStateSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCompliancePolicySettingStateSummaryRequest : IBa /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCompliancePolicySettingStateSummary deviceCompliancePolicySettingStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCompliancePolicySettingStateSummary using PUT. + /// + /// The DeviceCompliancePolicySettingStateSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicySettingStateSummary deviceCompliancePolicySettingStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCompliancePolicySettingStateSummary using PUT and returns a object. + /// + /// The DeviceCompliancePolicySettingStateSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicySettingStateSummary deviceCompliancePolicySettingStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyStateRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyStateRequest.cs index 473493f0de0..0d6215b53c4 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceCompliancePolicyStateRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceCompliancePolicyStateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceCompliancePolicyState deviceCompliancePolicyStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceCompliancePolicyState using PUT. + /// + /// The DeviceCompliancePolicyState object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceCompliancePolicyState deviceCompliancePolicyStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceCompliancePolicyState using PUT and returns a object. + /// + /// The DeviceCompliancePolicyState object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceCompliancePolicyState deviceCompliancePolicyStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceScheduledActionForRuleRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceScheduledActionForRuleRequest.cs index 1670d725d4a..f7e21fab3f6 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceScheduledActionForRuleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceScheduledActionForRuleRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceScheduledActionForRuleRequest : IBaseR /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceScheduledActionForRule deviceComplianceScheduledActionForRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceScheduledActionForRule using PUT. + /// + /// The DeviceComplianceScheduledActionForRule object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceScheduledActionForRule deviceComplianceScheduledActionForRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceScheduledActionForRule using PUT and returns a object. + /// + /// The DeviceComplianceScheduledActionForRule object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceScheduledActionForRule deviceComplianceScheduledActionForRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceSettingStateRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceSettingStateRequest.cs index bf81fd70068..67a0376ac2b 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceSettingStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceSettingStateRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceSettingStateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceSettingState deviceComplianceSettingStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceSettingState using PUT. + /// + /// The DeviceComplianceSettingState object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceSettingState deviceComplianceSettingStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceSettingState using PUT and returns a object. + /// + /// The DeviceComplianceSettingState object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceSettingState deviceComplianceSettingStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserOverviewRequest.cs index 0e2c73998f9..5026d3ba126 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserOverviewRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceUserOverviewRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceUserOverview deviceComplianceUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceUserOverview using PUT. + /// + /// The DeviceComplianceUserOverview object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceUserOverview deviceComplianceUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceUserOverview using PUT and returns a object. + /// + /// The DeviceComplianceUserOverview object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceUserOverview deviceComplianceUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserStatusRequest.cs index 4ffb1ecd4f4..aadeffa75d7 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceComplianceUserStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceComplianceUserStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceComplianceUserStatus deviceComplianceUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceComplianceUserStatus using PUT. + /// + /// The DeviceComplianceUserStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceComplianceUserStatus deviceComplianceUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceComplianceUserStatus using PUT and returns a object. + /// + /// The DeviceComplianceUserStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceComplianceUserStatus deviceComplianceUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationAssignmentRequest.cs index 672ef20e449..f369c37f06f 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationAssignment deviceConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationAssignment using PUT. + /// + /// The DeviceConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationAssignment deviceConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationAssignment using PUT and returns a object. + /// + /// The DeviceConfigurationAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationAssignment deviceConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceOverviewRequest.cs index dceabc94064..f26767700d8 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceOverviewRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationDeviceOverviewRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationDeviceOverview deviceConfigurationDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationDeviceOverview using PUT. + /// + /// The DeviceConfigurationDeviceOverview object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceOverview deviceConfigurationDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationDeviceOverview using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceOverview object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceOverview deviceConfigurationDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStateSummaryRequest.cs index 54be448bc3c..41d70e26efc 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStateSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationDeviceStateSummaryRequest : IBaseRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationDeviceStateSummary deviceConfigurationDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationDeviceStateSummary using PUT. + /// + /// The DeviceConfigurationDeviceStateSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceStateSummary deviceConfigurationDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationDeviceStateSummary using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceStateSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceStateSummary deviceConfigurationDeviceStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStatusRequest.cs index 2177e5b77df..b560f01f591 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationDeviceStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationDeviceStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationDeviceStatus deviceConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationDeviceStatus using PUT. + /// + /// The DeviceConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationDeviceStatus deviceConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationDeviceStatus using PUT and returns a object. + /// + /// The DeviceConfigurationDeviceStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationDeviceStatus deviceConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationRequest.cs index 87d1ee189d5..f135fdd18bd 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfiguration deviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfiguration using PUT. + /// + /// The DeviceConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfiguration deviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfiguration using PUT and returns a object. + /// + /// The DeviceConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfiguration deviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationStateRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationStateRequest.cs index 6f822364297..14eb65dd9eb 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationStateRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationStateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationState deviceConfigurationStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationState using PUT. + /// + /// The DeviceConfigurationState object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationState deviceConfigurationStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationState using PUT and returns a object. + /// + /// The DeviceConfigurationState object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationState deviceConfigurationStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserOverviewRequest.cs index ff273895095..140d1e8ed59 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserOverviewRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationUserOverviewRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationUserOverview deviceConfigurationUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationUserOverview using PUT. + /// + /// The DeviceConfigurationUserOverview object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationUserOverview deviceConfigurationUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationUserOverview using PUT and returns a object. + /// + /// The DeviceConfigurationUserOverview object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationUserOverview deviceConfigurationUserOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserStatusRequest.cs index e8844ff0876..1d610baab7a 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceConfigurationUserStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceConfigurationUserStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceConfigurationUserStatus deviceConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceConfigurationUserStatus using PUT. + /// + /// The DeviceConfigurationUserStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceConfigurationUserStatus deviceConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceConfigurationUserStatus using PUT and returns a object. + /// + /// The DeviceConfigurationUserStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceConfigurationUserStatus deviceConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentConfigurationRequest.cs index 3229cd79209..0f5628c1ddf 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceEnrollmentConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceEnrollmentConfiguration deviceEnrollmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceEnrollmentConfiguration using PUT. + /// + /// The DeviceEnrollmentConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceEnrollmentConfiguration deviceEnrollmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceEnrollmentConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentConfiguration deviceEnrollmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentLimitConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentLimitConfigurationRequest.cs index 5803c35f397..08a2f932170 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentLimitConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentLimitConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceEnrollmentLimitConfigurationRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceEnrollmentLimitConfiguration deviceEnrollmentLimitConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceEnrollmentLimitConfiguration using PUT. + /// + /// The DeviceEnrollmentLimitConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceEnrollmentLimitConfiguration deviceEnrollmentLimitConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceEnrollmentLimitConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentLimitConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentLimitConfiguration deviceEnrollmentLimitConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs index a163165a566..3a5632586f5 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentPlatformRestrictionsConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceEnrollmentPlatformRestrictionsConfigurationReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceEnrollmentPlatformRestrictionsConfiguration deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceEnrollmentPlatformRestrictionsConfiguration using PUT. + /// + /// The DeviceEnrollmentPlatformRestrictionsConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceEnrollmentPlatformRestrictionsConfiguration deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceEnrollmentPlatformRestrictionsConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentPlatformRestrictionsConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentPlatformRestrictionsConfiguration deviceEnrollmentPlatformRestrictionsConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs index a58220f85c9..575db2fc118 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceEnrollmentWindowsHelloForBusinessConfigurationRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceEnrollmentWindowsHelloForBusinessConfiguration deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceEnrollmentWindowsHelloForBusinessConfiguration using PUT. + /// + /// The DeviceEnrollmentWindowsHelloForBusinessConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceEnrollmentWindowsHelloForBusinessConfiguration deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceEnrollmentWindowsHelloForBusinessConfiguration using PUT and returns a object. + /// + /// The DeviceEnrollmentWindowsHelloForBusinessConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceEnrollmentWindowsHelloForBusinessConfiguration deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceInstallStateRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceInstallStateRequest.cs index 593980e9e5d..6e757f638d2 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceInstallStateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceInstallStateRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceInstallStateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceInstallState deviceInstallStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceInstallState using PUT. + /// + /// The DeviceInstallState object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceInstallState deviceInstallStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceInstallState using PUT and returns a object. + /// + /// The DeviceInstallState object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceInstallState deviceInstallStateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceManagementExchangeConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceManagementExchangeConnectorRequest.cs index 7531389444d..8f36c9caf7b 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceManagementExchangeConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceManagementExchangeConnectorRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceManagementExchangeConnectorRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceManagementExchangeConnector deviceManagementExchangeConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceManagementExchangeConnector using PUT. + /// + /// The DeviceManagementExchangeConnector object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceManagementExchangeConnector deviceManagementExchangeConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceManagementExchangeConnector using PUT and returns a object. + /// + /// The DeviceManagementExchangeConnector object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementExchangeConnector deviceManagementExchangeConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceManagementPartnerRequest.cs index 81009ee0987..36da765aea6 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceManagementPartnerRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceManagementPartnerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceManagementPartner deviceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceManagementPartner using PUT. + /// + /// The DeviceManagementPartner object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceManagementPartner deviceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceManagementPartner using PUT and returns a object. + /// + /// The DeviceManagementPartner object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementPartner deviceManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceManagementRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceManagementRequest.cs index 9fecbc70669..73b19d54f2f 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceManagementRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceManagementRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceManagementRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceManagement deviceManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceManagement using PUT. + /// + /// The DeviceManagement object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceManagement deviceManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceManagement using PUT and returns a object. + /// + /// The DeviceManagement object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceManagement deviceManagementToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceManagementTroubleshootingEventRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceManagementTroubleshootingEventRequest.cs index 1a8e428f2cb..0c15d529396 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceManagementTroubleshootingEventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceManagementTroubleshootingEventRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceManagementTroubleshootingEventRequest : IBaseReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DeviceManagementTroubleshootingEvent deviceManagementTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DeviceManagementTroubleshootingEvent using PUT. + /// + /// The DeviceManagementTroubleshootingEvent object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DeviceManagementTroubleshootingEvent deviceManagementTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DeviceManagementTroubleshootingEvent using PUT and returns a object. + /// + /// The DeviceManagementTroubleshootingEvent object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DeviceManagementTroubleshootingEvent deviceManagementTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDeviceRequest.cs b/src/Microsoft.Graph/Generated/requests/IDeviceRequest.cs index f15204ed0f0..1676761286d 100644 --- a/src/Microsoft.Graph/Generated/requests/IDeviceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDeviceRequest.cs @@ -82,6 +82,22 @@ public partial interface IDeviceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Device deviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Device using PUT. + /// + /// The Device object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Device deviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Device using PUT and returns a object. + /// + /// The Device object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Device deviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryAuditRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryAuditRequest.cs index ae46dd10508..860b1d18ef2 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryAuditRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryAuditRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryAuditRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DirectoryAudit directoryAuditToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DirectoryAudit using PUT. + /// + /// The DirectoryAudit object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DirectoryAudit directoryAuditToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DirectoryAudit using PUT and returns a object. + /// + /// The DirectoryAudit object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DirectoryAudit directoryAuditToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryObjectPartnerReferenceRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryObjectPartnerReferenceRequest.cs index 06541bb27ff..756cbf423a6 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryObjectPartnerReferenceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryObjectPartnerReferenceRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryObjectPartnerReferenceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DirectoryObjectPartnerReference directoryObjectPartnerReferenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DirectoryObjectPartnerReference using PUT. + /// + /// The DirectoryObjectPartnerReference object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DirectoryObjectPartnerReference directoryObjectPartnerReferenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DirectoryObjectPartnerReference using PUT and returns a object. + /// + /// The DirectoryObjectPartnerReference object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DirectoryObjectPartnerReference directoryObjectPartnerReferenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryObjectRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryObjectRequest.cs index eb56badf66d..f7627354fb6 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryObjectRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryObjectRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryObjectRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DirectoryObject directoryObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DirectoryObject using PUT. + /// + /// The DirectoryObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DirectoryObject directoryObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DirectoryObject using PUT and returns a object. + /// + /// The DirectoryObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DirectoryObject directoryObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryRequest.cs index 06494a26829..eec602b3cc0 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Directory directoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Directory using PUT. + /// + /// The Directory object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Directory directoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Directory using PUT and returns a object. + /// + /// The Directory object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Directory directoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryRoleRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryRoleRequest.cs index 6a84eff4e73..67e4acbe74b 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryRoleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryRoleRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryRoleRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DirectoryRole directoryRoleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DirectoryRole using PUT. + /// + /// The DirectoryRole object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DirectoryRole directoryRoleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DirectoryRole using PUT and returns a object. + /// + /// The DirectoryRole object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DirectoryRole directoryRoleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDirectoryRoleTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/IDirectoryRoleTemplateRequest.cs index fd9abc4f6d5..d1624c12390 100644 --- a/src/Microsoft.Graph/Generated/requests/IDirectoryRoleTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDirectoryRoleTemplateRequest.cs @@ -82,6 +82,22 @@ public partial interface IDirectoryRoleTemplateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DirectoryRoleTemplate directoryRoleTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DirectoryRoleTemplate using PUT. + /// + /// The DirectoryRoleTemplate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DirectoryRoleTemplate directoryRoleTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DirectoryRoleTemplate using PUT and returns a object. + /// + /// The DirectoryRoleTemplate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DirectoryRoleTemplate directoryRoleTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsCnameRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsCnameRecordRequest.cs index 38c7b9a7f23..a4d4c483d81 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsCnameRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsCnameRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsCnameRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsCnameRecord domainDnsCnameRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsCnameRecord using PUT. + /// + /// The DomainDnsCnameRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsCnameRecord domainDnsCnameRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsCnameRecord using PUT and returns a object. + /// + /// The DomainDnsCnameRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsCnameRecord domainDnsCnameRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsMxRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsMxRecordRequest.cs index b9e241ac9ac..746629ac67e 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsMxRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsMxRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsMxRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsMxRecord domainDnsMxRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsMxRecord using PUT. + /// + /// The DomainDnsMxRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsMxRecord domainDnsMxRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsMxRecord using PUT and returns a object. + /// + /// The DomainDnsMxRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsMxRecord domainDnsMxRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsRecordRequest.cs index 578fee8117b..c8728f74ce0 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsRecord domainDnsRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsRecord using PUT. + /// + /// The DomainDnsRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsRecord domainDnsRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsRecord using PUT and returns a object. + /// + /// The DomainDnsRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsRecord domainDnsRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsSrvRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsSrvRecordRequest.cs index 37ad983f7e3..7a5c499f2cc 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsSrvRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsSrvRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsSrvRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsSrvRecord domainDnsSrvRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsSrvRecord using PUT. + /// + /// The DomainDnsSrvRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsSrvRecord domainDnsSrvRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsSrvRecord using PUT and returns a object. + /// + /// The DomainDnsSrvRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsSrvRecord domainDnsSrvRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsTxtRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsTxtRecordRequest.cs index 7181b720648..3ad9376fdf2 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsTxtRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsTxtRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsTxtRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsTxtRecord domainDnsTxtRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsTxtRecord using PUT. + /// + /// The DomainDnsTxtRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsTxtRecord domainDnsTxtRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsTxtRecord using PUT and returns a object. + /// + /// The DomainDnsTxtRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsTxtRecord domainDnsTxtRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainDnsUnavailableRecordRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainDnsUnavailableRecordRequest.cs index b9d02bb1bf8..fcdc58b7baf 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainDnsUnavailableRecordRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainDnsUnavailableRecordRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainDnsUnavailableRecordRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DomainDnsUnavailableRecord domainDnsUnavailableRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DomainDnsUnavailableRecord using PUT. + /// + /// The DomainDnsUnavailableRecord object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DomainDnsUnavailableRecord domainDnsUnavailableRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DomainDnsUnavailableRecord using PUT and returns a object. + /// + /// The DomainDnsUnavailableRecord object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DomainDnsUnavailableRecord domainDnsUnavailableRecordToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDomainRequest.cs b/src/Microsoft.Graph/Generated/requests/IDomainRequest.cs index fc9123e1900..c5f9acc906c 100644 --- a/src/Microsoft.Graph/Generated/requests/IDomainRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDomainRequest.cs @@ -82,6 +82,22 @@ public partial interface IDomainRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Domain domainToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Domain using PUT. + /// + /// The Domain object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Domain domainToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Domain using PUT and returns a object. + /// + /// The Domain object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Domain domainToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDriveItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IDriveItemRequest.cs index d3ec3429f37..fda6b049c98 100644 --- a/src/Microsoft.Graph/Generated/requests/IDriveItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDriveItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IDriveItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DriveItem driveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DriveItem using PUT. + /// + /// The DriveItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DriveItem driveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DriveItem using PUT and returns a object. + /// + /// The DriveItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DriveItem driveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDriveItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/IDriveItemVersionRequest.cs index 4b0f3788453..6b5d5864f83 100644 --- a/src/Microsoft.Graph/Generated/requests/IDriveItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDriveItemVersionRequest.cs @@ -82,6 +82,22 @@ public partial interface IDriveItemVersionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(DriveItemVersion driveItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified DriveItemVersion using PUT. + /// + /// The DriveItemVersion object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(DriveItemVersion driveItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified DriveItemVersion using PUT and returns a object. + /// + /// The DriveItemVersion object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(DriveItemVersion driveItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IDriveRequest.cs b/src/Microsoft.Graph/Generated/requests/IDriveRequest.cs index c1ddf41cddc..5b9240ae4bd 100644 --- a/src/Microsoft.Graph/Generated/requests/IDriveRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IDriveRequest.cs @@ -82,6 +82,22 @@ public partial interface IDriveRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Drive driveToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Drive using PUT. + /// + /// The Drive object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Drive driveToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Drive using PUT and returns a object. + /// + /// The Drive object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Drive driveToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEBookInstallSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IEBookInstallSummaryRequest.cs index 8994dc32c08..3224872a2c6 100644 --- a/src/Microsoft.Graph/Generated/requests/IEBookInstallSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEBookInstallSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IEBookInstallSummaryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EBookInstallSummary eBookInstallSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EBookInstallSummary using PUT. + /// + /// The EBookInstallSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EBookInstallSummary eBookInstallSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EBookInstallSummary using PUT and returns a object. + /// + /// The EBookInstallSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EBookInstallSummary eBookInstallSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEditionUpgradeConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IEditionUpgradeConfigurationRequest.cs index b3d3e1e2fc2..818b0656ee8 100644 --- a/src/Microsoft.Graph/Generated/requests/IEditionUpgradeConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEditionUpgradeConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IEditionUpgradeConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EditionUpgradeConfiguration editionUpgradeConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EditionUpgradeConfiguration using PUT. + /// + /// The EditionUpgradeConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EditionUpgradeConfiguration editionUpgradeConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EditionUpgradeConfiguration using PUT and returns a object. + /// + /// The EditionUpgradeConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EditionUpgradeConfiguration editionUpgradeConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEducationClassRequest.cs b/src/Microsoft.Graph/Generated/requests/IEducationClassRequest.cs index f73909372b5..908cee115c5 100644 --- a/src/Microsoft.Graph/Generated/requests/IEducationClassRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEducationClassRequest.cs @@ -82,6 +82,22 @@ public partial interface IEducationClassRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EducationClass educationClassToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EducationClass using PUT. + /// + /// The EducationClass object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EducationClass educationClassToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EducationClass using PUT and returns a object. + /// + /// The EducationClass object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EducationClass educationClassToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEducationOrganizationRequest.cs b/src/Microsoft.Graph/Generated/requests/IEducationOrganizationRequest.cs index a309d1a226e..17834dc9a8e 100644 --- a/src/Microsoft.Graph/Generated/requests/IEducationOrganizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEducationOrganizationRequest.cs @@ -82,6 +82,22 @@ public partial interface IEducationOrganizationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EducationOrganization educationOrganizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EducationOrganization using PUT. + /// + /// The EducationOrganization object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EducationOrganization educationOrganizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EducationOrganization using PUT and returns a object. + /// + /// The EducationOrganization object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EducationOrganization educationOrganizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEducationRootRequest.cs b/src/Microsoft.Graph/Generated/requests/IEducationRootRequest.cs index f82eb1a36ed..d1849995356 100644 --- a/src/Microsoft.Graph/Generated/requests/IEducationRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEducationRootRequest.cs @@ -82,6 +82,22 @@ public partial interface IEducationRootRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EducationRoot educationRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EducationRoot using PUT. + /// + /// The EducationRoot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EducationRoot educationRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EducationRoot using PUT and returns a object. + /// + /// The EducationRoot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EducationRoot educationRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEducationSchoolRequest.cs b/src/Microsoft.Graph/Generated/requests/IEducationSchoolRequest.cs index b1d1d019bd8..3c42a0f3dc3 100644 --- a/src/Microsoft.Graph/Generated/requests/IEducationSchoolRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEducationSchoolRequest.cs @@ -82,6 +82,22 @@ public partial interface IEducationSchoolRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EducationSchool educationSchoolToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EducationSchool using PUT. + /// + /// The EducationSchool object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EducationSchool educationSchoolToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EducationSchool using PUT and returns a object. + /// + /// The EducationSchool object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EducationSchool educationSchoolToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEducationUserRequest.cs b/src/Microsoft.Graph/Generated/requests/IEducationUserRequest.cs index 17e6cfa39cb..e118ab46451 100644 --- a/src/Microsoft.Graph/Generated/requests/IEducationUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEducationUserRequest.cs @@ -82,6 +82,22 @@ public partial interface IEducationUserRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EducationUser educationUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EducationUser using PUT. + /// + /// The EducationUser object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EducationUser educationUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EducationUser using PUT and returns a object. + /// + /// The EducationUser object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EducationUser educationUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEmailAuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IEmailAuthenticationMethodConfigurationRequest.cs index d1c29aa1f1f..f0416ac94e1 100644 --- a/src/Microsoft.Graph/Generated/requests/IEmailAuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEmailAuthenticationMethodConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IEmailAuthenticationMethodConfigurationRequest : IBaseR /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EmailAuthenticationMethodConfiguration emailAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EmailAuthenticationMethodConfiguration using PUT. + /// + /// The EmailAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EmailAuthenticationMethodConfiguration emailAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EmailAuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The EmailAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EmailAuthenticationMethodConfiguration emailAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEmailFileAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IEmailFileAssessmentRequestRequest.cs index 72ca6c37719..5bc33de3b7f 100644 --- a/src/Microsoft.Graph/Generated/requests/IEmailFileAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEmailFileAssessmentRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IEmailFileAssessmentRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EmailFileAssessmentRequestObject emailFileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EmailFileAssessmentRequestObject using PUT. + /// + /// The EmailFileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EmailFileAssessmentRequestObject emailFileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EmailFileAssessmentRequestObject using PUT and returns a object. + /// + /// The EmailFileAssessmentRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EmailFileAssessmentRequestObject emailFileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEndpointRequest.cs b/src/Microsoft.Graph/Generated/requests/IEndpointRequest.cs index 62dc41ad8a6..27e70efc0c4 100644 --- a/src/Microsoft.Graph/Generated/requests/IEndpointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEndpointRequest.cs @@ -82,6 +82,22 @@ public partial interface IEndpointRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Endpoint endpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Endpoint using PUT. + /// + /// The Endpoint object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Endpoint endpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Endpoint using PUT and returns a object. + /// + /// The Endpoint object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Endpoint endpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEnrollmentConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IEnrollmentConfigurationAssignmentRequest.cs index 79834e81cc6..94e66dfe8f1 100644 --- a/src/Microsoft.Graph/Generated/requests/IEnrollmentConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEnrollmentConfigurationAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IEnrollmentConfigurationAssignmentRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EnrollmentConfigurationAssignment enrollmentConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EnrollmentConfigurationAssignment using PUT. + /// + /// The EnrollmentConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EnrollmentConfigurationAssignment enrollmentConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EnrollmentConfigurationAssignment using PUT and returns a object. + /// + /// The EnrollmentConfigurationAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EnrollmentConfigurationAssignment enrollmentConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEnrollmentTroubleshootingEventRequest.cs b/src/Microsoft.Graph/Generated/requests/IEnrollmentTroubleshootingEventRequest.cs index e4dc777eb85..63cba60aca5 100644 --- a/src/Microsoft.Graph/Generated/requests/IEnrollmentTroubleshootingEventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEnrollmentTroubleshootingEventRequest.cs @@ -82,6 +82,22 @@ public partial interface IEnrollmentTroubleshootingEventRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EnrollmentTroubleshootingEvent using PUT. + /// + /// The EnrollmentTroubleshootingEvent object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EnrollmentTroubleshootingEvent using PUT and returns a object. + /// + /// The EnrollmentTroubleshootingEvent object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EnrollmentTroubleshootingEvent enrollmentTroubleshootingEventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEntityRequest.cs b/src/Microsoft.Graph/Generated/requests/IEntityRequest.cs index d0a499c70b1..6f46f370087 100644 --- a/src/Microsoft.Graph/Generated/requests/IEntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEntityRequest.cs @@ -82,6 +82,22 @@ public partial interface IEntityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Entity entityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Entity using PUT. + /// + /// The Entity object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Entity entityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Entity using PUT and returns a object. + /// + /// The Entity object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Entity entityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEventMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/IEventMessageRequest.cs index 544946c119e..3b246d6cbcb 100644 --- a/src/Microsoft.Graph/Generated/requests/IEventMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEventMessageRequest.cs @@ -82,6 +82,22 @@ public partial interface IEventMessageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EventMessage eventMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EventMessage using PUT. + /// + /// The EventMessage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EventMessage eventMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EventMessage using PUT and returns a object. + /// + /// The EventMessage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EventMessage eventMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEventMessageRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IEventMessageRequestRequest.cs index 57825b61a16..10b12b008e8 100644 --- a/src/Microsoft.Graph/Generated/requests/IEventMessageRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEventMessageRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IEventMessageRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EventMessageRequestObject eventMessageRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EventMessageRequestObject using PUT. + /// + /// The EventMessageRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EventMessageRequestObject eventMessageRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EventMessageRequestObject using PUT and returns a object. + /// + /// The EventMessageRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EventMessageRequestObject eventMessageRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEventMessageResponseRequest.cs b/src/Microsoft.Graph/Generated/requests/IEventMessageResponseRequest.cs index 22a43a9944b..8d3028be4c7 100644 --- a/src/Microsoft.Graph/Generated/requests/IEventMessageResponseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEventMessageResponseRequest.cs @@ -82,6 +82,22 @@ public partial interface IEventMessageResponseRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(EventMessageResponse eventMessageResponseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified EventMessageResponse using PUT. + /// + /// The EventMessageResponse object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(EventMessageResponse eventMessageResponseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified EventMessageResponse using PUT and returns a object. + /// + /// The EventMessageResponse object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(EventMessageResponse eventMessageResponseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IEventRequest.cs b/src/Microsoft.Graph/Generated/requests/IEventRequest.cs index 1a1dc3e86a8..3f03e9ee601 100644 --- a/src/Microsoft.Graph/Generated/requests/IEventRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IEventRequest.cs @@ -82,6 +82,22 @@ public partial interface IEventRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Event eventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Event using PUT. + /// + /// The Event object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Event eventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Event using PUT and returns a object. + /// + /// The Event object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Event eventToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IExtensionPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/IExtensionPropertyRequest.cs index bbb3bc6a2fa..d93948ea467 100644 --- a/src/Microsoft.Graph/Generated/requests/IExtensionPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IExtensionPropertyRequest.cs @@ -82,6 +82,22 @@ public partial interface IExtensionPropertyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ExtensionProperty extensionPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ExtensionProperty using PUT. + /// + /// The ExtensionProperty object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ExtensionProperty extensionPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ExtensionProperty using PUT and returns a object. + /// + /// The ExtensionProperty object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ExtensionProperty extensionPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/IExtensionRequest.cs index a6d7b239503..08db7a3dfc9 100644 --- a/src/Microsoft.Graph/Generated/requests/IExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IExtensionRequest.cs @@ -82,6 +82,22 @@ public partial interface IExtensionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Extension extensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Extension using PUT. + /// + /// The Extension object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Extension extensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Extension using PUT and returns a object. + /// + /// The Extension object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Extension extensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodConfigurationRequest.cs index bc7128e8e20..b0622723682 100644 --- a/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IFido2AuthenticationMethodConfigurationRequest : IBaseR /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Fido2AuthenticationMethodConfiguration fido2AuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Fido2AuthenticationMethodConfiguration using PUT. + /// + /// The Fido2AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Fido2AuthenticationMethodConfiguration fido2AuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Fido2AuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The Fido2AuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Fido2AuthenticationMethodConfiguration fido2AuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodRequest.cs index 029bed2c00d..9f8909c6798 100644 --- a/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IFido2AuthenticationMethodRequest.cs @@ -82,6 +82,22 @@ public partial interface IFido2AuthenticationMethodRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Fido2AuthenticationMethod fido2AuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Fido2AuthenticationMethod using PUT. + /// + /// The Fido2AuthenticationMethod object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Fido2AuthenticationMethod fido2AuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Fido2AuthenticationMethod using PUT and returns a object. + /// + /// The Fido2AuthenticationMethod object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Fido2AuthenticationMethod fido2AuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IFieldValueSetRequest.cs b/src/Microsoft.Graph/Generated/requests/IFieldValueSetRequest.cs index d17791957e7..7e99c96c666 100644 --- a/src/Microsoft.Graph/Generated/requests/IFieldValueSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IFieldValueSetRequest.cs @@ -82,6 +82,22 @@ public partial interface IFieldValueSetRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(FieldValueSet fieldValueSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified FieldValueSet using PUT. + /// + /// The FieldValueSet object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(FieldValueSet fieldValueSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified FieldValueSet using PUT and returns a object. + /// + /// The FieldValueSet object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(FieldValueSet fieldValueSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IFileAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IFileAssessmentRequestRequest.cs index adea15bbb03..fb62484a0ba 100644 --- a/src/Microsoft.Graph/Generated/requests/IFileAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IFileAssessmentRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IFileAssessmentRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(FileAssessmentRequestObject fileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified FileAssessmentRequestObject using PUT. + /// + /// The FileAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(FileAssessmentRequestObject fileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified FileAssessmentRequestObject using PUT and returns a object. + /// + /// The FileAssessmentRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(FileAssessmentRequestObject fileAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IFileAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IFileAttachmentRequest.cs index e5e169439ec..636dd4281a9 100644 --- a/src/Microsoft.Graph/Generated/requests/IFileAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IFileAttachmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IFileAttachmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(FileAttachment fileAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified FileAttachment using PUT. + /// + /// The FileAttachment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(FileAttachment fileAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified FileAttachment using PUT and returns a object. + /// + /// The FileAttachment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(FileAttachment fileAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IGroupLifecyclePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IGroupLifecyclePolicyRequest.cs index 1c8330f0477..92ee156b622 100644 --- a/src/Microsoft.Graph/Generated/requests/IGroupLifecyclePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IGroupLifecyclePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IGroupLifecyclePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(GroupLifecyclePolicy groupLifecyclePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified GroupLifecyclePolicy using PUT. + /// + /// The GroupLifecyclePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(GroupLifecyclePolicy groupLifecyclePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified GroupLifecyclePolicy using PUT and returns a object. + /// + /// The GroupLifecyclePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(GroupLifecyclePolicy groupLifecyclePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/IGroupRequest.cs index 61512206de8..11c6ec9e4a1 100644 --- a/src/Microsoft.Graph/Generated/requests/IGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IGroupRequest.cs @@ -82,6 +82,22 @@ public partial interface IGroupRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Group groupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Group using PUT. + /// + /// The Group object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Group groupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Group using PUT and returns a object. + /// + /// The Group object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Group groupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IGroupSettingRequest.cs b/src/Microsoft.Graph/Generated/requests/IGroupSettingRequest.cs index 86d34bb5af9..9359e0c908e 100644 --- a/src/Microsoft.Graph/Generated/requests/IGroupSettingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IGroupSettingRequest.cs @@ -82,6 +82,22 @@ public partial interface IGroupSettingRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(GroupSetting groupSettingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified GroupSetting using PUT. + /// + /// The GroupSetting object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(GroupSetting groupSettingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified GroupSetting using PUT and returns a object. + /// + /// The GroupSetting object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(GroupSetting groupSettingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IGroupSettingTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/IGroupSettingTemplateRequest.cs index 49cd0b88c61..741daa55aa9 100644 --- a/src/Microsoft.Graph/Generated/requests/IGroupSettingTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IGroupSettingTemplateRequest.cs @@ -82,6 +82,22 @@ public partial interface IGroupSettingTemplateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(GroupSettingTemplate groupSettingTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified GroupSettingTemplate using PUT. + /// + /// The GroupSettingTemplate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(GroupSettingTemplate groupSettingTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified GroupSettingTemplate using PUT and returns a object. + /// + /// The GroupSettingTemplate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(GroupSettingTemplate groupSettingTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IHomeRealmDiscoveryPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IHomeRealmDiscoveryPolicyRequest.cs index edd4fb9cfb3..cbc15b7f7d8 100644 --- a/src/Microsoft.Graph/Generated/requests/IHomeRealmDiscoveryPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IHomeRealmDiscoveryPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IHomeRealmDiscoveryPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(HomeRealmDiscoveryPolicy homeRealmDiscoveryPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified HomeRealmDiscoveryPolicy using PUT. + /// + /// The HomeRealmDiscoveryPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(HomeRealmDiscoveryPolicy homeRealmDiscoveryPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified HomeRealmDiscoveryPolicy using PUT and returns a object. + /// + /// The HomeRealmDiscoveryPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(HomeRealmDiscoveryPolicy homeRealmDiscoveryPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIdentityContainerRequest.cs b/src/Microsoft.Graph/Generated/requests/IIdentityContainerRequest.cs index 58f45d487be..9f5e71e2138 100644 --- a/src/Microsoft.Graph/Generated/requests/IIdentityContainerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIdentityContainerRequest.cs @@ -82,6 +82,22 @@ public partial interface IIdentityContainerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IdentityContainer identityContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IdentityContainer using PUT. + /// + /// The IdentityContainer object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IdentityContainer identityContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IdentityContainer using PUT and returns a object. + /// + /// The IdentityContainer object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IdentityContainer identityContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIdentityGovernanceRequest.cs b/src/Microsoft.Graph/Generated/requests/IIdentityGovernanceRequest.cs index cf7d6322873..d664f054b7e 100644 --- a/src/Microsoft.Graph/Generated/requests/IIdentityGovernanceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIdentityGovernanceRequest.cs @@ -82,6 +82,22 @@ public partial interface IIdentityGovernanceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IdentityGovernance identityGovernanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IdentityGovernance using PUT. + /// + /// The IdentityGovernance object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IdentityGovernance identityGovernanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IdentityGovernance using PUT and returns a object. + /// + /// The IdentityGovernance object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IdentityGovernance identityGovernanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIdentityProviderRequest.cs b/src/Microsoft.Graph/Generated/requests/IIdentityProviderRequest.cs index fbfd9a7dc68..991502f8009 100644 --- a/src/Microsoft.Graph/Generated/requests/IIdentityProviderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIdentityProviderRequest.cs @@ -82,6 +82,22 @@ public partial interface IIdentityProviderRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IdentityProvider identityProviderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IdentityProvider using PUT. + /// + /// The IdentityProvider object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IdentityProvider identityProviderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IdentityProvider using PUT and returns a object. + /// + /// The IdentityProvider object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IdentityProvider identityProviderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIdentitySecurityDefaultsEnforcementPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IIdentitySecurityDefaultsEnforcementPolicyRequest.cs index 678ff2a111a..c387216b72e 100644 --- a/src/Microsoft.Graph/Generated/requests/IIdentitySecurityDefaultsEnforcementPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIdentitySecurityDefaultsEnforcementPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IIdentitySecurityDefaultsEnforcementPolicyRequest : IBa /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IdentitySecurityDefaultsEnforcementPolicy identitySecurityDefaultsEnforcementPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IdentitySecurityDefaultsEnforcementPolicy using PUT. + /// + /// The IdentitySecurityDefaultsEnforcementPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IdentitySecurityDefaultsEnforcementPolicy identitySecurityDefaultsEnforcementPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IdentitySecurityDefaultsEnforcementPolicy using PUT and returns a object. + /// + /// The IdentitySecurityDefaultsEnforcementPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IdentitySecurityDefaultsEnforcementPolicy identitySecurityDefaultsEnforcementPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IInferenceClassificationOverrideRequest.cs b/src/Microsoft.Graph/Generated/requests/IInferenceClassificationOverrideRequest.cs index 3100ff8fa24..20793582fe0 100644 --- a/src/Microsoft.Graph/Generated/requests/IInferenceClassificationOverrideRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IInferenceClassificationOverrideRequest.cs @@ -82,6 +82,22 @@ public partial interface IInferenceClassificationOverrideRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(InferenceClassificationOverride inferenceClassificationOverrideToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified InferenceClassificationOverride using PUT. + /// + /// The InferenceClassificationOverride object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(InferenceClassificationOverride inferenceClassificationOverrideToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified InferenceClassificationOverride using PUT and returns a object. + /// + /// The InferenceClassificationOverride object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(InferenceClassificationOverride inferenceClassificationOverrideToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IInferenceClassificationRequest.cs b/src/Microsoft.Graph/Generated/requests/IInferenceClassificationRequest.cs index 7ab1a4f7862..69b63b9c22f 100644 --- a/src/Microsoft.Graph/Generated/requests/IInferenceClassificationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IInferenceClassificationRequest.cs @@ -82,6 +82,22 @@ public partial interface IInferenceClassificationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(InferenceClassification inferenceClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified InferenceClassification using PUT. + /// + /// The InferenceClassification object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(InferenceClassification inferenceClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified InferenceClassification using PUT and returns a object. + /// + /// The InferenceClassification object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(InferenceClassification inferenceClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IInformationProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IInformationProtectionRequest.cs index 2aec84ff5c6..109370a26f6 100644 --- a/src/Microsoft.Graph/Generated/requests/IInformationProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IInformationProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IInformationProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(InformationProtection informationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified InformationProtection using PUT. + /// + /// The InformationProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(InformationProtection informationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified InformationProtection using PUT and returns a object. + /// + /// The InformationProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(InformationProtection informationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IInvitationRequest.cs b/src/Microsoft.Graph/Generated/requests/IInvitationRequest.cs index cda1d0087a4..6db6bdcdefa 100644 --- a/src/Microsoft.Graph/Generated/requests/IInvitationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IInvitationRequest.cs @@ -82,6 +82,22 @@ public partial interface IInvitationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Invitation invitationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Invitation using PUT. + /// + /// The Invitation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Invitation invitationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Invitation using PUT and returns a object. + /// + /// The Invitation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Invitation invitationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IInviteParticipantsOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IInviteParticipantsOperationRequest.cs index 1ce8be1aa25..56d3f2120c5 100644 --- a/src/Microsoft.Graph/Generated/requests/IInviteParticipantsOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IInviteParticipantsOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IInviteParticipantsOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified InviteParticipantsOperation using PUT. + /// + /// The InviteParticipantsOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified InviteParticipantsOperation using PUT and returns a object. + /// + /// The InviteParticipantsOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosCertificateProfileRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosCertificateProfileRequest.cs index 8a9a3fa288e..75d8a2ebb20 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosCertificateProfileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosCertificateProfileRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosCertificateProfileRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosCertificateProfile iosCertificateProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosCertificateProfile using PUT. + /// + /// The IosCertificateProfile object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosCertificateProfile iosCertificateProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosCertificateProfile using PUT and returns a object. + /// + /// The IosCertificateProfile object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosCertificateProfile iosCertificateProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosCompliancePolicyRequest.cs index 7ecf36a8582..b689394a97d 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosCompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosCompliancePolicy iosCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosCompliancePolicy using PUT. + /// + /// The IosCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosCompliancePolicy iosCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosCompliancePolicy using PUT and returns a object. + /// + /// The IosCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosCompliancePolicy iosCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosCustomConfigurationRequest.cs index 17d67848579..b3c04bdb34e 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosCustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosCustomConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosCustomConfiguration iosCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosCustomConfiguration using PUT. + /// + /// The IosCustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosCustomConfiguration iosCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosCustomConfiguration using PUT and returns a object. + /// + /// The IosCustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosCustomConfiguration iosCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosDeviceFeaturesConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosDeviceFeaturesConfigurationRequest.cs index bbce674d412..0dfc170b991 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosDeviceFeaturesConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosDeviceFeaturesConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosDeviceFeaturesConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosDeviceFeaturesConfiguration iosDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosDeviceFeaturesConfiguration using PUT. + /// + /// The IosDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosDeviceFeaturesConfiguration iosDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosDeviceFeaturesConfiguration using PUT and returns a object. + /// + /// The IosDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosDeviceFeaturesConfiguration iosDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosGeneralDeviceConfigurationRequest.cs index 3c85ba25716..c5ea5aad4c5 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosGeneralDeviceConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosGeneralDeviceConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosGeneralDeviceConfiguration iosGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosGeneralDeviceConfiguration using PUT. + /// + /// The IosGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosGeneralDeviceConfiguration iosGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The IosGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosGeneralDeviceConfiguration iosGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosLobAppRequest.cs index 1ea73a604db..f2bf1da140a 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosLobApp iosLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosLobApp using PUT. + /// + /// The IosLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosLobApp iosLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosLobApp using PUT and returns a object. + /// + /// The IosLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosLobApp iosLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosManagedAppProtectionRequest.cs index a8f3ec3aa09..6bd122ee0e3 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosManagedAppProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosManagedAppProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosManagedAppProtection iosManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosManagedAppProtection using PUT. + /// + /// The IosManagedAppProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosManagedAppProtection iosManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosManagedAppProtection using PUT and returns a object. + /// + /// The IosManagedAppProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosManagedAppProtection iosManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosManagedAppRegistrationRequest.cs index 88513dde4a3..5277fa0425c 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosManagedAppRegistrationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosManagedAppRegistrationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosManagedAppRegistration iosManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosManagedAppRegistration using PUT. + /// + /// The IosManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosManagedAppRegistration iosManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosManagedAppRegistration using PUT and returns a object. + /// + /// The IosManagedAppRegistration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosManagedAppRegistration iosManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosMobileAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosMobileAppConfigurationRequest.cs index c9f068fc5e8..a7055b7d53d 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosMobileAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosMobileAppConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosMobileAppConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosMobileAppConfiguration iosMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosMobileAppConfiguration using PUT. + /// + /// The IosMobileAppConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosMobileAppConfiguration iosMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosMobileAppConfiguration using PUT and returns a object. + /// + /// The IosMobileAppConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosMobileAppConfiguration iosMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosStoreAppRequest.cs index f276d332427..2d15e5c4b6d 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosStoreAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosStoreAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosStoreApp iosStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosStoreApp using PUT. + /// + /// The IosStoreApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosStoreApp iosStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosStoreApp using PUT and returns a object. + /// + /// The IosStoreApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosStoreApp iosStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosUpdateConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosUpdateConfigurationRequest.cs index 9a91498ed2a..432fc34dba5 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosUpdateConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosUpdateConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosUpdateConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosUpdateConfiguration iosUpdateConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosUpdateConfiguration using PUT. + /// + /// The IosUpdateConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosUpdateConfiguration iosUpdateConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosUpdateConfiguration using PUT and returns a object. + /// + /// The IosUpdateConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosUpdateConfiguration iosUpdateConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosUpdateDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosUpdateDeviceStatusRequest.cs index 0dee316577f..c93ce965ad9 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosUpdateDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosUpdateDeviceStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosUpdateDeviceStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosUpdateDeviceStatus iosUpdateDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosUpdateDeviceStatus using PUT. + /// + /// The IosUpdateDeviceStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosUpdateDeviceStatus iosUpdateDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosUpdateDeviceStatus using PUT and returns a object. + /// + /// The IosUpdateDeviceStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosUpdateDeviceStatus iosUpdateDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosVppAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosVppAppRequest.cs index 5a708ca0c3c..847a2b268bb 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosVppAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosVppAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosVppAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosVppApp iosVppAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosVppApp using PUT. + /// + /// The IosVppApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosVppApp iosVppAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosVppApp using PUT and returns a object. + /// + /// The IosVppApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosVppApp iosVppAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosVppEBookAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosVppEBookAssignmentRequest.cs index 53f5b81c48c..fd1a652f08f 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosVppEBookAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosVppEBookAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosVppEBookAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosVppEBookAssignment iosVppEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosVppEBookAssignment using PUT. + /// + /// The IosVppEBookAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosVppEBookAssignment iosVppEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosVppEBookAssignment using PUT and returns a object. + /// + /// The IosVppEBookAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosVppEBookAssignment iosVppEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIosVppEBookRequest.cs b/src/Microsoft.Graph/Generated/requests/IIosVppEBookRequest.cs index d1c61cb9cd5..485e1f5af26 100644 --- a/src/Microsoft.Graph/Generated/requests/IIosVppEBookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIosVppEBookRequest.cs @@ -82,6 +82,22 @@ public partial interface IIosVppEBookRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IosVppEBook iosVppEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IosVppEBook using PUT. + /// + /// The IosVppEBook object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IosVppEBook iosVppEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IosVppEBook using PUT and returns a object. + /// + /// The IosVppEBook object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IosVppEBook iosVppEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IIpNamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/IIpNamedLocationRequest.cs index 29f886da57b..506d0426582 100644 --- a/src/Microsoft.Graph/Generated/requests/IIpNamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IIpNamedLocationRequest.cs @@ -82,6 +82,22 @@ public partial interface IIpNamedLocationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(IpNamedLocation ipNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified IpNamedLocation using PUT. + /// + /// The IpNamedLocation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(IpNamedLocation ipNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified IpNamedLocation using PUT and returns a object. + /// + /// The IpNamedLocation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(IpNamedLocation ipNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IItemActivityRequest.cs b/src/Microsoft.Graph/Generated/requests/IItemActivityRequest.cs index 2a4af4570f2..9ad518711bb 100644 --- a/src/Microsoft.Graph/Generated/requests/IItemActivityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IItemActivityRequest.cs @@ -82,6 +82,22 @@ public partial interface IItemActivityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ItemActivity itemActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ItemActivity using PUT. + /// + /// The ItemActivity object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ItemActivity itemActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ItemActivity using PUT and returns a object. + /// + /// The ItemActivity object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ItemActivity itemActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IItemActivityStatRequest.cs b/src/Microsoft.Graph/Generated/requests/IItemActivityStatRequest.cs index c214c2864a3..74350dccaf6 100644 --- a/src/Microsoft.Graph/Generated/requests/IItemActivityStatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IItemActivityStatRequest.cs @@ -82,6 +82,22 @@ public partial interface IItemActivityStatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ItemActivityStat itemActivityStatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ItemActivityStat using PUT. + /// + /// The ItemActivityStat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ItemActivityStat itemActivityStatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ItemActivityStat using PUT and returns a object. + /// + /// The ItemActivityStat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ItemActivityStat itemActivityStatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IItemAnalyticsRequest.cs b/src/Microsoft.Graph/Generated/requests/IItemAnalyticsRequest.cs index 82c7db17d10..2a43cd93487 100644 --- a/src/Microsoft.Graph/Generated/requests/IItemAnalyticsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IItemAnalyticsRequest.cs @@ -82,6 +82,22 @@ public partial interface IItemAnalyticsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ItemAnalytics itemAnalyticsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ItemAnalytics using PUT. + /// + /// The ItemAnalytics object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ItemAnalytics itemAnalyticsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ItemAnalytics using PUT and returns a object. + /// + /// The ItemAnalytics object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ItemAnalytics itemAnalyticsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IItemAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IItemAttachmentRequest.cs index dd22ba7656a..0846a6144f0 100644 --- a/src/Microsoft.Graph/Generated/requests/IItemAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IItemAttachmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IItemAttachmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ItemAttachment itemAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ItemAttachment using PUT. + /// + /// The ItemAttachment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ItemAttachment itemAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ItemAttachment using PUT and returns a object. + /// + /// The ItemAttachment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ItemAttachment itemAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ILicenseDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/ILicenseDetailsRequest.cs index 3fa11f08f70..0c6d5327609 100644 --- a/src/Microsoft.Graph/Generated/requests/ILicenseDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ILicenseDetailsRequest.cs @@ -82,6 +82,22 @@ public partial interface ILicenseDetailsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified LicenseDetails using PUT. + /// + /// The LicenseDetails object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified LicenseDetails using PUT and returns a object. + /// + /// The LicenseDetails object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ILinkedResourceRequest.cs b/src/Microsoft.Graph/Generated/requests/ILinkedResourceRequest.cs index f14f32076ca..abe0a3d8559 100644 --- a/src/Microsoft.Graph/Generated/requests/ILinkedResourceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ILinkedResourceRequest.cs @@ -82,6 +82,22 @@ public partial interface ILinkedResourceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(LinkedResource linkedResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified LinkedResource using PUT. + /// + /// The LinkedResource object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(LinkedResource linkedResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified LinkedResource using PUT and returns a object. + /// + /// The LinkedResource object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(LinkedResource linkedResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IListItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IListItemRequest.cs index ffb83000805..699d7a6fb1d 100644 --- a/src/Microsoft.Graph/Generated/requests/IListItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IListItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IListItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ListItem listItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ListItem using PUT. + /// + /// The ListItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ListItem listItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ListItem using PUT and returns a object. + /// + /// The ListItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ListItem listItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IListItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/IListItemVersionRequest.cs index 5c37024d379..cd497877de8 100644 --- a/src/Microsoft.Graph/Generated/requests/IListItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IListItemVersionRequest.cs @@ -82,6 +82,22 @@ public partial interface IListItemVersionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ListItemVersion listItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ListItemVersion using PUT. + /// + /// The ListItemVersion object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ListItemVersion listItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ListItemVersion using PUT and returns a object. + /// + /// The ListItemVersion object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ListItemVersion listItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IListRequest.cs b/src/Microsoft.Graph/Generated/requests/IListRequest.cs index ad5858947c6..94b0078eec7 100644 --- a/src/Microsoft.Graph/Generated/requests/IListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IListRequest.cs @@ -82,6 +82,22 @@ public partial interface IListRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(List listToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified List using PUT. + /// + /// The List object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(List listToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified List using PUT and returns a object. + /// + /// The List object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(List listToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ILocalizedNotificationMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/ILocalizedNotificationMessageRequest.cs index f02e9f65feb..b975c912aaa 100644 --- a/src/Microsoft.Graph/Generated/requests/ILocalizedNotificationMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ILocalizedNotificationMessageRequest.cs @@ -82,6 +82,22 @@ public partial interface ILocalizedNotificationMessageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(LocalizedNotificationMessage localizedNotificationMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified LocalizedNotificationMessage using PUT. + /// + /// The LocalizedNotificationMessage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(LocalizedNotificationMessage localizedNotificationMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified LocalizedNotificationMessage using PUT and returns a object. + /// + /// The LocalizedNotificationMessage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(LocalizedNotificationMessage localizedNotificationMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMacOSCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IMacOSCompliancePolicyRequest.cs index e9a87aaf0f1..9dcea692839 100644 --- a/src/Microsoft.Graph/Generated/requests/IMacOSCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMacOSCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IMacOSCompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MacOSCompliancePolicy macOSCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MacOSCompliancePolicy using PUT. + /// + /// The MacOSCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MacOSCompliancePolicy macOSCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MacOSCompliancePolicy using PUT and returns a object. + /// + /// The MacOSCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MacOSCompliancePolicy macOSCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMacOSCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IMacOSCustomConfigurationRequest.cs index 90e3c6430f4..4bb8111d062 100644 --- a/src/Microsoft.Graph/Generated/requests/IMacOSCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMacOSCustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IMacOSCustomConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MacOSCustomConfiguration macOSCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MacOSCustomConfiguration using PUT. + /// + /// The MacOSCustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MacOSCustomConfiguration macOSCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MacOSCustomConfiguration using PUT and returns a object. + /// + /// The MacOSCustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MacOSCustomConfiguration macOSCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMacOSDeviceFeaturesConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IMacOSDeviceFeaturesConfigurationRequest.cs index 81115bb4c0c..fa168954b15 100644 --- a/src/Microsoft.Graph/Generated/requests/IMacOSDeviceFeaturesConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMacOSDeviceFeaturesConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IMacOSDeviceFeaturesConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MacOSDeviceFeaturesConfiguration macOSDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MacOSDeviceFeaturesConfiguration using PUT. + /// + /// The MacOSDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MacOSDeviceFeaturesConfiguration macOSDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MacOSDeviceFeaturesConfiguration using PUT and returns a object. + /// + /// The MacOSDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MacOSDeviceFeaturesConfiguration macOSDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMacOSGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IMacOSGeneralDeviceConfigurationRequest.cs index 21658b772af..ca155452a12 100644 --- a/src/Microsoft.Graph/Generated/requests/IMacOSGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMacOSGeneralDeviceConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IMacOSGeneralDeviceConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MacOSGeneralDeviceConfiguration macOSGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MacOSGeneralDeviceConfiguration using PUT. + /// + /// The MacOSGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MacOSGeneralDeviceConfiguration macOSGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MacOSGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The MacOSGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MacOSGeneralDeviceConfiguration macOSGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMacOSOfficeSuiteAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IMacOSOfficeSuiteAppRequest.cs index 822f436fc64..54cdf7ed209 100644 --- a/src/Microsoft.Graph/Generated/requests/IMacOSOfficeSuiteAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMacOSOfficeSuiteAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IMacOSOfficeSuiteAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MacOSOfficeSuiteApp macOSOfficeSuiteAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MacOSOfficeSuiteApp using PUT. + /// + /// The MacOSOfficeSuiteApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MacOSOfficeSuiteApp macOSOfficeSuiteAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MacOSOfficeSuiteApp using PUT and returns a object. + /// + /// The MacOSOfficeSuiteApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MacOSOfficeSuiteApp macOSOfficeSuiteAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMailAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IMailAssessmentRequestRequest.cs index 773e599b198..3bcbd53d8ec 100644 --- a/src/Microsoft.Graph/Generated/requests/IMailAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMailAssessmentRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IMailAssessmentRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MailAssessmentRequestObject mailAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MailAssessmentRequestObject using PUT. + /// + /// The MailAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MailAssessmentRequestObject mailAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MailAssessmentRequestObject using PUT and returns a object. + /// + /// The MailAssessmentRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MailAssessmentRequestObject mailAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMailFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/IMailFolderRequest.cs index 27372af415a..fa6d9330a15 100644 --- a/src/Microsoft.Graph/Generated/requests/IMailFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMailFolderRequest.cs @@ -82,6 +82,22 @@ public partial interface IMailFolderRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MailFolder mailFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MailFolder using PUT. + /// + /// The MailFolder object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MailFolder mailFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MailFolder using PUT and returns a object. + /// + /// The MailFolder object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MailFolder mailFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMailSearchFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/IMailSearchFolderRequest.cs index 4335ad47f4d..5ee935a28cc 100644 --- a/src/Microsoft.Graph/Generated/requests/IMailSearchFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMailSearchFolderRequest.cs @@ -82,6 +82,22 @@ public partial interface IMailSearchFolderRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MailSearchFolder mailSearchFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MailSearchFolder using PUT. + /// + /// The MailSearchFolder object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MailSearchFolder mailSearchFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MailSearchFolder using PUT and returns a object. + /// + /// The MailSearchFolder object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MailSearchFolder mailSearchFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAndroidLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAndroidLobAppRequest.cs index 8d4f9af1ad5..706534e4b30 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAndroidLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAndroidLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAndroidLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAndroidLobApp managedAndroidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAndroidLobApp using PUT. + /// + /// The ManagedAndroidLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAndroidLobApp managedAndroidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAndroidLobApp using PUT and returns a object. + /// + /// The ManagedAndroidLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAndroidLobApp managedAndroidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAndroidStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAndroidStoreAppRequest.cs index 3f41ccc998b..b2b843f477c 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAndroidStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAndroidStoreAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAndroidStoreAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAndroidStoreApp managedAndroidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAndroidStoreApp using PUT. + /// + /// The ManagedAndroidStoreApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAndroidStoreApp managedAndroidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAndroidStoreApp using PUT and returns a object. + /// + /// The ManagedAndroidStoreApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAndroidStoreApp managedAndroidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppConfigurationRequest.cs index 102da1db25b..d3707b39b87 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppConfiguration managedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppConfiguration using PUT. + /// + /// The ManagedAppConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppConfiguration managedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppConfiguration using PUT and returns a object. + /// + /// The ManagedAppConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppConfiguration managedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppOperationRequest.cs index 98fdd164b14..70efa16da1e 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppOperation managedAppOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppOperation using PUT. + /// + /// The ManagedAppOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppOperation managedAppOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppOperation using PUT and returns a object. + /// + /// The ManagedAppOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppOperation managedAppOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyDeploymentSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyDeploymentSummaryRequest.cs index 4a7ae5e26dd..d1855289d3d 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyDeploymentSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyDeploymentSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppPolicyDeploymentSummaryRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppPolicyDeploymentSummary managedAppPolicyDeploymentSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppPolicyDeploymentSummary using PUT. + /// + /// The ManagedAppPolicyDeploymentSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppPolicyDeploymentSummary managedAppPolicyDeploymentSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppPolicyDeploymentSummary using PUT and returns a object. + /// + /// The ManagedAppPolicyDeploymentSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppPolicyDeploymentSummary managedAppPolicyDeploymentSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyRequest.cs index f8457a519a0..f534ff00d7a 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppPolicy managedAppPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppPolicy using PUT. + /// + /// The ManagedAppPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppPolicy managedAppPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppPolicy using PUT and returns a object. + /// + /// The ManagedAppPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppPolicy managedAppPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppProtectionRequest.cs index d262b7fa807..cb6f521b699 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppProtection managedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppProtection using PUT. + /// + /// The ManagedAppProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppProtection managedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppProtection using PUT and returns a object. + /// + /// The ManagedAppProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppProtection managedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppRegistrationRequest.cs index 080dc3ddae9..e05f0cbee2a 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppRegistrationRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppRegistrationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppRegistration managedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppRegistration using PUT. + /// + /// The ManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppRegistration managedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppRegistration using PUT and returns a object. + /// + /// The ManagedAppRegistration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppRegistration managedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppRequest.cs index 376d0f2405b..9d1da2287e0 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedApp managedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedApp using PUT. + /// + /// The ManagedApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedApp managedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedApp using PUT and returns a object. + /// + /// The ManagedApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedApp managedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRawRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRawRequest.cs index b2ef44633e3..049dd480b15 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRawRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRawRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppStatusRawRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppStatusRaw managedAppStatusRawToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppStatusRaw using PUT. + /// + /// The ManagedAppStatusRaw object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppStatusRaw managedAppStatusRawToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppStatusRaw using PUT and returns a object. + /// + /// The ManagedAppStatusRaw object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppStatusRaw managedAppStatusRawToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRequest.cs index 71c686fafc0..e3a7dce1a71 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedAppStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedAppStatusRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedAppStatus managedAppStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedAppStatus using PUT. + /// + /// The ManagedAppStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedAppStatus managedAppStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedAppStatus using PUT and returns a object. + /// + /// The ManagedAppStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedAppStatus managedAppStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationAssignmentRequest.cs index c3f027b6907..ebb5d8612c6 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationAssignmentRequest : /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfigurationAssignment managedDeviceMobileAppConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationAssignment using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationAssignment managedDeviceMobileAppConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationAssignment using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationAssignment managedDeviceMobileAppConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs index f99c0f3b71a..65ff3a4e006 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationDeviceStatusRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfigurationDeviceStatus managedDeviceMobileAppConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceStatus using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationDeviceStatus managedDeviceMobileAppConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceStatus using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationDeviceStatus managedDeviceMobileAppConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs index bf8963fd2b6..d3102d10bc7 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationDeviceSummaryReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfigurationDeviceSummary managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceSummary using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationDeviceSummary managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceSummary using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationDeviceSummary managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationRequest.cs index ce28c2332fa..8cd1fd18f60 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationRequest : IBaseRequ /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfiguration managedDeviceMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfiguration using PUT. + /// + /// The ManagedDeviceMobileAppConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfiguration managedDeviceMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfiguration using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfiguration managedDeviceMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserStatusRequest.cs index 282f3eec6a5..6726ef81954 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationUserStatusRequest : /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfigurationUserStatus managedDeviceMobileAppConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserStatus using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationUserStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationUserStatus managedDeviceMobileAppConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserStatus using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationUserStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationUserStatus managedDeviceMobileAppConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserSummaryRequest.cs index fb5282e6de7..55e2ddd795b 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceMobileAppConfigurationUserSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceMobileAppConfigurationUserSummaryRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceMobileAppConfigurationUserSummary managedDeviceMobileAppConfigurationUserSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserSummary using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationUserSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationUserSummary managedDeviceMobileAppConfigurationUserSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserSummary using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationUserSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationUserSummary managedDeviceMobileAppConfigurationUserSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceOverviewRequest.cs index b92a147c705..c02ae055b0c 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceOverviewRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceOverviewRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDeviceOverview managedDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDeviceOverview using PUT. + /// + /// The ManagedDeviceOverview object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDeviceOverview managedDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDeviceOverview using PUT and returns a object. + /// + /// The ManagedDeviceOverview object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceOverview managedDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedDeviceRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedDeviceRequest.cs index 41eec687444..5508fc19da8 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedDeviceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedDeviceRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedDeviceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedDevice managedDeviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedDevice using PUT. + /// + /// The ManagedDevice object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedDevice managedDeviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedDevice using PUT and returns a object. + /// + /// The ManagedDevice object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedDevice managedDeviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedEBookAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedEBookAssignmentRequest.cs index c18e7adb315..ca366e71517 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedEBookAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedEBookAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedEBookAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedEBookAssignment managedEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedEBookAssignment using PUT. + /// + /// The ManagedEBookAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedEBookAssignment managedEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedEBookAssignment using PUT and returns a object. + /// + /// The ManagedEBookAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedEBookAssignment managedEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedEBookRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedEBookRequest.cs index 6466fb04ead..988e0b6d512 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedEBookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedEBookRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedEBookRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedEBook managedEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedEBook using PUT. + /// + /// The ManagedEBook object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedEBook managedEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedEBook using PUT and returns a object. + /// + /// The ManagedEBook object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedEBook managedEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedIOSLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedIOSLobAppRequest.cs index f09c900e99f..7864b90d9b0 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedIOSLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedIOSLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedIOSLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedIOSLobApp managedIOSLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedIOSLobApp using PUT. + /// + /// The ManagedIOSLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedIOSLobApp managedIOSLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedIOSLobApp using PUT and returns a object. + /// + /// The ManagedIOSLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedIOSLobApp managedIOSLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedIOSStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedIOSStoreAppRequest.cs index c2926f5bebc..65d376f8f28 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedIOSStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedIOSStoreAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedIOSStoreAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedIOSStoreApp managedIOSStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedIOSStoreApp using PUT. + /// + /// The ManagedIOSStoreApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedIOSStoreApp managedIOSStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedIOSStoreApp using PUT and returns a object. + /// + /// The ManagedIOSStoreApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedIOSStoreApp managedIOSStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedMobileAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedMobileAppRequest.cs index 2dc014f819b..d9078cc1023 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedMobileAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedMobileAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedMobileAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedMobileApp managedMobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedMobileApp using PUT. + /// + /// The ManagedMobileApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedMobileApp managedMobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedMobileApp using PUT and returns a object. + /// + /// The ManagedMobileApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedMobileApp managedMobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IManagedMobileLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IManagedMobileLobAppRequest.cs index c51afe9f751..8f6a1eaa6e6 100644 --- a/src/Microsoft.Graph/Generated/requests/IManagedMobileLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IManagedMobileLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IManagedMobileLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ManagedMobileLobApp managedMobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ManagedMobileLobApp using PUT. + /// + /// The ManagedMobileLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ManagedMobileLobApp managedMobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ManagedMobileLobApp using PUT and returns a object. + /// + /// The ManagedMobileLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ManagedMobileLobApp managedMobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMdmWindowsInformationProtectionPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IMdmWindowsInformationProtectionPolicyRequest.cs index 8df3855f09c..04497d41ddd 100644 --- a/src/Microsoft.Graph/Generated/requests/IMdmWindowsInformationProtectionPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMdmWindowsInformationProtectionPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IMdmWindowsInformationProtectionPolicyRequest : IBaseRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MdmWindowsInformationProtectionPolicy mdmWindowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MdmWindowsInformationProtectionPolicy using PUT. + /// + /// The MdmWindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MdmWindowsInformationProtectionPolicy mdmWindowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MdmWindowsInformationProtectionPolicy using PUT and returns a object. + /// + /// The MdmWindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MdmWindowsInformationProtectionPolicy mdmWindowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/IMessageRequest.cs index f67b03ad247..effa12a8b92 100644 --- a/src/Microsoft.Graph/Generated/requests/IMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMessageRequest.cs @@ -82,6 +82,22 @@ public partial interface IMessageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Message messageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Message using PUT. + /// + /// The Message object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Message messageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Message using PUT and returns a object. + /// + /// The Message object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Message messageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMessageRuleRequest.cs b/src/Microsoft.Graph/Generated/requests/IMessageRuleRequest.cs index 31ce23d576f..eb8fdbcc30b 100644 --- a/src/Microsoft.Graph/Generated/requests/IMessageRuleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMessageRuleRequest.cs @@ -82,6 +82,22 @@ public partial interface IMessageRuleRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MessageRule messageRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MessageRule using PUT. + /// + /// The MessageRule object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MessageRule messageRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MessageRule using PUT and returns a object. + /// + /// The MessageRule object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MessageRule messageRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs index c06b1bdcf2b..3e676c993ae 100644 --- a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IMicrosoftAuthenticatorAuthenticationMethodConfiguratio /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MicrosoftAuthenticatorAuthenticationMethodConfiguration microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodConfiguration using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethodConfiguration microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethodConfiguration microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodRequest.cs index 887ccbdfd1d..e2ca6b4f048 100644 --- a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodRequest.cs @@ -82,6 +82,22 @@ public partial interface IMicrosoftAuthenticatorAuthenticationMethodRequest : IB /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MicrosoftAuthenticatorAuthenticationMethod microsoftAuthenticatorAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethod using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethod object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethod microsoftAuthenticatorAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethod using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethod object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethod microsoftAuthenticatorAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs index 3f1216a5a5d..5a9d3d05ac4 100644 --- a/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs @@ -82,6 +82,22 @@ public partial interface IMicrosoftAuthenticatorAuthenticationMethodTargetReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MicrosoftAuthenticatorAuthenticationMethodTarget microsoftAuthenticatorAuthenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodTarget using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethodTarget microsoftAuthenticatorAuthenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodTarget using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodTarget object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethodTarget microsoftAuthenticatorAuthenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMicrosoftStoreForBusinessAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IMicrosoftStoreForBusinessAppRequest.cs index 12489c28bc8..f7236dddc06 100644 --- a/src/Microsoft.Graph/Generated/requests/IMicrosoftStoreForBusinessAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMicrosoftStoreForBusinessAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IMicrosoftStoreForBusinessAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MicrosoftStoreForBusinessApp microsoftStoreForBusinessAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MicrosoftStoreForBusinessApp using PUT. + /// + /// The MicrosoftStoreForBusinessApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MicrosoftStoreForBusinessApp microsoftStoreForBusinessAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MicrosoftStoreForBusinessApp using PUT and returns a object. + /// + /// The MicrosoftStoreForBusinessApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MicrosoftStoreForBusinessApp microsoftStoreForBusinessAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileAppAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileAppAssignmentRequest.cs index a49cd0866a4..2fdb2879e03 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileAppAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileAppAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileAppAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileAppAssignment mobileAppAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileAppAssignment using PUT. + /// + /// The MobileAppAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileAppAssignment mobileAppAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileAppAssignment using PUT and returns a object. + /// + /// The MobileAppAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileAppAssignment mobileAppAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileAppCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileAppCategoryRequest.cs index cb9e477ee63..92e5f139c07 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileAppCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileAppCategoryRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileAppCategoryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileAppCategory mobileAppCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileAppCategory using PUT. + /// + /// The MobileAppCategory object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileAppCategory mobileAppCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileAppCategory using PUT and returns a object. + /// + /// The MobileAppCategory object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileAppCategory mobileAppCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileAppContentFileRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileAppContentFileRequest.cs index fcbdc199773..0c1f7b3068e 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileAppContentFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileAppContentFileRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileAppContentFileRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileAppContentFile mobileAppContentFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileAppContentFile using PUT. + /// + /// The MobileAppContentFile object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileAppContentFile mobileAppContentFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileAppContentFile using PUT and returns a object. + /// + /// The MobileAppContentFile object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileAppContentFile mobileAppContentFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileAppContentRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileAppContentRequest.cs index 3770adcfd6e..83753c87f25 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileAppContentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileAppContentRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileAppContentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileAppContent mobileAppContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileAppContent using PUT. + /// + /// The MobileAppContent object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileAppContent mobileAppContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileAppContent using PUT and returns a object. + /// + /// The MobileAppContent object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileAppContent mobileAppContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileAppRequest.cs index 74eac7a767f..53026d01bc5 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileApp mobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileApp using PUT. + /// + /// The MobileApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileApp mobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileApp using PUT and returns a object. + /// + /// The MobileApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileApp mobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileLobAppRequest.cs index e4bd799e11a..83bb14f4ec0 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileLobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileLobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileLobApp mobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileLobApp using PUT. + /// + /// The MobileLobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileLobApp mobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileLobApp using PUT and returns a object. + /// + /// The MobileLobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileLobApp mobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMobileThreatDefenseConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/IMobileThreatDefenseConnectorRequest.cs index b8aba59729a..8db08099103 100644 --- a/src/Microsoft.Graph/Generated/requests/IMobileThreatDefenseConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMobileThreatDefenseConnectorRequest.cs @@ -82,6 +82,22 @@ public partial interface IMobileThreatDefenseConnectorRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MobileThreatDefenseConnector mobileThreatDefenseConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MobileThreatDefenseConnector using PUT. + /// + /// The MobileThreatDefenseConnector object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MobileThreatDefenseConnector mobileThreatDefenseConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MobileThreatDefenseConnector using PUT and returns a object. + /// + /// The MobileThreatDefenseConnector object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MobileThreatDefenseConnector mobileThreatDefenseConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMultiValueLegacyExtendedPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/IMultiValueLegacyExtendedPropertyRequest.cs index 2a00b1967da..fe1f6ccb4d8 100644 --- a/src/Microsoft.Graph/Generated/requests/IMultiValueLegacyExtendedPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMultiValueLegacyExtendedPropertyRequest.cs @@ -82,6 +82,22 @@ public partial interface IMultiValueLegacyExtendedPropertyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MultiValueLegacyExtendedProperty multiValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MultiValueLegacyExtendedProperty using PUT. + /// + /// The MultiValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MultiValueLegacyExtendedProperty multiValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MultiValueLegacyExtendedProperty using PUT and returns a object. + /// + /// The MultiValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MultiValueLegacyExtendedProperty multiValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IMuteParticipantOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IMuteParticipantOperationRequest.cs index 58af43f23f4..1b4b92cfa73 100644 --- a/src/Microsoft.Graph/Generated/requests/IMuteParticipantOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IMuteParticipantOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IMuteParticipantOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified MuteParticipantOperation using PUT. + /// + /// The MuteParticipantOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified MuteParticipantOperation using PUT and returns a object. + /// + /// The MuteParticipantOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/INamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/INamedLocationRequest.cs index d325699ef63..dbc27dd8186 100644 --- a/src/Microsoft.Graph/Generated/requests/INamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/INamedLocationRequest.cs @@ -82,6 +82,22 @@ public partial interface INamedLocationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(NamedLocation namedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified NamedLocation using PUT. + /// + /// The NamedLocation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(NamedLocation namedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified NamedLocation using PUT and returns a object. + /// + /// The NamedLocation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(NamedLocation namedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/INotebookRequest.cs b/src/Microsoft.Graph/Generated/requests/INotebookRequest.cs index 5673d4758ce..30b9f65a9b5 100644 --- a/src/Microsoft.Graph/Generated/requests/INotebookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/INotebookRequest.cs @@ -82,6 +82,22 @@ public partial interface INotebookRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Notebook notebookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Notebook using PUT. + /// + /// The Notebook object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Notebook notebookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Notebook using PUT and returns a object. + /// + /// The Notebook object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Notebook notebookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/INotificationMessageTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/INotificationMessageTemplateRequest.cs index 3cb6f27fbc0..d4dcecd259a 100644 --- a/src/Microsoft.Graph/Generated/requests/INotificationMessageTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/INotificationMessageTemplateRequest.cs @@ -82,6 +82,22 @@ public partial interface INotificationMessageTemplateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(NotificationMessageTemplate notificationMessageTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified NotificationMessageTemplate using PUT. + /// + /// The NotificationMessageTemplate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(NotificationMessageTemplate notificationMessageTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified NotificationMessageTemplate using PUT and returns a object. + /// + /// The NotificationMessageTemplate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(NotificationMessageTemplate notificationMessageTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOAuth2PermissionGrantRequest.cs b/src/Microsoft.Graph/Generated/requests/IOAuth2PermissionGrantRequest.cs index 6b4c738b7b9..d77759a686d 100644 --- a/src/Microsoft.Graph/Generated/requests/IOAuth2PermissionGrantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOAuth2PermissionGrantRequest.cs @@ -82,6 +82,22 @@ public partial interface IOAuth2PermissionGrantRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OAuth2PermissionGrant oAuth2PermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OAuth2PermissionGrant using PUT. + /// + /// The OAuth2PermissionGrant object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OAuth2PermissionGrant oAuth2PermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OAuth2PermissionGrant using PUT and returns a object. + /// + /// The OAuth2PermissionGrant object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OAuth2PermissionGrant oAuth2PermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOfferShiftRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IOfferShiftRequestRequest.cs index 8be0cec78f3..fed9b74b08a 100644 --- a/src/Microsoft.Graph/Generated/requests/IOfferShiftRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOfferShiftRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IOfferShiftRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OfferShiftRequestObject offerShiftRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OfferShiftRequestObject using PUT. + /// + /// The OfferShiftRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OfferShiftRequestObject offerShiftRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OfferShiftRequestObject using PUT and returns a object. + /// + /// The OfferShiftRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OfferShiftRequestObject offerShiftRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOfficeGraphInsightsRequest.cs b/src/Microsoft.Graph/Generated/requests/IOfficeGraphInsightsRequest.cs index e1635f65bd9..69f3e200610 100644 --- a/src/Microsoft.Graph/Generated/requests/IOfficeGraphInsightsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOfficeGraphInsightsRequest.cs @@ -82,6 +82,22 @@ public partial interface IOfficeGraphInsightsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OfficeGraphInsights officeGraphInsightsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OfficeGraphInsights using PUT. + /// + /// The OfficeGraphInsights object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OfficeGraphInsights officeGraphInsightsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OfficeGraphInsights using PUT and returns a object. + /// + /// The OfficeGraphInsights object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OfficeGraphInsights officeGraphInsightsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnPremisesConditionalAccessSettingsRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnPremisesConditionalAccessSettingsRequest.cs index bd0cf232ac5..8e35f5e0249 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnPremisesConditionalAccessSettingsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnPremisesConditionalAccessSettingsRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnPremisesConditionalAccessSettingsRequest : IBaseRequ /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnPremisesConditionalAccessSettings onPremisesConditionalAccessSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnPremisesConditionalAccessSettings using PUT. + /// + /// The OnPremisesConditionalAccessSettings object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnPremisesConditionalAccessSettings onPremisesConditionalAccessSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnPremisesConditionalAccessSettings using PUT and returns a object. + /// + /// The OnPremisesConditionalAccessSettings object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnPremisesConditionalAccessSettings onPremisesConditionalAccessSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteEntityBaseModelRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteEntityBaseModelRequest.cs index 76d8bfefbda..6d13cf862a1 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteEntityBaseModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteEntityBaseModelRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteEntityBaseModelRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteEntityBaseModel onenoteEntityBaseModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteEntityBaseModel using PUT. + /// + /// The OnenoteEntityBaseModel object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteEntityBaseModel onenoteEntityBaseModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteEntityBaseModel using PUT and returns a object. + /// + /// The OnenoteEntityBaseModel object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntityBaseModel onenoteEntityBaseModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteEntityHierarchyModelRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteEntityHierarchyModelRequest.cs index f39992ceb2a..5ddbd5dbd27 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteEntityHierarchyModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteEntityHierarchyModelRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteEntityHierarchyModelRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteEntityHierarchyModel onenoteEntityHierarchyModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteEntityHierarchyModel using PUT. + /// + /// The OnenoteEntityHierarchyModel object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteEntityHierarchyModel onenoteEntityHierarchyModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteEntityHierarchyModel using PUT and returns a object. + /// + /// The OnenoteEntityHierarchyModel object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntityHierarchyModel onenoteEntityHierarchyModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteEntitySchemaObjectModelRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteEntitySchemaObjectModelRequest.cs index 2c584b4ec18..2f8af508c45 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteEntitySchemaObjectModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteEntitySchemaObjectModelRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteEntitySchemaObjectModelRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteEntitySchemaObjectModel onenoteEntitySchemaObjectModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteEntitySchemaObjectModel using PUT. + /// + /// The OnenoteEntitySchemaObjectModel object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteEntitySchemaObjectModel onenoteEntitySchemaObjectModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteEntitySchemaObjectModel using PUT and returns a object. + /// + /// The OnenoteEntitySchemaObjectModel object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntitySchemaObjectModel onenoteEntitySchemaObjectModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteOperationRequest.cs index 0aa6a5b4e38..bbce54d5e4e 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteOperation onenoteOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteOperation using PUT. + /// + /// The OnenoteOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteOperation onenoteOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteOperation using PUT and returns a object. + /// + /// The OnenoteOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteOperation onenoteOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenotePageRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenotePageRequest.cs index 93319b613ac..4815ea191fb 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenotePageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenotePageRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenotePageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenotePage onenotePageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenotePage using PUT. + /// + /// The OnenotePage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenotePage onenotePageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenotePage using PUT and returns a object. + /// + /// The OnenotePage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenotePage onenotePageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteRequest.cs index 7ca30426280..36aa108cadc 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Onenote onenoteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Onenote using PUT. + /// + /// The Onenote object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Onenote onenoteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Onenote using PUT and returns a object. + /// + /// The Onenote object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Onenote onenoteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteResourceRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteResourceRequest.cs index ed1fc953a49..556470f59e2 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteResourceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteResourceRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteResourceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteResource onenoteResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteResource using PUT. + /// + /// The OnenoteResource object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteResource onenoteResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteResource using PUT and returns a object. + /// + /// The OnenoteResource object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteResource onenoteResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnenoteSectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnenoteSectionRequest.cs index 6bde54efe72..ba4ccfab30a 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnenoteSectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnenoteSectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnenoteSectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnenoteSection onenoteSectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnenoteSection using PUT. + /// + /// The OnenoteSection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnenoteSection onenoteSectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnenoteSection using PUT and returns a object. + /// + /// The OnenoteSection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnenoteSection onenoteSectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOnlineMeetingRequest.cs b/src/Microsoft.Graph/Generated/requests/IOnlineMeetingRequest.cs index c06b38d44fd..dd3d5b7462a 100644 --- a/src/Microsoft.Graph/Generated/requests/IOnlineMeetingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOnlineMeetingRequest.cs @@ -82,6 +82,22 @@ public partial interface IOnlineMeetingRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OnlineMeeting using PUT. + /// + /// The OnlineMeeting object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OnlineMeeting using PUT and returns a object. + /// + /// The OnlineMeeting object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOpenShiftChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IOpenShiftChangeRequestRequest.cs index 8147035590d..fca576d08e4 100644 --- a/src/Microsoft.Graph/Generated/requests/IOpenShiftChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOpenShiftChangeRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IOpenShiftChangeRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OpenShiftChangeRequestObject openShiftChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OpenShiftChangeRequestObject using PUT. + /// + /// The OpenShiftChangeRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OpenShiftChangeRequestObject openShiftChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OpenShiftChangeRequestObject using PUT and returns a object. + /// + /// The OpenShiftChangeRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OpenShiftChangeRequestObject openShiftChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOpenShiftRequest.cs b/src/Microsoft.Graph/Generated/requests/IOpenShiftRequest.cs index d0483673916..9b5ee55c298 100644 --- a/src/Microsoft.Graph/Generated/requests/IOpenShiftRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOpenShiftRequest.cs @@ -82,6 +82,22 @@ public partial interface IOpenShiftRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OpenShift openShiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OpenShift using PUT. + /// + /// The OpenShift object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OpenShift openShiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OpenShift using PUT and returns a object. + /// + /// The OpenShift object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OpenShift openShiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOpenTypeExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/IOpenTypeExtensionRequest.cs index d22907321bf..b5b0501018f 100644 --- a/src/Microsoft.Graph/Generated/requests/IOpenTypeExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOpenTypeExtensionRequest.cs @@ -82,6 +82,22 @@ public partial interface IOpenTypeExtensionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OpenTypeExtension openTypeExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OpenTypeExtension using PUT. + /// + /// The OpenTypeExtension object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OpenTypeExtension openTypeExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OpenTypeExtension using PUT and returns a object. + /// + /// The OpenTypeExtension object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OpenTypeExtension openTypeExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IOperationRequest.cs index b99fc0e3125..bbfb6c005a6 100644 --- a/src/Microsoft.Graph/Generated/requests/IOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Operation operationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Operation using PUT. + /// + /// The Operation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Operation operationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Operation using PUT and returns a object. + /// + /// The Operation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Operation operationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOrgContactRequest.cs b/src/Microsoft.Graph/Generated/requests/IOrgContactRequest.cs index a6cbb690e07..e3686e7d5aa 100644 --- a/src/Microsoft.Graph/Generated/requests/IOrgContactRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOrgContactRequest.cs @@ -82,6 +82,22 @@ public partial interface IOrgContactRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OrgContact orgContactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OrgContact using PUT. + /// + /// The OrgContact object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OrgContact orgContactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OrgContact using PUT and returns a object. + /// + /// The OrgContact object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OrgContact orgContactToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOrganizationRequest.cs b/src/Microsoft.Graph/Generated/requests/IOrganizationRequest.cs index 180b3a94913..16ec8e3f487 100644 --- a/src/Microsoft.Graph/Generated/requests/IOrganizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOrganizationRequest.cs @@ -82,6 +82,22 @@ public partial interface IOrganizationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Organization organizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Organization using PUT. + /// + /// The Organization object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Organization organizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Organization using PUT and returns a object. + /// + /// The Organization object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Organization organizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingLocalizationRequest.cs b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingLocalizationRequest.cs index 5633c2d800c..1149d1dc796 100644 --- a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingLocalizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingLocalizationRequest.cs @@ -82,6 +82,22 @@ public partial interface IOrganizationalBrandingLocalizationRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OrganizationalBrandingLocalization organizationalBrandingLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OrganizationalBrandingLocalization using PUT. + /// + /// The OrganizationalBrandingLocalization object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OrganizationalBrandingLocalization organizationalBrandingLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OrganizationalBrandingLocalization using PUT and returns a object. + /// + /// The OrganizationalBrandingLocalization object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBrandingLocalization organizationalBrandingLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingPropertiesRequest.cs b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingPropertiesRequest.cs index d4575332744..d71e2be5233 100644 --- a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingPropertiesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingPropertiesRequest.cs @@ -82,6 +82,22 @@ public partial interface IOrganizationalBrandingPropertiesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OrganizationalBrandingProperties organizationalBrandingPropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OrganizationalBrandingProperties using PUT. + /// + /// The OrganizationalBrandingProperties object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OrganizationalBrandingProperties organizationalBrandingPropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OrganizationalBrandingProperties using PUT and returns a object. + /// + /// The OrganizationalBrandingProperties object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBrandingProperties organizationalBrandingPropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingRequest.cs b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingRequest.cs index 1f19c3a4585..834892cb087 100644 --- a/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOrganizationalBrandingRequest.cs @@ -82,6 +82,22 @@ public partial interface IOrganizationalBrandingRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OrganizationalBranding organizationalBrandingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OrganizationalBranding using PUT. + /// + /// The OrganizationalBranding object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OrganizationalBranding organizationalBrandingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OrganizationalBranding using PUT and returns a object. + /// + /// The OrganizationalBranding object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBranding organizationalBrandingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOutlookCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/IOutlookCategoryRequest.cs index 7a2b0b03767..8d0c990b8c5 100644 --- a/src/Microsoft.Graph/Generated/requests/IOutlookCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOutlookCategoryRequest.cs @@ -82,6 +82,22 @@ public partial interface IOutlookCategoryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OutlookCategory outlookCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OutlookCategory using PUT. + /// + /// The OutlookCategory object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OutlookCategory outlookCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OutlookCategory using PUT and returns a object. + /// + /// The OutlookCategory object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OutlookCategory outlookCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOutlookItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IOutlookItemRequest.cs index 59e6255c924..6a5db40425f 100644 --- a/src/Microsoft.Graph/Generated/requests/IOutlookItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOutlookItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IOutlookItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OutlookItem outlookItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OutlookItem using PUT. + /// + /// The OutlookItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OutlookItem outlookItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OutlookItem using PUT and returns a object. + /// + /// The OutlookItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OutlookItem outlookItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IOutlookUserRequest.cs b/src/Microsoft.Graph/Generated/requests/IOutlookUserRequest.cs index 4c6649eac96..cd21e4e46a1 100644 --- a/src/Microsoft.Graph/Generated/requests/IOutlookUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IOutlookUserRequest.cs @@ -82,6 +82,22 @@ public partial interface IOutlookUserRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(OutlookUser outlookUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified OutlookUser using PUT. + /// + /// The OutlookUser object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(OutlookUser outlookUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified OutlookUser using PUT and returns a object. + /// + /// The OutlookUser object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(OutlookUser outlookUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IParticipantRequest.cs b/src/Microsoft.Graph/Generated/requests/IParticipantRequest.cs index 6290236ad58..abd7415f151 100644 --- a/src/Microsoft.Graph/Generated/requests/IParticipantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IParticipantRequest.cs @@ -82,6 +82,22 @@ public partial interface IParticipantRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Participant participantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Participant using PUT. + /// + /// The Participant object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Participant participantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Participant using PUT and returns a object. + /// + /// The Participant object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Participant participantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPermissionGrantConditionSetRequest.cs b/src/Microsoft.Graph/Generated/requests/IPermissionGrantConditionSetRequest.cs index 32925039b73..0d54cd53b4b 100644 --- a/src/Microsoft.Graph/Generated/requests/IPermissionGrantConditionSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPermissionGrantConditionSetRequest.cs @@ -82,6 +82,22 @@ public partial interface IPermissionGrantConditionSetRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PermissionGrantConditionSet permissionGrantConditionSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PermissionGrantConditionSet using PUT. + /// + /// The PermissionGrantConditionSet object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PermissionGrantConditionSet permissionGrantConditionSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PermissionGrantConditionSet using PUT and returns a object. + /// + /// The PermissionGrantConditionSet object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PermissionGrantConditionSet permissionGrantConditionSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPermissionGrantPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IPermissionGrantPolicyRequest.cs index 5b99a0354a7..ebae32c66f8 100644 --- a/src/Microsoft.Graph/Generated/requests/IPermissionGrantPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPermissionGrantPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IPermissionGrantPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PermissionGrantPolicy permissionGrantPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PermissionGrantPolicy using PUT. + /// + /// The PermissionGrantPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PermissionGrantPolicy permissionGrantPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PermissionGrantPolicy using PUT and returns a object. + /// + /// The PermissionGrantPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PermissionGrantPolicy permissionGrantPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPermissionRequest.cs b/src/Microsoft.Graph/Generated/requests/IPermissionRequest.cs index 4b347ad98cf..ba81aadcac7 100644 --- a/src/Microsoft.Graph/Generated/requests/IPermissionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPermissionRequest.cs @@ -82,6 +82,22 @@ public partial interface IPermissionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Permission permissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Permission using PUT. + /// + /// The Permission object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Permission permissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Permission using PUT and returns a object. + /// + /// The Permission object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Permission permissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPersonRequest.cs b/src/Microsoft.Graph/Generated/requests/IPersonRequest.cs index 822faae4322..8dd6a4f85dd 100644 --- a/src/Microsoft.Graph/Generated/requests/IPersonRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPersonRequest.cs @@ -82,6 +82,22 @@ public partial interface IPersonRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Person personToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Person using PUT. + /// + /// The Person object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Person personToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Person using PUT and returns a object. + /// + /// The Person object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Person personToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlaceRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlaceRequest.cs index c1ae8bf2c4f..1e8d7ca4811 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlaceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlaceRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlaceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Place placeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Place using PUT. + /// + /// The Place object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Place placeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Place using PUT and returns a object. + /// + /// The Place object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Place placeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerAssignedToTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerAssignedToTaskBoardTaskFormatRequest.cs index 2c53281194e..9a6ba060d1e 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerAssignedToTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerAssignedToTaskBoardTaskFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerAssignedToTaskBoardTaskFormatRequest : IBaseReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerAssignedToTaskBoardTaskFormat plannerAssignedToTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerAssignedToTaskBoardTaskFormat using PUT. + /// + /// The PlannerAssignedToTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerAssignedToTaskBoardTaskFormat plannerAssignedToTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerAssignedToTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerAssignedToTaskBoardTaskFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerAssignedToTaskBoardTaskFormat plannerAssignedToTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerBucketRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerBucketRequest.cs index ebae38f47cb..3da6327197f 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerBucketRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerBucketRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerBucketRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerBucket plannerBucketToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerBucket using PUT. + /// + /// The PlannerBucket object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerBucket plannerBucketToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerBucket using PUT and returns a object. + /// + /// The PlannerBucket object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerBucket plannerBucketToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerBucketTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerBucketTaskBoardTaskFormatRequest.cs index c95768815ae..4d6aed85f13 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerBucketTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerBucketTaskBoardTaskFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerBucketTaskBoardTaskFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerBucketTaskBoardTaskFormat plannerBucketTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerBucketTaskBoardTaskFormat using PUT. + /// + /// The PlannerBucketTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerBucketTaskBoardTaskFormat plannerBucketTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerBucketTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerBucketTaskBoardTaskFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerBucketTaskBoardTaskFormat plannerBucketTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerGroupRequest.cs index ab37145ca3b..775865d6374 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerGroupRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerGroupRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerGroup plannerGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerGroup using PUT. + /// + /// The PlannerGroup object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerGroup plannerGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerGroup using PUT and returns a object. + /// + /// The PlannerGroup object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerGroup plannerGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerPlanDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerPlanDetailsRequest.cs index 5d3ea4ee013..64d41115157 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerPlanDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerPlanDetailsRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerPlanDetailsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerPlanDetails plannerPlanDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerPlanDetails using PUT. + /// + /// The PlannerPlanDetails object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerPlanDetails plannerPlanDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerPlanDetails using PUT and returns a object. + /// + /// The PlannerPlanDetails object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerPlanDetails plannerPlanDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerPlanRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerPlanRequest.cs index 73ae7819348..dd83dd7f5d8 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerPlanRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerPlanRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerPlanRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerPlan plannerPlanToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerPlan using PUT. + /// + /// The PlannerPlan object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerPlan plannerPlanToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerPlan using PUT and returns a object. + /// + /// The PlannerPlan object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerPlan plannerPlanToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerProgressTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerProgressTaskBoardTaskFormatRequest.cs index 22c1b5ad355..bcaebff88d3 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerProgressTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerProgressTaskBoardTaskFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerProgressTaskBoardTaskFormatRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerProgressTaskBoardTaskFormat plannerProgressTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerProgressTaskBoardTaskFormat using PUT. + /// + /// The PlannerProgressTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerProgressTaskBoardTaskFormat plannerProgressTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerProgressTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerProgressTaskBoardTaskFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerProgressTaskBoardTaskFormat plannerProgressTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerRequest.cs index e32e95a1f6b..a2f49d77d13 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Planner plannerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Planner using PUT. + /// + /// The Planner object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Planner plannerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Planner using PUT and returns a object. + /// + /// The Planner object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Planner plannerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerTaskDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerTaskDetailsRequest.cs index 7e5d9ae928b..8a455a3d025 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerTaskDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerTaskDetailsRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerTaskDetailsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerTaskDetails plannerTaskDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerTaskDetails using PUT. + /// + /// The PlannerTaskDetails object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerTaskDetails plannerTaskDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerTaskDetails using PUT and returns a object. + /// + /// The PlannerTaskDetails object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerTaskDetails plannerTaskDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerTaskRequest.cs index 62eb4fb1179..eb5ee10560e 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerTaskRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerTaskRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerTask plannerTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerTask using PUT. + /// + /// The PlannerTask object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerTask plannerTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerTask using PUT and returns a object. + /// + /// The PlannerTask object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerTask plannerTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlannerUserRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlannerUserRequest.cs index ee03e127ce4..a8ee936e02c 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlannerUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlannerUserRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlannerUserRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlannerUser plannerUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlannerUser using PUT. + /// + /// The PlannerUser object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlannerUser plannerUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlannerUser using PUT and returns a object. + /// + /// The PlannerUser object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlannerUser plannerUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPlayPromptOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IPlayPromptOperationRequest.cs index 78107a1b877..596d58636ff 100644 --- a/src/Microsoft.Graph/Generated/requests/IPlayPromptOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPlayPromptOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IPlayPromptOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PlayPromptOperation playPromptOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PlayPromptOperation using PUT. + /// + /// The PlayPromptOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PlayPromptOperation playPromptOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PlayPromptOperation using PUT and returns a object. + /// + /// The PlayPromptOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PlayPromptOperation playPromptOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPolicyBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/IPolicyBaseRequest.cs index c2a2f8fabc7..f808943f251 100644 --- a/src/Microsoft.Graph/Generated/requests/IPolicyBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPolicyBaseRequest.cs @@ -82,6 +82,22 @@ public partial interface IPolicyBaseRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PolicyBase policyBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PolicyBase using PUT. + /// + /// The PolicyBase object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PolicyBase policyBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PolicyBase using PUT and returns a object. + /// + /// The PolicyBase object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PolicyBase policyBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPolicyRootRequest.cs b/src/Microsoft.Graph/Generated/requests/IPolicyRootRequest.cs index da3a445b9e3..7e9c981802d 100644 --- a/src/Microsoft.Graph/Generated/requests/IPolicyRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPolicyRootRequest.cs @@ -82,6 +82,22 @@ public partial interface IPolicyRootRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PolicyRoot policyRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PolicyRoot using PUT. + /// + /// The PolicyRoot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PolicyRoot policyRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PolicyRoot using PUT and returns a object. + /// + /// The PolicyRoot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PolicyRoot policyRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPostRequest.cs b/src/Microsoft.Graph/Generated/requests/IPostRequest.cs index 455d436eb6e..6d558b21d12 100644 --- a/src/Microsoft.Graph/Generated/requests/IPostRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPostRequest.cs @@ -82,6 +82,22 @@ public partial interface IPostRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Post postToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Post using PUT. + /// + /// The Post object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Post postToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Post using PUT and returns a object. + /// + /// The Post object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Post postToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPresenceRequest.cs b/src/Microsoft.Graph/Generated/requests/IPresenceRequest.cs index ce3a5e3ee89..5a652cc3f6d 100644 --- a/src/Microsoft.Graph/Generated/requests/IPresenceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPresenceRequest.cs @@ -82,6 +82,22 @@ public partial interface IPresenceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Presence presenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Presence using PUT. + /// + /// The Presence object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Presence presenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Presence using PUT and returns a object. + /// + /// The Presence object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Presence presenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintConnectorRequest.cs index a642c8dd130..be3955d7a21 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintConnectorRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintConnectorRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintConnector printConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintConnector using PUT. + /// + /// The PrintConnector object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintConnector printConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintConnector using PUT and returns a object. + /// + /// The PrintConnector object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintConnector printConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintDocumentRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintDocumentRequest.cs index 8d361fea540..1f45c20637a 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintDocumentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintDocumentRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintDocumentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintDocument printDocumentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintDocument using PUT. + /// + /// The PrintDocument object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintDocument printDocumentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintDocument using PUT and returns a object. + /// + /// The PrintDocument object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintDocument printDocumentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintJobRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintJobRequest.cs index 45def505b00..8c773d2b26c 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintJobRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintJobRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintJobRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintJob printJobToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintJob using PUT. + /// + /// The PrintJob object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintJob printJobToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintJob using PUT and returns a object. + /// + /// The PrintJob object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintJob printJobToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintOperationRequest.cs index e868cecc9f5..bb415391e38 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintOperation printOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintOperation using PUT. + /// + /// The PrintOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintOperation printOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintOperation using PUT and returns a object. + /// + /// The PrintOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintOperation printOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintRequest.cs index 44115df9c67..9a83fcd7a61 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Print printToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Print using PUT. + /// + /// The Print object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Print printToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Print using PUT and returns a object. + /// + /// The Print object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Print printToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintServiceEndpointRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintServiceEndpointRequest.cs index d5f74212f60..91f8359b1ef 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintServiceEndpointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintServiceEndpointRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintServiceEndpointRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintServiceEndpoint printServiceEndpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintServiceEndpoint using PUT. + /// + /// The PrintServiceEndpoint object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintServiceEndpoint printServiceEndpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintServiceEndpoint using PUT and returns a object. + /// + /// The PrintServiceEndpoint object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintServiceEndpoint printServiceEndpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintServiceRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintServiceRequest.cs index 0d1e942342d..a3f58956795 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintServiceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintServiceRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintServiceRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintService printServiceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintService using PUT. + /// + /// The PrintService object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintService printServiceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintService using PUT and returns a object. + /// + /// The PrintService object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintService printServiceToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintTaskDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintTaskDefinitionRequest.cs index 03db105311e..83240551d07 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintTaskDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintTaskDefinitionRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintTaskDefinitionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintTaskDefinition printTaskDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintTaskDefinition using PUT. + /// + /// The PrintTaskDefinition object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintTaskDefinition printTaskDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintTaskDefinition using PUT and returns a object. + /// + /// The PrintTaskDefinition object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintTaskDefinition printTaskDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintTaskRequest.cs index 20cc9d83239..ff350bd64ba 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintTaskRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintTaskRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintTask printTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintTask using PUT. + /// + /// The PrintTask object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintTask printTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintTask using PUT and returns a object. + /// + /// The PrintTask object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintTask printTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintTaskTriggerRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintTaskTriggerRequest.cs index 42394d4f09c..0fc4e270a75 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintTaskTriggerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintTaskTriggerRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintTaskTriggerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintTaskTrigger printTaskTriggerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintTaskTrigger using PUT. + /// + /// The PrintTaskTrigger object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintTaskTrigger printTaskTriggerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintTaskTrigger using PUT and returns a object. + /// + /// The PrintTaskTrigger object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintTaskTrigger printTaskTriggerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintUsageByPrinterRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintUsageByPrinterRequest.cs index 36d526fcd29..1907f3cdc8d 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintUsageByPrinterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintUsageByPrinterRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintUsageByPrinterRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintUsageByPrinter printUsageByPrinterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintUsageByPrinter using PUT. + /// + /// The PrintUsageByPrinter object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintUsageByPrinter printUsageByPrinterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintUsageByPrinter using PUT and returns a object. + /// + /// The PrintUsageByPrinter object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintUsageByPrinter printUsageByPrinterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintUsageByUserRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintUsageByUserRequest.cs index ee3953154ad..f3376f12dbe 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintUsageByUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintUsageByUserRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintUsageByUserRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintUsageByUser printUsageByUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintUsageByUser using PUT. + /// + /// The PrintUsageByUser object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintUsageByUser printUsageByUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintUsageByUser using PUT and returns a object. + /// + /// The PrintUsageByUser object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintUsageByUser printUsageByUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrintUsageRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrintUsageRequest.cs index b292f501563..d4397a49841 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrintUsageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrintUsageRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrintUsageRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrintUsage printUsageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrintUsage using PUT. + /// + /// The PrintUsage object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrintUsage printUsageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrintUsage using PUT and returns a object. + /// + /// The PrintUsage object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrintUsage printUsageToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrinterBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrinterBaseRequest.cs index 4d4d6910527..453081fb05b 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrinterBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrinterBaseRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrinterBaseRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrinterBase printerBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrinterBase using PUT. + /// + /// The PrinterBase object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrinterBase printerBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrinterBase using PUT and returns a object. + /// + /// The PrinterBase object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrinterBase printerBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrinterCreateOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrinterCreateOperationRequest.cs index ba4dba7613b..e9fb234afe6 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrinterCreateOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrinterCreateOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrinterCreateOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrinterCreateOperation printerCreateOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrinterCreateOperation using PUT. + /// + /// The PrinterCreateOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrinterCreateOperation printerCreateOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrinterCreateOperation using PUT and returns a object. + /// + /// The PrinterCreateOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrinterCreateOperation printerCreateOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrinterRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrinterRequest.cs index d7d72d263b9..dbab60bdf00 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrinterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrinterRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrinterRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Printer printerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Printer using PUT. + /// + /// The Printer object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Printer printerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Printer using PUT and returns a object. + /// + /// The Printer object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Printer printerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IPrinterShareRequest.cs b/src/Microsoft.Graph/Generated/requests/IPrinterShareRequest.cs index 2cc997f13e6..e31c3a287d1 100644 --- a/src/Microsoft.Graph/Generated/requests/IPrinterShareRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IPrinterShareRequest.cs @@ -82,6 +82,22 @@ public partial interface IPrinterShareRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(PrinterShare printerShareToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified PrinterShare using PUT. + /// + /// The PrinterShare object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(PrinterShare printerShareToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified PrinterShare using PUT and returns a object. + /// + /// The PrinterShare object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(PrinterShare printerShareToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IProfilePhotoRequest.cs b/src/Microsoft.Graph/Generated/requests/IProfilePhotoRequest.cs index 498daffdee4..f2b084fb317 100644 --- a/src/Microsoft.Graph/Generated/requests/IProfilePhotoRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IProfilePhotoRequest.cs @@ -82,6 +82,22 @@ public partial interface IProfilePhotoRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ProfilePhoto profilePhotoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ProfilePhoto using PUT. + /// + /// The ProfilePhoto object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ProfilePhoto profilePhotoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ProfilePhoto using PUT and returns a object. + /// + /// The ProfilePhoto object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ProfilePhoto profilePhotoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRecordOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IRecordOperationRequest.cs index 11258f0a310..63ab68e1f6f 100644 --- a/src/Microsoft.Graph/Generated/requests/IRecordOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRecordOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IRecordOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RecordOperation recordOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RecordOperation using PUT. + /// + /// The RecordOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RecordOperation recordOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RecordOperation using PUT and returns a object. + /// + /// The RecordOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RecordOperation recordOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IReferenceAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IReferenceAttachmentRequest.cs index c91ecbb5f3f..f9a83a6d59d 100644 --- a/src/Microsoft.Graph/Generated/requests/IReferenceAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IReferenceAttachmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IReferenceAttachmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ReferenceAttachment referenceAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ReferenceAttachment using PUT. + /// + /// The ReferenceAttachment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ReferenceAttachment referenceAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ReferenceAttachment using PUT and returns a object. + /// + /// The ReferenceAttachment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ReferenceAttachment referenceAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRemoteAssistancePartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/IRemoteAssistancePartnerRequest.cs index f1b19b9eb89..c23a470f4f1 100644 --- a/src/Microsoft.Graph/Generated/requests/IRemoteAssistancePartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRemoteAssistancePartnerRequest.cs @@ -82,6 +82,22 @@ public partial interface IRemoteAssistancePartnerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RemoteAssistancePartner remoteAssistancePartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RemoteAssistancePartner using PUT. + /// + /// The RemoteAssistancePartner object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RemoteAssistancePartner remoteAssistancePartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RemoteAssistancePartner using PUT and returns a object. + /// + /// The RemoteAssistancePartner object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RemoteAssistancePartner remoteAssistancePartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IReportRootRequest.cs b/src/Microsoft.Graph/Generated/requests/IReportRootRequest.cs index d568f95a53c..e1592953df5 100644 --- a/src/Microsoft.Graph/Generated/requests/IReportRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IReportRootRequest.cs @@ -82,6 +82,22 @@ public partial interface IReportRootRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ReportRoot reportRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ReportRoot using PUT. + /// + /// The ReportRoot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ReportRoot reportRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ReportRoot using PUT and returns a object. + /// + /// The ReportRoot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ReportRoot reportRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IResourceOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IResourceOperationRequest.cs index 90710fb153c..f912840589e 100644 --- a/src/Microsoft.Graph/Generated/requests/IResourceOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IResourceOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IResourceOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ResourceOperation resourceOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ResourceOperation using PUT. + /// + /// The ResourceOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ResourceOperation resourceOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ResourceOperation using PUT and returns a object. + /// + /// The ResourceOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ResourceOperation resourceOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IResourceSpecificPermissionGrantRequest.cs b/src/Microsoft.Graph/Generated/requests/IResourceSpecificPermissionGrantRequest.cs index 49f3652ba07..3968841d200 100644 --- a/src/Microsoft.Graph/Generated/requests/IResourceSpecificPermissionGrantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IResourceSpecificPermissionGrantRequest.cs @@ -82,6 +82,22 @@ public partial interface IResourceSpecificPermissionGrantRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ResourceSpecificPermissionGrant resourceSpecificPermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ResourceSpecificPermissionGrant using PUT. + /// + /// The ResourceSpecificPermissionGrant object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ResourceSpecificPermissionGrant resourceSpecificPermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ResourceSpecificPermissionGrant using PUT and returns a object. + /// + /// The ResourceSpecificPermissionGrant object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ResourceSpecificPermissionGrant resourceSpecificPermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRestrictedSignInRequest.cs b/src/Microsoft.Graph/Generated/requests/IRestrictedSignInRequest.cs index cefc1a64d05..93243e29032 100644 --- a/src/Microsoft.Graph/Generated/requests/IRestrictedSignInRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRestrictedSignInRequest.cs @@ -82,6 +82,22 @@ public partial interface IRestrictedSignInRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RestrictedSignIn restrictedSignInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RestrictedSignIn using PUT. + /// + /// The RestrictedSignIn object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RestrictedSignIn restrictedSignInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RestrictedSignIn using PUT and returns a object. + /// + /// The RestrictedSignIn object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RestrictedSignIn restrictedSignInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IRoleAssignmentRequest.cs index 41a678fe550..83a26850d26 100644 --- a/src/Microsoft.Graph/Generated/requests/IRoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRoleAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface IRoleAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RoleAssignment roleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RoleAssignment using PUT. + /// + /// The RoleAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RoleAssignment roleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RoleAssignment using PUT and returns a object. + /// + /// The RoleAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RoleAssignment roleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRoleDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/IRoleDefinitionRequest.cs index 344f6f83f2a..9283b21d0e2 100644 --- a/src/Microsoft.Graph/Generated/requests/IRoleDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRoleDefinitionRequest.cs @@ -82,6 +82,22 @@ public partial interface IRoleDefinitionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RoleDefinition roleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RoleDefinition using PUT. + /// + /// The RoleDefinition object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RoleDefinition roleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RoleDefinition using PUT and returns a object. + /// + /// The RoleDefinition object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RoleDefinition roleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRoomListRequest.cs b/src/Microsoft.Graph/Generated/requests/IRoomListRequest.cs index 94f799c9c0f..53ee9f0e1d5 100644 --- a/src/Microsoft.Graph/Generated/requests/IRoomListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRoomListRequest.cs @@ -82,6 +82,22 @@ public partial interface IRoomListRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(RoomList roomListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified RoomList using PUT. + /// + /// The RoomList object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(RoomList roomListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified RoomList using PUT and returns a object. + /// + /// The RoomList object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(RoomList roomListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IRoomRequest.cs b/src/Microsoft.Graph/Generated/requests/IRoomRequest.cs index a61c0baff74..ec40fb35b74 100644 --- a/src/Microsoft.Graph/Generated/requests/IRoomRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IRoomRequest.cs @@ -82,6 +82,22 @@ public partial interface IRoomRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Room roomToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Room using PUT. + /// + /// The Room object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Room roomToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Room using PUT and returns a object. + /// + /// The Room object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Room roomToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IScheduleChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IScheduleChangeRequestRequest.cs index 7a91a17d43a..111357094f0 100644 --- a/src/Microsoft.Graph/Generated/requests/IScheduleChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IScheduleChangeRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IScheduleChangeRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ScheduleChangeRequestObject scheduleChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ScheduleChangeRequestObject using PUT. + /// + /// The ScheduleChangeRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ScheduleChangeRequestObject scheduleChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ScheduleChangeRequestObject using PUT and returns a object. + /// + /// The ScheduleChangeRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ScheduleChangeRequestObject scheduleChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IScheduleRequest.cs b/src/Microsoft.Graph/Generated/requests/IScheduleRequest.cs index 6d0ad9591b2..9281c151b63 100644 --- a/src/Microsoft.Graph/Generated/requests/IScheduleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IScheduleRequest.cs @@ -82,6 +82,22 @@ public partial interface IScheduleRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Schedule scheduleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Schedule using PUT. + /// + /// The Schedule object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Schedule scheduleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Schedule using PUT and returns a object. + /// + /// The Schedule object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Schedule scheduleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISchedulingGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/ISchedulingGroupRequest.cs index a8b2675e627..12e9c19a7be 100644 --- a/src/Microsoft.Graph/Generated/requests/ISchedulingGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISchedulingGroupRequest.cs @@ -82,6 +82,22 @@ public partial interface ISchedulingGroupRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SchedulingGroup schedulingGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SchedulingGroup using PUT. + /// + /// The SchedulingGroup object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SchedulingGroup schedulingGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SchedulingGroup using PUT and returns a object. + /// + /// The SchedulingGroup object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SchedulingGroup schedulingGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISchemaExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/ISchemaExtensionRequest.cs index c4ea5d6de92..b68765f0bb3 100644 --- a/src/Microsoft.Graph/Generated/requests/ISchemaExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISchemaExtensionRequest.cs @@ -82,6 +82,22 @@ public partial interface ISchemaExtensionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SchemaExtension schemaExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SchemaExtension using PUT. + /// + /// The SchemaExtension object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SchemaExtension schemaExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SchemaExtension using PUT and returns a object. + /// + /// The SchemaExtension object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SchemaExtension schemaExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IScopedRoleMembershipRequest.cs b/src/Microsoft.Graph/Generated/requests/IScopedRoleMembershipRequest.cs index e683bb8ec8c..a38646c64bc 100644 --- a/src/Microsoft.Graph/Generated/requests/IScopedRoleMembershipRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IScopedRoleMembershipRequest.cs @@ -82,6 +82,22 @@ public partial interface IScopedRoleMembershipRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ScopedRoleMembership scopedRoleMembershipToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ScopedRoleMembership using PUT. + /// + /// The ScopedRoleMembership object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ScopedRoleMembership scopedRoleMembershipToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ScopedRoleMembership using PUT and returns a object. + /// + /// The ScopedRoleMembership object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ScopedRoleMembership scopedRoleMembershipToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISearchEntityRequest.cs b/src/Microsoft.Graph/Generated/requests/ISearchEntityRequest.cs index 5db7aa40382..c48919109d8 100644 --- a/src/Microsoft.Graph/Generated/requests/ISearchEntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISearchEntityRequest.cs @@ -82,6 +82,22 @@ public partial interface ISearchEntityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SearchEntity searchEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SearchEntity using PUT. + /// + /// The SearchEntity object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SearchEntity searchEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SearchEntity using PUT and returns a object. + /// + /// The SearchEntity object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SearchEntity searchEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISectionGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/ISectionGroupRequest.cs index 4c4f9b7f0e1..b7ae6e950fa 100644 --- a/src/Microsoft.Graph/Generated/requests/ISectionGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISectionGroupRequest.cs @@ -82,6 +82,22 @@ public partial interface ISectionGroupRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SectionGroup sectionGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SectionGroup using PUT. + /// + /// The SectionGroup object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SectionGroup sectionGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SectionGroup using PUT and returns a object. + /// + /// The SectionGroup object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SectionGroup sectionGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISecureScoreControlProfileRequest.cs b/src/Microsoft.Graph/Generated/requests/ISecureScoreControlProfileRequest.cs index 9734829fd8a..95687ff420a 100644 --- a/src/Microsoft.Graph/Generated/requests/ISecureScoreControlProfileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISecureScoreControlProfileRequest.cs @@ -82,6 +82,22 @@ public partial interface ISecureScoreControlProfileRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SecureScoreControlProfile secureScoreControlProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SecureScoreControlProfile using PUT. + /// + /// The SecureScoreControlProfile object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SecureScoreControlProfile secureScoreControlProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SecureScoreControlProfile using PUT and returns a object. + /// + /// The SecureScoreControlProfile object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SecureScoreControlProfile secureScoreControlProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISecureScoreRequest.cs b/src/Microsoft.Graph/Generated/requests/ISecureScoreRequest.cs index ea778d78fa0..5a67469048d 100644 --- a/src/Microsoft.Graph/Generated/requests/ISecureScoreRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISecureScoreRequest.cs @@ -82,6 +82,22 @@ public partial interface ISecureScoreRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SecureScore secureScoreToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SecureScore using PUT. + /// + /// The SecureScore object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SecureScore secureScoreToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SecureScore using PUT and returns a object. + /// + /// The SecureScore object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SecureScore secureScoreToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISecurityRequest.cs b/src/Microsoft.Graph/Generated/requests/ISecurityRequest.cs index 1d9f71cd718..afbc3c0e4d1 100644 --- a/src/Microsoft.Graph/Generated/requests/ISecurityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISecurityRequest.cs @@ -82,6 +82,22 @@ public partial interface ISecurityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Security securityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Security using PUT. + /// + /// The Security object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Security securityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Security using PUT and returns a object. + /// + /// The Security object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Security securityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IServicePrincipalRequest.cs b/src/Microsoft.Graph/Generated/requests/IServicePrincipalRequest.cs index 640d6cbb421..855eb1c23ff 100644 --- a/src/Microsoft.Graph/Generated/requests/IServicePrincipalRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IServicePrincipalRequest.cs @@ -82,6 +82,22 @@ public partial interface IServicePrincipalRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ServicePrincipal servicePrincipalToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ServicePrincipal using PUT. + /// + /// The ServicePrincipal object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ServicePrincipal servicePrincipalToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ServicePrincipal using PUT and returns a object. + /// + /// The ServicePrincipal object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ServicePrincipal servicePrincipalToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISettingStateDeviceSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/ISettingStateDeviceSummaryRequest.cs index 5bbc1ba966e..eee24a15da9 100644 --- a/src/Microsoft.Graph/Generated/requests/ISettingStateDeviceSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISettingStateDeviceSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface ISettingStateDeviceSummaryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SettingStateDeviceSummary settingStateDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SettingStateDeviceSummary using PUT. + /// + /// The SettingStateDeviceSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SettingStateDeviceSummary settingStateDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SettingStateDeviceSummary using PUT and returns a object. + /// + /// The SettingStateDeviceSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SettingStateDeviceSummary settingStateDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISharedDriveItemRequest.cs b/src/Microsoft.Graph/Generated/requests/ISharedDriveItemRequest.cs index e2b1b85c2b4..98ac507e81a 100644 --- a/src/Microsoft.Graph/Generated/requests/ISharedDriveItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISharedDriveItemRequest.cs @@ -82,6 +82,22 @@ public partial interface ISharedDriveItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SharedDriveItem sharedDriveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SharedDriveItem using PUT. + /// + /// The SharedDriveItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SharedDriveItem sharedDriveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SharedDriveItem using PUT and returns a object. + /// + /// The SharedDriveItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SharedDriveItem sharedDriveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISharedInsightRequest.cs b/src/Microsoft.Graph/Generated/requests/ISharedInsightRequest.cs index 2d8166a4eaf..10ed7e26cbe 100644 --- a/src/Microsoft.Graph/Generated/requests/ISharedInsightRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISharedInsightRequest.cs @@ -82,6 +82,22 @@ public partial interface ISharedInsightRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SharedInsight sharedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SharedInsight using PUT. + /// + /// The SharedInsight object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SharedInsight sharedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SharedInsight using PUT and returns a object. + /// + /// The SharedInsight object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SharedInsight sharedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISharedPCConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/ISharedPCConfigurationRequest.cs index e308bb34ec0..dd4590bf995 100644 --- a/src/Microsoft.Graph/Generated/requests/ISharedPCConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISharedPCConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface ISharedPCConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SharedPCConfiguration sharedPCConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SharedPCConfiguration using PUT. + /// + /// The SharedPCConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SharedPCConfiguration sharedPCConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SharedPCConfiguration using PUT and returns a object. + /// + /// The SharedPCConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SharedPCConfiguration sharedPCConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IShiftPreferencesRequest.cs b/src/Microsoft.Graph/Generated/requests/IShiftPreferencesRequest.cs index c08e4c6ae84..fcc9c631b19 100644 --- a/src/Microsoft.Graph/Generated/requests/IShiftPreferencesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IShiftPreferencesRequest.cs @@ -82,6 +82,22 @@ public partial interface IShiftPreferencesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ShiftPreferences shiftPreferencesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ShiftPreferences using PUT. + /// + /// The ShiftPreferences object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ShiftPreferences shiftPreferencesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ShiftPreferences using PUT and returns a object. + /// + /// The ShiftPreferences object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ShiftPreferences shiftPreferencesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IShiftRequest.cs b/src/Microsoft.Graph/Generated/requests/IShiftRequest.cs index 9dfadfea26d..559f75259a5 100644 --- a/src/Microsoft.Graph/Generated/requests/IShiftRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IShiftRequest.cs @@ -82,6 +82,22 @@ public partial interface IShiftRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Shift shiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Shift using PUT. + /// + /// The Shift object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Shift shiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Shift using PUT and returns a object. + /// + /// The Shift object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Shift shiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISignInRequest.cs b/src/Microsoft.Graph/Generated/requests/ISignInRequest.cs index bfa7e658a60..912522746af 100644 --- a/src/Microsoft.Graph/Generated/requests/ISignInRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISignInRequest.cs @@ -82,6 +82,22 @@ public partial interface ISignInRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SignIn signInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SignIn using PUT. + /// + /// The SignIn object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SignIn signInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SignIn using PUT and returns a object. + /// + /// The SignIn object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SignIn signInToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISingleValueLegacyExtendedPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/ISingleValueLegacyExtendedPropertyRequest.cs index b58955d793e..d391aa49f26 100644 --- a/src/Microsoft.Graph/Generated/requests/ISingleValueLegacyExtendedPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISingleValueLegacyExtendedPropertyRequest.cs @@ -82,6 +82,22 @@ public partial interface ISingleValueLegacyExtendedPropertyRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SingleValueLegacyExtendedProperty singleValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SingleValueLegacyExtendedProperty using PUT. + /// + /// The SingleValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SingleValueLegacyExtendedProperty singleValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SingleValueLegacyExtendedProperty using PUT and returns a object. + /// + /// The SingleValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SingleValueLegacyExtendedProperty singleValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISiteRequest.cs b/src/Microsoft.Graph/Generated/requests/ISiteRequest.cs index 68cd5003c8b..358feb3ede0 100644 --- a/src/Microsoft.Graph/Generated/requests/ISiteRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISiteRequest.cs @@ -82,6 +82,22 @@ public partial interface ISiteRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Site siteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Site using PUT. + /// + /// The Site object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Site siteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Site using PUT and returns a object. + /// + /// The Site object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Site siteToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISoftwareUpdateStatusSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/ISoftwareUpdateStatusSummaryRequest.cs index 0e4e62ad751..e24798a3719 100644 --- a/src/Microsoft.Graph/Generated/requests/ISoftwareUpdateStatusSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISoftwareUpdateStatusSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface ISoftwareUpdateStatusSummaryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SoftwareUpdateStatusSummary softwareUpdateStatusSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SoftwareUpdateStatusSummary using PUT. + /// + /// The SoftwareUpdateStatusSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SoftwareUpdateStatusSummary softwareUpdateStatusSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SoftwareUpdateStatusSummary using PUT and returns a object. + /// + /// The SoftwareUpdateStatusSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SoftwareUpdateStatusSummary softwareUpdateStatusSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IStsPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IStsPolicyRequest.cs index 2ef713d5383..71d392c5a26 100644 --- a/src/Microsoft.Graph/Generated/requests/IStsPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IStsPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IStsPolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(StsPolicy stsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified StsPolicy using PUT. + /// + /// The StsPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(StsPolicy stsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified StsPolicy using PUT and returns a object. + /// + /// The StsPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(StsPolicy stsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISubscribeToToneOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ISubscribeToToneOperationRequest.cs index da417389910..09539aa00df 100644 --- a/src/Microsoft.Graph/Generated/requests/ISubscribeToToneOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISubscribeToToneOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface ISubscribeToToneOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SubscribeToToneOperation subscribeToToneOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SubscribeToToneOperation using PUT. + /// + /// The SubscribeToToneOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SubscribeToToneOperation subscribeToToneOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SubscribeToToneOperation using PUT and returns a object. + /// + /// The SubscribeToToneOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SubscribeToToneOperation subscribeToToneOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISubscribedSkuRequest.cs b/src/Microsoft.Graph/Generated/requests/ISubscribedSkuRequest.cs index 2b6b9a2d6ab..e3543377a89 100644 --- a/src/Microsoft.Graph/Generated/requests/ISubscribedSkuRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISubscribedSkuRequest.cs @@ -82,6 +82,22 @@ public partial interface ISubscribedSkuRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SubscribedSku subscribedSkuToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SubscribedSku using PUT. + /// + /// The SubscribedSku object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SubscribedSku subscribedSkuToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SubscribedSku using PUT and returns a object. + /// + /// The SubscribedSku object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SubscribedSku subscribedSkuToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISubscriptionRequest.cs b/src/Microsoft.Graph/Generated/requests/ISubscriptionRequest.cs index 98d29651f93..64edb7d4ec4 100644 --- a/src/Microsoft.Graph/Generated/requests/ISubscriptionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISubscriptionRequest.cs @@ -82,6 +82,22 @@ public partial interface ISubscriptionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Subscription subscriptionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Subscription using PUT. + /// + /// The Subscription object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Subscription subscriptionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Subscription using PUT and returns a object. + /// + /// The Subscription object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Subscription subscriptionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ISwapShiftsChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/ISwapShiftsChangeRequestRequest.cs index fa2f83d4363..125e3d9c6ff 100644 --- a/src/Microsoft.Graph/Generated/requests/ISwapShiftsChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ISwapShiftsChangeRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface ISwapShiftsChangeRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(SwapShiftsChangeRequestObject swapShiftsChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified SwapShiftsChangeRequestObject using PUT. + /// + /// The SwapShiftsChangeRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(SwapShiftsChangeRequestObject swapShiftsChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified SwapShiftsChangeRequestObject using PUT and returns a object. + /// + /// The SwapShiftsChangeRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(SwapShiftsChangeRequestObject swapShiftsChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppConfigurationRequest.cs index 21a93fb44e8..8e02234f61f 100644 --- a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface ITargetedManagedAppConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TargetedManagedAppConfiguration targetedManagedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TargetedManagedAppConfiguration using PUT. + /// + /// The TargetedManagedAppConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TargetedManagedAppConfiguration targetedManagedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TargetedManagedAppConfiguration using PUT and returns a object. + /// + /// The TargetedManagedAppConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppConfiguration targetedManagedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppPolicyAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppPolicyAssignmentRequest.cs index bdfc271dbae..35384516bfc 100644 --- a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppPolicyAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppPolicyAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface ITargetedManagedAppPolicyAssignmentRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TargetedManagedAppPolicyAssignment targetedManagedAppPolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TargetedManagedAppPolicyAssignment using PUT. + /// + /// The TargetedManagedAppPolicyAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TargetedManagedAppPolicyAssignment targetedManagedAppPolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TargetedManagedAppPolicyAssignment using PUT and returns a object. + /// + /// The TargetedManagedAppPolicyAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppPolicyAssignment targetedManagedAppPolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppProtectionRequest.cs index 28a655a39a4..8e13614467f 100644 --- a/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITargetedManagedAppProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface ITargetedManagedAppProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TargetedManagedAppProtection targetedManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TargetedManagedAppProtection using PUT. + /// + /// The TargetedManagedAppProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TargetedManagedAppProtection targetedManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TargetedManagedAppProtection using PUT and returns a object. + /// + /// The TargetedManagedAppProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppProtection targetedManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamRequest.cs index 4bd37036742..e1cafbddc44 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Team teamToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Team using PUT. + /// + /// The Team object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Team teamToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Team using PUT and returns a object. + /// + /// The Team object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Team teamToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsAppDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsAppDefinitionRequest.cs index 2cf7758ea00..21c83b10dac 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsAppDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsAppDefinitionRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsAppDefinitionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsAppDefinition teamsAppDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsAppDefinition using PUT. + /// + /// The TeamsAppDefinition object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsAppDefinition teamsAppDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsAppDefinition using PUT and returns a object. + /// + /// The TeamsAppDefinition object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsAppDefinition teamsAppDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsAppInstallationRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsAppInstallationRequest.cs index 835a0bff959..48573103481 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsAppInstallationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsAppInstallationRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsAppInstallationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsAppInstallation teamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsAppInstallation using PUT. + /// + /// The TeamsAppInstallation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsAppInstallation teamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsAppInstallation using PUT and returns a object. + /// + /// The TeamsAppInstallation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsAppInstallation teamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsAppRequest.cs index 1922f3b1b29..0d087436b0d 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsAppRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsApp teamsAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsApp using PUT. + /// + /// The TeamsApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsApp teamsAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsApp using PUT and returns a object. + /// + /// The TeamsApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsApp teamsAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsAsyncOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsAsyncOperationRequest.cs index baed9933c72..f378d5ec5d9 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsAsyncOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsAsyncOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsAsyncOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsAsyncOperation teamsAsyncOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsAsyncOperation using PUT. + /// + /// The TeamsAsyncOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsAsyncOperation teamsAsyncOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsAsyncOperation using PUT and returns a object. + /// + /// The TeamsAsyncOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsAsyncOperation teamsAsyncOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsTabRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsTabRequest.cs index a5f9a903284..47e58e96088 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsTabRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsTabRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsTabRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsTab teamsTabToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsTab using PUT. + /// + /// The TeamsTab object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsTab teamsTabToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsTab using PUT and returns a object. + /// + /// The TeamsTab object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsTab teamsTabToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamsTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamsTemplateRequest.cs index 78015f5a7fe..eab99584d8a 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamsTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamsTemplateRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamsTemplateRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamsTemplate teamsTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamsTemplate using PUT. + /// + /// The TeamsTemplate object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamsTemplate teamsTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamsTemplate using PUT and returns a object. + /// + /// The TeamsTemplate object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamsTemplate teamsTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamworkBotRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamworkBotRequest.cs index 1625977d8e6..f5a4d5994f1 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamworkBotRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamworkBotRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamworkBotRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TeamworkBot teamworkBotToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TeamworkBot using PUT. + /// + /// The TeamworkBot object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TeamworkBot teamworkBotToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TeamworkBot using PUT and returns a object. + /// + /// The TeamworkBot object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TeamworkBot teamworkBotToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITeamworkRequest.cs b/src/Microsoft.Graph/Generated/requests/ITeamworkRequest.cs index f17547993f9..5a2b5f6fcab 100644 --- a/src/Microsoft.Graph/Generated/requests/ITeamworkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITeamworkRequest.cs @@ -82,6 +82,22 @@ public partial interface ITeamworkRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Teamwork teamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Teamwork using PUT. + /// + /// The Teamwork object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Teamwork teamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Teamwork using PUT and returns a object. + /// + /// The Teamwork object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Teamwork teamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITelecomExpenseManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/ITelecomExpenseManagementPartnerRequest.cs index 7f01685eec8..670464aaad8 100644 --- a/src/Microsoft.Graph/Generated/requests/ITelecomExpenseManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITelecomExpenseManagementPartnerRequest.cs @@ -82,6 +82,22 @@ public partial interface ITelecomExpenseManagementPartnerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TelecomExpenseManagementPartner telecomExpenseManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TelecomExpenseManagementPartner using PUT. + /// + /// The TelecomExpenseManagementPartner object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TelecomExpenseManagementPartner telecomExpenseManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TelecomExpenseManagementPartner using PUT and returns a object. + /// + /// The TelecomExpenseManagementPartner object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TelecomExpenseManagementPartner telecomExpenseManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAcceptanceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAcceptanceStatusRequest.cs index 9ad4531d780..557eb5a5a40 100644 --- a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAcceptanceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAcceptanceStatusRequest.cs @@ -82,6 +82,22 @@ public partial interface ITermsAndConditionsAcceptanceStatusRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TermsAndConditionsAcceptanceStatus termsAndConditionsAcceptanceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TermsAndConditionsAcceptanceStatus using PUT. + /// + /// The TermsAndConditionsAcceptanceStatus object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TermsAndConditionsAcceptanceStatus termsAndConditionsAcceptanceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TermsAndConditionsAcceptanceStatus using PUT and returns a object. + /// + /// The TermsAndConditionsAcceptanceStatus object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditionsAcceptanceStatus termsAndConditionsAcceptanceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAssignmentRequest.cs index f9ce70cb3b6..166b9a42c83 100644 --- a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsAssignmentRequest.cs @@ -82,6 +82,22 @@ public partial interface ITermsAndConditionsAssignmentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TermsAndConditionsAssignment termsAndConditionsAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TermsAndConditionsAssignment using PUT. + /// + /// The TermsAndConditionsAssignment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TermsAndConditionsAssignment termsAndConditionsAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TermsAndConditionsAssignment using PUT and returns a object. + /// + /// The TermsAndConditionsAssignment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditionsAssignment termsAndConditionsAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsRequest.cs b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsRequest.cs index 0a29f760f7a..57d5796dfbc 100644 --- a/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITermsAndConditionsRequest.cs @@ -82,6 +82,22 @@ public partial interface ITermsAndConditionsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TermsAndConditions termsAndConditionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TermsAndConditions using PUT. + /// + /// The TermsAndConditions object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TermsAndConditions termsAndConditionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TermsAndConditions using PUT and returns a object. + /// + /// The TermsAndConditions object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditions termsAndConditionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITermsOfUseContainerRequest.cs b/src/Microsoft.Graph/Generated/requests/ITermsOfUseContainerRequest.cs index 542c69416bb..70d21152068 100644 --- a/src/Microsoft.Graph/Generated/requests/ITermsOfUseContainerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITermsOfUseContainerRequest.cs @@ -82,6 +82,22 @@ public partial interface ITermsOfUseContainerRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TermsOfUseContainer termsOfUseContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TermsOfUseContainer using PUT. + /// + /// The TermsOfUseContainer object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TermsOfUseContainer termsOfUseContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TermsOfUseContainer using PUT and returns a object. + /// + /// The TermsOfUseContainer object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TermsOfUseContainer termsOfUseContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IThreatAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IThreatAssessmentRequestRequest.cs index 37db68666a0..11619e5af6b 100644 --- a/src/Microsoft.Graph/Generated/requests/IThreatAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IThreatAssessmentRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IThreatAssessmentRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ThreatAssessmentRequestObject threatAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ThreatAssessmentRequestObject using PUT. + /// + /// The ThreatAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ThreatAssessmentRequestObject threatAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ThreatAssessmentRequestObject using PUT and returns a object. + /// + /// The ThreatAssessmentRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ThreatAssessmentRequestObject threatAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IThreatAssessmentResultRequest.cs b/src/Microsoft.Graph/Generated/requests/IThreatAssessmentResultRequest.cs index 5e42fc8baa4..39cc36644bc 100644 --- a/src/Microsoft.Graph/Generated/requests/IThreatAssessmentResultRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IThreatAssessmentResultRequest.cs @@ -82,6 +82,22 @@ public partial interface IThreatAssessmentResultRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ThreatAssessmentResult threatAssessmentResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ThreatAssessmentResult using PUT. + /// + /// The ThreatAssessmentResult object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ThreatAssessmentResult threatAssessmentResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ThreatAssessmentResult using PUT and returns a object. + /// + /// The ThreatAssessmentResult object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ThreatAssessmentResult threatAssessmentResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IThumbnailRequest.cs b/src/Microsoft.Graph/Generated/requests/IThumbnailRequest.cs index b7f510dc590..d67942b142e 100644 --- a/src/Microsoft.Graph/Generated/requests/IThumbnailRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IThumbnailRequest.cs @@ -82,6 +82,22 @@ public partial interface IThumbnailRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Thumbnail thumbnailToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Thumbnail using PUT. + /// + /// The Thumbnail object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Thumbnail thumbnailToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Thumbnail using PUT and returns a object. + /// + /// The Thumbnail object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Thumbnail thumbnailToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IThumbnailSetRequest.cs b/src/Microsoft.Graph/Generated/requests/IThumbnailSetRequest.cs index 393d17111ef..023be5a898d 100644 --- a/src/Microsoft.Graph/Generated/requests/IThumbnailSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IThumbnailSetRequest.cs @@ -82,6 +82,22 @@ public partial interface IThumbnailSetRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(ThumbnailSet thumbnailSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified ThumbnailSet using PUT. + /// + /// The ThumbnailSet object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(ThumbnailSet thumbnailSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified ThumbnailSet using PUT and returns a object. + /// + /// The ThumbnailSet object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(ThumbnailSet thumbnailSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITimeOffReasonRequest.cs b/src/Microsoft.Graph/Generated/requests/ITimeOffReasonRequest.cs index 08a87d361c0..e0e91ca9fe1 100644 --- a/src/Microsoft.Graph/Generated/requests/ITimeOffReasonRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITimeOffReasonRequest.cs @@ -82,6 +82,22 @@ public partial interface ITimeOffReasonRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TimeOffReason timeOffReasonToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TimeOffReason using PUT. + /// + /// The TimeOffReason object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TimeOffReason timeOffReasonToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TimeOffReason using PUT and returns a object. + /// + /// The TimeOffReason object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TimeOffReason timeOffReasonToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITimeOffRequest.cs b/src/Microsoft.Graph/Generated/requests/ITimeOffRequest.cs index ec53860b196..f29055a69a0 100644 --- a/src/Microsoft.Graph/Generated/requests/ITimeOffRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITimeOffRequest.cs @@ -82,6 +82,22 @@ public partial interface ITimeOffRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TimeOff timeOffToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TimeOff using PUT. + /// + /// The TimeOff object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TimeOff timeOffToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TimeOff using PUT and returns a object. + /// + /// The TimeOff object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TimeOff timeOffToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITimeOffRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/ITimeOffRequestRequest.cs index cdd112a25b8..51523b6421b 100644 --- a/src/Microsoft.Graph/Generated/requests/ITimeOffRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITimeOffRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface ITimeOffRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TimeOffRequestObject timeOffRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TimeOffRequestObject using PUT. + /// + /// The TimeOffRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TimeOffRequestObject timeOffRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TimeOffRequestObject using PUT and returns a object. + /// + /// The TimeOffRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TimeOffRequestObject timeOffRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITodoRequest.cs b/src/Microsoft.Graph/Generated/requests/ITodoRequest.cs index 28312ea0fd2..d2f5cc024b3 100644 --- a/src/Microsoft.Graph/Generated/requests/ITodoRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITodoRequest.cs @@ -82,6 +82,22 @@ public partial interface ITodoRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Todo todoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Todo using PUT. + /// + /// The Todo object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Todo todoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Todo using PUT and returns a object. + /// + /// The Todo object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Todo todoToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITodoTaskListRequest.cs b/src/Microsoft.Graph/Generated/requests/ITodoTaskListRequest.cs index 86e960edbe4..5b67bc0555c 100644 --- a/src/Microsoft.Graph/Generated/requests/ITodoTaskListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITodoTaskListRequest.cs @@ -82,6 +82,22 @@ public partial interface ITodoTaskListRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TodoTaskList todoTaskListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TodoTaskList using PUT. + /// + /// The TodoTaskList object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TodoTaskList todoTaskListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TodoTaskList using PUT and returns a object. + /// + /// The TodoTaskList object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TodoTaskList todoTaskListToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITodoTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/ITodoTaskRequest.cs index 84db2bad2e3..8e2ef655a32 100644 --- a/src/Microsoft.Graph/Generated/requests/ITodoTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITodoTaskRequest.cs @@ -82,6 +82,22 @@ public partial interface ITodoTaskRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TodoTask todoTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TodoTask using PUT. + /// + /// The TodoTask object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TodoTask todoTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TodoTask using PUT and returns a object. + /// + /// The TodoTask object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TodoTask todoTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITokenIssuancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ITokenIssuancePolicyRequest.cs index 1850960f30f..db4e2bc5371 100644 --- a/src/Microsoft.Graph/Generated/requests/ITokenIssuancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITokenIssuancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface ITokenIssuancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TokenIssuancePolicy tokenIssuancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TokenIssuancePolicy using PUT. + /// + /// The TokenIssuancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TokenIssuancePolicy tokenIssuancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TokenIssuancePolicy using PUT and returns a object. + /// + /// The TokenIssuancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TokenIssuancePolicy tokenIssuancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITokenLifetimePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ITokenLifetimePolicyRequest.cs index 3af60d26a29..af293b9110c 100644 --- a/src/Microsoft.Graph/Generated/requests/ITokenLifetimePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITokenLifetimePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface ITokenLifetimePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(TokenLifetimePolicy tokenLifetimePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified TokenLifetimePolicy using PUT. + /// + /// The TokenLifetimePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(TokenLifetimePolicy tokenLifetimePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified TokenLifetimePolicy using PUT and returns a object. + /// + /// The TokenLifetimePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(TokenLifetimePolicy tokenLifetimePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ITrendingRequest.cs b/src/Microsoft.Graph/Generated/requests/ITrendingRequest.cs index 24be4bc4d7f..0e54e9f6f9d 100644 --- a/src/Microsoft.Graph/Generated/requests/ITrendingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ITrendingRequest.cs @@ -82,6 +82,22 @@ public partial interface ITrendingRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Trending trendingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Trending using PUT. + /// + /// The Trending object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Trending trendingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Trending using PUT and returns a object. + /// + /// The Trending object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Trending trendingToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUnmuteParticipantOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IUnmuteParticipantOperationRequest.cs index dc74528fe26..235f1e90676 100644 --- a/src/Microsoft.Graph/Generated/requests/IUnmuteParticipantOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUnmuteParticipantOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IUnmuteParticipantOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UnmuteParticipantOperation using PUT. + /// + /// The UnmuteParticipantOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UnmuteParticipantOperation using PUT and returns a object. + /// + /// The UnmuteParticipantOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUpdateRecordingStatusOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IUpdateRecordingStatusOperationRequest.cs index 370c8d7d6a4..53ade06bd2c 100644 --- a/src/Microsoft.Graph/Generated/requests/IUpdateRecordingStatusOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUpdateRecordingStatusOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IUpdateRecordingStatusOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UpdateRecordingStatusOperation updateRecordingStatusOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UpdateRecordingStatusOperation using PUT. + /// + /// The UpdateRecordingStatusOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UpdateRecordingStatusOperation updateRecordingStatusOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UpdateRecordingStatusOperation using PUT and returns a object. + /// + /// The UpdateRecordingStatusOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UpdateRecordingStatusOperation updateRecordingStatusOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUrlAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/IUrlAssessmentRequestRequest.cs index 72bb79e32b4..6932a635e06 100644 --- a/src/Microsoft.Graph/Generated/requests/IUrlAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUrlAssessmentRequestRequest.cs @@ -82,6 +82,22 @@ public partial interface IUrlAssessmentRequestRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UrlAssessmentRequestObject urlAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UrlAssessmentRequestObject using PUT. + /// + /// The UrlAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UrlAssessmentRequestObject urlAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UrlAssessmentRequestObject using PUT and returns a object. + /// + /// The UrlAssessmentRequestObject object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UrlAssessmentRequestObject urlAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUsedInsightRequest.cs b/src/Microsoft.Graph/Generated/requests/IUsedInsightRequest.cs index 055fe7eec9e..3d918baf9b5 100644 --- a/src/Microsoft.Graph/Generated/requests/IUsedInsightRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUsedInsightRequest.cs @@ -82,6 +82,22 @@ public partial interface IUsedInsightRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UsedInsight usedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UsedInsight using PUT. + /// + /// The UsedInsight object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UsedInsight usedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UsedInsight using PUT and returns a object. + /// + /// The UsedInsight object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UsedInsight usedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserActivityRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserActivityRequest.cs index 4d5cd857464..53c6d59b6e8 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserActivityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserActivityRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserActivityRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UserActivity userActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UserActivity using PUT. + /// + /// The UserActivity object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UserActivity userActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UserActivity using PUT and returns a object. + /// + /// The UserActivity object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UserActivity userActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserInstallStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserInstallStateSummaryRequest.cs index d2dacf965b5..b716726e6f9 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserInstallStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserInstallStateSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserInstallStateSummaryRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UserInstallStateSummary userInstallStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UserInstallStateSummary using PUT. + /// + /// The UserInstallStateSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UserInstallStateSummary userInstallStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UserInstallStateSummary using PUT and returns a object. + /// + /// The UserInstallStateSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UserInstallStateSummary userInstallStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserRequest.cs index a906bb72ca7..7071cc45b9c 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(User userToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified User using PUT. + /// + /// The User object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(User userToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified User using PUT and returns a object. + /// + /// The User object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(User userToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserScopeTeamsAppInstallationRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserScopeTeamsAppInstallationRequest.cs index e80b1eab0e8..f1109a9eef0 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserScopeTeamsAppInstallationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserScopeTeamsAppInstallationRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserScopeTeamsAppInstallationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UserScopeTeamsAppInstallation userScopeTeamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UserScopeTeamsAppInstallation using PUT. + /// + /// The UserScopeTeamsAppInstallation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UserScopeTeamsAppInstallation userScopeTeamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UserScopeTeamsAppInstallation using PUT and returns a object. + /// + /// The UserScopeTeamsAppInstallation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UserScopeTeamsAppInstallation userScopeTeamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserSettingsRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserSettingsRequest.cs index 9631a46f23d..5acf1a4861c 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserSettingsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserSettingsRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserSettingsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UserSettings userSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UserSettings using PUT. + /// + /// The UserSettings object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UserSettings userSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UserSettings using PUT and returns a object. + /// + /// The UserSettings object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UserSettings userSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IUserTeamworkRequest.cs b/src/Microsoft.Graph/Generated/requests/IUserTeamworkRequest.cs index 5972f80cee0..352e1e2181d 100644 --- a/src/Microsoft.Graph/Generated/requests/IUserTeamworkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IUserTeamworkRequest.cs @@ -82,6 +82,22 @@ public partial interface IUserTeamworkRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(UserTeamwork userTeamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified UserTeamwork using PUT. + /// + /// The UserTeamwork object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(UserTeamwork userTeamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified UserTeamwork using PUT and returns a object. + /// + /// The UserTeamwork object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(UserTeamwork userTeamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IVppTokenRequest.cs b/src/Microsoft.Graph/Generated/requests/IVppTokenRequest.cs index 96f62f3a03b..47776147772 100644 --- a/src/Microsoft.Graph/Generated/requests/IVppTokenRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IVppTokenRequest.cs @@ -82,6 +82,22 @@ public partial interface IVppTokenRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(VppToken vppTokenToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified VppToken using PUT. + /// + /// The VppToken object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(VppToken vppTokenToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified VppToken using PUT and returns a object. + /// + /// The VppToken object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(VppToken vppTokenToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWebAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IWebAppRequest.cs index 76aecc15b67..20f2f551e64 100644 --- a/src/Microsoft.Graph/Generated/requests/IWebAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWebAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IWebAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WebApp webAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WebApp using PUT. + /// + /// The WebApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WebApp webAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WebApp using PUT and returns a object. + /// + /// The WebApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WebApp webAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWin32LobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IWin32LobAppRequest.cs index 4c5c472a568..af479850df0 100644 --- a/src/Microsoft.Graph/Generated/requests/IWin32LobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWin32LobAppRequest.cs @@ -82,6 +82,22 @@ public partial interface IWin32LobAppRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Win32LobApp win32LobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Win32LobApp using PUT. + /// + /// The Win32LobApp object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Win32LobApp win32LobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Win32LobApp using PUT and returns a object. + /// + /// The Win32LobApp object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Win32LobApp win32LobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10CompliancePolicyRequest.cs index 4a885d690b0..183919854ed 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10CompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10CompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10CompliancePolicy windows10CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10CompliancePolicy using PUT. + /// + /// The Windows10CompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10CompliancePolicy windows10CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10CompliancePolicy using PUT and returns a object. + /// + /// The Windows10CompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10CompliancePolicy windows10CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10CustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10CustomConfigurationRequest.cs index 8d5cf46c8f0..b9107b3dd06 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10CustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10CustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10CustomConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10CustomConfiguration windows10CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10CustomConfiguration using PUT. + /// + /// The Windows10CustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10CustomConfiguration windows10CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10CustomConfiguration using PUT and returns a object. + /// + /// The Windows10CustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10CustomConfiguration windows10CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10EndpointProtectionConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10EndpointProtectionConfigurationRequest.cs index c839ce20a01..0954c3e97d5 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10EndpointProtectionConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10EndpointProtectionConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10EndpointProtectionConfigurationRequest : IBas /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10EndpointProtectionConfiguration windows10EndpointProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10EndpointProtectionConfiguration using PUT. + /// + /// The Windows10EndpointProtectionConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10EndpointProtectionConfiguration windows10EndpointProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10EndpointProtectionConfiguration using PUT and returns a object. + /// + /// The Windows10EndpointProtectionConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10EndpointProtectionConfiguration windows10EndpointProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10EnterpriseModernAppManagementConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10EnterpriseModernAppManagementConfigurationRequest.cs index 1743f9e9f23..6517997ecf7 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10EnterpriseModernAppManagementConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10EnterpriseModernAppManagementConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10EnterpriseModernAppManagementConfigurationReq /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10EnterpriseModernAppManagementConfiguration windows10EnterpriseModernAppManagementConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10EnterpriseModernAppManagementConfiguration using PUT. + /// + /// The Windows10EnterpriseModernAppManagementConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10EnterpriseModernAppManagementConfiguration windows10EnterpriseModernAppManagementConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10EnterpriseModernAppManagementConfiguration using PUT and returns a object. + /// + /// The Windows10EnterpriseModernAppManagementConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10EnterpriseModernAppManagementConfiguration windows10EnterpriseModernAppManagementConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10GeneralConfigurationRequest.cs index aaa97175fd1..fddb3fc5b5d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10GeneralConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10GeneralConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10GeneralConfiguration windows10GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10GeneralConfiguration using PUT. + /// + /// The Windows10GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10GeneralConfiguration windows10GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10GeneralConfiguration using PUT and returns a object. + /// + /// The Windows10GeneralConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10GeneralConfiguration windows10GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10MobileCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10MobileCompliancePolicyRequest.cs index 34af76dbe0a..50116a24c9e 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10MobileCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10MobileCompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10MobileCompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10MobileCompliancePolicy windows10MobileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10MobileCompliancePolicy using PUT. + /// + /// The Windows10MobileCompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10MobileCompliancePolicy windows10MobileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10MobileCompliancePolicy using PUT and returns a object. + /// + /// The Windows10MobileCompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10MobileCompliancePolicy windows10MobileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10SecureAssessmentConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10SecureAssessmentConfigurationRequest.cs index 280882a0b7a..350aaffdba9 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10SecureAssessmentConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10SecureAssessmentConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10SecureAssessmentConfigurationRequest : IBaseR /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10SecureAssessmentConfiguration windows10SecureAssessmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10SecureAssessmentConfiguration using PUT. + /// + /// The Windows10SecureAssessmentConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10SecureAssessmentConfiguration windows10SecureAssessmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10SecureAssessmentConfiguration using PUT and returns a object. + /// + /// The Windows10SecureAssessmentConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10SecureAssessmentConfiguration windows10SecureAssessmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows10TeamGeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows10TeamGeneralConfigurationRequest.cs index 39bd1831b56..5104aa075b6 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows10TeamGeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows10TeamGeneralConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows10TeamGeneralConfigurationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows10TeamGeneralConfiguration windows10TeamGeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows10TeamGeneralConfiguration using PUT. + /// + /// The Windows10TeamGeneralConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows10TeamGeneralConfiguration windows10TeamGeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows10TeamGeneralConfiguration using PUT and returns a object. + /// + /// The Windows10TeamGeneralConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows10TeamGeneralConfiguration windows10TeamGeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows81CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows81CompliancePolicyRequest.cs index fecf8e3802c..e2f7fc93bae 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows81CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows81CompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows81CompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows81CompliancePolicy windows81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows81CompliancePolicy using PUT. + /// + /// The Windows81CompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows81CompliancePolicy windows81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows81CompliancePolicy using PUT and returns a object. + /// + /// The Windows81CompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows81CompliancePolicy windows81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindows81GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindows81GeneralConfigurationRequest.cs index 34c3ab16869..f02300290e3 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindows81GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindows81GeneralConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindows81GeneralConfigurationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Windows81GeneralConfiguration using PUT. + /// + /// The Windows81GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Windows81GeneralConfiguration using PUT and returns a object. + /// + /// The Windows81GeneralConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs index b48e006809e..eeaf3fc427b 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsDefenderAdvancedThreatProtectionConfigurationRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsDefenderAdvancedThreatProtectionConfiguration windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsDefenderAdvancedThreatProtectionConfiguration using PUT. + /// + /// The WindowsDefenderAdvancedThreatProtectionConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsDefenderAdvancedThreatProtectionConfiguration windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsDefenderAdvancedThreatProtectionConfiguration using PUT and returns a object. + /// + /// The WindowsDefenderAdvancedThreatProtectionConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsDefenderAdvancedThreatProtectionConfiguration windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsHelloForBusinessAuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsHelloForBusinessAuthenticationMethodRequest.cs index f36c413c5c3..3b4d0e90474 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsHelloForBusinessAuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsHelloForBusinessAuthenticationMethodRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsHelloForBusinessAuthenticationMethodRequest : I /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsHelloForBusinessAuthenticationMethod windowsHelloForBusinessAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsHelloForBusinessAuthenticationMethod using PUT. + /// + /// The WindowsHelloForBusinessAuthenticationMethod object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsHelloForBusinessAuthenticationMethod windowsHelloForBusinessAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsHelloForBusinessAuthenticationMethod using PUT and returns a object. + /// + /// The WindowsHelloForBusinessAuthenticationMethod object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsHelloForBusinessAuthenticationMethod windowsHelloForBusinessAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLearningSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLearningSummaryRequest.cs index b2e1b9d07bb..4e982430888 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLearningSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLearningSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsInformationProtectionAppLearningSummaryRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsInformationProtectionAppLearningSummary windowsInformationProtectionAppLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsInformationProtectionAppLearningSummary using PUT. + /// + /// The WindowsInformationProtectionAppLearningSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionAppLearningSummary windowsInformationProtectionAppLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsInformationProtectionAppLearningSummary using PUT and returns a object. + /// + /// The WindowsInformationProtectionAppLearningSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionAppLearningSummary windowsInformationProtectionAppLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLockerFileRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLockerFileRequest.cs index 95cca1172ae..ee03ee391e3 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLockerFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionAppLockerFileRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsInformationProtectionAppLockerFileRequest : IBa /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsInformationProtectionAppLockerFile windowsInformationProtectionAppLockerFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsInformationProtectionAppLockerFile using PUT. + /// + /// The WindowsInformationProtectionAppLockerFile object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionAppLockerFile windowsInformationProtectionAppLockerFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsInformationProtectionAppLockerFile using PUT and returns a object. + /// + /// The WindowsInformationProtectionAppLockerFile object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionAppLockerFile windowsInformationProtectionAppLockerFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionNetworkLearningSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionNetworkLearningSummaryRequest.cs index 4bb68dc34ef..46879929a16 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionNetworkLearningSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionNetworkLearningSummaryRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsInformationProtectionNetworkLearningSummaryRequ /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsInformationProtectionNetworkLearningSummary using PUT. + /// + /// The WindowsInformationProtectionNetworkLearningSummary object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsInformationProtectionNetworkLearningSummary using PUT and returns a object. + /// + /// The WindowsInformationProtectionNetworkLearningSummary object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionPolicyRequest.cs index ba8897e7a0b..f537c5c7f86 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionPolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsInformationProtectionPolicyRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsInformationProtectionPolicy windowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsInformationProtectionPolicy using PUT. + /// + /// The WindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionPolicy windowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsInformationProtectionPolicy using PUT and returns a object. + /// + /// The WindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionPolicy windowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionRequest.cs index ecef0c14f24..70e3726cd76 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsInformationProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsInformationProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsInformationProtection windowsInformationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsInformationProtection using PUT. + /// + /// The WindowsInformationProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsInformationProtection windowsInformationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsInformationProtection using PUT and returns a object. + /// + /// The WindowsInformationProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtection windowsInformationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsMobileMSIRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsMobileMSIRequest.cs index cc5d78bd2d7..4b409975af9 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsMobileMSIRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsMobileMSIRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsMobileMSIRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsMobileMSI windowsMobileMSIToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsMobileMSI using PUT. + /// + /// The WindowsMobileMSI object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsMobileMSI windowsMobileMSIToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsMobileMSI using PUT and returns a object. + /// + /// The WindowsMobileMSI object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsMobileMSI windowsMobileMSIToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CompliancePolicyRequest.cs index 1520688aeda..95bc3bb9c50 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CompliancePolicyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsPhone81CompliancePolicyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsPhone81CompliancePolicy windowsPhone81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsPhone81CompliancePolicy using PUT. + /// + /// The WindowsPhone81CompliancePolicy object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsPhone81CompliancePolicy windowsPhone81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsPhone81CompliancePolicy using PUT and returns a object. + /// + /// The WindowsPhone81CompliancePolicy object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81CompliancePolicy windowsPhone81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CustomConfigurationRequest.cs index 484a34c6e26..affbeb67d00 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81CustomConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsPhone81CustomConfigurationRequest : IBaseReques /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsPhone81CustomConfiguration windowsPhone81CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsPhone81CustomConfiguration using PUT. + /// + /// The WindowsPhone81CustomConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsPhone81CustomConfiguration windowsPhone81CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsPhone81CustomConfiguration using PUT and returns a object. + /// + /// The WindowsPhone81CustomConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81CustomConfiguration windowsPhone81CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81GeneralConfigurationRequest.cs index d8344557680..42ec7e16f1d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsPhone81GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsPhone81GeneralConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsPhone81GeneralConfigurationRequest : IBaseReque /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsPhone81GeneralConfiguration windowsPhone81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsPhone81GeneralConfiguration using PUT. + /// + /// The WindowsPhone81GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsPhone81GeneralConfiguration windowsPhone81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsPhone81GeneralConfiguration using PUT and returns a object. + /// + /// The WindowsPhone81GeneralConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81GeneralConfiguration windowsPhone81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsUniversalAppXRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsUniversalAppXRequest.cs index a6e244677cd..4bb141e5161 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsUniversalAppXRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsUniversalAppXRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsUniversalAppXRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsUniversalAppX windowsUniversalAppXToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsUniversalAppX using PUT. + /// + /// The WindowsUniversalAppX object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsUniversalAppX windowsUniversalAppXToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsUniversalAppX using PUT and returns a object. + /// + /// The WindowsUniversalAppX object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsUniversalAppX windowsUniversalAppXToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWindowsUpdateForBusinessConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWindowsUpdateForBusinessConfigurationRequest.cs index eefc2994477..cc3cb1fb093 100644 --- a/src/Microsoft.Graph/Generated/requests/IWindowsUpdateForBusinessConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWindowsUpdateForBusinessConfigurationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWindowsUpdateForBusinessConfigurationRequest : IBaseRe /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WindowsUpdateForBusinessConfiguration windowsUpdateForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WindowsUpdateForBusinessConfiguration using PUT. + /// + /// The WindowsUpdateForBusinessConfiguration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WindowsUpdateForBusinessConfiguration windowsUpdateForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WindowsUpdateForBusinessConfiguration using PUT and returns a object. + /// + /// The WindowsUpdateForBusinessConfiguration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WindowsUpdateForBusinessConfiguration windowsUpdateForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookApplicationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookApplicationRequest.cs index d71cb0fb47d..1372057a218 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookApplicationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookApplicationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookApplicationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookApplication workbookApplicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookApplication using PUT. + /// + /// The WorkbookApplication object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookApplication workbookApplicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookApplication using PUT and returns a object. + /// + /// The WorkbookApplication object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookApplication workbookApplicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAreaFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAreaFormatRequest.cs index 216cda3a947..a0298025169 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAreaFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAreaFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAreaFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAreaFormat workbookChartAreaFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAreaFormat using PUT. + /// + /// The WorkbookChartAreaFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAreaFormat workbookChartAreaFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAreaFormat using PUT and returns a object. + /// + /// The WorkbookChartAreaFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAreaFormat workbookChartAreaFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxesRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxesRequest.cs index 6d5d516b0e3..be1432acbfe 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxesRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAxesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAxes workbookChartAxesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAxes using PUT. + /// + /// The WorkbookChartAxes object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAxes workbookChartAxesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAxes using PUT and returns a object. + /// + /// The WorkbookChartAxes object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxes workbookChartAxesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisFormatRequest.cs index b88736164e1..ba2f6251047 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAxisFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAxisFormat workbookChartAxisFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAxisFormat using PUT. + /// + /// The WorkbookChartAxisFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAxisFormat workbookChartAxisFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAxisFormat using PUT and returns a object. + /// + /// The WorkbookChartAxisFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisFormat workbookChartAxisFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisRequest.cs index 2fd6c02166a..e0086c02e31 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAxisRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAxis workbookChartAxisToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAxis using PUT. + /// + /// The WorkbookChartAxis object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAxis workbookChartAxisToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAxis using PUT and returns a object. + /// + /// The WorkbookChartAxis object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxis workbookChartAxisToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleFormatRequest.cs index 8039b385cdd..85f45b3792e 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAxisTitleFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAxisTitleFormat workbookChartAxisTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAxisTitleFormat using PUT. + /// + /// The WorkbookChartAxisTitleFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAxisTitleFormat workbookChartAxisTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAxisTitleFormat using PUT and returns a object. + /// + /// The WorkbookChartAxisTitleFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisTitleFormat workbookChartAxisTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleRequest.cs index ac7c1881b30..af3301a9603 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartAxisTitleRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartAxisTitleRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartAxisTitle workbookChartAxisTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartAxisTitle using PUT. + /// + /// The WorkbookChartAxisTitle object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartAxisTitle workbookChartAxisTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartAxisTitle using PUT and returns a object. + /// + /// The WorkbookChartAxisTitle object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisTitle workbookChartAxisTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelFormatRequest.cs index 51ff8ca4c09..99c30275732 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartDataLabelFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartDataLabelFormat workbookChartDataLabelFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartDataLabelFormat using PUT. + /// + /// The WorkbookChartDataLabelFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartDataLabelFormat workbookChartDataLabelFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartDataLabelFormat using PUT and returns a object. + /// + /// The WorkbookChartDataLabelFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartDataLabelFormat workbookChartDataLabelFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelsRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelsRequest.cs index 2e74a6ffa94..35a4efbba69 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartDataLabelsRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartDataLabelsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartDataLabels workbookChartDataLabelsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartDataLabels using PUT. + /// + /// The WorkbookChartDataLabels object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartDataLabels workbookChartDataLabelsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartDataLabels using PUT and returns a object. + /// + /// The WorkbookChartDataLabels object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartDataLabels workbookChartDataLabelsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartFillRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartFillRequest.cs index bfe3cf4450f..03710895388 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartFillRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartFillRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartFillRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartFill workbookChartFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartFill using PUT. + /// + /// The WorkbookChartFill object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartFill workbookChartFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartFill using PUT and returns a object. + /// + /// The WorkbookChartFill object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartFill workbookChartFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartFontRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartFontRequest.cs index 1a0c0d70f4d..2cdf2ed056b 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartFontRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartFontRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartFontRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartFont workbookChartFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartFont using PUT. + /// + /// The WorkbookChartFont object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartFont workbookChartFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartFont using PUT and returns a object. + /// + /// The WorkbookChartFont object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartFont workbookChartFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesFormatRequest.cs index 2b6749e386b..8d3191d7235 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartGridlinesFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartGridlinesFormat workbookChartGridlinesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartGridlinesFormat using PUT. + /// + /// The WorkbookChartGridlinesFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartGridlinesFormat workbookChartGridlinesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartGridlinesFormat using PUT and returns a object. + /// + /// The WorkbookChartGridlinesFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartGridlinesFormat workbookChartGridlinesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesRequest.cs index 87d7347dc44..a4fba7ed100 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartGridlinesRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartGridlinesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartGridlines workbookChartGridlinesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartGridlines using PUT. + /// + /// The WorkbookChartGridlines object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartGridlines workbookChartGridlinesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartGridlines using PUT and returns a object. + /// + /// The WorkbookChartGridlines object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartGridlines workbookChartGridlinesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendFormatRequest.cs index 46c6337b4cb..9120d6fc483 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartLegendFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartLegendFormat workbookChartLegendFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartLegendFormat using PUT. + /// + /// The WorkbookChartLegendFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartLegendFormat workbookChartLegendFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartLegendFormat using PUT and returns a object. + /// + /// The WorkbookChartLegendFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLegendFormat workbookChartLegendFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendRequest.cs index b28beaa6b0f..db587d525ee 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLegendRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartLegendRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartLegend workbookChartLegendToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartLegend using PUT. + /// + /// The WorkbookChartLegend object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartLegend workbookChartLegendToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartLegend using PUT and returns a object. + /// + /// The WorkbookChartLegend object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLegend workbookChartLegendToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLineFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLineFormatRequest.cs index be9a830261f..de53cb9010d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartLineFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartLineFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartLineFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartLineFormat workbookChartLineFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartLineFormat using PUT. + /// + /// The WorkbookChartLineFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartLineFormat workbookChartLineFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartLineFormat using PUT and returns a object. + /// + /// The WorkbookChartLineFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLineFormat workbookChartLineFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointFormatRequest.cs index 0dc05766d67..c47c5040992 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartPointFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartPointFormat workbookChartPointFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartPointFormat using PUT. + /// + /// The WorkbookChartPointFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartPointFormat workbookChartPointFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartPointFormat using PUT and returns a object. + /// + /// The WorkbookChartPointFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartPointFormat workbookChartPointFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointRequest.cs index a31bb4901cf..368e4d359bf 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartPointRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartPointRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartPoint workbookChartPointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartPoint using PUT. + /// + /// The WorkbookChartPoint object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartPoint workbookChartPointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartPoint using PUT and returns a object. + /// + /// The WorkbookChartPoint object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartPoint workbookChartPointToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartRequest.cs index 76ad8b7972e..8e444cdb469 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChart workbookChartToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChart using PUT. + /// + /// The WorkbookChart object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChart workbookChartToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChart using PUT and returns a object. + /// + /// The WorkbookChart object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChart workbookChartToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesFormatRequest.cs index 3370ca92550..e19c9ef051f 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartSeriesFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartSeriesFormat workbookChartSeriesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartSeriesFormat using PUT. + /// + /// The WorkbookChartSeriesFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartSeriesFormat workbookChartSeriesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartSeriesFormat using PUT and returns a object. + /// + /// The WorkbookChartSeriesFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartSeriesFormat workbookChartSeriesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesRequest.cs index 88bb989f9b0..efa697d3c57 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartSeriesRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartSeriesRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartSeries workbookChartSeriesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartSeries using PUT. + /// + /// The WorkbookChartSeries object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartSeries workbookChartSeriesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartSeries using PUT and returns a object. + /// + /// The WorkbookChartSeries object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartSeries workbookChartSeriesToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleFormatRequest.cs index f0a00e5228f..3ff0cf79cb9 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartTitleFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartTitleFormat workbookChartTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartTitleFormat using PUT. + /// + /// The WorkbookChartTitleFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartTitleFormat workbookChartTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartTitleFormat using PUT and returns a object. + /// + /// The WorkbookChartTitleFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartTitleFormat workbookChartTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleRequest.cs index 187d1ba2736..423dea755df 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookChartTitleRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookChartTitleRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookChartTitle workbookChartTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookChartTitle using PUT. + /// + /// The WorkbookChartTitle object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookChartTitle workbookChartTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookChartTitle using PUT and returns a object. + /// + /// The WorkbookChartTitle object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartTitle workbookChartTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookCommentReplyRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookCommentReplyRequest.cs index 959a0a09eb3..c4f2f9f0932 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookCommentReplyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookCommentReplyRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookCommentReplyRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookCommentReply workbookCommentReplyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookCommentReply using PUT. + /// + /// The WorkbookCommentReply object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookCommentReply workbookCommentReplyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookCommentReply using PUT and returns a object. + /// + /// The WorkbookCommentReply object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookCommentReply workbookCommentReplyToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookCommentRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookCommentRequest.cs index 50b4638a69b..d2ff1b92045 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookCommentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookCommentRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookCommentRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookComment workbookCommentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookComment using PUT. + /// + /// The WorkbookComment object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookComment workbookCommentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookComment using PUT and returns a object. + /// + /// The WorkbookComment object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookComment workbookCommentToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookFilterRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookFilterRequest.cs index 4f0089daa1d..3781ded4a54 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookFilterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookFilterRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookFilterRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookFilter workbookFilterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookFilter using PUT. + /// + /// The WorkbookFilter object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookFilter workbookFilterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookFilter using PUT and returns a object. + /// + /// The WorkbookFilter object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookFilter workbookFilterToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookFormatProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookFormatProtectionRequest.cs index 9668fb9fd28..9cf9c741f8d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookFormatProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookFormatProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookFormatProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookFormatProtection workbookFormatProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookFormatProtection using PUT. + /// + /// The WorkbookFormatProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookFormatProtection workbookFormatProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookFormatProtection using PUT and returns a object. + /// + /// The WorkbookFormatProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookFormatProtection workbookFormatProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionResultRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionResultRequest.cs index 7caf315faa7..ac7e903d805 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionResultRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionResultRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookFunctionResultRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookFunctionResult workbookFunctionResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookFunctionResult using PUT. + /// + /// The WorkbookFunctionResult object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookFunctionResult workbookFunctionResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookFunctionResult using PUT and returns a object. + /// + /// The WorkbookFunctionResult object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookFunctionResult workbookFunctionResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionsRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionsRequest.cs index 734fb7601c0..a4bf06369ca 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookFunctionsRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookFunctionsRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookFunctions workbookFunctionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookFunctions using PUT. + /// + /// The WorkbookFunctions object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookFunctions workbookFunctionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookFunctions using PUT and returns a object. + /// + /// The WorkbookFunctions object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookFunctions workbookFunctionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookNamedItemRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookNamedItemRequest.cs index ddbcc7ce875..8eb9da02615 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookNamedItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookNamedItemRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookNamedItemRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookNamedItem workbookNamedItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookNamedItem using PUT. + /// + /// The WorkbookNamedItem object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookNamedItem workbookNamedItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookNamedItem using PUT and returns a object. + /// + /// The WorkbookNamedItem object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookNamedItem workbookNamedItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookOperationRequest.cs index 84bdd691c26..4a41604e623 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookOperationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookOperationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookOperation workbookOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookOperation using PUT. + /// + /// The WorkbookOperation object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookOperation workbookOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookOperation using PUT and returns a object. + /// + /// The WorkbookOperation object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookOperation workbookOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookPivotTableRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookPivotTableRequest.cs index 89c21ef1378..bb478c3e79a 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookPivotTableRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookPivotTableRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookPivotTableRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookPivotTable workbookPivotTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookPivotTable using PUT. + /// + /// The WorkbookPivotTable object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookPivotTable workbookPivotTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookPivotTable using PUT and returns a object. + /// + /// The WorkbookPivotTable object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookPivotTable workbookPivotTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeBorderRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeBorderRequest.cs index bf9836af428..1ab8133068a 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeBorderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeBorderRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeBorderRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeBorder workbookRangeBorderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeBorder using PUT. + /// + /// The WorkbookRangeBorder object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeBorder workbookRangeBorderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeBorder using PUT and returns a object. + /// + /// The WorkbookRangeBorder object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeBorder workbookRangeBorderToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFillRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFillRequest.cs index f102d9724ba..17d962f5b69 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFillRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFillRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeFillRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeFill workbookRangeFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeFill using PUT. + /// + /// The WorkbookRangeFill object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeFill workbookRangeFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeFill using PUT and returns a object. + /// + /// The WorkbookRangeFill object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFill workbookRangeFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFontRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFontRequest.cs index 3fc5b29b511..2fcbbb64e08 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFontRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFontRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeFontRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeFont workbookRangeFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeFont using PUT. + /// + /// The WorkbookRangeFont object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeFont workbookRangeFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeFont using PUT and returns a object. + /// + /// The WorkbookRangeFont object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFont workbookRangeFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFormatRequest.cs index c8894f16d8e..ca108dec6ba 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeFormatRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeFormatRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeFormat workbookRangeFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeFormat using PUT. + /// + /// The WorkbookRangeFormat object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeFormat workbookRangeFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeFormat using PUT and returns a object. + /// + /// The WorkbookRangeFormat object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFormat workbookRangeFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeRequest.cs index eabdae54ba2..755013870cd 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRange workbookRangeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRange using PUT. + /// + /// The WorkbookRange object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRange workbookRangeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRange using PUT and returns a object. + /// + /// The WorkbookRange object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRange workbookRangeToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeSortRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeSortRequest.cs index 74be3477a40..d21c7f5445d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeSortRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeSortRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeSortRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeSort workbookRangeSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeSort using PUT. + /// + /// The WorkbookRangeSort object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeSort workbookRangeSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeSort using PUT and returns a object. + /// + /// The WorkbookRangeSort object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeSort workbookRangeSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeViewRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeViewRequest.cs index 2835258e554..967a7a605c5 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRangeViewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRangeViewRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRangeViewRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookRangeView workbookRangeViewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookRangeView using PUT. + /// + /// The WorkbookRangeView object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookRangeView workbookRangeViewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookRangeView using PUT and returns a object. + /// + /// The WorkbookRangeView object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeView workbookRangeViewToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookRequest.cs index b20249ed426..0cf2e31218d 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(Workbook workbookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified Workbook using PUT. + /// + /// The Workbook object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(Workbook workbookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified Workbook using PUT and returns a object. + /// + /// The Workbook object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(Workbook workbookToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookTableColumnRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookTableColumnRequest.cs index aaa4633e8f2..121ed5ac4fd 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookTableColumnRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookTableColumnRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookTableColumnRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookTableColumn workbookTableColumnToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookTableColumn using PUT. + /// + /// The WorkbookTableColumn object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookTableColumn workbookTableColumnToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookTableColumn using PUT and returns a object. + /// + /// The WorkbookTableColumn object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableColumn workbookTableColumnToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookTableRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookTableRequest.cs index a66b8b77dcb..d6190c83db4 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookTableRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookTableRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookTableRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookTable workbookTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookTable using PUT. + /// + /// The WorkbookTable object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookTable workbookTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookTable using PUT and returns a object. + /// + /// The WorkbookTable object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookTable workbookTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookTableRowRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookTableRowRequest.cs index 9f96f06aa92..001c80384f3 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookTableRowRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookTableRowRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookTableRowRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookTableRow workbookTableRowToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookTableRow using PUT. + /// + /// The WorkbookTableRow object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookTableRow workbookTableRowToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookTableRow using PUT and returns a object. + /// + /// The WorkbookTableRow object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableRow workbookTableRowToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookTableSortRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookTableSortRequest.cs index 0c0b2b6a312..e66822777b4 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookTableSortRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookTableSortRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookTableSortRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookTableSort workbookTableSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookTableSort using PUT. + /// + /// The WorkbookTableSort object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookTableSort workbookTableSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookTableSort using PUT and returns a object. + /// + /// The WorkbookTableSort object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableSort workbookTableSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetProtectionRequest.cs index 28bce1c314a..759920a6f35 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetProtectionRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookWorksheetProtectionRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookWorksheetProtection workbookWorksheetProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookWorksheetProtection using PUT. + /// + /// The WorkbookWorksheetProtection object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookWorksheetProtection workbookWorksheetProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookWorksheetProtection using PUT and returns a object. + /// + /// The WorkbookWorksheetProtection object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookWorksheetProtection workbookWorksheetProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetRequest.cs index 576c2968320..736ce167696 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkbookWorksheetRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkbookWorksheetRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkbookWorksheet workbookWorksheetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkbookWorksheet using PUT. + /// + /// The WorkbookWorksheet object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkbookWorksheet workbookWorksheetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkbookWorksheet using PUT and returns a object. + /// + /// The WorkbookWorksheet object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkbookWorksheet workbookWorksheetToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IWorkforceIntegrationRequest.cs b/src/Microsoft.Graph/Generated/requests/IWorkforceIntegrationRequest.cs index 24c396834da..aa25e3dd3af 100644 --- a/src/Microsoft.Graph/Generated/requests/IWorkforceIntegrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IWorkforceIntegrationRequest.cs @@ -82,6 +82,22 @@ public partial interface IWorkforceIntegrationRequest : IBaseRequest /// The object of the request. System.Threading.Tasks.Task> UpdateResponseAsync(WorkforceIntegration workforceIntegrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified WorkforceIntegration using PUT. + /// + /// The WorkforceIntegration object to update. + /// The for the request. + /// The task to await. + System.Threading.Tasks.Task PutAsync(WorkforceIntegration workforceIntegrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Updates the specified WorkforceIntegration using PUT and returns a object. + /// + /// The WorkforceIntegration object to update. + /// The for the request. + /// The task of to await. + System.Threading.Tasks.Task> PutResponseAsync(WorkforceIntegration workforceIntegrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IdentityContainerRequest.cs b/src/Microsoft.Graph/Generated/requests/IdentityContainerRequest.cs index d4d4d3a2d75..e86a86db09b 100644 --- a/src/Microsoft.Graph/Generated/requests/IdentityContainerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IdentityContainerRequest.cs @@ -139,6 +139,34 @@ public IdentityContainerRequest( return this.SendAsyncWithGraphResponse(identityContainerToUpdate, cancellationToken); } + /// + /// Updates the specified IdentityContainer using PUT. + /// + /// The IdentityContainer object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IdentityContainer identityContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(identityContainerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IdentityContainer using PUT and returns a object. + /// + /// The IdentityContainer object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IdentityContainer identityContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(identityContainerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IdentityGovernanceRequest.cs b/src/Microsoft.Graph/Generated/requests/IdentityGovernanceRequest.cs index aab6c2f1f04..cb67dba1e9b 100644 --- a/src/Microsoft.Graph/Generated/requests/IdentityGovernanceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IdentityGovernanceRequest.cs @@ -139,6 +139,34 @@ public IdentityGovernanceRequest( return this.SendAsyncWithGraphResponse(identityGovernanceToUpdate, cancellationToken); } + /// + /// Updates the specified IdentityGovernance using PUT. + /// + /// The IdentityGovernance object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IdentityGovernance identityGovernanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(identityGovernanceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IdentityGovernance using PUT and returns a object. + /// + /// The IdentityGovernance object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IdentityGovernance identityGovernanceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(identityGovernanceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IdentityProviderRequest.cs b/src/Microsoft.Graph/Generated/requests/IdentityProviderRequest.cs index 0b8b07b2e27..775a8607602 100644 --- a/src/Microsoft.Graph/Generated/requests/IdentityProviderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IdentityProviderRequest.cs @@ -139,6 +139,34 @@ public IdentityProviderRequest( return this.SendAsyncWithGraphResponse(identityProviderToUpdate, cancellationToken); } + /// + /// Updates the specified IdentityProvider using PUT. + /// + /// The IdentityProvider object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IdentityProvider identityProviderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(identityProviderToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IdentityProvider using PUT and returns a object. + /// + /// The IdentityProvider object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IdentityProvider identityProviderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(identityProviderToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IdentitySecurityDefaultsEnforcementPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IdentitySecurityDefaultsEnforcementPolicyRequest.cs index e4c13215ae8..94970bb0357 100644 --- a/src/Microsoft.Graph/Generated/requests/IdentitySecurityDefaultsEnforcementPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IdentitySecurityDefaultsEnforcementPolicyRequest.cs @@ -139,6 +139,34 @@ public IdentitySecurityDefaultsEnforcementPolicyRequest( return this.SendAsyncWithGraphResponse(identitySecurityDefaultsEnforcementPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified IdentitySecurityDefaultsEnforcementPolicy using PUT. + /// + /// The IdentitySecurityDefaultsEnforcementPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IdentitySecurityDefaultsEnforcementPolicy identitySecurityDefaultsEnforcementPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(identitySecurityDefaultsEnforcementPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IdentitySecurityDefaultsEnforcementPolicy using PUT and returns a object. + /// + /// The IdentitySecurityDefaultsEnforcementPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IdentitySecurityDefaultsEnforcementPolicy identitySecurityDefaultsEnforcementPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(identitySecurityDefaultsEnforcementPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/InferenceClassificationOverrideRequest.cs b/src/Microsoft.Graph/Generated/requests/InferenceClassificationOverrideRequest.cs index df3596be90d..d86a45b1263 100644 --- a/src/Microsoft.Graph/Generated/requests/InferenceClassificationOverrideRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/InferenceClassificationOverrideRequest.cs @@ -139,6 +139,34 @@ public InferenceClassificationOverrideRequest( return this.SendAsyncWithGraphResponse(inferenceClassificationOverrideToUpdate, cancellationToken); } + /// + /// Updates the specified InferenceClassificationOverride using PUT. + /// + /// The InferenceClassificationOverride object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(InferenceClassificationOverride inferenceClassificationOverrideToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(inferenceClassificationOverrideToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified InferenceClassificationOverride using PUT and returns a object. + /// + /// The InferenceClassificationOverride object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(InferenceClassificationOverride inferenceClassificationOverrideToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(inferenceClassificationOverrideToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/InferenceClassificationRequest.cs b/src/Microsoft.Graph/Generated/requests/InferenceClassificationRequest.cs index 5d88fe9f0bc..1630d01ff38 100644 --- a/src/Microsoft.Graph/Generated/requests/InferenceClassificationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/InferenceClassificationRequest.cs @@ -139,6 +139,34 @@ public InferenceClassificationRequest( return this.SendAsyncWithGraphResponse(inferenceClassificationToUpdate, cancellationToken); } + /// + /// Updates the specified InferenceClassification using PUT. + /// + /// The InferenceClassification object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(InferenceClassification inferenceClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(inferenceClassificationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified InferenceClassification using PUT and returns a object. + /// + /// The InferenceClassification object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(InferenceClassification inferenceClassificationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(inferenceClassificationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/InformationProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/InformationProtectionRequest.cs index ea3a69807b0..f2e3afd1987 100644 --- a/src/Microsoft.Graph/Generated/requests/InformationProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/InformationProtectionRequest.cs @@ -139,6 +139,34 @@ public InformationProtectionRequest( return this.SendAsyncWithGraphResponse(informationProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified InformationProtection using PUT. + /// + /// The InformationProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(InformationProtection informationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(informationProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified InformationProtection using PUT and returns a object. + /// + /// The InformationProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(InformationProtection informationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(informationProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/InvitationRequest.cs b/src/Microsoft.Graph/Generated/requests/InvitationRequest.cs index 79405685271..9345e10a1ef 100644 --- a/src/Microsoft.Graph/Generated/requests/InvitationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/InvitationRequest.cs @@ -139,6 +139,34 @@ public InvitationRequest( return this.SendAsyncWithGraphResponse(invitationToUpdate, cancellationToken); } + /// + /// Updates the specified Invitation using PUT. + /// + /// The Invitation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Invitation invitationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(invitationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Invitation using PUT and returns a object. + /// + /// The Invitation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Invitation invitationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(invitationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/InviteParticipantsOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/InviteParticipantsOperationRequest.cs index 00efe6a4ace..d6fe7ededd5 100644 --- a/src/Microsoft.Graph/Generated/requests/InviteParticipantsOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/InviteParticipantsOperationRequest.cs @@ -139,6 +139,34 @@ public InviteParticipantsOperationRequest( return this.SendAsyncWithGraphResponse(inviteParticipantsOperationToUpdate, cancellationToken); } + /// + /// Updates the specified InviteParticipantsOperation using PUT. + /// + /// The InviteParticipantsOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(inviteParticipantsOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified InviteParticipantsOperation using PUT and returns a object. + /// + /// The InviteParticipantsOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(InviteParticipantsOperation inviteParticipantsOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(inviteParticipantsOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosCertificateProfileRequest.cs b/src/Microsoft.Graph/Generated/requests/IosCertificateProfileRequest.cs index 6fdd3342e13..4d2b04c9777 100644 --- a/src/Microsoft.Graph/Generated/requests/IosCertificateProfileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosCertificateProfileRequest.cs @@ -139,6 +139,34 @@ public IosCertificateProfileRequest( return this.SendAsyncWithGraphResponse(iosCertificateProfileToUpdate, cancellationToken); } + /// + /// Updates the specified IosCertificateProfile using PUT. + /// + /// The IosCertificateProfile object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosCertificateProfile iosCertificateProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosCertificateProfileToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosCertificateProfile using PUT and returns a object. + /// + /// The IosCertificateProfile object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosCertificateProfile iosCertificateProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosCertificateProfileToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/IosCompliancePolicyRequest.cs index 00d9253ce4e..3a44d2c57f8 100644 --- a/src/Microsoft.Graph/Generated/requests/IosCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public IosCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(iosCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified IosCompliancePolicy using PUT. + /// + /// The IosCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosCompliancePolicy iosCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosCompliancePolicy using PUT and returns a object. + /// + /// The IosCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosCompliancePolicy iosCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosCustomConfigurationRequest.cs index 638c33377dc..3a4d1e1259c 100644 --- a/src/Microsoft.Graph/Generated/requests/IosCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosCustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public IosCustomConfigurationRequest( return this.SendAsyncWithGraphResponse(iosCustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified IosCustomConfiguration using PUT. + /// + /// The IosCustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosCustomConfiguration iosCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosCustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosCustomConfiguration using PUT and returns a object. + /// + /// The IosCustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosCustomConfiguration iosCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosCustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosDeviceFeaturesConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosDeviceFeaturesConfigurationRequest.cs index 41d15cd782a..f970ea802d3 100644 --- a/src/Microsoft.Graph/Generated/requests/IosDeviceFeaturesConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosDeviceFeaturesConfigurationRequest.cs @@ -139,6 +139,34 @@ public IosDeviceFeaturesConfigurationRequest( return this.SendAsyncWithGraphResponse(iosDeviceFeaturesConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified IosDeviceFeaturesConfiguration using PUT. + /// + /// The IosDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosDeviceFeaturesConfiguration iosDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosDeviceFeaturesConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosDeviceFeaturesConfiguration using PUT and returns a object. + /// + /// The IosDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosDeviceFeaturesConfiguration iosDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosDeviceFeaturesConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosGeneralDeviceConfigurationRequest.cs index ca4bd37104f..dfcda9b4367 100644 --- a/src/Microsoft.Graph/Generated/requests/IosGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosGeneralDeviceConfigurationRequest.cs @@ -139,6 +139,34 @@ public IosGeneralDeviceConfigurationRequest( return this.SendAsyncWithGraphResponse(iosGeneralDeviceConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified IosGeneralDeviceConfiguration using PUT. + /// + /// The IosGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosGeneralDeviceConfiguration iosGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosGeneralDeviceConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The IosGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosGeneralDeviceConfiguration iosGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosGeneralDeviceConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IosLobAppRequest.cs index 12a117e1663..ce05c565c1c 100644 --- a/src/Microsoft.Graph/Generated/requests/IosLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosLobAppRequest.cs @@ -139,6 +139,34 @@ public IosLobAppRequest( return this.SendAsyncWithGraphResponse(iosLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified IosLobApp using PUT. + /// + /// The IosLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosLobApp iosLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosLobApp using PUT and returns a object. + /// + /// The IosLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosLobApp iosLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/IosManagedAppProtectionRequest.cs index 40115ec24f5..7d1af3223e6 100644 --- a/src/Microsoft.Graph/Generated/requests/IosManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosManagedAppProtectionRequest.cs @@ -139,6 +139,34 @@ public IosManagedAppProtectionRequest( return this.SendAsyncWithGraphResponse(iosManagedAppProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified IosManagedAppProtection using PUT. + /// + /// The IosManagedAppProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosManagedAppProtection iosManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosManagedAppProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosManagedAppProtection using PUT and returns a object. + /// + /// The IosManagedAppProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosManagedAppProtection iosManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosManagedAppProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosManagedAppRegistrationRequest.cs index d94591743ed..d7f89e8d1bf 100644 --- a/src/Microsoft.Graph/Generated/requests/IosManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosManagedAppRegistrationRequest.cs @@ -139,6 +139,34 @@ public IosManagedAppRegistrationRequest( return this.SendAsyncWithGraphResponse(iosManagedAppRegistrationToUpdate, cancellationToken); } + /// + /// Updates the specified IosManagedAppRegistration using PUT. + /// + /// The IosManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosManagedAppRegistration iosManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosManagedAppRegistrationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosManagedAppRegistration using PUT and returns a object. + /// + /// The IosManagedAppRegistration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosManagedAppRegistration iosManagedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosManagedAppRegistrationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosMobileAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosMobileAppConfigurationRequest.cs index 2b82afcb7ba..2ad430587d3 100644 --- a/src/Microsoft.Graph/Generated/requests/IosMobileAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosMobileAppConfigurationRequest.cs @@ -139,6 +139,34 @@ public IosMobileAppConfigurationRequest( return this.SendAsyncWithGraphResponse(iosMobileAppConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified IosMobileAppConfiguration using PUT. + /// + /// The IosMobileAppConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosMobileAppConfiguration iosMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosMobileAppConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosMobileAppConfiguration using PUT and returns a object. + /// + /// The IosMobileAppConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosMobileAppConfiguration iosMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosMobileAppConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IosStoreAppRequest.cs index 5474e23c04d..29f0d79c14c 100644 --- a/src/Microsoft.Graph/Generated/requests/IosStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosStoreAppRequest.cs @@ -139,6 +139,34 @@ public IosStoreAppRequest( return this.SendAsyncWithGraphResponse(iosStoreAppToUpdate, cancellationToken); } + /// + /// Updates the specified IosStoreApp using PUT. + /// + /// The IosStoreApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosStoreApp iosStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosStoreAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosStoreApp using PUT and returns a object. + /// + /// The IosStoreApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosStoreApp iosStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosStoreAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosUpdateConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/IosUpdateConfigurationRequest.cs index 6d38024395e..cadc4c1f53a 100644 --- a/src/Microsoft.Graph/Generated/requests/IosUpdateConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosUpdateConfigurationRequest.cs @@ -139,6 +139,34 @@ public IosUpdateConfigurationRequest( return this.SendAsyncWithGraphResponse(iosUpdateConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified IosUpdateConfiguration using PUT. + /// + /// The IosUpdateConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosUpdateConfiguration iosUpdateConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosUpdateConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosUpdateConfiguration using PUT and returns a object. + /// + /// The IosUpdateConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosUpdateConfiguration iosUpdateConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosUpdateConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosUpdateDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/IosUpdateDeviceStatusRequest.cs index cd8b515a12a..ca4eba656a9 100644 --- a/src/Microsoft.Graph/Generated/requests/IosUpdateDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosUpdateDeviceStatusRequest.cs @@ -139,6 +139,34 @@ public IosUpdateDeviceStatusRequest( return this.SendAsyncWithGraphResponse(iosUpdateDeviceStatusToUpdate, cancellationToken); } + /// + /// Updates the specified IosUpdateDeviceStatus using PUT. + /// + /// The IosUpdateDeviceStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosUpdateDeviceStatus iosUpdateDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosUpdateDeviceStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosUpdateDeviceStatus using PUT and returns a object. + /// + /// The IosUpdateDeviceStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosUpdateDeviceStatus iosUpdateDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosUpdateDeviceStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosVppAppRequest.cs b/src/Microsoft.Graph/Generated/requests/IosVppAppRequest.cs index 1cde2ba73b1..cc532e878d4 100644 --- a/src/Microsoft.Graph/Generated/requests/IosVppAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosVppAppRequest.cs @@ -139,6 +139,34 @@ public IosVppAppRequest( return this.SendAsyncWithGraphResponse(iosVppAppToUpdate, cancellationToken); } + /// + /// Updates the specified IosVppApp using PUT. + /// + /// The IosVppApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosVppApp iosVppAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosVppAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosVppApp using PUT and returns a object. + /// + /// The IosVppApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosVppApp iosVppAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosVppAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosVppEBookAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/IosVppEBookAssignmentRequest.cs index b3b3cc08c8a..2855e76c7f3 100644 --- a/src/Microsoft.Graph/Generated/requests/IosVppEBookAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosVppEBookAssignmentRequest.cs @@ -139,6 +139,34 @@ public IosVppEBookAssignmentRequest( return this.SendAsyncWithGraphResponse(iosVppEBookAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified IosVppEBookAssignment using PUT. + /// + /// The IosVppEBookAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosVppEBookAssignment iosVppEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosVppEBookAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosVppEBookAssignment using PUT and returns a object. + /// + /// The IosVppEBookAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosVppEBookAssignment iosVppEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosVppEBookAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IosVppEBookRequest.cs b/src/Microsoft.Graph/Generated/requests/IosVppEBookRequest.cs index f0424db5b6e..b21b2f0d68c 100644 --- a/src/Microsoft.Graph/Generated/requests/IosVppEBookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IosVppEBookRequest.cs @@ -139,6 +139,34 @@ public IosVppEBookRequest( return this.SendAsyncWithGraphResponse(iosVppEBookToUpdate, cancellationToken); } + /// + /// Updates the specified IosVppEBook using PUT. + /// + /// The IosVppEBook object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IosVppEBook iosVppEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(iosVppEBookToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IosVppEBook using PUT and returns a object. + /// + /// The IosVppEBook object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IosVppEBook iosVppEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(iosVppEBookToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/IpNamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/IpNamedLocationRequest.cs index fd9dfc96120..f8aab593de4 100644 --- a/src/Microsoft.Graph/Generated/requests/IpNamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/IpNamedLocationRequest.cs @@ -139,6 +139,34 @@ public IpNamedLocationRequest( return this.SendAsyncWithGraphResponse(ipNamedLocationToUpdate, cancellationToken); } + /// + /// Updates the specified IpNamedLocation using PUT. + /// + /// The IpNamedLocation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(IpNamedLocation ipNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(ipNamedLocationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified IpNamedLocation using PUT and returns a object. + /// + /// The IpNamedLocation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(IpNamedLocation ipNamedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(ipNamedLocationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ItemActivityRequest.cs b/src/Microsoft.Graph/Generated/requests/ItemActivityRequest.cs index 51132612519..6c043c86f99 100644 --- a/src/Microsoft.Graph/Generated/requests/ItemActivityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ItemActivityRequest.cs @@ -139,6 +139,34 @@ public ItemActivityRequest( return this.SendAsyncWithGraphResponse(itemActivityToUpdate, cancellationToken); } + /// + /// Updates the specified ItemActivity using PUT. + /// + /// The ItemActivity object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ItemActivity itemActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(itemActivityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ItemActivity using PUT and returns a object. + /// + /// The ItemActivity object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ItemActivity itemActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(itemActivityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ItemActivityStatRequest.cs b/src/Microsoft.Graph/Generated/requests/ItemActivityStatRequest.cs index 64176dc6851..629ac34505e 100644 --- a/src/Microsoft.Graph/Generated/requests/ItemActivityStatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ItemActivityStatRequest.cs @@ -139,6 +139,34 @@ public ItemActivityStatRequest( return this.SendAsyncWithGraphResponse(itemActivityStatToUpdate, cancellationToken); } + /// + /// Updates the specified ItemActivityStat using PUT. + /// + /// The ItemActivityStat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ItemActivityStat itemActivityStatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(itemActivityStatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ItemActivityStat using PUT and returns a object. + /// + /// The ItemActivityStat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ItemActivityStat itemActivityStatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(itemActivityStatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ItemAnalyticsRequest.cs b/src/Microsoft.Graph/Generated/requests/ItemAnalyticsRequest.cs index 1e735fe3a04..66f19ba99db 100644 --- a/src/Microsoft.Graph/Generated/requests/ItemAnalyticsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ItemAnalyticsRequest.cs @@ -139,6 +139,34 @@ public ItemAnalyticsRequest( return this.SendAsyncWithGraphResponse(itemAnalyticsToUpdate, cancellationToken); } + /// + /// Updates the specified ItemAnalytics using PUT. + /// + /// The ItemAnalytics object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ItemAnalytics itemAnalyticsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(itemAnalyticsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ItemAnalytics using PUT and returns a object. + /// + /// The ItemAnalytics object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ItemAnalytics itemAnalyticsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(itemAnalyticsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ItemAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ItemAttachmentRequest.cs index dcaee33f6e8..a063afaf719 100644 --- a/src/Microsoft.Graph/Generated/requests/ItemAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ItemAttachmentRequest.cs @@ -139,6 +139,34 @@ public ItemAttachmentRequest( return this.SendAsyncWithGraphResponse(itemAttachmentToUpdate, cancellationToken); } + /// + /// Updates the specified ItemAttachment using PUT. + /// + /// The ItemAttachment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ItemAttachment itemAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(itemAttachmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ItemAttachment using PUT and returns a object. + /// + /// The ItemAttachment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ItemAttachment itemAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(itemAttachmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/LicenseDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/LicenseDetailsRequest.cs index 04dd76c60d4..bd569192a1c 100644 --- a/src/Microsoft.Graph/Generated/requests/LicenseDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/LicenseDetailsRequest.cs @@ -139,6 +139,34 @@ public LicenseDetailsRequest( return this.SendAsyncWithGraphResponse(licenseDetailsToUpdate, cancellationToken); } + /// + /// Updates the specified LicenseDetails using PUT. + /// + /// The LicenseDetails object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(licenseDetailsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified LicenseDetails using PUT and returns a object. + /// + /// The LicenseDetails object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(LicenseDetails licenseDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(licenseDetailsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/LinkedResourceRequest.cs b/src/Microsoft.Graph/Generated/requests/LinkedResourceRequest.cs index 8345e4bca33..c6553d0315d 100644 --- a/src/Microsoft.Graph/Generated/requests/LinkedResourceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/LinkedResourceRequest.cs @@ -139,6 +139,34 @@ public LinkedResourceRequest( return this.SendAsyncWithGraphResponse(linkedResourceToUpdate, cancellationToken); } + /// + /// Updates the specified LinkedResource using PUT. + /// + /// The LinkedResource object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(LinkedResource linkedResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(linkedResourceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified LinkedResource using PUT and returns a object. + /// + /// The LinkedResource object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(LinkedResource linkedResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(linkedResourceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ListItemRequest.cs b/src/Microsoft.Graph/Generated/requests/ListItemRequest.cs index 1f7ab68ee64..8beaac1e592 100644 --- a/src/Microsoft.Graph/Generated/requests/ListItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ListItemRequest.cs @@ -139,6 +139,34 @@ public ListItemRequest( return this.SendAsyncWithGraphResponse(listItemToUpdate, cancellationToken); } + /// + /// Updates the specified ListItem using PUT. + /// + /// The ListItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ListItem listItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(listItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ListItem using PUT and returns a object. + /// + /// The ListItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ListItem listItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(listItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ListItemVersionRequest.cs b/src/Microsoft.Graph/Generated/requests/ListItemVersionRequest.cs index 73424a7eeb2..d28333421db 100644 --- a/src/Microsoft.Graph/Generated/requests/ListItemVersionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ListItemVersionRequest.cs @@ -139,6 +139,34 @@ public ListItemVersionRequest( return this.SendAsyncWithGraphResponse(listItemVersionToUpdate, cancellationToken); } + /// + /// Updates the specified ListItemVersion using PUT. + /// + /// The ListItemVersion object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ListItemVersion listItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(listItemVersionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ListItemVersion using PUT and returns a object. + /// + /// The ListItemVersion object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ListItemVersion listItemVersionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(listItemVersionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ListRequest.cs b/src/Microsoft.Graph/Generated/requests/ListRequest.cs index 3804ecf0ce8..a56e74a850f 100644 --- a/src/Microsoft.Graph/Generated/requests/ListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ListRequest.cs @@ -139,6 +139,34 @@ public ListRequest( return this.SendAsyncWithGraphResponse(listToUpdate, cancellationToken); } + /// + /// Updates the specified List using PUT. + /// + /// The List object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(List listToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(listToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified List using PUT and returns a object. + /// + /// The List object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(List listToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(listToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/LocalizedNotificationMessageRequest.cs b/src/Microsoft.Graph/Generated/requests/LocalizedNotificationMessageRequest.cs index ce86621361c..071dbee76d7 100644 --- a/src/Microsoft.Graph/Generated/requests/LocalizedNotificationMessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/LocalizedNotificationMessageRequest.cs @@ -139,6 +139,34 @@ public LocalizedNotificationMessageRequest( return this.SendAsyncWithGraphResponse(localizedNotificationMessageToUpdate, cancellationToken); } + /// + /// Updates the specified LocalizedNotificationMessage using PUT. + /// + /// The LocalizedNotificationMessage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(LocalizedNotificationMessage localizedNotificationMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(localizedNotificationMessageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified LocalizedNotificationMessage using PUT and returns a object. + /// + /// The LocalizedNotificationMessage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(LocalizedNotificationMessage localizedNotificationMessageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(localizedNotificationMessageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MacOSCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/MacOSCompliancePolicyRequest.cs index 6a4c65303e8..3edaf8235f9 100644 --- a/src/Microsoft.Graph/Generated/requests/MacOSCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MacOSCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public MacOSCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(macOSCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified MacOSCompliancePolicy using PUT. + /// + /// The MacOSCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MacOSCompliancePolicy macOSCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(macOSCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MacOSCompliancePolicy using PUT and returns a object. + /// + /// The MacOSCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MacOSCompliancePolicy macOSCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(macOSCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MacOSCustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/MacOSCustomConfigurationRequest.cs index e806ea684e9..bb8a8a14ae9 100644 --- a/src/Microsoft.Graph/Generated/requests/MacOSCustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MacOSCustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public MacOSCustomConfigurationRequest( return this.SendAsyncWithGraphResponse(macOSCustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified MacOSCustomConfiguration using PUT. + /// + /// The MacOSCustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MacOSCustomConfiguration macOSCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(macOSCustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MacOSCustomConfiguration using PUT and returns a object. + /// + /// The MacOSCustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MacOSCustomConfiguration macOSCustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(macOSCustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MacOSDeviceFeaturesConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/MacOSDeviceFeaturesConfigurationRequest.cs index b3fec442126..ef9ff1f188a 100644 --- a/src/Microsoft.Graph/Generated/requests/MacOSDeviceFeaturesConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MacOSDeviceFeaturesConfigurationRequest.cs @@ -139,6 +139,34 @@ public MacOSDeviceFeaturesConfigurationRequest( return this.SendAsyncWithGraphResponse(macOSDeviceFeaturesConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified MacOSDeviceFeaturesConfiguration using PUT. + /// + /// The MacOSDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MacOSDeviceFeaturesConfiguration macOSDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(macOSDeviceFeaturesConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MacOSDeviceFeaturesConfiguration using PUT and returns a object. + /// + /// The MacOSDeviceFeaturesConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MacOSDeviceFeaturesConfiguration macOSDeviceFeaturesConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(macOSDeviceFeaturesConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MacOSGeneralDeviceConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/MacOSGeneralDeviceConfigurationRequest.cs index d26aa89b1c4..23691f186b4 100644 --- a/src/Microsoft.Graph/Generated/requests/MacOSGeneralDeviceConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MacOSGeneralDeviceConfigurationRequest.cs @@ -139,6 +139,34 @@ public MacOSGeneralDeviceConfigurationRequest( return this.SendAsyncWithGraphResponse(macOSGeneralDeviceConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified MacOSGeneralDeviceConfiguration using PUT. + /// + /// The MacOSGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MacOSGeneralDeviceConfiguration macOSGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(macOSGeneralDeviceConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MacOSGeneralDeviceConfiguration using PUT and returns a object. + /// + /// The MacOSGeneralDeviceConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MacOSGeneralDeviceConfiguration macOSGeneralDeviceConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(macOSGeneralDeviceConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MacOSOfficeSuiteAppRequest.cs b/src/Microsoft.Graph/Generated/requests/MacOSOfficeSuiteAppRequest.cs index 9435e7be267..aeca130501b 100644 --- a/src/Microsoft.Graph/Generated/requests/MacOSOfficeSuiteAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MacOSOfficeSuiteAppRequest.cs @@ -139,6 +139,34 @@ public MacOSOfficeSuiteAppRequest( return this.SendAsyncWithGraphResponse(macOSOfficeSuiteAppToUpdate, cancellationToken); } + /// + /// Updates the specified MacOSOfficeSuiteApp using PUT. + /// + /// The MacOSOfficeSuiteApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MacOSOfficeSuiteApp macOSOfficeSuiteAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(macOSOfficeSuiteAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MacOSOfficeSuiteApp using PUT and returns a object. + /// + /// The MacOSOfficeSuiteApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MacOSOfficeSuiteApp macOSOfficeSuiteAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(macOSOfficeSuiteAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MailAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/MailAssessmentRequestRequest.cs index 10fba9bde89..c14f506a8d9 100644 --- a/src/Microsoft.Graph/Generated/requests/MailAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MailAssessmentRequestRequest.cs @@ -139,6 +139,34 @@ public MailAssessmentRequestRequest( return this.SendAsyncWithGraphResponse(mailAssessmentRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified MailAssessmentRequestObject using PUT. + /// + /// The MailAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MailAssessmentRequestObject mailAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mailAssessmentRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MailAssessmentRequestObject using PUT and returns a object. + /// + /// The MailAssessmentRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MailAssessmentRequestObject mailAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mailAssessmentRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MailFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/MailFolderRequest.cs index 3e9bc20c274..7dc96fb8d38 100644 --- a/src/Microsoft.Graph/Generated/requests/MailFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MailFolderRequest.cs @@ -139,6 +139,34 @@ public MailFolderRequest( return this.SendAsyncWithGraphResponse(mailFolderToUpdate, cancellationToken); } + /// + /// Updates the specified MailFolder using PUT. + /// + /// The MailFolder object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MailFolder mailFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mailFolderToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MailFolder using PUT and returns a object. + /// + /// The MailFolder object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MailFolder mailFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mailFolderToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MailSearchFolderRequest.cs b/src/Microsoft.Graph/Generated/requests/MailSearchFolderRequest.cs index 73dc5d0d446..bf1ed01a2cc 100644 --- a/src/Microsoft.Graph/Generated/requests/MailSearchFolderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MailSearchFolderRequest.cs @@ -139,6 +139,34 @@ public MailSearchFolderRequest( return this.SendAsyncWithGraphResponse(mailSearchFolderToUpdate, cancellationToken); } + /// + /// Updates the specified MailSearchFolder using PUT. + /// + /// The MailSearchFolder object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MailSearchFolder mailSearchFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mailSearchFolderToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MailSearchFolder using PUT and returns a object. + /// + /// The MailSearchFolder object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MailSearchFolder mailSearchFolderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mailSearchFolderToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAndroidLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAndroidLobAppRequest.cs index 73d0f5d0112..ff23121d4bc 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAndroidLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAndroidLobAppRequest.cs @@ -139,6 +139,34 @@ public ManagedAndroidLobAppRequest( return this.SendAsyncWithGraphResponse(managedAndroidLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAndroidLobApp using PUT. + /// + /// The ManagedAndroidLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAndroidLobApp managedAndroidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAndroidLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAndroidLobApp using PUT and returns a object. + /// + /// The ManagedAndroidLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAndroidLobApp managedAndroidLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAndroidLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAndroidStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAndroidStoreAppRequest.cs index c370e38e59d..106875a2990 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAndroidStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAndroidStoreAppRequest.cs @@ -139,6 +139,34 @@ public ManagedAndroidStoreAppRequest( return this.SendAsyncWithGraphResponse(managedAndroidStoreAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAndroidStoreApp using PUT. + /// + /// The ManagedAndroidStoreApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAndroidStoreApp managedAndroidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAndroidStoreAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAndroidStoreApp using PUT and returns a object. + /// + /// The ManagedAndroidStoreApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAndroidStoreApp managedAndroidStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAndroidStoreAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppConfigurationRequest.cs index 7c8806b66b2..7a373ffca64 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppConfigurationRequest.cs @@ -139,6 +139,34 @@ public ManagedAppConfigurationRequest( return this.SendAsyncWithGraphResponse(managedAppConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppConfiguration using PUT. + /// + /// The ManagedAppConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppConfiguration managedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppConfiguration using PUT and returns a object. + /// + /// The ManagedAppConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppConfiguration managedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppOperationRequest.cs index 8ed8ad21e85..1554fa479ba 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppOperationRequest.cs @@ -139,6 +139,34 @@ public ManagedAppOperationRequest( return this.SendAsyncWithGraphResponse(managedAppOperationToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppOperation using PUT. + /// + /// The ManagedAppOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppOperation managedAppOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppOperation using PUT and returns a object. + /// + /// The ManagedAppOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppOperation managedAppOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyDeploymentSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyDeploymentSummaryRequest.cs index 95f9b10cabd..5567afa7ad5 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyDeploymentSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyDeploymentSummaryRequest.cs @@ -139,6 +139,34 @@ public ManagedAppPolicyDeploymentSummaryRequest( return this.SendAsyncWithGraphResponse(managedAppPolicyDeploymentSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppPolicyDeploymentSummary using PUT. + /// + /// The ManagedAppPolicyDeploymentSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppPolicyDeploymentSummary managedAppPolicyDeploymentSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppPolicyDeploymentSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppPolicyDeploymentSummary using PUT and returns a object. + /// + /// The ManagedAppPolicyDeploymentSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppPolicyDeploymentSummary managedAppPolicyDeploymentSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppPolicyDeploymentSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyRequest.cs index bd16c320b8c..ba216dc0fa5 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppPolicyRequest.cs @@ -139,6 +139,34 @@ public ManagedAppPolicyRequest( return this.SendAsyncWithGraphResponse(managedAppPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppPolicy using PUT. + /// + /// The ManagedAppPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppPolicy managedAppPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppPolicy using PUT and returns a object. + /// + /// The ManagedAppPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppPolicy managedAppPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppProtectionRequest.cs index 0e8681b9db8..4168f677126 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppProtectionRequest.cs @@ -139,6 +139,34 @@ public ManagedAppProtectionRequest( return this.SendAsyncWithGraphResponse(managedAppProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppProtection using PUT. + /// + /// The ManagedAppProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppProtection managedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppProtection using PUT and returns a object. + /// + /// The ManagedAppProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppProtection managedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppRegistrationRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppRegistrationRequest.cs index c01736ad324..5aeac6835e1 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppRegistrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppRegistrationRequest.cs @@ -139,6 +139,34 @@ public ManagedAppRegistrationRequest( return this.SendAsyncWithGraphResponse(managedAppRegistrationToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppRegistration using PUT. + /// + /// The ManagedAppRegistration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppRegistration managedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppRegistrationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppRegistration using PUT and returns a object. + /// + /// The ManagedAppRegistration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppRegistration managedAppRegistrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppRegistrationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppRequest.cs index a49dd61dc99..6436a8dfd90 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppRequest.cs @@ -139,6 +139,34 @@ public ManagedAppRequest( return this.SendAsyncWithGraphResponse(managedAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedApp using PUT. + /// + /// The ManagedApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedApp managedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedApp using PUT and returns a object. + /// + /// The ManagedApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedApp managedAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRawRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRawRequest.cs index 4ae7de2fe56..8ba1f3a7f2d 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRawRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRawRequest.cs @@ -139,6 +139,34 @@ public ManagedAppStatusRawRequest( return this.SendAsyncWithGraphResponse(managedAppStatusRawToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppStatusRaw using PUT. + /// + /// The ManagedAppStatusRaw object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppStatusRaw managedAppStatusRawToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppStatusRawToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppStatusRaw using PUT and returns a object. + /// + /// The ManagedAppStatusRaw object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppStatusRaw managedAppStatusRawToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppStatusRawToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRequest.cs index 62f990a6948..960940a4652 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedAppStatusRequest.cs @@ -139,6 +139,34 @@ public ManagedAppStatusRequest( return this.SendAsyncWithGraphResponse(managedAppStatusToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedAppStatus using PUT. + /// + /// The ManagedAppStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedAppStatus managedAppStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedAppStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedAppStatus using PUT and returns a object. + /// + /// The ManagedAppStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedAppStatus managedAppStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedAppStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationAssignmentRequest.cs index f2fac99c16f..834e72fb85b 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationAssignmentRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationAssignmentRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationAssignment using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationAssignment managedDeviceMobileAppConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationAssignment using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationAssignment managedDeviceMobileAppConfigurationAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs index 4556fe85851..dda55d316bf 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceStatusRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationDeviceStatusToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceStatus using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationDeviceStatus managedDeviceMobileAppConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationDeviceStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceStatus using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationDeviceStatus managedDeviceMobileAppConfigurationDeviceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationDeviceStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs index 9320db34ada..5c9da968158 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationDeviceSummaryRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationDeviceSummaryRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceSummary using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationDeviceSummary managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationDeviceSummary using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationDeviceSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationDeviceSummary managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationDeviceSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationRequest.cs index 2a2e7596822..b0519f00524 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfiguration using PUT. + /// + /// The ManagedDeviceMobileAppConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfiguration managedDeviceMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfiguration using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfiguration managedDeviceMobileAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserStatusRequest.cs index 908874ebfb4..67d8e17a5f3 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserStatusRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationUserStatusRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationUserStatusToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserStatus using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationUserStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationUserStatus managedDeviceMobileAppConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationUserStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserStatus using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationUserStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationUserStatus managedDeviceMobileAppConfigurationUserStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationUserStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserSummaryRequest.cs index 9555233073f..f5220fe12dc 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceMobileAppConfigurationUserSummaryRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceMobileAppConfigurationUserSummaryRequest( return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationUserSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserSummary using PUT. + /// + /// The ManagedDeviceMobileAppConfigurationUserSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceMobileAppConfigurationUserSummary managedDeviceMobileAppConfigurationUserSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceMobileAppConfigurationUserSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceMobileAppConfigurationUserSummary using PUT and returns a object. + /// + /// The ManagedDeviceMobileAppConfigurationUserSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceMobileAppConfigurationUserSummary managedDeviceMobileAppConfigurationUserSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceMobileAppConfigurationUserSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceOverviewRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceOverviewRequest.cs index 6755743d613..c2bb14f1b28 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceOverviewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceOverviewRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceOverviewRequest( return this.SendAsyncWithGraphResponse(managedDeviceOverviewToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDeviceOverview using PUT. + /// + /// The ManagedDeviceOverview object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDeviceOverview managedDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceOverviewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDeviceOverview using PUT and returns a object. + /// + /// The ManagedDeviceOverview object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDeviceOverview managedDeviceOverviewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceOverviewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedDeviceRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedDeviceRequest.cs index c7351063d39..48b0677f1e9 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedDeviceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedDeviceRequest.cs @@ -139,6 +139,34 @@ public ManagedDeviceRequest( return this.SendAsyncWithGraphResponse(managedDeviceToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedDevice using PUT. + /// + /// The ManagedDevice object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedDevice managedDeviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedDeviceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedDevice using PUT and returns a object. + /// + /// The ManagedDevice object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedDevice managedDeviceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedDeviceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedEBookAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedEBookAssignmentRequest.cs index 3cf71322400..65a135b5bc6 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedEBookAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedEBookAssignmentRequest.cs @@ -139,6 +139,34 @@ public ManagedEBookAssignmentRequest( return this.SendAsyncWithGraphResponse(managedEBookAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedEBookAssignment using PUT. + /// + /// The ManagedEBookAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedEBookAssignment managedEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedEBookAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedEBookAssignment using PUT and returns a object. + /// + /// The ManagedEBookAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedEBookAssignment managedEBookAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedEBookAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedEBookRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedEBookRequest.cs index e42420c2f4f..2270a93fb9f 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedEBookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedEBookRequest.cs @@ -139,6 +139,34 @@ public ManagedEBookRequest( return this.SendAsyncWithGraphResponse(managedEBookToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedEBook using PUT. + /// + /// The ManagedEBook object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedEBook managedEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedEBookToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedEBook using PUT and returns a object. + /// + /// The ManagedEBook object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedEBook managedEBookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedEBookToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedIOSLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedIOSLobAppRequest.cs index 3c620625d3c..84f5769766c 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedIOSLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedIOSLobAppRequest.cs @@ -139,6 +139,34 @@ public ManagedIOSLobAppRequest( return this.SendAsyncWithGraphResponse(managedIOSLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedIOSLobApp using PUT. + /// + /// The ManagedIOSLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedIOSLobApp managedIOSLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedIOSLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedIOSLobApp using PUT and returns a object. + /// + /// The ManagedIOSLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedIOSLobApp managedIOSLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedIOSLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedIOSStoreAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedIOSStoreAppRequest.cs index 7ea2773b866..474e91181be 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedIOSStoreAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedIOSStoreAppRequest.cs @@ -139,6 +139,34 @@ public ManagedIOSStoreAppRequest( return this.SendAsyncWithGraphResponse(managedIOSStoreAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedIOSStoreApp using PUT. + /// + /// The ManagedIOSStoreApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedIOSStoreApp managedIOSStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedIOSStoreAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedIOSStoreApp using PUT and returns a object. + /// + /// The ManagedIOSStoreApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedIOSStoreApp managedIOSStoreAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedIOSStoreAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedMobileAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedMobileAppRequest.cs index 99b8f211bb3..1253bb65527 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedMobileAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedMobileAppRequest.cs @@ -139,6 +139,34 @@ public ManagedMobileAppRequest( return this.SendAsyncWithGraphResponse(managedMobileAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedMobileApp using PUT. + /// + /// The ManagedMobileApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedMobileApp managedMobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedMobileAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedMobileApp using PUT and returns a object. + /// + /// The ManagedMobileApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedMobileApp managedMobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedMobileAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ManagedMobileLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/ManagedMobileLobAppRequest.cs index 970adf8dfc0..0418e330be2 100644 --- a/src/Microsoft.Graph/Generated/requests/ManagedMobileLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ManagedMobileLobAppRequest.cs @@ -139,6 +139,34 @@ public ManagedMobileLobAppRequest( return this.SendAsyncWithGraphResponse(managedMobileLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified ManagedMobileLobApp using PUT. + /// + /// The ManagedMobileLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ManagedMobileLobApp managedMobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(managedMobileLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ManagedMobileLobApp using PUT and returns a object. + /// + /// The ManagedMobileLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ManagedMobileLobApp managedMobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(managedMobileLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MdmWindowsInformationProtectionPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/MdmWindowsInformationProtectionPolicyRequest.cs index 65aff1c7952..72924b82002 100644 --- a/src/Microsoft.Graph/Generated/requests/MdmWindowsInformationProtectionPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MdmWindowsInformationProtectionPolicyRequest.cs @@ -139,6 +139,34 @@ public MdmWindowsInformationProtectionPolicyRequest( return this.SendAsyncWithGraphResponse(mdmWindowsInformationProtectionPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified MdmWindowsInformationProtectionPolicy using PUT. + /// + /// The MdmWindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MdmWindowsInformationProtectionPolicy mdmWindowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mdmWindowsInformationProtectionPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MdmWindowsInformationProtectionPolicy using PUT and returns a object. + /// + /// The MdmWindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MdmWindowsInformationProtectionPolicy mdmWindowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mdmWindowsInformationProtectionPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MessageRequest.cs b/src/Microsoft.Graph/Generated/requests/MessageRequest.cs index bb1cb5aa64d..06fd1ade634 100644 --- a/src/Microsoft.Graph/Generated/requests/MessageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MessageRequest.cs @@ -139,6 +139,34 @@ public MessageRequest( return this.SendAsyncWithGraphResponse(messageToUpdate, cancellationToken); } + /// + /// Updates the specified Message using PUT. + /// + /// The Message object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Message messageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(messageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Message using PUT and returns a object. + /// + /// The Message object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Message messageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(messageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MessageRuleRequest.cs b/src/Microsoft.Graph/Generated/requests/MessageRuleRequest.cs index 4e210fed7a8..5fa735f539b 100644 --- a/src/Microsoft.Graph/Generated/requests/MessageRuleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MessageRuleRequest.cs @@ -139,6 +139,34 @@ public MessageRuleRequest( return this.SendAsyncWithGraphResponse(messageRuleToUpdate, cancellationToken); } + /// + /// Updates the specified MessageRule using PUT. + /// + /// The MessageRule object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MessageRule messageRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(messageRuleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MessageRule using PUT and returns a object. + /// + /// The MessageRule object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MessageRule messageRuleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(messageRuleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs index 4c307708e37..5ea91a482df 100644 --- a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodConfigurationRequest.cs @@ -139,6 +139,34 @@ public MicrosoftAuthenticatorAuthenticationMethodConfigurationRequest( return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodConfiguration using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethodConfiguration microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodConfiguration using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethodConfiguration microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodRequest.cs index 332c8f1323d..1926d2d5c0c 100644 --- a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodRequest.cs @@ -139,6 +139,34 @@ public MicrosoftAuthenticatorAuthenticationMethodRequest( return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodToUpdate, cancellationToken); } + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethod using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethod object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethod microsoftAuthenticatorAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(microsoftAuthenticatorAuthenticationMethodToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethod using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethod object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethod microsoftAuthenticatorAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs index 6192d56d54a..f160ee43fe3 100644 --- a/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MicrosoftAuthenticatorAuthenticationMethodTargetRequest.cs @@ -139,6 +139,34 @@ public MicrosoftAuthenticatorAuthenticationMethodTargetRequest( return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodTargetToUpdate, cancellationToken); } + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodTarget using PUT. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MicrosoftAuthenticatorAuthenticationMethodTarget microsoftAuthenticatorAuthenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(microsoftAuthenticatorAuthenticationMethodTargetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MicrosoftAuthenticatorAuthenticationMethodTarget using PUT and returns a object. + /// + /// The MicrosoftAuthenticatorAuthenticationMethodTarget object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MicrosoftAuthenticatorAuthenticationMethodTarget microsoftAuthenticatorAuthenticationMethodTargetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(microsoftAuthenticatorAuthenticationMethodTargetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MicrosoftStoreForBusinessAppRequest.cs b/src/Microsoft.Graph/Generated/requests/MicrosoftStoreForBusinessAppRequest.cs index 208e4f967c0..223db65e66b 100644 --- a/src/Microsoft.Graph/Generated/requests/MicrosoftStoreForBusinessAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MicrosoftStoreForBusinessAppRequest.cs @@ -139,6 +139,34 @@ public MicrosoftStoreForBusinessAppRequest( return this.SendAsyncWithGraphResponse(microsoftStoreForBusinessAppToUpdate, cancellationToken); } + /// + /// Updates the specified MicrosoftStoreForBusinessApp using PUT. + /// + /// The MicrosoftStoreForBusinessApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MicrosoftStoreForBusinessApp microsoftStoreForBusinessAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(microsoftStoreForBusinessAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MicrosoftStoreForBusinessApp using PUT and returns a object. + /// + /// The MicrosoftStoreForBusinessApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MicrosoftStoreForBusinessApp microsoftStoreForBusinessAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(microsoftStoreForBusinessAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileAppAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileAppAssignmentRequest.cs index ce741188567..0851d55bcfd 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileAppAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileAppAssignmentRequest.cs @@ -139,6 +139,34 @@ public MobileAppAssignmentRequest( return this.SendAsyncWithGraphResponse(mobileAppAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified MobileAppAssignment using PUT. + /// + /// The MobileAppAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileAppAssignment mobileAppAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileAppAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileAppAssignment using PUT and returns a object. + /// + /// The MobileAppAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileAppAssignment mobileAppAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileAppAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileAppCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileAppCategoryRequest.cs index 8fde37dfda6..a163059124c 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileAppCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileAppCategoryRequest.cs @@ -139,6 +139,34 @@ public MobileAppCategoryRequest( return this.SendAsyncWithGraphResponse(mobileAppCategoryToUpdate, cancellationToken); } + /// + /// Updates the specified MobileAppCategory using PUT. + /// + /// The MobileAppCategory object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileAppCategory mobileAppCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileAppCategoryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileAppCategory using PUT and returns a object. + /// + /// The MobileAppCategory object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileAppCategory mobileAppCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileAppCategoryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileAppContentFileRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileAppContentFileRequest.cs index 28d3f3b40fa..718351cadc6 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileAppContentFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileAppContentFileRequest.cs @@ -139,6 +139,34 @@ public MobileAppContentFileRequest( return this.SendAsyncWithGraphResponse(mobileAppContentFileToUpdate, cancellationToken); } + /// + /// Updates the specified MobileAppContentFile using PUT. + /// + /// The MobileAppContentFile object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileAppContentFile mobileAppContentFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileAppContentFileToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileAppContentFile using PUT and returns a object. + /// + /// The MobileAppContentFile object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileAppContentFile mobileAppContentFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileAppContentFileToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileAppContentRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileAppContentRequest.cs index a06d76d5c5f..75dd286d97f 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileAppContentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileAppContentRequest.cs @@ -139,6 +139,34 @@ public MobileAppContentRequest( return this.SendAsyncWithGraphResponse(mobileAppContentToUpdate, cancellationToken); } + /// + /// Updates the specified MobileAppContent using PUT. + /// + /// The MobileAppContent object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileAppContent mobileAppContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileAppContentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileAppContent using PUT and returns a object. + /// + /// The MobileAppContent object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileAppContent mobileAppContentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileAppContentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileAppRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileAppRequest.cs index 7cf3a9825e3..3d484387843 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileAppRequest.cs @@ -139,6 +139,34 @@ public MobileAppRequest( return this.SendAsyncWithGraphResponse(mobileAppToUpdate, cancellationToken); } + /// + /// Updates the specified MobileApp using PUT. + /// + /// The MobileApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileApp mobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileApp using PUT and returns a object. + /// + /// The MobileApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileApp mobileAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileLobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileLobAppRequest.cs index 8add3c2e5f1..110c356c90d 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileLobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileLobAppRequest.cs @@ -139,6 +139,34 @@ public MobileLobAppRequest( return this.SendAsyncWithGraphResponse(mobileLobAppToUpdate, cancellationToken); } + /// + /// Updates the specified MobileLobApp using PUT. + /// + /// The MobileLobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileLobApp mobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileLobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileLobApp using PUT and returns a object. + /// + /// The MobileLobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileLobApp mobileLobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileLobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MobileThreatDefenseConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/MobileThreatDefenseConnectorRequest.cs index 4fb165a3766..9cc39f9b0f1 100644 --- a/src/Microsoft.Graph/Generated/requests/MobileThreatDefenseConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MobileThreatDefenseConnectorRequest.cs @@ -139,6 +139,34 @@ public MobileThreatDefenseConnectorRequest( return this.SendAsyncWithGraphResponse(mobileThreatDefenseConnectorToUpdate, cancellationToken); } + /// + /// Updates the specified MobileThreatDefenseConnector using PUT. + /// + /// The MobileThreatDefenseConnector object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MobileThreatDefenseConnector mobileThreatDefenseConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(mobileThreatDefenseConnectorToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MobileThreatDefenseConnector using PUT and returns a object. + /// + /// The MobileThreatDefenseConnector object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MobileThreatDefenseConnector mobileThreatDefenseConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(mobileThreatDefenseConnectorToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MultiValueLegacyExtendedPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/MultiValueLegacyExtendedPropertyRequest.cs index bbd88e89b6b..3bc2442d908 100644 --- a/src/Microsoft.Graph/Generated/requests/MultiValueLegacyExtendedPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MultiValueLegacyExtendedPropertyRequest.cs @@ -139,6 +139,34 @@ public MultiValueLegacyExtendedPropertyRequest( return this.SendAsyncWithGraphResponse(multiValueLegacyExtendedPropertyToUpdate, cancellationToken); } + /// + /// Updates the specified MultiValueLegacyExtendedProperty using PUT. + /// + /// The MultiValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MultiValueLegacyExtendedProperty multiValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(multiValueLegacyExtendedPropertyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MultiValueLegacyExtendedProperty using PUT and returns a object. + /// + /// The MultiValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MultiValueLegacyExtendedProperty multiValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(multiValueLegacyExtendedPropertyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/MuteParticipantOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/MuteParticipantOperationRequest.cs index 905c2bc68c5..0f95d00561b 100644 --- a/src/Microsoft.Graph/Generated/requests/MuteParticipantOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/MuteParticipantOperationRequest.cs @@ -139,6 +139,34 @@ public MuteParticipantOperationRequest( return this.SendAsyncWithGraphResponse(muteParticipantOperationToUpdate, cancellationToken); } + /// + /// Updates the specified MuteParticipantOperation using PUT. + /// + /// The MuteParticipantOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(muteParticipantOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified MuteParticipantOperation using PUT and returns a object. + /// + /// The MuteParticipantOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(MuteParticipantOperation muteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(muteParticipantOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/NamedLocationRequest.cs b/src/Microsoft.Graph/Generated/requests/NamedLocationRequest.cs index b4d3f46b201..2d5757c2b84 100644 --- a/src/Microsoft.Graph/Generated/requests/NamedLocationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/NamedLocationRequest.cs @@ -139,6 +139,34 @@ public NamedLocationRequest( return this.SendAsyncWithGraphResponse(namedLocationToUpdate, cancellationToken); } + /// + /// Updates the specified NamedLocation using PUT. + /// + /// The NamedLocation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(NamedLocation namedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(namedLocationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified NamedLocation using PUT and returns a object. + /// + /// The NamedLocation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(NamedLocation namedLocationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(namedLocationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/NotebookRequest.cs b/src/Microsoft.Graph/Generated/requests/NotebookRequest.cs index 259f34995ba..f70c3a8e54a 100644 --- a/src/Microsoft.Graph/Generated/requests/NotebookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/NotebookRequest.cs @@ -139,6 +139,34 @@ public NotebookRequest( return this.SendAsyncWithGraphResponse(notebookToUpdate, cancellationToken); } + /// + /// Updates the specified Notebook using PUT. + /// + /// The Notebook object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Notebook notebookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(notebookToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Notebook using PUT and returns a object. + /// + /// The Notebook object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Notebook notebookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(notebookToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/NotificationMessageTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/NotificationMessageTemplateRequest.cs index 47b1831adf9..d80e0df0e5e 100644 --- a/src/Microsoft.Graph/Generated/requests/NotificationMessageTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/NotificationMessageTemplateRequest.cs @@ -139,6 +139,34 @@ public NotificationMessageTemplateRequest( return this.SendAsyncWithGraphResponse(notificationMessageTemplateToUpdate, cancellationToken); } + /// + /// Updates the specified NotificationMessageTemplate using PUT. + /// + /// The NotificationMessageTemplate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(NotificationMessageTemplate notificationMessageTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(notificationMessageTemplateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified NotificationMessageTemplate using PUT and returns a object. + /// + /// The NotificationMessageTemplate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(NotificationMessageTemplate notificationMessageTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(notificationMessageTemplateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OAuth2PermissionGrantRequest.cs b/src/Microsoft.Graph/Generated/requests/OAuth2PermissionGrantRequest.cs index d8109b5fb6b..91eea4cc198 100644 --- a/src/Microsoft.Graph/Generated/requests/OAuth2PermissionGrantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OAuth2PermissionGrantRequest.cs @@ -139,6 +139,34 @@ public OAuth2PermissionGrantRequest( return this.SendAsyncWithGraphResponse(oAuth2PermissionGrantToUpdate, cancellationToken); } + /// + /// Updates the specified OAuth2PermissionGrant using PUT. + /// + /// The OAuth2PermissionGrant object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OAuth2PermissionGrant oAuth2PermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(oAuth2PermissionGrantToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OAuth2PermissionGrant using PUT and returns a object. + /// + /// The OAuth2PermissionGrant object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OAuth2PermissionGrant oAuth2PermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(oAuth2PermissionGrantToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OfferShiftRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/OfferShiftRequestRequest.cs index 781c3230438..b9ce21108c8 100644 --- a/src/Microsoft.Graph/Generated/requests/OfferShiftRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OfferShiftRequestRequest.cs @@ -139,6 +139,34 @@ public OfferShiftRequestRequest( return this.SendAsyncWithGraphResponse(offerShiftRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified OfferShiftRequestObject using PUT. + /// + /// The OfferShiftRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OfferShiftRequestObject offerShiftRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(offerShiftRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OfferShiftRequestObject using PUT and returns a object. + /// + /// The OfferShiftRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OfferShiftRequestObject offerShiftRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(offerShiftRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OfficeGraphInsightsRequest.cs b/src/Microsoft.Graph/Generated/requests/OfficeGraphInsightsRequest.cs index 4b9673833b0..516a26b0db1 100644 --- a/src/Microsoft.Graph/Generated/requests/OfficeGraphInsightsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OfficeGraphInsightsRequest.cs @@ -139,6 +139,34 @@ public OfficeGraphInsightsRequest( return this.SendAsyncWithGraphResponse(officeGraphInsightsToUpdate, cancellationToken); } + /// + /// Updates the specified OfficeGraphInsights using PUT. + /// + /// The OfficeGraphInsights object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OfficeGraphInsights officeGraphInsightsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(officeGraphInsightsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OfficeGraphInsights using PUT and returns a object. + /// + /// The OfficeGraphInsights object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OfficeGraphInsights officeGraphInsightsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(officeGraphInsightsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnPremisesConditionalAccessSettingsRequest.cs b/src/Microsoft.Graph/Generated/requests/OnPremisesConditionalAccessSettingsRequest.cs index ac4947a23e7..25a7d22847e 100644 --- a/src/Microsoft.Graph/Generated/requests/OnPremisesConditionalAccessSettingsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnPremisesConditionalAccessSettingsRequest.cs @@ -139,6 +139,34 @@ public OnPremisesConditionalAccessSettingsRequest( return this.SendAsyncWithGraphResponse(onPremisesConditionalAccessSettingsToUpdate, cancellationToken); } + /// + /// Updates the specified OnPremisesConditionalAccessSettings using PUT. + /// + /// The OnPremisesConditionalAccessSettings object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnPremisesConditionalAccessSettings onPremisesConditionalAccessSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onPremisesConditionalAccessSettingsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnPremisesConditionalAccessSettings using PUT and returns a object. + /// + /// The OnPremisesConditionalAccessSettings object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnPremisesConditionalAccessSettings onPremisesConditionalAccessSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onPremisesConditionalAccessSettingsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteEntityBaseModelRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteEntityBaseModelRequest.cs index ee727aea0fd..c24f9633fa5 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteEntityBaseModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteEntityBaseModelRequest.cs @@ -139,6 +139,34 @@ public OnenoteEntityBaseModelRequest( return this.SendAsyncWithGraphResponse(onenoteEntityBaseModelToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteEntityBaseModel using PUT. + /// + /// The OnenoteEntityBaseModel object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteEntityBaseModel onenoteEntityBaseModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteEntityBaseModelToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteEntityBaseModel using PUT and returns a object. + /// + /// The OnenoteEntityBaseModel object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntityBaseModel onenoteEntityBaseModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteEntityBaseModelToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteEntityHierarchyModelRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteEntityHierarchyModelRequest.cs index c3cb87bfa16..326e0287aef 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteEntityHierarchyModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteEntityHierarchyModelRequest.cs @@ -139,6 +139,34 @@ public OnenoteEntityHierarchyModelRequest( return this.SendAsyncWithGraphResponse(onenoteEntityHierarchyModelToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteEntityHierarchyModel using PUT. + /// + /// The OnenoteEntityHierarchyModel object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteEntityHierarchyModel onenoteEntityHierarchyModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteEntityHierarchyModelToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteEntityHierarchyModel using PUT and returns a object. + /// + /// The OnenoteEntityHierarchyModel object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntityHierarchyModel onenoteEntityHierarchyModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteEntityHierarchyModelToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteEntitySchemaObjectModelRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteEntitySchemaObjectModelRequest.cs index 655dd277812..301b11f778a 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteEntitySchemaObjectModelRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteEntitySchemaObjectModelRequest.cs @@ -139,6 +139,34 @@ public OnenoteEntitySchemaObjectModelRequest( return this.SendAsyncWithGraphResponse(onenoteEntitySchemaObjectModelToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteEntitySchemaObjectModel using PUT. + /// + /// The OnenoteEntitySchemaObjectModel object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteEntitySchemaObjectModel onenoteEntitySchemaObjectModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteEntitySchemaObjectModelToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteEntitySchemaObjectModel using PUT and returns a object. + /// + /// The OnenoteEntitySchemaObjectModel object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteEntitySchemaObjectModel onenoteEntitySchemaObjectModelToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteEntitySchemaObjectModelToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteOperationRequest.cs index 94fe0141bcd..7ee94437391 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteOperationRequest.cs @@ -139,6 +139,34 @@ public OnenoteOperationRequest( return this.SendAsyncWithGraphResponse(onenoteOperationToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteOperation using PUT. + /// + /// The OnenoteOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteOperation onenoteOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteOperation using PUT and returns a object. + /// + /// The OnenoteOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteOperation onenoteOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenotePageRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenotePageRequest.cs index e08280fd7b0..1e3171efa4e 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenotePageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenotePageRequest.cs @@ -139,6 +139,34 @@ public OnenotePageRequest( return this.SendAsyncWithGraphResponse(onenotePageToUpdate, cancellationToken); } + /// + /// Updates the specified OnenotePage using PUT. + /// + /// The OnenotePage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenotePage onenotePageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenotePageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenotePage using PUT and returns a object. + /// + /// The OnenotePage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenotePage onenotePageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenotePageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteRequest.cs index 12b529bec43..0d64718974b 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteRequest.cs @@ -139,6 +139,34 @@ public OnenoteRequest( return this.SendAsyncWithGraphResponse(onenoteToUpdate, cancellationToken); } + /// + /// Updates the specified Onenote using PUT. + /// + /// The Onenote object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Onenote onenoteToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Onenote using PUT and returns a object. + /// + /// The Onenote object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Onenote onenoteToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteResourceRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteResourceRequest.cs index 47464bae1f1..a0286e5ff33 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteResourceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteResourceRequest.cs @@ -139,6 +139,34 @@ public OnenoteResourceRequest( return this.SendAsyncWithGraphResponse(onenoteResourceToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteResource using PUT. + /// + /// The OnenoteResource object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteResource onenoteResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteResourceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteResource using PUT and returns a object. + /// + /// The OnenoteResource object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteResource onenoteResourceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteResourceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnenoteSectionRequest.cs b/src/Microsoft.Graph/Generated/requests/OnenoteSectionRequest.cs index db8ed2d72a3..23096c32148 100644 --- a/src/Microsoft.Graph/Generated/requests/OnenoteSectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnenoteSectionRequest.cs @@ -139,6 +139,34 @@ public OnenoteSectionRequest( return this.SendAsyncWithGraphResponse(onenoteSectionToUpdate, cancellationToken); } + /// + /// Updates the specified OnenoteSection using PUT. + /// + /// The OnenoteSection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnenoteSection onenoteSectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onenoteSectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnenoteSection using PUT and returns a object. + /// + /// The OnenoteSection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnenoteSection onenoteSectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onenoteSectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OnlineMeetingRequest.cs b/src/Microsoft.Graph/Generated/requests/OnlineMeetingRequest.cs index b5efc4922f4..4f4b7d60e3a 100644 --- a/src/Microsoft.Graph/Generated/requests/OnlineMeetingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OnlineMeetingRequest.cs @@ -139,6 +139,34 @@ public OnlineMeetingRequest( return this.SendAsyncWithGraphResponse(onlineMeetingToUpdate, cancellationToken); } + /// + /// Updates the specified OnlineMeeting using PUT. + /// + /// The OnlineMeeting object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(onlineMeetingToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OnlineMeeting using PUT and returns a object. + /// + /// The OnlineMeeting object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(onlineMeetingToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OpenShiftChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/OpenShiftChangeRequestRequest.cs index 1248b76017f..586c9b59819 100644 --- a/src/Microsoft.Graph/Generated/requests/OpenShiftChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OpenShiftChangeRequestRequest.cs @@ -139,6 +139,34 @@ public OpenShiftChangeRequestRequest( return this.SendAsyncWithGraphResponse(openShiftChangeRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified OpenShiftChangeRequestObject using PUT. + /// + /// The OpenShiftChangeRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OpenShiftChangeRequestObject openShiftChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(openShiftChangeRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OpenShiftChangeRequestObject using PUT and returns a object. + /// + /// The OpenShiftChangeRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OpenShiftChangeRequestObject openShiftChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(openShiftChangeRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OpenShiftRequest.cs b/src/Microsoft.Graph/Generated/requests/OpenShiftRequest.cs index 3e61586c661..dfa2b2b884b 100644 --- a/src/Microsoft.Graph/Generated/requests/OpenShiftRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OpenShiftRequest.cs @@ -139,6 +139,34 @@ public OpenShiftRequest( return this.SendAsyncWithGraphResponse(openShiftToUpdate, cancellationToken); } + /// + /// Updates the specified OpenShift using PUT. + /// + /// The OpenShift object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OpenShift openShiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(openShiftToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OpenShift using PUT and returns a object. + /// + /// The OpenShift object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OpenShift openShiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(openShiftToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OpenTypeExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/OpenTypeExtensionRequest.cs index b1a1ac03d93..4f7b632e8c4 100644 --- a/src/Microsoft.Graph/Generated/requests/OpenTypeExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OpenTypeExtensionRequest.cs @@ -139,6 +139,34 @@ public OpenTypeExtensionRequest( return this.SendAsyncWithGraphResponse(openTypeExtensionToUpdate, cancellationToken); } + /// + /// Updates the specified OpenTypeExtension using PUT. + /// + /// The OpenTypeExtension object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OpenTypeExtension openTypeExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(openTypeExtensionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OpenTypeExtension using PUT and returns a object. + /// + /// The OpenTypeExtension object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OpenTypeExtension openTypeExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(openTypeExtensionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OperationRequest.cs b/src/Microsoft.Graph/Generated/requests/OperationRequest.cs index 9a27e41a295..c23db1ede1a 100644 --- a/src/Microsoft.Graph/Generated/requests/OperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OperationRequest.cs @@ -139,6 +139,34 @@ public OperationRequest( return this.SendAsyncWithGraphResponse(operationToUpdate, cancellationToken); } + /// + /// Updates the specified Operation using PUT. + /// + /// The Operation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Operation operationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(operationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Operation using PUT and returns a object. + /// + /// The Operation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Operation operationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(operationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OrgContactRequest.cs b/src/Microsoft.Graph/Generated/requests/OrgContactRequest.cs index 22b34e34a86..16687d25a52 100644 --- a/src/Microsoft.Graph/Generated/requests/OrgContactRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OrgContactRequest.cs @@ -139,6 +139,34 @@ public OrgContactRequest( return this.SendAsyncWithGraphResponse(orgContactToUpdate, cancellationToken); } + /// + /// Updates the specified OrgContact using PUT. + /// + /// The OrgContact object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OrgContact orgContactToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(orgContactToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OrgContact using PUT and returns a object. + /// + /// The OrgContact object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OrgContact orgContactToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(orgContactToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OrganizationRequest.cs b/src/Microsoft.Graph/Generated/requests/OrganizationRequest.cs index e90eff61c7b..1f13f031ca7 100644 --- a/src/Microsoft.Graph/Generated/requests/OrganizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OrganizationRequest.cs @@ -139,6 +139,34 @@ public OrganizationRequest( return this.SendAsyncWithGraphResponse(organizationToUpdate, cancellationToken); } + /// + /// Updates the specified Organization using PUT. + /// + /// The Organization object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Organization organizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(organizationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Organization using PUT and returns a object. + /// + /// The Organization object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Organization organizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(organizationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingLocalizationRequest.cs b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingLocalizationRequest.cs index d82f994eb5c..57e36c3a671 100644 --- a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingLocalizationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingLocalizationRequest.cs @@ -139,6 +139,34 @@ public OrganizationalBrandingLocalizationRequest( return this.SendAsyncWithGraphResponse(organizationalBrandingLocalizationToUpdate, cancellationToken); } + /// + /// Updates the specified OrganizationalBrandingLocalization using PUT. + /// + /// The OrganizationalBrandingLocalization object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OrganizationalBrandingLocalization organizationalBrandingLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(organizationalBrandingLocalizationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OrganizationalBrandingLocalization using PUT and returns a object. + /// + /// The OrganizationalBrandingLocalization object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBrandingLocalization organizationalBrandingLocalizationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(organizationalBrandingLocalizationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingPropertiesRequest.cs b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingPropertiesRequest.cs index 3940e6cb09a..97504e91d6b 100644 --- a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingPropertiesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingPropertiesRequest.cs @@ -139,6 +139,34 @@ public OrganizationalBrandingPropertiesRequest( return this.SendAsyncWithGraphResponse(organizationalBrandingPropertiesToUpdate, cancellationToken); } + /// + /// Updates the specified OrganizationalBrandingProperties using PUT. + /// + /// The OrganizationalBrandingProperties object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OrganizationalBrandingProperties organizationalBrandingPropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(organizationalBrandingPropertiesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OrganizationalBrandingProperties using PUT and returns a object. + /// + /// The OrganizationalBrandingProperties object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBrandingProperties organizationalBrandingPropertiesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(organizationalBrandingPropertiesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingRequest.cs b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingRequest.cs index 4efefa93199..61d10a35373 100644 --- a/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OrganizationalBrandingRequest.cs @@ -139,6 +139,34 @@ public OrganizationalBrandingRequest( return this.SendAsyncWithGraphResponse(organizationalBrandingToUpdate, cancellationToken); } + /// + /// Updates the specified OrganizationalBranding using PUT. + /// + /// The OrganizationalBranding object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OrganizationalBranding organizationalBrandingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(organizationalBrandingToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OrganizationalBranding using PUT and returns a object. + /// + /// The OrganizationalBranding object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OrganizationalBranding organizationalBrandingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(organizationalBrandingToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OutlookCategoryRequest.cs b/src/Microsoft.Graph/Generated/requests/OutlookCategoryRequest.cs index 8a224f2cca3..2a74f084d4a 100644 --- a/src/Microsoft.Graph/Generated/requests/OutlookCategoryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OutlookCategoryRequest.cs @@ -139,6 +139,34 @@ public OutlookCategoryRequest( return this.SendAsyncWithGraphResponse(outlookCategoryToUpdate, cancellationToken); } + /// + /// Updates the specified OutlookCategory using PUT. + /// + /// The OutlookCategory object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OutlookCategory outlookCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(outlookCategoryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OutlookCategory using PUT and returns a object. + /// + /// The OutlookCategory object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OutlookCategory outlookCategoryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(outlookCategoryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OutlookItemRequest.cs b/src/Microsoft.Graph/Generated/requests/OutlookItemRequest.cs index 5d5cfeae393..d5f80e4d554 100644 --- a/src/Microsoft.Graph/Generated/requests/OutlookItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OutlookItemRequest.cs @@ -139,6 +139,34 @@ public OutlookItemRequest( return this.SendAsyncWithGraphResponse(outlookItemToUpdate, cancellationToken); } + /// + /// Updates the specified OutlookItem using PUT. + /// + /// The OutlookItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OutlookItem outlookItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(outlookItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OutlookItem using PUT and returns a object. + /// + /// The OutlookItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OutlookItem outlookItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(outlookItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/OutlookUserRequest.cs b/src/Microsoft.Graph/Generated/requests/OutlookUserRequest.cs index e17a7975f86..749fbff2ffb 100644 --- a/src/Microsoft.Graph/Generated/requests/OutlookUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/OutlookUserRequest.cs @@ -139,6 +139,34 @@ public OutlookUserRequest( return this.SendAsyncWithGraphResponse(outlookUserToUpdate, cancellationToken); } + /// + /// Updates the specified OutlookUser using PUT. + /// + /// The OutlookUser object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(OutlookUser outlookUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(outlookUserToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified OutlookUser using PUT and returns a object. + /// + /// The OutlookUser object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(OutlookUser outlookUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(outlookUserToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ParticipantRequest.cs b/src/Microsoft.Graph/Generated/requests/ParticipantRequest.cs index a3ff29ce537..a6e96dddb0d 100644 --- a/src/Microsoft.Graph/Generated/requests/ParticipantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ParticipantRequest.cs @@ -139,6 +139,34 @@ public ParticipantRequest( return this.SendAsyncWithGraphResponse(participantToUpdate, cancellationToken); } + /// + /// Updates the specified Participant using PUT. + /// + /// The Participant object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Participant participantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(participantToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Participant using PUT and returns a object. + /// + /// The Participant object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Participant participantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(participantToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PermissionGrantConditionSetRequest.cs b/src/Microsoft.Graph/Generated/requests/PermissionGrantConditionSetRequest.cs index 9a28d8ec134..7597f62c1cf 100644 --- a/src/Microsoft.Graph/Generated/requests/PermissionGrantConditionSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PermissionGrantConditionSetRequest.cs @@ -139,6 +139,34 @@ public PermissionGrantConditionSetRequest( return this.SendAsyncWithGraphResponse(permissionGrantConditionSetToUpdate, cancellationToken); } + /// + /// Updates the specified PermissionGrantConditionSet using PUT. + /// + /// The PermissionGrantConditionSet object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PermissionGrantConditionSet permissionGrantConditionSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(permissionGrantConditionSetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PermissionGrantConditionSet using PUT and returns a object. + /// + /// The PermissionGrantConditionSet object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PermissionGrantConditionSet permissionGrantConditionSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(permissionGrantConditionSetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PermissionGrantPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/PermissionGrantPolicyRequest.cs index ce0fcc13192..56636e8204d 100644 --- a/src/Microsoft.Graph/Generated/requests/PermissionGrantPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PermissionGrantPolicyRequest.cs @@ -139,6 +139,34 @@ public PermissionGrantPolicyRequest( return this.SendAsyncWithGraphResponse(permissionGrantPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified PermissionGrantPolicy using PUT. + /// + /// The PermissionGrantPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PermissionGrantPolicy permissionGrantPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(permissionGrantPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PermissionGrantPolicy using PUT and returns a object. + /// + /// The PermissionGrantPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PermissionGrantPolicy permissionGrantPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(permissionGrantPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PermissionRequest.cs b/src/Microsoft.Graph/Generated/requests/PermissionRequest.cs index 690be146a3a..5340e2480a0 100644 --- a/src/Microsoft.Graph/Generated/requests/PermissionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PermissionRequest.cs @@ -139,6 +139,34 @@ public PermissionRequest( return this.SendAsyncWithGraphResponse(permissionToUpdate, cancellationToken); } + /// + /// Updates the specified Permission using PUT. + /// + /// The Permission object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Permission permissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(permissionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Permission using PUT and returns a object. + /// + /// The Permission object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Permission permissionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(permissionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PersonRequest.cs b/src/Microsoft.Graph/Generated/requests/PersonRequest.cs index c3341365071..0c8ce52e3bc 100644 --- a/src/Microsoft.Graph/Generated/requests/PersonRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PersonRequest.cs @@ -139,6 +139,34 @@ public PersonRequest( return this.SendAsyncWithGraphResponse(personToUpdate, cancellationToken); } + /// + /// Updates the specified Person using PUT. + /// + /// The Person object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Person personToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(personToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Person using PUT and returns a object. + /// + /// The Person object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Person personToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(personToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlaceRequest.cs b/src/Microsoft.Graph/Generated/requests/PlaceRequest.cs index af422b28f35..c3dae36c197 100644 --- a/src/Microsoft.Graph/Generated/requests/PlaceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlaceRequest.cs @@ -139,6 +139,34 @@ public PlaceRequest( return this.SendAsyncWithGraphResponse(placeToUpdate, cancellationToken); } + /// + /// Updates the specified Place using PUT. + /// + /// The Place object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Place placeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(placeToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Place using PUT and returns a object. + /// + /// The Place object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Place placeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(placeToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerAssignedToTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerAssignedToTaskBoardTaskFormatRequest.cs index 7039e186a43..1dcf28a1eaa 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerAssignedToTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerAssignedToTaskBoardTaskFormatRequest.cs @@ -139,6 +139,34 @@ public PlannerAssignedToTaskBoardTaskFormatRequest( return this.SendAsyncWithGraphResponse(plannerAssignedToTaskBoardTaskFormatToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerAssignedToTaskBoardTaskFormat using PUT. + /// + /// The PlannerAssignedToTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerAssignedToTaskBoardTaskFormat plannerAssignedToTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerAssignedToTaskBoardTaskFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerAssignedToTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerAssignedToTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerAssignedToTaskBoardTaskFormat plannerAssignedToTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerAssignedToTaskBoardTaskFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerBucketRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerBucketRequest.cs index dfa778602a6..070072220fa 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerBucketRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerBucketRequest.cs @@ -139,6 +139,34 @@ public PlannerBucketRequest( return this.SendAsyncWithGraphResponse(plannerBucketToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerBucket using PUT. + /// + /// The PlannerBucket object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerBucket plannerBucketToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerBucketToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerBucket using PUT and returns a object. + /// + /// The PlannerBucket object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerBucket plannerBucketToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerBucketToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerBucketTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerBucketTaskBoardTaskFormatRequest.cs index e4fff48a756..3ab580f1ecf 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerBucketTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerBucketTaskBoardTaskFormatRequest.cs @@ -139,6 +139,34 @@ public PlannerBucketTaskBoardTaskFormatRequest( return this.SendAsyncWithGraphResponse(plannerBucketTaskBoardTaskFormatToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerBucketTaskBoardTaskFormat using PUT. + /// + /// The PlannerBucketTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerBucketTaskBoardTaskFormat plannerBucketTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerBucketTaskBoardTaskFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerBucketTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerBucketTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerBucketTaskBoardTaskFormat plannerBucketTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerBucketTaskBoardTaskFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerGroupRequest.cs index dd960d9902d..b51d68f1294 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerGroupRequest.cs @@ -139,6 +139,34 @@ public PlannerGroupRequest( return this.SendAsyncWithGraphResponse(plannerGroupToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerGroup using PUT. + /// + /// The PlannerGroup object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerGroup plannerGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerGroupToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerGroup using PUT and returns a object. + /// + /// The PlannerGroup object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerGroup plannerGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerGroupToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerPlanDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerPlanDetailsRequest.cs index 81c46ad49b0..2c93a15be03 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerPlanDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerPlanDetailsRequest.cs @@ -139,6 +139,34 @@ public PlannerPlanDetailsRequest( return this.SendAsyncWithGraphResponse(plannerPlanDetailsToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerPlanDetails using PUT. + /// + /// The PlannerPlanDetails object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerPlanDetails plannerPlanDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerPlanDetailsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerPlanDetails using PUT and returns a object. + /// + /// The PlannerPlanDetails object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerPlanDetails plannerPlanDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerPlanDetailsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerPlanRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerPlanRequest.cs index 003418d47c8..1a5faded46a 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerPlanRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerPlanRequest.cs @@ -139,6 +139,34 @@ public PlannerPlanRequest( return this.SendAsyncWithGraphResponse(plannerPlanToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerPlan using PUT. + /// + /// The PlannerPlan object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerPlan plannerPlanToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerPlanToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerPlan using PUT and returns a object. + /// + /// The PlannerPlan object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerPlan plannerPlanToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerPlanToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerProgressTaskBoardTaskFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerProgressTaskBoardTaskFormatRequest.cs index 66c6d9e3ef7..0f0a8d5efe2 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerProgressTaskBoardTaskFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerProgressTaskBoardTaskFormatRequest.cs @@ -139,6 +139,34 @@ public PlannerProgressTaskBoardTaskFormatRequest( return this.SendAsyncWithGraphResponse(plannerProgressTaskBoardTaskFormatToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerProgressTaskBoardTaskFormat using PUT. + /// + /// The PlannerProgressTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerProgressTaskBoardTaskFormat plannerProgressTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerProgressTaskBoardTaskFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerProgressTaskBoardTaskFormat using PUT and returns a object. + /// + /// The PlannerProgressTaskBoardTaskFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerProgressTaskBoardTaskFormat plannerProgressTaskBoardTaskFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerProgressTaskBoardTaskFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerRequest.cs index 8a137de06a6..8dffba86128 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerRequest.cs @@ -139,6 +139,34 @@ public PlannerRequest( return this.SendAsyncWithGraphResponse(plannerToUpdate, cancellationToken); } + /// + /// Updates the specified Planner using PUT. + /// + /// The Planner object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Planner plannerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Planner using PUT and returns a object. + /// + /// The Planner object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Planner plannerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerTaskDetailsRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerTaskDetailsRequest.cs index 5edb2acb4f2..b31038deae0 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerTaskDetailsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerTaskDetailsRequest.cs @@ -139,6 +139,34 @@ public PlannerTaskDetailsRequest( return this.SendAsyncWithGraphResponse(plannerTaskDetailsToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerTaskDetails using PUT. + /// + /// The PlannerTaskDetails object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerTaskDetails plannerTaskDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerTaskDetailsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerTaskDetails using PUT and returns a object. + /// + /// The PlannerTaskDetails object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerTaskDetails plannerTaskDetailsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerTaskDetailsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerTaskRequest.cs index 5a1c43fcc2f..fbc0606ff5c 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerTaskRequest.cs @@ -139,6 +139,34 @@ public PlannerTaskRequest( return this.SendAsyncWithGraphResponse(plannerTaskToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerTask using PUT. + /// + /// The PlannerTask object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerTask plannerTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerTaskToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerTask using PUT and returns a object. + /// + /// The PlannerTask object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerTask plannerTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerTaskToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlannerUserRequest.cs b/src/Microsoft.Graph/Generated/requests/PlannerUserRequest.cs index 8c82d8edba2..2f5c5d810fd 100644 --- a/src/Microsoft.Graph/Generated/requests/PlannerUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlannerUserRequest.cs @@ -139,6 +139,34 @@ public PlannerUserRequest( return this.SendAsyncWithGraphResponse(plannerUserToUpdate, cancellationToken); } + /// + /// Updates the specified PlannerUser using PUT. + /// + /// The PlannerUser object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlannerUser plannerUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(plannerUserToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlannerUser using PUT and returns a object. + /// + /// The PlannerUser object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlannerUser plannerUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(plannerUserToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PlayPromptOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/PlayPromptOperationRequest.cs index 7d88dd43815..c770b0389b1 100644 --- a/src/Microsoft.Graph/Generated/requests/PlayPromptOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PlayPromptOperationRequest.cs @@ -139,6 +139,34 @@ public PlayPromptOperationRequest( return this.SendAsyncWithGraphResponse(playPromptOperationToUpdate, cancellationToken); } + /// + /// Updates the specified PlayPromptOperation using PUT. + /// + /// The PlayPromptOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PlayPromptOperation playPromptOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(playPromptOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PlayPromptOperation using PUT and returns a object. + /// + /// The PlayPromptOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PlayPromptOperation playPromptOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(playPromptOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PolicyBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/PolicyBaseRequest.cs index 7b2af4636de..134f7fc82d8 100644 --- a/src/Microsoft.Graph/Generated/requests/PolicyBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PolicyBaseRequest.cs @@ -139,6 +139,34 @@ public PolicyBaseRequest( return this.SendAsyncWithGraphResponse(policyBaseToUpdate, cancellationToken); } + /// + /// Updates the specified PolicyBase using PUT. + /// + /// The PolicyBase object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PolicyBase policyBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(policyBaseToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PolicyBase using PUT and returns a object. + /// + /// The PolicyBase object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PolicyBase policyBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(policyBaseToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PolicyRootRequest.cs b/src/Microsoft.Graph/Generated/requests/PolicyRootRequest.cs index 1b3f0c0da3c..e95f83b2bc8 100644 --- a/src/Microsoft.Graph/Generated/requests/PolicyRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PolicyRootRequest.cs @@ -139,6 +139,34 @@ public PolicyRootRequest( return this.SendAsyncWithGraphResponse(policyRootToUpdate, cancellationToken); } + /// + /// Updates the specified PolicyRoot using PUT. + /// + /// The PolicyRoot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PolicyRoot policyRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(policyRootToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PolicyRoot using PUT and returns a object. + /// + /// The PolicyRoot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PolicyRoot policyRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(policyRootToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PostRequest.cs b/src/Microsoft.Graph/Generated/requests/PostRequest.cs index 68e13e6e4e1..9079af0bf86 100644 --- a/src/Microsoft.Graph/Generated/requests/PostRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PostRequest.cs @@ -139,6 +139,34 @@ public PostRequest( return this.SendAsyncWithGraphResponse(postToUpdate, cancellationToken); } + /// + /// Updates the specified Post using PUT. + /// + /// The Post object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Post postToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(postToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Post using PUT and returns a object. + /// + /// The Post object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Post postToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(postToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PresenceRequest.cs b/src/Microsoft.Graph/Generated/requests/PresenceRequest.cs index b62ca026f04..1e4bd7591f4 100644 --- a/src/Microsoft.Graph/Generated/requests/PresenceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PresenceRequest.cs @@ -139,6 +139,34 @@ public PresenceRequest( return this.SendAsyncWithGraphResponse(presenceToUpdate, cancellationToken); } + /// + /// Updates the specified Presence using PUT. + /// + /// The Presence object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Presence presenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(presenceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Presence using PUT and returns a object. + /// + /// The Presence object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Presence presenceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(presenceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintConnectorRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintConnectorRequest.cs index 636f26eb25d..64c85dcbdf5 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintConnectorRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintConnectorRequest.cs @@ -139,6 +139,34 @@ public PrintConnectorRequest( return this.SendAsyncWithGraphResponse(printConnectorToUpdate, cancellationToken); } + /// + /// Updates the specified PrintConnector using PUT. + /// + /// The PrintConnector object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintConnector printConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printConnectorToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintConnector using PUT and returns a object. + /// + /// The PrintConnector object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintConnector printConnectorToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printConnectorToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintDocumentRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintDocumentRequest.cs index 00252a5013b..96bfd1ea3a9 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintDocumentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintDocumentRequest.cs @@ -139,6 +139,34 @@ public PrintDocumentRequest( return this.SendAsyncWithGraphResponse(printDocumentToUpdate, cancellationToken); } + /// + /// Updates the specified PrintDocument using PUT. + /// + /// The PrintDocument object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintDocument printDocumentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printDocumentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintDocument using PUT and returns a object. + /// + /// The PrintDocument object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintDocument printDocumentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printDocumentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintJobRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintJobRequest.cs index 1b9f98f5bb9..da19730e90f 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintJobRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintJobRequest.cs @@ -139,6 +139,34 @@ public PrintJobRequest( return this.SendAsyncWithGraphResponse(printJobToUpdate, cancellationToken); } + /// + /// Updates the specified PrintJob using PUT. + /// + /// The PrintJob object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintJob printJobToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printJobToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintJob using PUT and returns a object. + /// + /// The PrintJob object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintJob printJobToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printJobToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintOperationRequest.cs index d920f724cdb..56f054a9055 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintOperationRequest.cs @@ -139,6 +139,34 @@ public PrintOperationRequest( return this.SendAsyncWithGraphResponse(printOperationToUpdate, cancellationToken); } + /// + /// Updates the specified PrintOperation using PUT. + /// + /// The PrintOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintOperation printOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintOperation using PUT and returns a object. + /// + /// The PrintOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintOperation printOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintRequest.cs index 66d58bcc832..43e626274dd 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintRequest.cs @@ -139,6 +139,34 @@ public PrintRequest( return this.SendAsyncWithGraphResponse(printToUpdate, cancellationToken); } + /// + /// Updates the specified Print using PUT. + /// + /// The Print object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Print printToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Print using PUT and returns a object. + /// + /// The Print object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Print printToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintServiceEndpointRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintServiceEndpointRequest.cs index 5b2f1bceb5c..c3797e763fd 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintServiceEndpointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintServiceEndpointRequest.cs @@ -139,6 +139,34 @@ public PrintServiceEndpointRequest( return this.SendAsyncWithGraphResponse(printServiceEndpointToUpdate, cancellationToken); } + /// + /// Updates the specified PrintServiceEndpoint using PUT. + /// + /// The PrintServiceEndpoint object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintServiceEndpoint printServiceEndpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printServiceEndpointToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintServiceEndpoint using PUT and returns a object. + /// + /// The PrintServiceEndpoint object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintServiceEndpoint printServiceEndpointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printServiceEndpointToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintServiceRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintServiceRequest.cs index de9e4c61da0..d671939206e 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintServiceRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintServiceRequest.cs @@ -139,6 +139,34 @@ public PrintServiceRequest( return this.SendAsyncWithGraphResponse(printServiceToUpdate, cancellationToken); } + /// + /// Updates the specified PrintService using PUT. + /// + /// The PrintService object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintService printServiceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printServiceToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintService using PUT and returns a object. + /// + /// The PrintService object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintService printServiceToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printServiceToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintTaskDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintTaskDefinitionRequest.cs index a7ed0574aca..699171e8647 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintTaskDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintTaskDefinitionRequest.cs @@ -139,6 +139,34 @@ public PrintTaskDefinitionRequest( return this.SendAsyncWithGraphResponse(printTaskDefinitionToUpdate, cancellationToken); } + /// + /// Updates the specified PrintTaskDefinition using PUT. + /// + /// The PrintTaskDefinition object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintTaskDefinition printTaskDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printTaskDefinitionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintTaskDefinition using PUT and returns a object. + /// + /// The PrintTaskDefinition object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintTaskDefinition printTaskDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printTaskDefinitionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintTaskRequest.cs index 60c2b34e2f7..ef67e1698f3 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintTaskRequest.cs @@ -139,6 +139,34 @@ public PrintTaskRequest( return this.SendAsyncWithGraphResponse(printTaskToUpdate, cancellationToken); } + /// + /// Updates the specified PrintTask using PUT. + /// + /// The PrintTask object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintTask printTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printTaskToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintTask using PUT and returns a object. + /// + /// The PrintTask object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintTask printTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printTaskToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintTaskTriggerRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintTaskTriggerRequest.cs index dc49330f0a9..8c794086210 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintTaskTriggerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintTaskTriggerRequest.cs @@ -139,6 +139,34 @@ public PrintTaskTriggerRequest( return this.SendAsyncWithGraphResponse(printTaskTriggerToUpdate, cancellationToken); } + /// + /// Updates the specified PrintTaskTrigger using PUT. + /// + /// The PrintTaskTrigger object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintTaskTrigger printTaskTriggerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printTaskTriggerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintTaskTrigger using PUT and returns a object. + /// + /// The PrintTaskTrigger object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintTaskTrigger printTaskTriggerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printTaskTriggerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintUsageByPrinterRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintUsageByPrinterRequest.cs index 7434a853e6d..da1dfb8a55d 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintUsageByPrinterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintUsageByPrinterRequest.cs @@ -139,6 +139,34 @@ public PrintUsageByPrinterRequest( return this.SendAsyncWithGraphResponse(printUsageByPrinterToUpdate, cancellationToken); } + /// + /// Updates the specified PrintUsageByPrinter using PUT. + /// + /// The PrintUsageByPrinter object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintUsageByPrinter printUsageByPrinterToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printUsageByPrinterToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintUsageByPrinter using PUT and returns a object. + /// + /// The PrintUsageByPrinter object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintUsageByPrinter printUsageByPrinterToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printUsageByPrinterToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintUsageByUserRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintUsageByUserRequest.cs index 18c02b418b0..d2adb69c5ef 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintUsageByUserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintUsageByUserRequest.cs @@ -139,6 +139,34 @@ public PrintUsageByUserRequest( return this.SendAsyncWithGraphResponse(printUsageByUserToUpdate, cancellationToken); } + /// + /// Updates the specified PrintUsageByUser using PUT. + /// + /// The PrintUsageByUser object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintUsageByUser printUsageByUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printUsageByUserToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintUsageByUser using PUT and returns a object. + /// + /// The PrintUsageByUser object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintUsageByUser printUsageByUserToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printUsageByUserToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrintUsageRequest.cs b/src/Microsoft.Graph/Generated/requests/PrintUsageRequest.cs index 8867f116feb..3a9e5ab9bd3 100644 --- a/src/Microsoft.Graph/Generated/requests/PrintUsageRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrintUsageRequest.cs @@ -139,6 +139,34 @@ public PrintUsageRequest( return this.SendAsyncWithGraphResponse(printUsageToUpdate, cancellationToken); } + /// + /// Updates the specified PrintUsage using PUT. + /// + /// The PrintUsage object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrintUsage printUsageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printUsageToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrintUsage using PUT and returns a object. + /// + /// The PrintUsage object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrintUsage printUsageToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printUsageToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrinterBaseRequest.cs b/src/Microsoft.Graph/Generated/requests/PrinterBaseRequest.cs index 14cec802e8e..210921af30b 100644 --- a/src/Microsoft.Graph/Generated/requests/PrinterBaseRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrinterBaseRequest.cs @@ -139,6 +139,34 @@ public PrinterBaseRequest( return this.SendAsyncWithGraphResponse(printerBaseToUpdate, cancellationToken); } + /// + /// Updates the specified PrinterBase using PUT. + /// + /// The PrinterBase object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrinterBase printerBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printerBaseToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrinterBase using PUT and returns a object. + /// + /// The PrinterBase object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrinterBase printerBaseToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printerBaseToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrinterCreateOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/PrinterCreateOperationRequest.cs index 03ff6fa1bae..128a33ad482 100644 --- a/src/Microsoft.Graph/Generated/requests/PrinterCreateOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrinterCreateOperationRequest.cs @@ -139,6 +139,34 @@ public PrinterCreateOperationRequest( return this.SendAsyncWithGraphResponse(printerCreateOperationToUpdate, cancellationToken); } + /// + /// Updates the specified PrinterCreateOperation using PUT. + /// + /// The PrinterCreateOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrinterCreateOperation printerCreateOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printerCreateOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrinterCreateOperation using PUT and returns a object. + /// + /// The PrinterCreateOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrinterCreateOperation printerCreateOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printerCreateOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrinterRequest.cs b/src/Microsoft.Graph/Generated/requests/PrinterRequest.cs index b9250b53f40..58d3cb5c54b 100644 --- a/src/Microsoft.Graph/Generated/requests/PrinterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrinterRequest.cs @@ -139,6 +139,34 @@ public PrinterRequest( return this.SendAsyncWithGraphResponse(printerToUpdate, cancellationToken); } + /// + /// Updates the specified Printer using PUT. + /// + /// The Printer object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Printer printerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Printer using PUT and returns a object. + /// + /// The Printer object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Printer printerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/PrinterShareRequest.cs b/src/Microsoft.Graph/Generated/requests/PrinterShareRequest.cs index 730bd37e589..979235807cc 100644 --- a/src/Microsoft.Graph/Generated/requests/PrinterShareRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/PrinterShareRequest.cs @@ -139,6 +139,34 @@ public PrinterShareRequest( return this.SendAsyncWithGraphResponse(printerShareToUpdate, cancellationToken); } + /// + /// Updates the specified PrinterShare using PUT. + /// + /// The PrinterShare object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(PrinterShare printerShareToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(printerShareToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified PrinterShare using PUT and returns a object. + /// + /// The PrinterShare object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(PrinterShare printerShareToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(printerShareToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ProfilePhotoRequest.cs b/src/Microsoft.Graph/Generated/requests/ProfilePhotoRequest.cs index eaca15de66e..28618f1e906 100644 --- a/src/Microsoft.Graph/Generated/requests/ProfilePhotoRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ProfilePhotoRequest.cs @@ -139,6 +139,34 @@ public ProfilePhotoRequest( return this.SendAsyncWithGraphResponse(profilePhotoToUpdate, cancellationToken); } + /// + /// Updates the specified ProfilePhoto using PUT. + /// + /// The ProfilePhoto object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ProfilePhoto profilePhotoToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(profilePhotoToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ProfilePhoto using PUT and returns a object. + /// + /// The ProfilePhoto object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ProfilePhoto profilePhotoToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(profilePhotoToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RecordOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/RecordOperationRequest.cs index b19a8b670bc..4c78ad6b136 100644 --- a/src/Microsoft.Graph/Generated/requests/RecordOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RecordOperationRequest.cs @@ -139,6 +139,34 @@ public RecordOperationRequest( return this.SendAsyncWithGraphResponse(recordOperationToUpdate, cancellationToken); } + /// + /// Updates the specified RecordOperation using PUT. + /// + /// The RecordOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RecordOperation recordOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(recordOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RecordOperation using PUT and returns a object. + /// + /// The RecordOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RecordOperation recordOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(recordOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ReferenceAttachmentRequest.cs b/src/Microsoft.Graph/Generated/requests/ReferenceAttachmentRequest.cs index 76f07687bca..96ed146adec 100644 --- a/src/Microsoft.Graph/Generated/requests/ReferenceAttachmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ReferenceAttachmentRequest.cs @@ -139,6 +139,34 @@ public ReferenceAttachmentRequest( return this.SendAsyncWithGraphResponse(referenceAttachmentToUpdate, cancellationToken); } + /// + /// Updates the specified ReferenceAttachment using PUT. + /// + /// The ReferenceAttachment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ReferenceAttachment referenceAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(referenceAttachmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ReferenceAttachment using PUT and returns a object. + /// + /// The ReferenceAttachment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ReferenceAttachment referenceAttachmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(referenceAttachmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RemoteAssistancePartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/RemoteAssistancePartnerRequest.cs index 94352b4f0be..c74d248cc3f 100644 --- a/src/Microsoft.Graph/Generated/requests/RemoteAssistancePartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RemoteAssistancePartnerRequest.cs @@ -139,6 +139,34 @@ public RemoteAssistancePartnerRequest( return this.SendAsyncWithGraphResponse(remoteAssistancePartnerToUpdate, cancellationToken); } + /// + /// Updates the specified RemoteAssistancePartner using PUT. + /// + /// The RemoteAssistancePartner object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RemoteAssistancePartner remoteAssistancePartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(remoteAssistancePartnerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RemoteAssistancePartner using PUT and returns a object. + /// + /// The RemoteAssistancePartner object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RemoteAssistancePartner remoteAssistancePartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(remoteAssistancePartnerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ReportRootRequest.cs b/src/Microsoft.Graph/Generated/requests/ReportRootRequest.cs index df639b457ba..7b2df21b569 100644 --- a/src/Microsoft.Graph/Generated/requests/ReportRootRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ReportRootRequest.cs @@ -139,6 +139,34 @@ public ReportRootRequest( return this.SendAsyncWithGraphResponse(reportRootToUpdate, cancellationToken); } + /// + /// Updates the specified ReportRoot using PUT. + /// + /// The ReportRoot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ReportRoot reportRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(reportRootToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ReportRoot using PUT and returns a object. + /// + /// The ReportRoot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ReportRoot reportRootToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(reportRootToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ResourceOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/ResourceOperationRequest.cs index 78d65a800d2..215d4a30457 100644 --- a/src/Microsoft.Graph/Generated/requests/ResourceOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ResourceOperationRequest.cs @@ -139,6 +139,34 @@ public ResourceOperationRequest( return this.SendAsyncWithGraphResponse(resourceOperationToUpdate, cancellationToken); } + /// + /// Updates the specified ResourceOperation using PUT. + /// + /// The ResourceOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ResourceOperation resourceOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(resourceOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ResourceOperation using PUT and returns a object. + /// + /// The ResourceOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ResourceOperation resourceOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(resourceOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ResourceSpecificPermissionGrantRequest.cs b/src/Microsoft.Graph/Generated/requests/ResourceSpecificPermissionGrantRequest.cs index 24ba008137a..fbc03da9b97 100644 --- a/src/Microsoft.Graph/Generated/requests/ResourceSpecificPermissionGrantRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ResourceSpecificPermissionGrantRequest.cs @@ -139,6 +139,34 @@ public ResourceSpecificPermissionGrantRequest( return this.SendAsyncWithGraphResponse(resourceSpecificPermissionGrantToUpdate, cancellationToken); } + /// + /// Updates the specified ResourceSpecificPermissionGrant using PUT. + /// + /// The ResourceSpecificPermissionGrant object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ResourceSpecificPermissionGrant resourceSpecificPermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(resourceSpecificPermissionGrantToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ResourceSpecificPermissionGrant using PUT and returns a object. + /// + /// The ResourceSpecificPermissionGrant object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ResourceSpecificPermissionGrant resourceSpecificPermissionGrantToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(resourceSpecificPermissionGrantToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RestrictedSignInRequest.cs b/src/Microsoft.Graph/Generated/requests/RestrictedSignInRequest.cs index c9e26498708..2dcb08d545c 100644 --- a/src/Microsoft.Graph/Generated/requests/RestrictedSignInRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RestrictedSignInRequest.cs @@ -139,6 +139,34 @@ public RestrictedSignInRequest( return this.SendAsyncWithGraphResponse(restrictedSignInToUpdate, cancellationToken); } + /// + /// Updates the specified RestrictedSignIn using PUT. + /// + /// The RestrictedSignIn object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RestrictedSignIn restrictedSignInToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(restrictedSignInToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RestrictedSignIn using PUT and returns a object. + /// + /// The RestrictedSignIn object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RestrictedSignIn restrictedSignInToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(restrictedSignInToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RoleAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/RoleAssignmentRequest.cs index 257f28953db..11af76c1bfc 100644 --- a/src/Microsoft.Graph/Generated/requests/RoleAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RoleAssignmentRequest.cs @@ -139,6 +139,34 @@ public RoleAssignmentRequest( return this.SendAsyncWithGraphResponse(roleAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified RoleAssignment using PUT. + /// + /// The RoleAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RoleAssignment roleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(roleAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RoleAssignment using PUT and returns a object. + /// + /// The RoleAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RoleAssignment roleAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(roleAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RoleDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/RoleDefinitionRequest.cs index 763a60025a9..f9089422cdb 100644 --- a/src/Microsoft.Graph/Generated/requests/RoleDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RoleDefinitionRequest.cs @@ -139,6 +139,34 @@ public RoleDefinitionRequest( return this.SendAsyncWithGraphResponse(roleDefinitionToUpdate, cancellationToken); } + /// + /// Updates the specified RoleDefinition using PUT. + /// + /// The RoleDefinition object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RoleDefinition roleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(roleDefinitionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RoleDefinition using PUT and returns a object. + /// + /// The RoleDefinition object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RoleDefinition roleDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(roleDefinitionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RoomListRequest.cs b/src/Microsoft.Graph/Generated/requests/RoomListRequest.cs index 934bc1f6987..06d45f3304c 100644 --- a/src/Microsoft.Graph/Generated/requests/RoomListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RoomListRequest.cs @@ -139,6 +139,34 @@ public RoomListRequest( return this.SendAsyncWithGraphResponse(roomListToUpdate, cancellationToken); } + /// + /// Updates the specified RoomList using PUT. + /// + /// The RoomList object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(RoomList roomListToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(roomListToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified RoomList using PUT and returns a object. + /// + /// The RoomList object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(RoomList roomListToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(roomListToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/RoomRequest.cs b/src/Microsoft.Graph/Generated/requests/RoomRequest.cs index 7a897797aef..ad0181c3a35 100644 --- a/src/Microsoft.Graph/Generated/requests/RoomRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/RoomRequest.cs @@ -139,6 +139,34 @@ public RoomRequest( return this.SendAsyncWithGraphResponse(roomToUpdate, cancellationToken); } + /// + /// Updates the specified Room using PUT. + /// + /// The Room object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Room roomToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(roomToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Room using PUT and returns a object. + /// + /// The Room object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Room roomToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(roomToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ScheduleChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/ScheduleChangeRequestRequest.cs index a1e2f3fb3ee..2c7878f45b6 100644 --- a/src/Microsoft.Graph/Generated/requests/ScheduleChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ScheduleChangeRequestRequest.cs @@ -139,6 +139,34 @@ public ScheduleChangeRequestRequest( return this.SendAsyncWithGraphResponse(scheduleChangeRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified ScheduleChangeRequestObject using PUT. + /// + /// The ScheduleChangeRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ScheduleChangeRequestObject scheduleChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(scheduleChangeRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ScheduleChangeRequestObject using PUT and returns a object. + /// + /// The ScheduleChangeRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ScheduleChangeRequestObject scheduleChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(scheduleChangeRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ScheduleRequest.cs b/src/Microsoft.Graph/Generated/requests/ScheduleRequest.cs index 98a50e27d2a..69473550049 100644 --- a/src/Microsoft.Graph/Generated/requests/ScheduleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ScheduleRequest.cs @@ -139,6 +139,34 @@ public ScheduleRequest( return this.SendAsyncWithGraphResponse(scheduleToUpdate, cancellationToken); } + /// + /// Updates the specified Schedule using PUT. + /// + /// The Schedule object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Schedule scheduleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(scheduleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Schedule using PUT and returns a object. + /// + /// The Schedule object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Schedule scheduleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(scheduleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SchedulingGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/SchedulingGroupRequest.cs index 5beba48328c..9b25c20088c 100644 --- a/src/Microsoft.Graph/Generated/requests/SchedulingGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SchedulingGroupRequest.cs @@ -139,6 +139,34 @@ public SchedulingGroupRequest( return this.SendAsyncWithGraphResponse(schedulingGroupToUpdate, cancellationToken); } + /// + /// Updates the specified SchedulingGroup using PUT. + /// + /// The SchedulingGroup object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SchedulingGroup schedulingGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(schedulingGroupToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SchedulingGroup using PUT and returns a object. + /// + /// The SchedulingGroup object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SchedulingGroup schedulingGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(schedulingGroupToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SchemaExtensionRequest.cs b/src/Microsoft.Graph/Generated/requests/SchemaExtensionRequest.cs index cbb7d69d886..a3fac27acd1 100644 --- a/src/Microsoft.Graph/Generated/requests/SchemaExtensionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SchemaExtensionRequest.cs @@ -139,6 +139,34 @@ public SchemaExtensionRequest( return this.SendAsyncWithGraphResponse(schemaExtensionToUpdate, cancellationToken); } + /// + /// Updates the specified SchemaExtension using PUT. + /// + /// The SchemaExtension object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SchemaExtension schemaExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(schemaExtensionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SchemaExtension using PUT and returns a object. + /// + /// The SchemaExtension object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SchemaExtension schemaExtensionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(schemaExtensionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ScopedRoleMembershipRequest.cs b/src/Microsoft.Graph/Generated/requests/ScopedRoleMembershipRequest.cs index a504d69e60c..22b353bba45 100644 --- a/src/Microsoft.Graph/Generated/requests/ScopedRoleMembershipRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ScopedRoleMembershipRequest.cs @@ -139,6 +139,34 @@ public ScopedRoleMembershipRequest( return this.SendAsyncWithGraphResponse(scopedRoleMembershipToUpdate, cancellationToken); } + /// + /// Updates the specified ScopedRoleMembership using PUT. + /// + /// The ScopedRoleMembership object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ScopedRoleMembership scopedRoleMembershipToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(scopedRoleMembershipToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ScopedRoleMembership using PUT and returns a object. + /// + /// The ScopedRoleMembership object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ScopedRoleMembership scopedRoleMembershipToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(scopedRoleMembershipToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SearchEntityRequest.cs b/src/Microsoft.Graph/Generated/requests/SearchEntityRequest.cs index d0834d823bb..25075f5b6c1 100644 --- a/src/Microsoft.Graph/Generated/requests/SearchEntityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SearchEntityRequest.cs @@ -139,6 +139,34 @@ public SearchEntityRequest( return this.SendAsyncWithGraphResponse(searchEntityToUpdate, cancellationToken); } + /// + /// Updates the specified SearchEntity using PUT. + /// + /// The SearchEntity object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SearchEntity searchEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(searchEntityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SearchEntity using PUT and returns a object. + /// + /// The SearchEntity object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SearchEntity searchEntityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(searchEntityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SectionGroupRequest.cs b/src/Microsoft.Graph/Generated/requests/SectionGroupRequest.cs index 8e817d487ce..439e62f9488 100644 --- a/src/Microsoft.Graph/Generated/requests/SectionGroupRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SectionGroupRequest.cs @@ -139,6 +139,34 @@ public SectionGroupRequest( return this.SendAsyncWithGraphResponse(sectionGroupToUpdate, cancellationToken); } + /// + /// Updates the specified SectionGroup using PUT. + /// + /// The SectionGroup object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SectionGroup sectionGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(sectionGroupToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SectionGroup using PUT and returns a object. + /// + /// The SectionGroup object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SectionGroup sectionGroupToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(sectionGroupToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SecureScoreControlProfileRequest.cs b/src/Microsoft.Graph/Generated/requests/SecureScoreControlProfileRequest.cs index cf614eecae4..c9b449dd395 100644 --- a/src/Microsoft.Graph/Generated/requests/SecureScoreControlProfileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SecureScoreControlProfileRequest.cs @@ -139,6 +139,34 @@ public SecureScoreControlProfileRequest( return this.SendAsyncWithGraphResponse(secureScoreControlProfileToUpdate, cancellationToken); } + /// + /// Updates the specified SecureScoreControlProfile using PUT. + /// + /// The SecureScoreControlProfile object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SecureScoreControlProfile secureScoreControlProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(secureScoreControlProfileToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SecureScoreControlProfile using PUT and returns a object. + /// + /// The SecureScoreControlProfile object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SecureScoreControlProfile secureScoreControlProfileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(secureScoreControlProfileToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SecureScoreRequest.cs b/src/Microsoft.Graph/Generated/requests/SecureScoreRequest.cs index a4cc1e9c14d..046ca342b10 100644 --- a/src/Microsoft.Graph/Generated/requests/SecureScoreRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SecureScoreRequest.cs @@ -139,6 +139,34 @@ public SecureScoreRequest( return this.SendAsyncWithGraphResponse(secureScoreToUpdate, cancellationToken); } + /// + /// Updates the specified SecureScore using PUT. + /// + /// The SecureScore object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SecureScore secureScoreToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(secureScoreToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SecureScore using PUT and returns a object. + /// + /// The SecureScore object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SecureScore secureScoreToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(secureScoreToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SecurityRequest.cs b/src/Microsoft.Graph/Generated/requests/SecurityRequest.cs index 0ee858241f8..ebce52daf2f 100644 --- a/src/Microsoft.Graph/Generated/requests/SecurityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SecurityRequest.cs @@ -139,6 +139,34 @@ public SecurityRequest( return this.SendAsyncWithGraphResponse(securityToUpdate, cancellationToken); } + /// + /// Updates the specified Security using PUT. + /// + /// The Security object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Security securityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(securityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Security using PUT and returns a object. + /// + /// The Security object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Security securityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(securityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ServicePrincipalRequest.cs b/src/Microsoft.Graph/Generated/requests/ServicePrincipalRequest.cs index 0209458d935..1f8ff38b775 100644 --- a/src/Microsoft.Graph/Generated/requests/ServicePrincipalRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ServicePrincipalRequest.cs @@ -139,6 +139,34 @@ public ServicePrincipalRequest( return this.SendAsyncWithGraphResponse(servicePrincipalToUpdate, cancellationToken); } + /// + /// Updates the specified ServicePrincipal using PUT. + /// + /// The ServicePrincipal object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ServicePrincipal servicePrincipalToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(servicePrincipalToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ServicePrincipal using PUT and returns a object. + /// + /// The ServicePrincipal object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ServicePrincipal servicePrincipalToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(servicePrincipalToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SettingStateDeviceSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/SettingStateDeviceSummaryRequest.cs index 87556672642..1472dbbd103 100644 --- a/src/Microsoft.Graph/Generated/requests/SettingStateDeviceSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SettingStateDeviceSummaryRequest.cs @@ -139,6 +139,34 @@ public SettingStateDeviceSummaryRequest( return this.SendAsyncWithGraphResponse(settingStateDeviceSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified SettingStateDeviceSummary using PUT. + /// + /// The SettingStateDeviceSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SettingStateDeviceSummary settingStateDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(settingStateDeviceSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SettingStateDeviceSummary using PUT and returns a object. + /// + /// The SettingStateDeviceSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SettingStateDeviceSummary settingStateDeviceSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(settingStateDeviceSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SharedDriveItemRequest.cs b/src/Microsoft.Graph/Generated/requests/SharedDriveItemRequest.cs index 5d6d81ec611..5c82447a5bc 100644 --- a/src/Microsoft.Graph/Generated/requests/SharedDriveItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SharedDriveItemRequest.cs @@ -139,6 +139,34 @@ public SharedDriveItemRequest( return this.SendAsyncWithGraphResponse(sharedDriveItemToUpdate, cancellationToken); } + /// + /// Updates the specified SharedDriveItem using PUT. + /// + /// The SharedDriveItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SharedDriveItem sharedDriveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(sharedDriveItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SharedDriveItem using PUT and returns a object. + /// + /// The SharedDriveItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SharedDriveItem sharedDriveItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(sharedDriveItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SharedInsightRequest.cs b/src/Microsoft.Graph/Generated/requests/SharedInsightRequest.cs index 9c36de12632..21f962b2ef3 100644 --- a/src/Microsoft.Graph/Generated/requests/SharedInsightRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SharedInsightRequest.cs @@ -139,6 +139,34 @@ public SharedInsightRequest( return this.SendAsyncWithGraphResponse(sharedInsightToUpdate, cancellationToken); } + /// + /// Updates the specified SharedInsight using PUT. + /// + /// The SharedInsight object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SharedInsight sharedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(sharedInsightToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SharedInsight using PUT and returns a object. + /// + /// The SharedInsight object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SharedInsight sharedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(sharedInsightToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SharedPCConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/SharedPCConfigurationRequest.cs index e0abd28aa83..02d5d9bc882 100644 --- a/src/Microsoft.Graph/Generated/requests/SharedPCConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SharedPCConfigurationRequest.cs @@ -139,6 +139,34 @@ public SharedPCConfigurationRequest( return this.SendAsyncWithGraphResponse(sharedPCConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified SharedPCConfiguration using PUT. + /// + /// The SharedPCConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SharedPCConfiguration sharedPCConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(sharedPCConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SharedPCConfiguration using PUT and returns a object. + /// + /// The SharedPCConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SharedPCConfiguration sharedPCConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(sharedPCConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ShiftPreferencesRequest.cs b/src/Microsoft.Graph/Generated/requests/ShiftPreferencesRequest.cs index abd23b6d07c..17b233fd17b 100644 --- a/src/Microsoft.Graph/Generated/requests/ShiftPreferencesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ShiftPreferencesRequest.cs @@ -139,6 +139,34 @@ public ShiftPreferencesRequest( return this.SendAsyncWithGraphResponse(shiftPreferencesToUpdate, cancellationToken); } + /// + /// Updates the specified ShiftPreferences using PUT. + /// + /// The ShiftPreferences object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ShiftPreferences shiftPreferencesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(shiftPreferencesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ShiftPreferences using PUT and returns a object. + /// + /// The ShiftPreferences object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ShiftPreferences shiftPreferencesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(shiftPreferencesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ShiftRequest.cs b/src/Microsoft.Graph/Generated/requests/ShiftRequest.cs index 28c858a29a9..2954acd83fe 100644 --- a/src/Microsoft.Graph/Generated/requests/ShiftRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ShiftRequest.cs @@ -139,6 +139,34 @@ public ShiftRequest( return this.SendAsyncWithGraphResponse(shiftToUpdate, cancellationToken); } + /// + /// Updates the specified Shift using PUT. + /// + /// The Shift object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Shift shiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(shiftToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Shift using PUT and returns a object. + /// + /// The Shift object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Shift shiftToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(shiftToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SignInRequest.cs b/src/Microsoft.Graph/Generated/requests/SignInRequest.cs index 2c8ab46c962..7593bb06cfd 100644 --- a/src/Microsoft.Graph/Generated/requests/SignInRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SignInRequest.cs @@ -139,6 +139,34 @@ public SignInRequest( return this.SendAsyncWithGraphResponse(signInToUpdate, cancellationToken); } + /// + /// Updates the specified SignIn using PUT. + /// + /// The SignIn object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SignIn signInToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(signInToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SignIn using PUT and returns a object. + /// + /// The SignIn object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SignIn signInToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(signInToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SingleValueLegacyExtendedPropertyRequest.cs b/src/Microsoft.Graph/Generated/requests/SingleValueLegacyExtendedPropertyRequest.cs index ff6bf4a9ae6..18514bce60e 100644 --- a/src/Microsoft.Graph/Generated/requests/SingleValueLegacyExtendedPropertyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SingleValueLegacyExtendedPropertyRequest.cs @@ -139,6 +139,34 @@ public SingleValueLegacyExtendedPropertyRequest( return this.SendAsyncWithGraphResponse(singleValueLegacyExtendedPropertyToUpdate, cancellationToken); } + /// + /// Updates the specified SingleValueLegacyExtendedProperty using PUT. + /// + /// The SingleValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SingleValueLegacyExtendedProperty singleValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(singleValueLegacyExtendedPropertyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SingleValueLegacyExtendedProperty using PUT and returns a object. + /// + /// The SingleValueLegacyExtendedProperty object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SingleValueLegacyExtendedProperty singleValueLegacyExtendedPropertyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(singleValueLegacyExtendedPropertyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SiteRequest.cs b/src/Microsoft.Graph/Generated/requests/SiteRequest.cs index 11a1e08974f..a9107b28945 100644 --- a/src/Microsoft.Graph/Generated/requests/SiteRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SiteRequest.cs @@ -139,6 +139,34 @@ public SiteRequest( return this.SendAsyncWithGraphResponse(siteToUpdate, cancellationToken); } + /// + /// Updates the specified Site using PUT. + /// + /// The Site object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Site siteToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(siteToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Site using PUT and returns a object. + /// + /// The Site object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Site siteToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(siteToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SoftwareUpdateStatusSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/SoftwareUpdateStatusSummaryRequest.cs index 8d252a79471..0d29a4b61e1 100644 --- a/src/Microsoft.Graph/Generated/requests/SoftwareUpdateStatusSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SoftwareUpdateStatusSummaryRequest.cs @@ -139,6 +139,34 @@ public SoftwareUpdateStatusSummaryRequest( return this.SendAsyncWithGraphResponse(softwareUpdateStatusSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified SoftwareUpdateStatusSummary using PUT. + /// + /// The SoftwareUpdateStatusSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SoftwareUpdateStatusSummary softwareUpdateStatusSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(softwareUpdateStatusSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SoftwareUpdateStatusSummary using PUT and returns a object. + /// + /// The SoftwareUpdateStatusSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SoftwareUpdateStatusSummary softwareUpdateStatusSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(softwareUpdateStatusSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/StsPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/StsPolicyRequest.cs index 4427e16fb2c..1c57f1060a5 100644 --- a/src/Microsoft.Graph/Generated/requests/StsPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/StsPolicyRequest.cs @@ -139,6 +139,34 @@ public StsPolicyRequest( return this.SendAsyncWithGraphResponse(stsPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified StsPolicy using PUT. + /// + /// The StsPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(StsPolicy stsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(stsPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified StsPolicy using PUT and returns a object. + /// + /// The StsPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(StsPolicy stsPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(stsPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SubscribeToToneOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/SubscribeToToneOperationRequest.cs index 92789a220e0..d62ae68c3bc 100644 --- a/src/Microsoft.Graph/Generated/requests/SubscribeToToneOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SubscribeToToneOperationRequest.cs @@ -139,6 +139,34 @@ public SubscribeToToneOperationRequest( return this.SendAsyncWithGraphResponse(subscribeToToneOperationToUpdate, cancellationToken); } + /// + /// Updates the specified SubscribeToToneOperation using PUT. + /// + /// The SubscribeToToneOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SubscribeToToneOperation subscribeToToneOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(subscribeToToneOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SubscribeToToneOperation using PUT and returns a object. + /// + /// The SubscribeToToneOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SubscribeToToneOperation subscribeToToneOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(subscribeToToneOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SubscribedSkuRequest.cs b/src/Microsoft.Graph/Generated/requests/SubscribedSkuRequest.cs index f36f4a8707a..4ea627be3fe 100644 --- a/src/Microsoft.Graph/Generated/requests/SubscribedSkuRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SubscribedSkuRequest.cs @@ -139,6 +139,34 @@ public SubscribedSkuRequest( return this.SendAsyncWithGraphResponse(subscribedSkuToUpdate, cancellationToken); } + /// + /// Updates the specified SubscribedSku using PUT. + /// + /// The SubscribedSku object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SubscribedSku subscribedSkuToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(subscribedSkuToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SubscribedSku using PUT and returns a object. + /// + /// The SubscribedSku object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SubscribedSku subscribedSkuToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(subscribedSkuToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SubscriptionRequest.cs b/src/Microsoft.Graph/Generated/requests/SubscriptionRequest.cs index 5640845cf84..8b17de2a12a 100644 --- a/src/Microsoft.Graph/Generated/requests/SubscriptionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SubscriptionRequest.cs @@ -139,6 +139,34 @@ public SubscriptionRequest( return this.SendAsyncWithGraphResponse(subscriptionToUpdate, cancellationToken); } + /// + /// Updates the specified Subscription using PUT. + /// + /// The Subscription object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Subscription subscriptionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(subscriptionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Subscription using PUT and returns a object. + /// + /// The Subscription object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Subscription subscriptionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(subscriptionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/SwapShiftsChangeRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/SwapShiftsChangeRequestRequest.cs index 3d4b9c873a4..407750388cc 100644 --- a/src/Microsoft.Graph/Generated/requests/SwapShiftsChangeRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/SwapShiftsChangeRequestRequest.cs @@ -139,6 +139,34 @@ public SwapShiftsChangeRequestRequest( return this.SendAsyncWithGraphResponse(swapShiftsChangeRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified SwapShiftsChangeRequestObject using PUT. + /// + /// The SwapShiftsChangeRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(SwapShiftsChangeRequestObject swapShiftsChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(swapShiftsChangeRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified SwapShiftsChangeRequestObject using PUT and returns a object. + /// + /// The SwapShiftsChangeRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(SwapShiftsChangeRequestObject swapShiftsChangeRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(swapShiftsChangeRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppConfigurationRequest.cs index ede2389adff..534433a31ab 100644 --- a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppConfigurationRequest.cs @@ -139,6 +139,34 @@ public TargetedManagedAppConfigurationRequest( return this.SendAsyncWithGraphResponse(targetedManagedAppConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified TargetedManagedAppConfiguration using PUT. + /// + /// The TargetedManagedAppConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TargetedManagedAppConfiguration targetedManagedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(targetedManagedAppConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TargetedManagedAppConfiguration using PUT and returns a object. + /// + /// The TargetedManagedAppConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppConfiguration targetedManagedAppConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(targetedManagedAppConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppPolicyAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppPolicyAssignmentRequest.cs index e78bc7718cf..b36790c748b 100644 --- a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppPolicyAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppPolicyAssignmentRequest.cs @@ -139,6 +139,34 @@ public TargetedManagedAppPolicyAssignmentRequest( return this.SendAsyncWithGraphResponse(targetedManagedAppPolicyAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified TargetedManagedAppPolicyAssignment using PUT. + /// + /// The TargetedManagedAppPolicyAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TargetedManagedAppPolicyAssignment targetedManagedAppPolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(targetedManagedAppPolicyAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TargetedManagedAppPolicyAssignment using PUT and returns a object. + /// + /// The TargetedManagedAppPolicyAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppPolicyAssignment targetedManagedAppPolicyAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(targetedManagedAppPolicyAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppProtectionRequest.cs index d0c1ac8392b..1b7f9501541 100644 --- a/src/Microsoft.Graph/Generated/requests/TargetedManagedAppProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TargetedManagedAppProtectionRequest.cs @@ -139,6 +139,34 @@ public TargetedManagedAppProtectionRequest( return this.SendAsyncWithGraphResponse(targetedManagedAppProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified TargetedManagedAppProtection using PUT. + /// + /// The TargetedManagedAppProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TargetedManagedAppProtection targetedManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(targetedManagedAppProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TargetedManagedAppProtection using PUT and returns a object. + /// + /// The TargetedManagedAppProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TargetedManagedAppProtection targetedManagedAppProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(targetedManagedAppProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamRequest.cs index 56b4a6f53b4..b13c1e40478 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamRequest.cs @@ -139,6 +139,34 @@ public TeamRequest( return this.SendAsyncWithGraphResponse(teamToUpdate, cancellationToken); } + /// + /// Updates the specified Team using PUT. + /// + /// The Team object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Team teamToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Team using PUT and returns a object. + /// + /// The Team object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Team teamToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsAppDefinitionRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsAppDefinitionRequest.cs index e73b65a75f2..d44062f241f 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsAppDefinitionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsAppDefinitionRequest.cs @@ -139,6 +139,34 @@ public TeamsAppDefinitionRequest( return this.SendAsyncWithGraphResponse(teamsAppDefinitionToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsAppDefinition using PUT. + /// + /// The TeamsAppDefinition object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsAppDefinition teamsAppDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsAppDefinitionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsAppDefinition using PUT and returns a object. + /// + /// The TeamsAppDefinition object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsAppDefinition teamsAppDefinitionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsAppDefinitionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsAppInstallationRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsAppInstallationRequest.cs index 33ffa455589..da82738f762 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsAppInstallationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsAppInstallationRequest.cs @@ -139,6 +139,34 @@ public TeamsAppInstallationRequest( return this.SendAsyncWithGraphResponse(teamsAppInstallationToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsAppInstallation using PUT. + /// + /// The TeamsAppInstallation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsAppInstallation teamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsAppInstallationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsAppInstallation using PUT and returns a object. + /// + /// The TeamsAppInstallation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsAppInstallation teamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsAppInstallationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsAppRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsAppRequest.cs index c4057bfc648..cdb57528cdc 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsAppRequest.cs @@ -139,6 +139,34 @@ public TeamsAppRequest( return this.SendAsyncWithGraphResponse(teamsAppToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsApp using PUT. + /// + /// The TeamsApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsApp teamsAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsApp using PUT and returns a object. + /// + /// The TeamsApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsApp teamsAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsAsyncOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsAsyncOperationRequest.cs index bfcf451b0e9..e8d2ae8854a 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsAsyncOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsAsyncOperationRequest.cs @@ -139,6 +139,34 @@ public TeamsAsyncOperationRequest( return this.SendAsyncWithGraphResponse(teamsAsyncOperationToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsAsyncOperation using PUT. + /// + /// The TeamsAsyncOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsAsyncOperation teamsAsyncOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsAsyncOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsAsyncOperation using PUT and returns a object. + /// + /// The TeamsAsyncOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsAsyncOperation teamsAsyncOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsAsyncOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsTabRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsTabRequest.cs index 6337cf47a8a..85643cd3346 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsTabRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsTabRequest.cs @@ -139,6 +139,34 @@ public TeamsTabRequest( return this.SendAsyncWithGraphResponse(teamsTabToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsTab using PUT. + /// + /// The TeamsTab object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsTab teamsTabToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsTabToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsTab using PUT and returns a object. + /// + /// The TeamsTab object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsTab teamsTabToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsTabToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamsTemplateRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamsTemplateRequest.cs index 402db2cccd6..9c58272145c 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamsTemplateRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamsTemplateRequest.cs @@ -139,6 +139,34 @@ public TeamsTemplateRequest( return this.SendAsyncWithGraphResponse(teamsTemplateToUpdate, cancellationToken); } + /// + /// Updates the specified TeamsTemplate using PUT. + /// + /// The TeamsTemplate object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamsTemplate teamsTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamsTemplateToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamsTemplate using PUT and returns a object. + /// + /// The TeamsTemplate object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamsTemplate teamsTemplateToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamsTemplateToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamworkBotRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamworkBotRequest.cs index 1a6d2a1f3f7..3c9954da809 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamworkBotRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamworkBotRequest.cs @@ -139,6 +139,34 @@ public TeamworkBotRequest( return this.SendAsyncWithGraphResponse(teamworkBotToUpdate, cancellationToken); } + /// + /// Updates the specified TeamworkBot using PUT. + /// + /// The TeamworkBot object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TeamworkBot teamworkBotToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamworkBotToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TeamworkBot using PUT and returns a object. + /// + /// The TeamworkBot object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TeamworkBot teamworkBotToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamworkBotToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TeamworkRequest.cs b/src/Microsoft.Graph/Generated/requests/TeamworkRequest.cs index cfa98947b47..8f915a9a340 100644 --- a/src/Microsoft.Graph/Generated/requests/TeamworkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TeamworkRequest.cs @@ -139,6 +139,34 @@ public TeamworkRequest( return this.SendAsyncWithGraphResponse(teamworkToUpdate, cancellationToken); } + /// + /// Updates the specified Teamwork using PUT. + /// + /// The Teamwork object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Teamwork teamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(teamworkToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Teamwork using PUT and returns a object. + /// + /// The Teamwork object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Teamwork teamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(teamworkToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TelecomExpenseManagementPartnerRequest.cs b/src/Microsoft.Graph/Generated/requests/TelecomExpenseManagementPartnerRequest.cs index 76f2b5836f2..0a9dc64f184 100644 --- a/src/Microsoft.Graph/Generated/requests/TelecomExpenseManagementPartnerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TelecomExpenseManagementPartnerRequest.cs @@ -139,6 +139,34 @@ public TelecomExpenseManagementPartnerRequest( return this.SendAsyncWithGraphResponse(telecomExpenseManagementPartnerToUpdate, cancellationToken); } + /// + /// Updates the specified TelecomExpenseManagementPartner using PUT. + /// + /// The TelecomExpenseManagementPartner object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TelecomExpenseManagementPartner telecomExpenseManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(telecomExpenseManagementPartnerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TelecomExpenseManagementPartner using PUT and returns a object. + /// + /// The TelecomExpenseManagementPartner object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TelecomExpenseManagementPartner telecomExpenseManagementPartnerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(telecomExpenseManagementPartnerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAcceptanceStatusRequest.cs b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAcceptanceStatusRequest.cs index b4e9a90e72e..b1b06e08d0f 100644 --- a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAcceptanceStatusRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAcceptanceStatusRequest.cs @@ -139,6 +139,34 @@ public TermsAndConditionsAcceptanceStatusRequest( return this.SendAsyncWithGraphResponse(termsAndConditionsAcceptanceStatusToUpdate, cancellationToken); } + /// + /// Updates the specified TermsAndConditionsAcceptanceStatus using PUT. + /// + /// The TermsAndConditionsAcceptanceStatus object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TermsAndConditionsAcceptanceStatus termsAndConditionsAcceptanceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(termsAndConditionsAcceptanceStatusToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TermsAndConditionsAcceptanceStatus using PUT and returns a object. + /// + /// The TermsAndConditionsAcceptanceStatus object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditionsAcceptanceStatus termsAndConditionsAcceptanceStatusToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(termsAndConditionsAcceptanceStatusToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAssignmentRequest.cs b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAssignmentRequest.cs index 4056fb45393..56dfed9ae08 100644 --- a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAssignmentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsAssignmentRequest.cs @@ -139,6 +139,34 @@ public TermsAndConditionsAssignmentRequest( return this.SendAsyncWithGraphResponse(termsAndConditionsAssignmentToUpdate, cancellationToken); } + /// + /// Updates the specified TermsAndConditionsAssignment using PUT. + /// + /// The TermsAndConditionsAssignment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TermsAndConditionsAssignment termsAndConditionsAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(termsAndConditionsAssignmentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TermsAndConditionsAssignment using PUT and returns a object. + /// + /// The TermsAndConditionsAssignment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditionsAssignment termsAndConditionsAssignmentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(termsAndConditionsAssignmentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsRequest.cs b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsRequest.cs index ea237570d1d..d522f283b5f 100644 --- a/src/Microsoft.Graph/Generated/requests/TermsAndConditionsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TermsAndConditionsRequest.cs @@ -139,6 +139,34 @@ public TermsAndConditionsRequest( return this.SendAsyncWithGraphResponse(termsAndConditionsToUpdate, cancellationToken); } + /// + /// Updates the specified TermsAndConditions using PUT. + /// + /// The TermsAndConditions object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TermsAndConditions termsAndConditionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(termsAndConditionsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TermsAndConditions using PUT and returns a object. + /// + /// The TermsAndConditions object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TermsAndConditions termsAndConditionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(termsAndConditionsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TermsOfUseContainerRequest.cs b/src/Microsoft.Graph/Generated/requests/TermsOfUseContainerRequest.cs index 0760881a041..116fe4966e5 100644 --- a/src/Microsoft.Graph/Generated/requests/TermsOfUseContainerRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TermsOfUseContainerRequest.cs @@ -139,6 +139,34 @@ public TermsOfUseContainerRequest( return this.SendAsyncWithGraphResponse(termsOfUseContainerToUpdate, cancellationToken); } + /// + /// Updates the specified TermsOfUseContainer using PUT. + /// + /// The TermsOfUseContainer object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TermsOfUseContainer termsOfUseContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(termsOfUseContainerToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TermsOfUseContainer using PUT and returns a object. + /// + /// The TermsOfUseContainer object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TermsOfUseContainer termsOfUseContainerToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(termsOfUseContainerToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ThreatAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/ThreatAssessmentRequestRequest.cs index c79c04193a0..e53057047b2 100644 --- a/src/Microsoft.Graph/Generated/requests/ThreatAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ThreatAssessmentRequestRequest.cs @@ -139,6 +139,34 @@ public ThreatAssessmentRequestRequest( return this.SendAsyncWithGraphResponse(threatAssessmentRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified ThreatAssessmentRequestObject using PUT. + /// + /// The ThreatAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ThreatAssessmentRequestObject threatAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(threatAssessmentRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ThreatAssessmentRequestObject using PUT and returns a object. + /// + /// The ThreatAssessmentRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ThreatAssessmentRequestObject threatAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(threatAssessmentRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ThreatAssessmentResultRequest.cs b/src/Microsoft.Graph/Generated/requests/ThreatAssessmentResultRequest.cs index 10dfe868194..7551952b60a 100644 --- a/src/Microsoft.Graph/Generated/requests/ThreatAssessmentResultRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ThreatAssessmentResultRequest.cs @@ -139,6 +139,34 @@ public ThreatAssessmentResultRequest( return this.SendAsyncWithGraphResponse(threatAssessmentResultToUpdate, cancellationToken); } + /// + /// Updates the specified ThreatAssessmentResult using PUT. + /// + /// The ThreatAssessmentResult object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ThreatAssessmentResult threatAssessmentResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(threatAssessmentResultToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ThreatAssessmentResult using PUT and returns a object. + /// + /// The ThreatAssessmentResult object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ThreatAssessmentResult threatAssessmentResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(threatAssessmentResultToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ThumbnailRequest.cs b/src/Microsoft.Graph/Generated/requests/ThumbnailRequest.cs index eec609f603a..f2c3372d35e 100644 --- a/src/Microsoft.Graph/Generated/requests/ThumbnailRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ThumbnailRequest.cs @@ -139,6 +139,34 @@ public ThumbnailRequest( return this.SendAsyncWithGraphResponse(thumbnailToUpdate, cancellationToken); } + /// + /// Updates the specified Thumbnail using PUT. + /// + /// The Thumbnail object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Thumbnail thumbnailToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(thumbnailToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Thumbnail using PUT and returns a object. + /// + /// The Thumbnail object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Thumbnail thumbnailToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(thumbnailToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/ThumbnailSetRequest.cs b/src/Microsoft.Graph/Generated/requests/ThumbnailSetRequest.cs index e3021f3863c..875af78c261 100644 --- a/src/Microsoft.Graph/Generated/requests/ThumbnailSetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/ThumbnailSetRequest.cs @@ -139,6 +139,34 @@ public ThumbnailSetRequest( return this.SendAsyncWithGraphResponse(thumbnailSetToUpdate, cancellationToken); } + /// + /// Updates the specified ThumbnailSet using PUT. + /// + /// The ThumbnailSet object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(ThumbnailSet thumbnailSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(thumbnailSetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified ThumbnailSet using PUT and returns a object. + /// + /// The ThumbnailSet object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(ThumbnailSet thumbnailSetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(thumbnailSetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TimeOffReasonRequest.cs b/src/Microsoft.Graph/Generated/requests/TimeOffReasonRequest.cs index 2015cdc7115..e7fb1fc2c28 100644 --- a/src/Microsoft.Graph/Generated/requests/TimeOffReasonRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TimeOffReasonRequest.cs @@ -139,6 +139,34 @@ public TimeOffReasonRequest( return this.SendAsyncWithGraphResponse(timeOffReasonToUpdate, cancellationToken); } + /// + /// Updates the specified TimeOffReason using PUT. + /// + /// The TimeOffReason object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TimeOffReason timeOffReasonToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(timeOffReasonToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TimeOffReason using PUT and returns a object. + /// + /// The TimeOffReason object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TimeOffReason timeOffReasonToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(timeOffReasonToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TimeOffRequest.cs b/src/Microsoft.Graph/Generated/requests/TimeOffRequest.cs index 92384a35421..904943bf4e6 100644 --- a/src/Microsoft.Graph/Generated/requests/TimeOffRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TimeOffRequest.cs @@ -139,6 +139,34 @@ public TimeOffRequest( return this.SendAsyncWithGraphResponse(timeOffToUpdate, cancellationToken); } + /// + /// Updates the specified TimeOff using PUT. + /// + /// The TimeOff object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TimeOff timeOffToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(timeOffToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TimeOff using PUT and returns a object. + /// + /// The TimeOff object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TimeOff timeOffToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(timeOffToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TimeOffRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/TimeOffRequestRequest.cs index 62e4ddee3a6..59764e86ed2 100644 --- a/src/Microsoft.Graph/Generated/requests/TimeOffRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TimeOffRequestRequest.cs @@ -139,6 +139,34 @@ public TimeOffRequestRequest( return this.SendAsyncWithGraphResponse(timeOffRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified TimeOffRequestObject using PUT. + /// + /// The TimeOffRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TimeOffRequestObject timeOffRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(timeOffRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TimeOffRequestObject using PUT and returns a object. + /// + /// The TimeOffRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TimeOffRequestObject timeOffRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(timeOffRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TodoRequest.cs b/src/Microsoft.Graph/Generated/requests/TodoRequest.cs index 4bd80bcaab1..c03cb9f8d76 100644 --- a/src/Microsoft.Graph/Generated/requests/TodoRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TodoRequest.cs @@ -139,6 +139,34 @@ public TodoRequest( return this.SendAsyncWithGraphResponse(todoToUpdate, cancellationToken); } + /// + /// Updates the specified Todo using PUT. + /// + /// The Todo object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Todo todoToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(todoToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Todo using PUT and returns a object. + /// + /// The Todo object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Todo todoToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(todoToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TodoTaskListRequest.cs b/src/Microsoft.Graph/Generated/requests/TodoTaskListRequest.cs index cb1ffc3431e..1079cc31ccf 100644 --- a/src/Microsoft.Graph/Generated/requests/TodoTaskListRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TodoTaskListRequest.cs @@ -139,6 +139,34 @@ public TodoTaskListRequest( return this.SendAsyncWithGraphResponse(todoTaskListToUpdate, cancellationToken); } + /// + /// Updates the specified TodoTaskList using PUT. + /// + /// The TodoTaskList object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TodoTaskList todoTaskListToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(todoTaskListToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TodoTaskList using PUT and returns a object. + /// + /// The TodoTaskList object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TodoTaskList todoTaskListToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(todoTaskListToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TodoTaskRequest.cs b/src/Microsoft.Graph/Generated/requests/TodoTaskRequest.cs index b86a61d8ff1..37e36a6c4b7 100644 --- a/src/Microsoft.Graph/Generated/requests/TodoTaskRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TodoTaskRequest.cs @@ -139,6 +139,34 @@ public TodoTaskRequest( return this.SendAsyncWithGraphResponse(todoTaskToUpdate, cancellationToken); } + /// + /// Updates the specified TodoTask using PUT. + /// + /// The TodoTask object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TodoTask todoTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(todoTaskToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TodoTask using PUT and returns a object. + /// + /// The TodoTask object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TodoTask todoTaskToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(todoTaskToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TokenIssuancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/TokenIssuancePolicyRequest.cs index b2c49827f57..bea4a53bce5 100644 --- a/src/Microsoft.Graph/Generated/requests/TokenIssuancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TokenIssuancePolicyRequest.cs @@ -139,6 +139,34 @@ public TokenIssuancePolicyRequest( return this.SendAsyncWithGraphResponse(tokenIssuancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified TokenIssuancePolicy using PUT. + /// + /// The TokenIssuancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TokenIssuancePolicy tokenIssuancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(tokenIssuancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TokenIssuancePolicy using PUT and returns a object. + /// + /// The TokenIssuancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TokenIssuancePolicy tokenIssuancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(tokenIssuancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TokenLifetimePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/TokenLifetimePolicyRequest.cs index 47ccd0401f8..20bfd04df55 100644 --- a/src/Microsoft.Graph/Generated/requests/TokenLifetimePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TokenLifetimePolicyRequest.cs @@ -139,6 +139,34 @@ public TokenLifetimePolicyRequest( return this.SendAsyncWithGraphResponse(tokenLifetimePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified TokenLifetimePolicy using PUT. + /// + /// The TokenLifetimePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(TokenLifetimePolicy tokenLifetimePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(tokenLifetimePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified TokenLifetimePolicy using PUT and returns a object. + /// + /// The TokenLifetimePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(TokenLifetimePolicy tokenLifetimePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(tokenLifetimePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/TrendingRequest.cs b/src/Microsoft.Graph/Generated/requests/TrendingRequest.cs index 4a646a143fe..d6791059636 100644 --- a/src/Microsoft.Graph/Generated/requests/TrendingRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/TrendingRequest.cs @@ -139,6 +139,34 @@ public TrendingRequest( return this.SendAsyncWithGraphResponse(trendingToUpdate, cancellationToken); } + /// + /// Updates the specified Trending using PUT. + /// + /// The Trending object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Trending trendingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(trendingToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Trending using PUT and returns a object. + /// + /// The Trending object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Trending trendingToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(trendingToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UnmuteParticipantOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/UnmuteParticipantOperationRequest.cs index 1d800f3819a..396dd7710ee 100644 --- a/src/Microsoft.Graph/Generated/requests/UnmuteParticipantOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UnmuteParticipantOperationRequest.cs @@ -139,6 +139,34 @@ public UnmuteParticipantOperationRequest( return this.SendAsyncWithGraphResponse(unmuteParticipantOperationToUpdate, cancellationToken); } + /// + /// Updates the specified UnmuteParticipantOperation using PUT. + /// + /// The UnmuteParticipantOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(unmuteParticipantOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UnmuteParticipantOperation using PUT and returns a object. + /// + /// The UnmuteParticipantOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UnmuteParticipantOperation unmuteParticipantOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(unmuteParticipantOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UpdateRecordingStatusOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/UpdateRecordingStatusOperationRequest.cs index 57173713058..d7a2ef1448a 100644 --- a/src/Microsoft.Graph/Generated/requests/UpdateRecordingStatusOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UpdateRecordingStatusOperationRequest.cs @@ -139,6 +139,34 @@ public UpdateRecordingStatusOperationRequest( return this.SendAsyncWithGraphResponse(updateRecordingStatusOperationToUpdate, cancellationToken); } + /// + /// Updates the specified UpdateRecordingStatusOperation using PUT. + /// + /// The UpdateRecordingStatusOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UpdateRecordingStatusOperation updateRecordingStatusOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(updateRecordingStatusOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UpdateRecordingStatusOperation using PUT and returns a object. + /// + /// The UpdateRecordingStatusOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UpdateRecordingStatusOperation updateRecordingStatusOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(updateRecordingStatusOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UrlAssessmentRequestRequest.cs b/src/Microsoft.Graph/Generated/requests/UrlAssessmentRequestRequest.cs index 56918c270e1..b22df8006ff 100644 --- a/src/Microsoft.Graph/Generated/requests/UrlAssessmentRequestRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UrlAssessmentRequestRequest.cs @@ -139,6 +139,34 @@ public UrlAssessmentRequestRequest( return this.SendAsyncWithGraphResponse(urlAssessmentRequestObjectToUpdate, cancellationToken); } + /// + /// Updates the specified UrlAssessmentRequestObject using PUT. + /// + /// The UrlAssessmentRequestObject object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UrlAssessmentRequestObject urlAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(urlAssessmentRequestObjectToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UrlAssessmentRequestObject using PUT and returns a object. + /// + /// The UrlAssessmentRequestObject object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UrlAssessmentRequestObject urlAssessmentRequestObjectToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(urlAssessmentRequestObjectToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UsedInsightRequest.cs b/src/Microsoft.Graph/Generated/requests/UsedInsightRequest.cs index b050a1737d3..81e85533cbd 100644 --- a/src/Microsoft.Graph/Generated/requests/UsedInsightRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UsedInsightRequest.cs @@ -139,6 +139,34 @@ public UsedInsightRequest( return this.SendAsyncWithGraphResponse(usedInsightToUpdate, cancellationToken); } + /// + /// Updates the specified UsedInsight using PUT. + /// + /// The UsedInsight object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UsedInsight usedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(usedInsightToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UsedInsight using PUT and returns a object. + /// + /// The UsedInsight object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UsedInsight usedInsightToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(usedInsightToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserActivityRequest.cs b/src/Microsoft.Graph/Generated/requests/UserActivityRequest.cs index fadbf114907..9bcd1a9bfa3 100644 --- a/src/Microsoft.Graph/Generated/requests/UserActivityRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserActivityRequest.cs @@ -139,6 +139,34 @@ public UserActivityRequest( return this.SendAsyncWithGraphResponse(userActivityToUpdate, cancellationToken); } + /// + /// Updates the specified UserActivity using PUT. + /// + /// The UserActivity object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UserActivity userActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userActivityToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UserActivity using PUT and returns a object. + /// + /// The UserActivity object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UserActivity userActivityToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userActivityToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserInstallStateSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/UserInstallStateSummaryRequest.cs index e4aa7b97b23..8d17b8815a8 100644 --- a/src/Microsoft.Graph/Generated/requests/UserInstallStateSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserInstallStateSummaryRequest.cs @@ -139,6 +139,34 @@ public UserInstallStateSummaryRequest( return this.SendAsyncWithGraphResponse(userInstallStateSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified UserInstallStateSummary using PUT. + /// + /// The UserInstallStateSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UserInstallStateSummary userInstallStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userInstallStateSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UserInstallStateSummary using PUT and returns a object. + /// + /// The UserInstallStateSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UserInstallStateSummary userInstallStateSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userInstallStateSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserRequest.cs b/src/Microsoft.Graph/Generated/requests/UserRequest.cs index bf738b44224..8c927ebcac4 100644 --- a/src/Microsoft.Graph/Generated/requests/UserRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserRequest.cs @@ -139,6 +139,34 @@ public UserRequest( return this.SendAsyncWithGraphResponse(userToUpdate, cancellationToken); } + /// + /// Updates the specified User using PUT. + /// + /// The User object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(User userToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified User using PUT and returns a object. + /// + /// The User object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(User userToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserScopeTeamsAppInstallationRequest.cs b/src/Microsoft.Graph/Generated/requests/UserScopeTeamsAppInstallationRequest.cs index 654cd6c5dad..392faa09d68 100644 --- a/src/Microsoft.Graph/Generated/requests/UserScopeTeamsAppInstallationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserScopeTeamsAppInstallationRequest.cs @@ -139,6 +139,34 @@ public UserScopeTeamsAppInstallationRequest( return this.SendAsyncWithGraphResponse(userScopeTeamsAppInstallationToUpdate, cancellationToken); } + /// + /// Updates the specified UserScopeTeamsAppInstallation using PUT. + /// + /// The UserScopeTeamsAppInstallation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UserScopeTeamsAppInstallation userScopeTeamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userScopeTeamsAppInstallationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UserScopeTeamsAppInstallation using PUT and returns a object. + /// + /// The UserScopeTeamsAppInstallation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UserScopeTeamsAppInstallation userScopeTeamsAppInstallationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userScopeTeamsAppInstallationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserSettingsRequest.cs b/src/Microsoft.Graph/Generated/requests/UserSettingsRequest.cs index d80ae183b1b..fba4c1d81a3 100644 --- a/src/Microsoft.Graph/Generated/requests/UserSettingsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserSettingsRequest.cs @@ -139,6 +139,34 @@ public UserSettingsRequest( return this.SendAsyncWithGraphResponse(userSettingsToUpdate, cancellationToken); } + /// + /// Updates the specified UserSettings using PUT. + /// + /// The UserSettings object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UserSettings userSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userSettingsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UserSettings using PUT and returns a object. + /// + /// The UserSettings object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UserSettings userSettingsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userSettingsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/UserTeamworkRequest.cs b/src/Microsoft.Graph/Generated/requests/UserTeamworkRequest.cs index 07fddde312c..8d81605db51 100644 --- a/src/Microsoft.Graph/Generated/requests/UserTeamworkRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/UserTeamworkRequest.cs @@ -139,6 +139,34 @@ public UserTeamworkRequest( return this.SendAsyncWithGraphResponse(userTeamworkToUpdate, cancellationToken); } + /// + /// Updates the specified UserTeamwork using PUT. + /// + /// The UserTeamwork object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(UserTeamwork userTeamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(userTeamworkToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified UserTeamwork using PUT and returns a object. + /// + /// The UserTeamwork object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(UserTeamwork userTeamworkToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(userTeamworkToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/VppTokenRequest.cs b/src/Microsoft.Graph/Generated/requests/VppTokenRequest.cs index 6f33a7c2248..97a5a9aa406 100644 --- a/src/Microsoft.Graph/Generated/requests/VppTokenRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/VppTokenRequest.cs @@ -139,6 +139,34 @@ public VppTokenRequest( return this.SendAsyncWithGraphResponse(vppTokenToUpdate, cancellationToken); } + /// + /// Updates the specified VppToken using PUT. + /// + /// The VppToken object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(VppToken vppTokenToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(vppTokenToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified VppToken using PUT and returns a object. + /// + /// The VppToken object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(VppToken vppTokenToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(vppTokenToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WebAppRequest.cs b/src/Microsoft.Graph/Generated/requests/WebAppRequest.cs index 84ba4e04b96..e15b6ff450f 100644 --- a/src/Microsoft.Graph/Generated/requests/WebAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WebAppRequest.cs @@ -139,6 +139,34 @@ public WebAppRequest( return this.SendAsyncWithGraphResponse(webAppToUpdate, cancellationToken); } + /// + /// Updates the specified WebApp using PUT. + /// + /// The WebApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WebApp webAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(webAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WebApp using PUT and returns a object. + /// + /// The WebApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WebApp webAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(webAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Win32LobAppRequest.cs b/src/Microsoft.Graph/Generated/requests/Win32LobAppRequest.cs index 258312323e5..5abcf4a95a4 100644 --- a/src/Microsoft.Graph/Generated/requests/Win32LobAppRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Win32LobAppRequest.cs @@ -139,6 +139,34 @@ public Win32LobAppRequest( return this.SendAsyncWithGraphResponse(win32LobAppToUpdate, cancellationToken); } + /// + /// Updates the specified Win32LobApp using PUT. + /// + /// The Win32LobApp object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Win32LobApp win32LobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(win32LobAppToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Win32LobApp using PUT and returns a object. + /// + /// The Win32LobApp object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Win32LobApp win32LobAppToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(win32LobAppToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10CompliancePolicyRequest.cs index 2a3ec10c3aa..c13bdef025e 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10CompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public Windows10CompliancePolicyRequest( return this.SendAsyncWithGraphResponse(windows10CompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10CompliancePolicy using PUT. + /// + /// The Windows10CompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10CompliancePolicy windows10CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10CompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10CompliancePolicy using PUT and returns a object. + /// + /// The Windows10CompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10CompliancePolicy windows10CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10CompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10CustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10CustomConfigurationRequest.cs index 532c93c96aa..b7a4f81aed7 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10CustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10CustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10CustomConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10CustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10CustomConfiguration using PUT. + /// + /// The Windows10CustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10CustomConfiguration windows10CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10CustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10CustomConfiguration using PUT and returns a object. + /// + /// The Windows10CustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10CustomConfiguration windows10CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10CustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10EndpointProtectionConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10EndpointProtectionConfigurationRequest.cs index 7ac6b4afebb..c3f6416d38a 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10EndpointProtectionConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10EndpointProtectionConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10EndpointProtectionConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10EndpointProtectionConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10EndpointProtectionConfiguration using PUT. + /// + /// The Windows10EndpointProtectionConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10EndpointProtectionConfiguration windows10EndpointProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10EndpointProtectionConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10EndpointProtectionConfiguration using PUT and returns a object. + /// + /// The Windows10EndpointProtectionConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10EndpointProtectionConfiguration windows10EndpointProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10EndpointProtectionConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10EnterpriseModernAppManagementConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10EnterpriseModernAppManagementConfigurationRequest.cs index c84ea8e024f..6fa6972bc48 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10EnterpriseModernAppManagementConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10EnterpriseModernAppManagementConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10EnterpriseModernAppManagementConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10EnterpriseModernAppManagementConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10EnterpriseModernAppManagementConfiguration using PUT. + /// + /// The Windows10EnterpriseModernAppManagementConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10EnterpriseModernAppManagementConfiguration windows10EnterpriseModernAppManagementConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10EnterpriseModernAppManagementConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10EnterpriseModernAppManagementConfiguration using PUT and returns a object. + /// + /// The Windows10EnterpriseModernAppManagementConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10EnterpriseModernAppManagementConfiguration windows10EnterpriseModernAppManagementConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10EnterpriseModernAppManagementConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10GeneralConfigurationRequest.cs index 1ffc899b03c..df2a816f77c 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10GeneralConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10GeneralConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10GeneralConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10GeneralConfiguration using PUT. + /// + /// The Windows10GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10GeneralConfiguration windows10GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10GeneralConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10GeneralConfiguration using PUT and returns a object. + /// + /// The Windows10GeneralConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10GeneralConfiguration windows10GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10GeneralConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10MobileCompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10MobileCompliancePolicyRequest.cs index 7a66548b152..69fdb0b62ac 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10MobileCompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10MobileCompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public Windows10MobileCompliancePolicyRequest( return this.SendAsyncWithGraphResponse(windows10MobileCompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10MobileCompliancePolicy using PUT. + /// + /// The Windows10MobileCompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10MobileCompliancePolicy windows10MobileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10MobileCompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10MobileCompliancePolicy using PUT and returns a object. + /// + /// The Windows10MobileCompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10MobileCompliancePolicy windows10MobileCompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10MobileCompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10SecureAssessmentConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10SecureAssessmentConfigurationRequest.cs index ae1f2129f10..b8ae6b2b426 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10SecureAssessmentConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10SecureAssessmentConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10SecureAssessmentConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10SecureAssessmentConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10SecureAssessmentConfiguration using PUT. + /// + /// The Windows10SecureAssessmentConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10SecureAssessmentConfiguration windows10SecureAssessmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10SecureAssessmentConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10SecureAssessmentConfiguration using PUT and returns a object. + /// + /// The Windows10SecureAssessmentConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10SecureAssessmentConfiguration windows10SecureAssessmentConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10SecureAssessmentConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows10TeamGeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows10TeamGeneralConfigurationRequest.cs index dceae9c7765..9079e47dc87 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows10TeamGeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows10TeamGeneralConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows10TeamGeneralConfigurationRequest( return this.SendAsyncWithGraphResponse(windows10TeamGeneralConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows10TeamGeneralConfiguration using PUT. + /// + /// The Windows10TeamGeneralConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows10TeamGeneralConfiguration windows10TeamGeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows10TeamGeneralConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows10TeamGeneralConfiguration using PUT and returns a object. + /// + /// The Windows10TeamGeneralConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows10TeamGeneralConfiguration windows10TeamGeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows10TeamGeneralConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows81CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows81CompliancePolicyRequest.cs index ed52cba18a4..ad7b79ec897 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows81CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows81CompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public Windows81CompliancePolicyRequest( return this.SendAsyncWithGraphResponse(windows81CompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified Windows81CompliancePolicy using PUT. + /// + /// The Windows81CompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows81CompliancePolicy windows81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows81CompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows81CompliancePolicy using PUT and returns a object. + /// + /// The Windows81CompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows81CompliancePolicy windows81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows81CompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/Windows81GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/Windows81GeneralConfigurationRequest.cs index 04a62ee3698..13983c3e5d4 100644 --- a/src/Microsoft.Graph/Generated/requests/Windows81GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/Windows81GeneralConfigurationRequest.cs @@ -139,6 +139,34 @@ public Windows81GeneralConfigurationRequest( return this.SendAsyncWithGraphResponse(windows81GeneralConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified Windows81GeneralConfiguration using PUT. + /// + /// The Windows81GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windows81GeneralConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Windows81GeneralConfiguration using PUT and returns a object. + /// + /// The Windows81GeneralConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windows81GeneralConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs index a879e038483..11655828d9b 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsDefenderAdvancedThreatProtectionConfigurationRequest.cs @@ -139,6 +139,34 @@ public WindowsDefenderAdvancedThreatProtectionConfigurationRequest( return this.SendAsyncWithGraphResponse(windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsDefenderAdvancedThreatProtectionConfiguration using PUT. + /// + /// The WindowsDefenderAdvancedThreatProtectionConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsDefenderAdvancedThreatProtectionConfiguration windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsDefenderAdvancedThreatProtectionConfiguration using PUT and returns a object. + /// + /// The WindowsDefenderAdvancedThreatProtectionConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsDefenderAdvancedThreatProtectionConfiguration windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsDefenderAdvancedThreatProtectionConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsHelloForBusinessAuthenticationMethodRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsHelloForBusinessAuthenticationMethodRequest.cs index a1c705059e2..4f62a18cd65 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsHelloForBusinessAuthenticationMethodRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsHelloForBusinessAuthenticationMethodRequest.cs @@ -139,6 +139,34 @@ public WindowsHelloForBusinessAuthenticationMethodRequest( return this.SendAsyncWithGraphResponse(windowsHelloForBusinessAuthenticationMethodToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsHelloForBusinessAuthenticationMethod using PUT. + /// + /// The WindowsHelloForBusinessAuthenticationMethod object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsHelloForBusinessAuthenticationMethod windowsHelloForBusinessAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsHelloForBusinessAuthenticationMethodToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsHelloForBusinessAuthenticationMethod using PUT and returns a object. + /// + /// The WindowsHelloForBusinessAuthenticationMethod object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsHelloForBusinessAuthenticationMethod windowsHelloForBusinessAuthenticationMethodToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsHelloForBusinessAuthenticationMethodToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLearningSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLearningSummaryRequest.cs index 777f8fb84dc..b912cb2b18e 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLearningSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLearningSummaryRequest.cs @@ -139,6 +139,34 @@ public WindowsInformationProtectionAppLearningSummaryRequest( return this.SendAsyncWithGraphResponse(windowsInformationProtectionAppLearningSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsInformationProtectionAppLearningSummary using PUT. + /// + /// The WindowsInformationProtectionAppLearningSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionAppLearningSummary windowsInformationProtectionAppLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsInformationProtectionAppLearningSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsInformationProtectionAppLearningSummary using PUT and returns a object. + /// + /// The WindowsInformationProtectionAppLearningSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionAppLearningSummary windowsInformationProtectionAppLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsInformationProtectionAppLearningSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLockerFileRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLockerFileRequest.cs index c711bdc7e35..43be76c714d 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLockerFileRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionAppLockerFileRequest.cs @@ -139,6 +139,34 @@ public WindowsInformationProtectionAppLockerFileRequest( return this.SendAsyncWithGraphResponse(windowsInformationProtectionAppLockerFileToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsInformationProtectionAppLockerFile using PUT. + /// + /// The WindowsInformationProtectionAppLockerFile object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionAppLockerFile windowsInformationProtectionAppLockerFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsInformationProtectionAppLockerFileToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsInformationProtectionAppLockerFile using PUT and returns a object. + /// + /// The WindowsInformationProtectionAppLockerFile object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionAppLockerFile windowsInformationProtectionAppLockerFileToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsInformationProtectionAppLockerFileToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionNetworkLearningSummaryRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionNetworkLearningSummaryRequest.cs index a24bb369908..e6c2413858f 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionNetworkLearningSummaryRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionNetworkLearningSummaryRequest.cs @@ -139,6 +139,34 @@ public WindowsInformationProtectionNetworkLearningSummaryRequest( return this.SendAsyncWithGraphResponse(windowsInformationProtectionNetworkLearningSummaryToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsInformationProtectionNetworkLearningSummary using PUT. + /// + /// The WindowsInformationProtectionNetworkLearningSummary object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsInformationProtectionNetworkLearningSummaryToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsInformationProtectionNetworkLearningSummary using PUT and returns a object. + /// + /// The WindowsInformationProtectionNetworkLearningSummary object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionNetworkLearningSummary windowsInformationProtectionNetworkLearningSummaryToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsInformationProtectionNetworkLearningSummaryToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionPolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionPolicyRequest.cs index 5db506b72a4..4527385e7c2 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionPolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionPolicyRequest.cs @@ -139,6 +139,34 @@ public WindowsInformationProtectionPolicyRequest( return this.SendAsyncWithGraphResponse(windowsInformationProtectionPolicyToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsInformationProtectionPolicy using PUT. + /// + /// The WindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsInformationProtectionPolicy windowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsInformationProtectionPolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsInformationProtectionPolicy using PUT and returns a object. + /// + /// The WindowsInformationProtectionPolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtectionPolicy windowsInformationProtectionPolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsInformationProtectionPolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionRequest.cs index ed77bc00381..805c42f3f3e 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsInformationProtectionRequest.cs @@ -139,6 +139,34 @@ public WindowsInformationProtectionRequest( return this.SendAsyncWithGraphResponse(windowsInformationProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsInformationProtection using PUT. + /// + /// The WindowsInformationProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsInformationProtection windowsInformationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsInformationProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsInformationProtection using PUT and returns a object. + /// + /// The WindowsInformationProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsInformationProtection windowsInformationProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsInformationProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsMobileMSIRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsMobileMSIRequest.cs index 91f82a15c3e..e78d118b374 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsMobileMSIRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsMobileMSIRequest.cs @@ -139,6 +139,34 @@ public WindowsMobileMSIRequest( return this.SendAsyncWithGraphResponse(windowsMobileMSIToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsMobileMSI using PUT. + /// + /// The WindowsMobileMSI object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsMobileMSI windowsMobileMSIToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsMobileMSIToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsMobileMSI using PUT and returns a object. + /// + /// The WindowsMobileMSI object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsMobileMSI windowsMobileMSIToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsMobileMSIToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsPhone81CompliancePolicyRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsPhone81CompliancePolicyRequest.cs index 35f45737f03..38080dbe820 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsPhone81CompliancePolicyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsPhone81CompliancePolicyRequest.cs @@ -139,6 +139,34 @@ public WindowsPhone81CompliancePolicyRequest( return this.SendAsyncWithGraphResponse(windowsPhone81CompliancePolicyToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsPhone81CompliancePolicy using PUT. + /// + /// The WindowsPhone81CompliancePolicy object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsPhone81CompliancePolicy windowsPhone81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsPhone81CompliancePolicyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsPhone81CompliancePolicy using PUT and returns a object. + /// + /// The WindowsPhone81CompliancePolicy object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81CompliancePolicy windowsPhone81CompliancePolicyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsPhone81CompliancePolicyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsPhone81CustomConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsPhone81CustomConfigurationRequest.cs index fd38b4c01ed..a8c00e90fef 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsPhone81CustomConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsPhone81CustomConfigurationRequest.cs @@ -139,6 +139,34 @@ public WindowsPhone81CustomConfigurationRequest( return this.SendAsyncWithGraphResponse(windowsPhone81CustomConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsPhone81CustomConfiguration using PUT. + /// + /// The WindowsPhone81CustomConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsPhone81CustomConfiguration windowsPhone81CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsPhone81CustomConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsPhone81CustomConfiguration using PUT and returns a object. + /// + /// The WindowsPhone81CustomConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81CustomConfiguration windowsPhone81CustomConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsPhone81CustomConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsPhone81GeneralConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsPhone81GeneralConfigurationRequest.cs index 4ac0d20fa7b..d28dce0d6bd 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsPhone81GeneralConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsPhone81GeneralConfigurationRequest.cs @@ -139,6 +139,34 @@ public WindowsPhone81GeneralConfigurationRequest( return this.SendAsyncWithGraphResponse(windowsPhone81GeneralConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsPhone81GeneralConfiguration using PUT. + /// + /// The WindowsPhone81GeneralConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsPhone81GeneralConfiguration windowsPhone81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsPhone81GeneralConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsPhone81GeneralConfiguration using PUT and returns a object. + /// + /// The WindowsPhone81GeneralConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsPhone81GeneralConfiguration windowsPhone81GeneralConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsPhone81GeneralConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsUniversalAppXRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsUniversalAppXRequest.cs index 7f96f0242bb..1b97c7e0f8f 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsUniversalAppXRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsUniversalAppXRequest.cs @@ -139,6 +139,34 @@ public WindowsUniversalAppXRequest( return this.SendAsyncWithGraphResponse(windowsUniversalAppXToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsUniversalAppX using PUT. + /// + /// The WindowsUniversalAppX object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsUniversalAppX windowsUniversalAppXToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsUniversalAppXToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsUniversalAppX using PUT and returns a object. + /// + /// The WindowsUniversalAppX object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsUniversalAppX windowsUniversalAppXToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsUniversalAppXToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WindowsUpdateForBusinessConfigurationRequest.cs b/src/Microsoft.Graph/Generated/requests/WindowsUpdateForBusinessConfigurationRequest.cs index ead6b651250..3b72a9efb5d 100644 --- a/src/Microsoft.Graph/Generated/requests/WindowsUpdateForBusinessConfigurationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WindowsUpdateForBusinessConfigurationRequest.cs @@ -139,6 +139,34 @@ public WindowsUpdateForBusinessConfigurationRequest( return this.SendAsyncWithGraphResponse(windowsUpdateForBusinessConfigurationToUpdate, cancellationToken); } + /// + /// Updates the specified WindowsUpdateForBusinessConfiguration using PUT. + /// + /// The WindowsUpdateForBusinessConfiguration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WindowsUpdateForBusinessConfiguration windowsUpdateForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(windowsUpdateForBusinessConfigurationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WindowsUpdateForBusinessConfiguration using PUT and returns a object. + /// + /// The WindowsUpdateForBusinessConfiguration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WindowsUpdateForBusinessConfiguration windowsUpdateForBusinessConfigurationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(windowsUpdateForBusinessConfigurationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookApplicationRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookApplicationRequest.cs index 72f35e547eb..fd3999f6fa9 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookApplicationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookApplicationRequest.cs @@ -139,6 +139,34 @@ public WorkbookApplicationRequest( return this.SendAsyncWithGraphResponse(workbookApplicationToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookApplication using PUT. + /// + /// The WorkbookApplication object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookApplication workbookApplicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookApplicationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookApplication using PUT and returns a object. + /// + /// The WorkbookApplication object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookApplication workbookApplicationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookApplicationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAreaFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAreaFormatRequest.cs index dfca8759190..046d5b5fd94 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAreaFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAreaFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAreaFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartAreaFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAreaFormat using PUT. + /// + /// The WorkbookChartAreaFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAreaFormat workbookChartAreaFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAreaFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAreaFormat using PUT and returns a object. + /// + /// The WorkbookChartAreaFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAreaFormat workbookChartAreaFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAreaFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxesRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxesRequest.cs index f706643b0d3..8ba5798ce15 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxesRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAxesRequest( return this.SendAsyncWithGraphResponse(workbookChartAxesToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAxes using PUT. + /// + /// The WorkbookChartAxes object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAxes workbookChartAxesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAxesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAxes using PUT and returns a object. + /// + /// The WorkbookChartAxes object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxes workbookChartAxesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAxesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisFormatRequest.cs index 629a96af9ee..6b6ea246e25 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAxisFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartAxisFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAxisFormat using PUT. + /// + /// The WorkbookChartAxisFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAxisFormat workbookChartAxisFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAxisFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAxisFormat using PUT and returns a object. + /// + /// The WorkbookChartAxisFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisFormat workbookChartAxisFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAxisFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisRequest.cs index 5d054f4a673..01849dca713 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAxisRequest( return this.SendAsyncWithGraphResponse(workbookChartAxisToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAxis using PUT. + /// + /// The WorkbookChartAxis object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAxis workbookChartAxisToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAxisToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAxis using PUT and returns a object. + /// + /// The WorkbookChartAxis object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxis workbookChartAxisToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAxisToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleFormatRequest.cs index f8a4e663fb8..1e61ccff15d 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAxisTitleFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartAxisTitleFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAxisTitleFormat using PUT. + /// + /// The WorkbookChartAxisTitleFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAxisTitleFormat workbookChartAxisTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAxisTitleFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAxisTitleFormat using PUT and returns a object. + /// + /// The WorkbookChartAxisTitleFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisTitleFormat workbookChartAxisTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAxisTitleFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleRequest.cs index 480ae4dffa0..eb4deaaf6b0 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartAxisTitleRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartAxisTitleRequest( return this.SendAsyncWithGraphResponse(workbookChartAxisTitleToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartAxisTitle using PUT. + /// + /// The WorkbookChartAxisTitle object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartAxisTitle workbookChartAxisTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartAxisTitleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartAxisTitle using PUT and returns a object. + /// + /// The WorkbookChartAxisTitle object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartAxisTitle workbookChartAxisTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartAxisTitleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelFormatRequest.cs index be91d89608f..d64e47000a1 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartDataLabelFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartDataLabelFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartDataLabelFormat using PUT. + /// + /// The WorkbookChartDataLabelFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartDataLabelFormat workbookChartDataLabelFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartDataLabelFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartDataLabelFormat using PUT and returns a object. + /// + /// The WorkbookChartDataLabelFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartDataLabelFormat workbookChartDataLabelFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartDataLabelFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelsRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelsRequest.cs index 6753e8997b9..df1c197f2a0 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartDataLabelsRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartDataLabelsRequest( return this.SendAsyncWithGraphResponse(workbookChartDataLabelsToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartDataLabels using PUT. + /// + /// The WorkbookChartDataLabels object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartDataLabels workbookChartDataLabelsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartDataLabelsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartDataLabels using PUT and returns a object. + /// + /// The WorkbookChartDataLabels object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartDataLabels workbookChartDataLabelsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartDataLabelsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartFillRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartFillRequest.cs index 256bfa00401..e80ddf8ef34 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartFillRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartFillRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartFillRequest( return this.SendAsyncWithGraphResponse(workbookChartFillToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartFill using PUT. + /// + /// The WorkbookChartFill object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartFill workbookChartFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartFillToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartFill using PUT and returns a object. + /// + /// The WorkbookChartFill object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartFill workbookChartFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartFillToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartFontRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartFontRequest.cs index 233cb3f20b2..d72c2beeae4 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartFontRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartFontRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartFontRequest( return this.SendAsyncWithGraphResponse(workbookChartFontToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartFont using PUT. + /// + /// The WorkbookChartFont object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartFont workbookChartFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartFontToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartFont using PUT and returns a object. + /// + /// The WorkbookChartFont object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartFont workbookChartFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartFontToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesFormatRequest.cs index 425dbb43e80..b023404f481 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartGridlinesFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartGridlinesFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartGridlinesFormat using PUT. + /// + /// The WorkbookChartGridlinesFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartGridlinesFormat workbookChartGridlinesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartGridlinesFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartGridlinesFormat using PUT and returns a object. + /// + /// The WorkbookChartGridlinesFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartGridlinesFormat workbookChartGridlinesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartGridlinesFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesRequest.cs index e0717299a6f..e7d0f505869 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartGridlinesRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartGridlinesRequest( return this.SendAsyncWithGraphResponse(workbookChartGridlinesToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartGridlines using PUT. + /// + /// The WorkbookChartGridlines object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartGridlines workbookChartGridlinesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartGridlinesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartGridlines using PUT and returns a object. + /// + /// The WorkbookChartGridlines object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartGridlines workbookChartGridlinesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartGridlinesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendFormatRequest.cs index 0e0ca6123cf..d26c71039c8 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartLegendFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartLegendFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartLegendFormat using PUT. + /// + /// The WorkbookChartLegendFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartLegendFormat workbookChartLegendFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartLegendFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartLegendFormat using PUT and returns a object. + /// + /// The WorkbookChartLegendFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLegendFormat workbookChartLegendFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartLegendFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendRequest.cs index ffafacec2a5..4a6e1c785a9 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartLegendRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartLegendRequest( return this.SendAsyncWithGraphResponse(workbookChartLegendToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartLegend using PUT. + /// + /// The WorkbookChartLegend object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartLegend workbookChartLegendToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartLegendToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartLegend using PUT and returns a object. + /// + /// The WorkbookChartLegend object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLegend workbookChartLegendToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartLegendToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartLineFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartLineFormatRequest.cs index df99b565345..9379a65c87a 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartLineFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartLineFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartLineFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartLineFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartLineFormat using PUT. + /// + /// The WorkbookChartLineFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartLineFormat workbookChartLineFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartLineFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartLineFormat using PUT and returns a object. + /// + /// The WorkbookChartLineFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartLineFormat workbookChartLineFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartLineFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartPointFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartPointFormatRequest.cs index fd79b606af3..03deea9fe24 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartPointFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartPointFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartPointFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartPointFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartPointFormat using PUT. + /// + /// The WorkbookChartPointFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartPointFormat workbookChartPointFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartPointFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartPointFormat using PUT and returns a object. + /// + /// The WorkbookChartPointFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartPointFormat workbookChartPointFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartPointFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartPointRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartPointRequest.cs index a5d83e8dea0..736b03635b7 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartPointRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartPointRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartPointRequest( return this.SendAsyncWithGraphResponse(workbookChartPointToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartPoint using PUT. + /// + /// The WorkbookChartPoint object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartPoint workbookChartPointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartPointToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartPoint using PUT and returns a object. + /// + /// The WorkbookChartPoint object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartPoint workbookChartPointToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartPointToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartRequest.cs index 7ab9464f15d..e831c7c3ba3 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartRequest( return this.SendAsyncWithGraphResponse(workbookChartToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChart using PUT. + /// + /// The WorkbookChart object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChart workbookChartToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChart using PUT and returns a object. + /// + /// The WorkbookChart object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChart workbookChartToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesFormatRequest.cs index f9562d13be2..218c0610cdd 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartSeriesFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartSeriesFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartSeriesFormat using PUT. + /// + /// The WorkbookChartSeriesFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartSeriesFormat workbookChartSeriesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartSeriesFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartSeriesFormat using PUT and returns a object. + /// + /// The WorkbookChartSeriesFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartSeriesFormat workbookChartSeriesFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartSeriesFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesRequest.cs index 648e2f1d4cf..b9c5060e35f 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartSeriesRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartSeriesRequest( return this.SendAsyncWithGraphResponse(workbookChartSeriesToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartSeries using PUT. + /// + /// The WorkbookChartSeries object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartSeries workbookChartSeriesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartSeriesToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartSeries using PUT and returns a object. + /// + /// The WorkbookChartSeries object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartSeries workbookChartSeriesToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartSeriesToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleFormatRequest.cs index fae9c38373e..887081c4d26 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartTitleFormatRequest( return this.SendAsyncWithGraphResponse(workbookChartTitleFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartTitleFormat using PUT. + /// + /// The WorkbookChartTitleFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartTitleFormat workbookChartTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartTitleFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartTitleFormat using PUT and returns a object. + /// + /// The WorkbookChartTitleFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartTitleFormat workbookChartTitleFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartTitleFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleRequest.cs index a48bc20273f..8267a0d6690 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookChartTitleRequest.cs @@ -139,6 +139,34 @@ public WorkbookChartTitleRequest( return this.SendAsyncWithGraphResponse(workbookChartTitleToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookChartTitle using PUT. + /// + /// The WorkbookChartTitle object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookChartTitle workbookChartTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookChartTitleToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookChartTitle using PUT and returns a object. + /// + /// The WorkbookChartTitle object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookChartTitle workbookChartTitleToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookChartTitleToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookCommentReplyRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookCommentReplyRequest.cs index 977fbd64fa2..8e34f0d8dfe 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookCommentReplyRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookCommentReplyRequest.cs @@ -139,6 +139,34 @@ public WorkbookCommentReplyRequest( return this.SendAsyncWithGraphResponse(workbookCommentReplyToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookCommentReply using PUT. + /// + /// The WorkbookCommentReply object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookCommentReply workbookCommentReplyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookCommentReplyToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookCommentReply using PUT and returns a object. + /// + /// The WorkbookCommentReply object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookCommentReply workbookCommentReplyToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookCommentReplyToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookCommentRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookCommentRequest.cs index 64239c3138f..c78682fb8b1 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookCommentRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookCommentRequest.cs @@ -139,6 +139,34 @@ public WorkbookCommentRequest( return this.SendAsyncWithGraphResponse(workbookCommentToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookComment using PUT. + /// + /// The WorkbookComment object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookComment workbookCommentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookCommentToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookComment using PUT and returns a object. + /// + /// The WorkbookComment object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookComment workbookCommentToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookCommentToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookFilterRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookFilterRequest.cs index a3b99b62352..083eeb3bf21 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookFilterRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookFilterRequest.cs @@ -139,6 +139,34 @@ public WorkbookFilterRequest( return this.SendAsyncWithGraphResponse(workbookFilterToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookFilter using PUT. + /// + /// The WorkbookFilter object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookFilter workbookFilterToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookFilterToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookFilter using PUT and returns a object. + /// + /// The WorkbookFilter object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookFilter workbookFilterToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookFilterToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookFormatProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookFormatProtectionRequest.cs index d8d12305234..482ba7fd82c 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookFormatProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookFormatProtectionRequest.cs @@ -139,6 +139,34 @@ public WorkbookFormatProtectionRequest( return this.SendAsyncWithGraphResponse(workbookFormatProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookFormatProtection using PUT. + /// + /// The WorkbookFormatProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookFormatProtection workbookFormatProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookFormatProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookFormatProtection using PUT and returns a object. + /// + /// The WorkbookFormatProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookFormatProtection workbookFormatProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookFormatProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookFunctionResultRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookFunctionResultRequest.cs index 85b35fd874b..af52922871c 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookFunctionResultRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookFunctionResultRequest.cs @@ -139,6 +139,34 @@ public WorkbookFunctionResultRequest( return this.SendAsyncWithGraphResponse(workbookFunctionResultToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookFunctionResult using PUT. + /// + /// The WorkbookFunctionResult object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookFunctionResult workbookFunctionResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookFunctionResultToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookFunctionResult using PUT and returns a object. + /// + /// The WorkbookFunctionResult object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookFunctionResult workbookFunctionResultToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookFunctionResultToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookFunctionsRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookFunctionsRequest.cs index f693b2d984c..5c951e6fd7e 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookFunctionsRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookFunctionsRequest.cs @@ -139,6 +139,34 @@ public WorkbookFunctionsRequest( return this.SendAsyncWithGraphResponse(workbookFunctionsToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookFunctions using PUT. + /// + /// The WorkbookFunctions object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookFunctions workbookFunctionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookFunctionsToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookFunctions using PUT and returns a object. + /// + /// The WorkbookFunctions object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookFunctions workbookFunctionsToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookFunctionsToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookNamedItemRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookNamedItemRequest.cs index 5342208199d..099802f027c 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookNamedItemRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookNamedItemRequest.cs @@ -139,6 +139,34 @@ public WorkbookNamedItemRequest( return this.SendAsyncWithGraphResponse(workbookNamedItemToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookNamedItem using PUT. + /// + /// The WorkbookNamedItem object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookNamedItem workbookNamedItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookNamedItemToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookNamedItem using PUT and returns a object. + /// + /// The WorkbookNamedItem object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookNamedItem workbookNamedItemToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookNamedItemToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookOperationRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookOperationRequest.cs index a4654fa2579..2487a7146ed 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookOperationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookOperationRequest.cs @@ -139,6 +139,34 @@ public WorkbookOperationRequest( return this.SendAsyncWithGraphResponse(workbookOperationToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookOperation using PUT. + /// + /// The WorkbookOperation object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookOperation workbookOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookOperationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookOperation using PUT and returns a object. + /// + /// The WorkbookOperation object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookOperation workbookOperationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookOperationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookPivotTableRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookPivotTableRequest.cs index 7c6f779a2cc..75d1ac82255 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookPivotTableRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookPivotTableRequest.cs @@ -139,6 +139,34 @@ public WorkbookPivotTableRequest( return this.SendAsyncWithGraphResponse(workbookPivotTableToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookPivotTable using PUT. + /// + /// The WorkbookPivotTable object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookPivotTable workbookPivotTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookPivotTableToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookPivotTable using PUT and returns a object. + /// + /// The WorkbookPivotTable object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookPivotTable workbookPivotTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookPivotTableToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeBorderRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeBorderRequest.cs index 9d9d85b5a31..777b7b149a4 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeBorderRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeBorderRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeBorderRequest( return this.SendAsyncWithGraphResponse(workbookRangeBorderToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeBorder using PUT. + /// + /// The WorkbookRangeBorder object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeBorder workbookRangeBorderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeBorderToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeBorder using PUT and returns a object. + /// + /// The WorkbookRangeBorder object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeBorder workbookRangeBorderToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeBorderToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFillRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFillRequest.cs index c4f5e226587..d3005307cf5 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFillRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFillRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeFillRequest( return this.SendAsyncWithGraphResponse(workbookRangeFillToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeFill using PUT. + /// + /// The WorkbookRangeFill object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeFill workbookRangeFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeFillToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeFill using PUT and returns a object. + /// + /// The WorkbookRangeFill object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFill workbookRangeFillToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeFillToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFontRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFontRequest.cs index 37e2dc78e7e..28b82ade022 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFontRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFontRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeFontRequest( return this.SendAsyncWithGraphResponse(workbookRangeFontToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeFont using PUT. + /// + /// The WorkbookRangeFont object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeFont workbookRangeFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeFontToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeFont using PUT and returns a object. + /// + /// The WorkbookRangeFont object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFont workbookRangeFontToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeFontToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFormatRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFormatRequest.cs index 2a94573b674..fa663391113 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeFormatRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeFormatRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeFormatRequest( return this.SendAsyncWithGraphResponse(workbookRangeFormatToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeFormat using PUT. + /// + /// The WorkbookRangeFormat object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeFormat workbookRangeFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeFormatToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeFormat using PUT and returns a object. + /// + /// The WorkbookRangeFormat object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeFormat workbookRangeFormatToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeFormatToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeRequest.cs index fe4d452bc1b..826a819c210 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeRequest( return this.SendAsyncWithGraphResponse(workbookRangeToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRange using PUT. + /// + /// The WorkbookRange object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRange workbookRangeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRange using PUT and returns a object. + /// + /// The WorkbookRange object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRange workbookRangeToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeSortRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeSortRequest.cs index 7e46bb7b6be..30d359145e1 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeSortRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeSortRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeSortRequest( return this.SendAsyncWithGraphResponse(workbookRangeSortToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeSort using PUT. + /// + /// The WorkbookRangeSort object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeSort workbookRangeSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeSortToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeSort using PUT and returns a object. + /// + /// The WorkbookRangeSort object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeSort workbookRangeSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeSortToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRangeViewRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRangeViewRequest.cs index 09dad0c593b..7ddff3278a1 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRangeViewRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRangeViewRequest.cs @@ -139,6 +139,34 @@ public WorkbookRangeViewRequest( return this.SendAsyncWithGraphResponse(workbookRangeViewToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookRangeView using PUT. + /// + /// The WorkbookRangeView object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookRangeView workbookRangeViewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookRangeViewToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookRangeView using PUT and returns a object. + /// + /// The WorkbookRangeView object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookRangeView workbookRangeViewToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookRangeViewToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookRequest.cs index 5f49ae70c00..3be62a21b01 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookRequest.cs @@ -139,6 +139,34 @@ public WorkbookRequest( return this.SendAsyncWithGraphResponse(workbookToUpdate, cancellationToken); } + /// + /// Updates the specified Workbook using PUT. + /// + /// The Workbook object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(Workbook workbookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified Workbook using PUT and returns a object. + /// + /// The Workbook object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(Workbook workbookToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookTableColumnRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookTableColumnRequest.cs index 25041ea1475..52030f28a78 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookTableColumnRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookTableColumnRequest.cs @@ -139,6 +139,34 @@ public WorkbookTableColumnRequest( return this.SendAsyncWithGraphResponse(workbookTableColumnToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookTableColumn using PUT. + /// + /// The WorkbookTableColumn object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookTableColumn workbookTableColumnToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookTableColumnToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookTableColumn using PUT and returns a object. + /// + /// The WorkbookTableColumn object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableColumn workbookTableColumnToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookTableColumnToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookTableRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookTableRequest.cs index 6bb2f18a4a9..aee8b48cfcd 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookTableRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookTableRequest.cs @@ -139,6 +139,34 @@ public WorkbookTableRequest( return this.SendAsyncWithGraphResponse(workbookTableToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookTable using PUT. + /// + /// The WorkbookTable object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookTable workbookTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookTableToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookTable using PUT and returns a object. + /// + /// The WorkbookTable object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookTable workbookTableToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookTableToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookTableRowRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookTableRowRequest.cs index 6ce021fd177..cd084a67f8f 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookTableRowRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookTableRowRequest.cs @@ -139,6 +139,34 @@ public WorkbookTableRowRequest( return this.SendAsyncWithGraphResponse(workbookTableRowToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookTableRow using PUT. + /// + /// The WorkbookTableRow object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookTableRow workbookTableRowToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookTableRowToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookTableRow using PUT and returns a object. + /// + /// The WorkbookTableRow object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableRow workbookTableRowToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookTableRowToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookTableSortRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookTableSortRequest.cs index 329c17d1d3b..667bc80caa2 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookTableSortRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookTableSortRequest.cs @@ -139,6 +139,34 @@ public WorkbookTableSortRequest( return this.SendAsyncWithGraphResponse(workbookTableSortToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookTableSort using PUT. + /// + /// The WorkbookTableSort object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookTableSort workbookTableSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookTableSortToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookTableSort using PUT and returns a object. + /// + /// The WorkbookTableSort object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookTableSort workbookTableSortToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookTableSortToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetProtectionRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetProtectionRequest.cs index 779e47f8ff5..839b002f288 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetProtectionRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetProtectionRequest.cs @@ -139,6 +139,34 @@ public WorkbookWorksheetProtectionRequest( return this.SendAsyncWithGraphResponse(workbookWorksheetProtectionToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookWorksheetProtection using PUT. + /// + /// The WorkbookWorksheetProtection object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookWorksheetProtection workbookWorksheetProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookWorksheetProtectionToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookWorksheetProtection using PUT and returns a object. + /// + /// The WorkbookWorksheetProtection object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookWorksheetProtection workbookWorksheetProtectionToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookWorksheetProtectionToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetRequest.cs index a4ea842baf3..73bd87b375f 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkbookWorksheetRequest.cs @@ -139,6 +139,34 @@ public WorkbookWorksheetRequest( return this.SendAsyncWithGraphResponse(workbookWorksheetToUpdate, cancellationToken); } + /// + /// Updates the specified WorkbookWorksheet using PUT. + /// + /// The WorkbookWorksheet object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkbookWorksheet workbookWorksheetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workbookWorksheetToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkbookWorksheet using PUT and returns a object. + /// + /// The WorkbookWorksheet object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkbookWorksheet workbookWorksheetToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workbookWorksheetToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Generated/requests/WorkforceIntegrationRequest.cs b/src/Microsoft.Graph/Generated/requests/WorkforceIntegrationRequest.cs index 66703346aaa..55c0225328c 100644 --- a/src/Microsoft.Graph/Generated/requests/WorkforceIntegrationRequest.cs +++ b/src/Microsoft.Graph/Generated/requests/WorkforceIntegrationRequest.cs @@ -139,6 +139,34 @@ public WorkforceIntegrationRequest( return this.SendAsyncWithGraphResponse(workforceIntegrationToUpdate, cancellationToken); } + /// + /// Updates the specified WorkforceIntegration using PUT. + /// + /// The WorkforceIntegration object to update. + /// The for the request. + /// The task to await. + public async System.Threading.Tasks.Task PutAsync(WorkforceIntegration workforceIntegrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + var updatedEntity = await this.SendAsync(workforceIntegrationToUpdate, cancellationToken).ConfigureAwait(false); + this.InitializeCollectionProperties(updatedEntity); + return updatedEntity; + } + + /// + /// Updates the specified WorkforceIntegration using PUT and returns a object. + /// + /// The WorkforceIntegration object to update. + /// The for the request. + /// The task to await of . + public System.Threading.Tasks.Task> PutResponseAsync(WorkforceIntegration workforceIntegrationToUpdate, CancellationToken cancellationToken = default(CancellationToken)) + { + this.ContentType = CoreConstants.MimeTypeNames.Application.Json; + this.Method = HttpMethods.PUT; + return this.SendAsyncWithGraphResponse(workforceIntegrationToUpdate, cancellationToken); + } + /// /// Adds the specified expand value to the request. /// diff --git a/src/Microsoft.Graph/Requests/Extensions/TeamRequestExtensions.cs b/src/Microsoft.Graph/Requests/Extensions/TeamRequestExtensions.cs deleted file mode 100644 index 459561e4a29..00000000000 --- a/src/Microsoft.Graph/Requests/Extensions/TeamRequestExtensions.cs +++ /dev/null @@ -1,50 +0,0 @@ -using System.Threading; - -namespace Microsoft.Graph -{ - public partial interface ITeamRequest - { - /// - /// Creates the specified Team using PUT. - /// - /// The Team to create. - /// The created Team. - System.Threading.Tasks.Task PutAsync(Team teamToCreate); - - /// - /// Creates the specified Team using PUT. - /// - /// The Team to create. - /// The for the request. - /// The created Team. - System.Threading.Tasks.Task PutAsync(Team teamToCreate, CancellationToken cancellationToken); - } - - public partial class TeamRequest - { - /// - /// Creates the specified Team using PUT. - /// - /// The Team to create. - /// The created Team. - public System.Threading.Tasks.Task PutAsync(Team teamToCreate) - { - return this.PutAsync(teamToCreate, CancellationToken.None); - } - - /// - /// Creates the specified Team using PUT. - /// - /// The Team to create. - /// The for the request. - /// The created Team. - public async System.Threading.Tasks.Task PutAsync(Team teamToCreate, CancellationToken cancellationToken) - { - this.ContentType = "application/json"; - this.Method = HttpMethods.PUT; - var newEntity = await this.SendAsync(teamToCreate, cancellationToken).ConfigureAwait(false); - this.InitializeCollectionProperties(newEntity); - return newEntity; - } - } -} \ No newline at end of file diff --git a/typeSummary.txt b/typeSummary.txt index 41a5a9b8d58..a634510b84e 100644 --- a/typeSummary.txt +++ b/typeSummary.txt @@ -2011,6 +2011,14 @@ class Microsoft.Graph.AadUserConversationMemberRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AadUserConversationMember]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AadUserConversationMember]] + param aadUserConversationMemberToUpdate : Microsoft.Graph.AadUserConversationMember + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AadUserConversationMember]]]] + param aadUserConversationMemberToUpdate : Microsoft.Graph.AadUserConversationMember + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAadUserConversationMemberRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AadUserConversationMember],[System.Object]]]] @@ -2063,6 +2071,14 @@ class Microsoft.Graph.ActivityBasedTimeoutPolicyRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]] + param activityBasedTimeoutPolicyToUpdate : Microsoft.Graph.ActivityBasedTimeoutPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]]]] + param activityBasedTimeoutPolicyToUpdate : Microsoft.Graph.ActivityBasedTimeoutPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IActivityBasedTimeoutPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ActivityBasedTimeoutPolicy],[System.Object]]]] @@ -2120,6 +2136,14 @@ class Microsoft.Graph.ActivityHistoryItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityHistoryItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ActivityHistoryItem]] + param activityHistoryItemToUpdate : Microsoft.Graph.ActivityHistoryItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityHistoryItem]]]] + param activityHistoryItemToUpdate : Microsoft.Graph.ActivityHistoryItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IActivityHistoryItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ActivityHistoryItem],[System.Object]]]] @@ -2355,6 +2379,14 @@ class Microsoft.Graph.AdministrativeUnitRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AdministrativeUnit]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AdministrativeUnit]] + param administrativeUnitToUpdate : Microsoft.Graph.AdministrativeUnit + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AdministrativeUnit]]]] + param administrativeUnitToUpdate : Microsoft.Graph.AdministrativeUnit + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAdministrativeUnitRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AdministrativeUnit],[System.Object]]]] @@ -2552,6 +2584,14 @@ class Microsoft.Graph.AgreementAcceptanceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementAcceptance]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementAcceptance]] + param agreementAcceptanceToUpdate : Microsoft.Graph.AgreementAcceptance + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementAcceptance]]]] + param agreementAcceptanceToUpdate : Microsoft.Graph.AgreementAcceptance + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementAcceptanceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementAcceptance],[System.Object]]]] @@ -2710,6 +2750,14 @@ class Microsoft.Graph.AgreementFileLocalizationRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileLocalization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileLocalization]] + param agreementFileLocalizationToUpdate : Microsoft.Graph.AgreementFileLocalization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileLocalization]]]] + param agreementFileLocalizationToUpdate : Microsoft.Graph.AgreementFileLocalization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileLocalizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileLocalization],[System.Object]]]] @@ -2875,6 +2923,14 @@ class Microsoft.Graph.AgreementFilePropertiesRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileProperties]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileProperties]] + param agreementFilePropertiesToUpdate : Microsoft.Graph.AgreementFileProperties + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileProperties]]]] + param agreementFilePropertiesToUpdate : Microsoft.Graph.AgreementFileProperties + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFilePropertiesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileProperties],[System.Object]]]] @@ -2922,6 +2978,14 @@ class Microsoft.Graph.AgreementFileRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFile]] + param agreementFileToUpdate : Microsoft.Graph.AgreementFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFile]]]] + param agreementFileToUpdate : Microsoft.Graph.AgreementFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFile],[System.Object]]]] @@ -3026,6 +3090,14 @@ class Microsoft.Graph.AgreementFileVersionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileVersion]] + param agreementFileVersionToUpdate : Microsoft.Graph.AgreementFileVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileVersion]]]] + param agreementFileVersionToUpdate : Microsoft.Graph.AgreementFileVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileVersion],[System.Object]]]] @@ -3073,6 +3145,14 @@ class Microsoft.Graph.AgreementRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Agreement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Agreement]] + param agreementToUpdate : Microsoft.Graph.Agreement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Agreement]]]] + param agreementToUpdate : Microsoft.Graph.Agreement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Agreement],[System.Object]]]] @@ -3179,6 +3259,14 @@ class Microsoft.Graph.AlertRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Alert]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Alert]] + param alertToUpdate : Microsoft.Graph.Alert + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Alert]]]] + param alertToUpdate : Microsoft.Graph.Alert + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAlertRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Alert],[System.Object]]]] @@ -3262,6 +3350,14 @@ class Microsoft.Graph.AndroidCompliancePolicyRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidCompliancePolicy]] + param androidCompliancePolicyToUpdate : Microsoft.Graph.AndroidCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCompliancePolicy]]]] + param androidCompliancePolicyToUpdate : Microsoft.Graph.AndroidCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidCompliancePolicy],[System.Object]]]] @@ -3311,6 +3407,14 @@ class Microsoft.Graph.AndroidCustomConfigurationRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidCustomConfiguration]] + param androidCustomConfigurationToUpdate : Microsoft.Graph.AndroidCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCustomConfiguration]]]] + param androidCustomConfigurationToUpdate : Microsoft.Graph.AndroidCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidCustomConfiguration],[System.Object]]]] @@ -3407,6 +3511,14 @@ class Microsoft.Graph.AndroidGeneralDeviceConfigurationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]] + param androidGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]]]] + param androidGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidGeneralDeviceConfiguration],[System.Object]]]] @@ -3459,6 +3571,14 @@ class Microsoft.Graph.AndroidLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidLobApp]] + param androidLobAppToUpdate : Microsoft.Graph.AndroidLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidLobApp]]]] + param androidLobAppToUpdate : Microsoft.Graph.AndroidLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidLobApp],[System.Object]]]] @@ -3572,6 +3692,14 @@ class Microsoft.Graph.AndroidManagedAppProtectionRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidManagedAppProtection]] + param androidManagedAppProtectionToUpdate : Microsoft.Graph.AndroidManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppProtection]]]] + param androidManagedAppProtectionToUpdate : Microsoft.Graph.AndroidManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidManagedAppProtection],[System.Object]]]] @@ -3622,6 +3750,14 @@ class Microsoft.Graph.AndroidManagedAppRegistrationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidManagedAppRegistration]] + param androidManagedAppRegistrationToUpdate : Microsoft.Graph.AndroidManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppRegistration]]]] + param androidManagedAppRegistrationToUpdate : Microsoft.Graph.AndroidManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidManagedAppRegistration],[System.Object]]]] @@ -3686,6 +3822,14 @@ class Microsoft.Graph.AndroidStoreAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidStoreApp]] + param androidStoreAppToUpdate : Microsoft.Graph.AndroidStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidStoreApp]]]] + param androidStoreAppToUpdate : Microsoft.Graph.AndroidStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidStoreApp],[System.Object]]]] @@ -3755,6 +3899,14 @@ class Microsoft.Graph.AndroidWorkProfileCompliancePolicyRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]] + param androidWorkProfileCompliancePolicyToUpdate : Microsoft.Graph.AndroidWorkProfileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]]]] + param androidWorkProfileCompliancePolicyToUpdate : Microsoft.Graph.AndroidWorkProfileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy],[System.Object]]]] @@ -3804,6 +3956,14 @@ class Microsoft.Graph.AndroidWorkProfileCustomConfigurationRequest : Microsoft.G method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]] + param androidWorkProfileCustomConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]]]] + param androidWorkProfileCustomConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration],[System.Object]]]] @@ -3886,6 +4046,14 @@ class Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfigurationRequest : Micr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]] + param androidWorkProfileGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]]]] + param androidWorkProfileGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration],[System.Object]]]] @@ -3943,6 +4111,14 @@ class Microsoft.Graph.AppCatalogsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppCatalogs]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppCatalogs]] + param appCatalogsToUpdate : Microsoft.Graph.AppCatalogs + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppCatalogs]]]] + param appCatalogsToUpdate : Microsoft.Graph.AppCatalogs + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppCatalogsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppCatalogs],[System.Object]]]] @@ -4062,6 +4238,14 @@ class Microsoft.Graph.AppleDeviceFeaturesConfigurationBaseRequest : Microsoft.Gr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]] + param appleDeviceFeaturesConfigurationBaseToUpdate : Microsoft.Graph.AppleDeviceFeaturesConfigurationBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]]]] + param appleDeviceFeaturesConfigurationBaseToUpdate : Microsoft.Graph.AppleDeviceFeaturesConfigurationBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppleDeviceFeaturesConfigurationBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase],[System.Object]]]] @@ -4129,6 +4313,14 @@ class Microsoft.Graph.ApplePushNotificationCertificateRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplePushNotificationCertificate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ApplePushNotificationCertificate]] + param applePushNotificationCertificateToUpdate : Microsoft.Graph.ApplePushNotificationCertificate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplePushNotificationCertificate]]]] + param applePushNotificationCertificateToUpdate : Microsoft.Graph.ApplePushNotificationCertificate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplePushNotificationCertificateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ApplePushNotificationCertificate],[System.Object]]]] @@ -4545,6 +4737,14 @@ class Microsoft.Graph.ApplicationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Application]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Application]] + param applicationToUpdate : Microsoft.Graph.Application + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Application]]]] + param applicationToUpdate : Microsoft.Graph.Application + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplicationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Application],[System.Object]]]] @@ -4645,6 +4845,14 @@ class Microsoft.Graph.ApplicationTemplateRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplicationTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ApplicationTemplate]] + param applicationTemplateToUpdate : Microsoft.Graph.ApplicationTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplicationTemplate]]]] + param applicationTemplateToUpdate : Microsoft.Graph.ApplicationTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplicationTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ApplicationTemplate],[System.Object]]]] @@ -4902,6 +5110,14 @@ class Microsoft.Graph.AppRoleAssignmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppRoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppRoleAssignment]] + param appRoleAssignmentToUpdate : Microsoft.Graph.AppRoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppRoleAssignment]]]] + param appRoleAssignmentToUpdate : Microsoft.Graph.AppRoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppRoleAssignment],[System.Object]]]] @@ -5009,6 +5225,14 @@ class Microsoft.Graph.AttachmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Attachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Attachment]] + param attachmentToUpdate : Microsoft.Graph.Attachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Attachment]]]] + param attachmentToUpdate : Microsoft.Graph.Attachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Attachment],[System.Object]]]] @@ -5156,6 +5380,14 @@ class Microsoft.Graph.AuditLogRootRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuditLogRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuditLogRoot]] + param auditLogRootToUpdate : Microsoft.Graph.AuditLogRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuditLogRoot]]]] + param auditLogRootToUpdate : Microsoft.Graph.AuditLogRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuditLogRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuditLogRoot],[System.Object]]]] @@ -5379,6 +5611,14 @@ class Microsoft.Graph.AuthenticationMethodConfigurationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodConfiguration]] + param authenticationMethodConfigurationToUpdate : Microsoft.Graph.AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodConfiguration]]]] + param authenticationMethodConfigurationToUpdate : Microsoft.Graph.AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodConfiguration],[System.Object]]]] @@ -5426,6 +5666,14 @@ class Microsoft.Graph.AuthenticationMethodRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethod]] + param authenticationMethodToUpdate : Microsoft.Graph.AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethod]]]] + param authenticationMethodToUpdate : Microsoft.Graph.AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethod],[System.Object]]]] @@ -5590,6 +5838,14 @@ class Microsoft.Graph.AuthenticationMethodsPolicyRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodsPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodsPolicy]] + param authenticationMethodsPolicyToUpdate : Microsoft.Graph.AuthenticationMethodsPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodsPolicy]]]] + param authenticationMethodsPolicyToUpdate : Microsoft.Graph.AuthenticationMethodsPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodsPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodsPolicy],[System.Object]]]] @@ -5641,6 +5897,14 @@ class Microsoft.Graph.AuthenticationMethodTargetRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodTarget]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodTarget]] + param authenticationMethodTargetToUpdate : Microsoft.Graph.AuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodTarget]]]] + param authenticationMethodTargetToUpdate : Microsoft.Graph.AuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodTargetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodTarget],[System.Object]]]] @@ -5743,6 +6007,14 @@ class Microsoft.Graph.AuthenticationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Authentication]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Authentication]] + param authenticationToUpdate : Microsoft.Graph.Authentication + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Authentication]]]] + param authenticationToUpdate : Microsoft.Graph.Authentication + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Authentication],[System.Object]]]] @@ -5856,6 +6128,14 @@ class Microsoft.Graph.AuthorizationPolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthorizationPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthorizationPolicy]] + param authorizationPolicyToUpdate : Microsoft.Graph.AuthorizationPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthorizationPolicy]]]] + param authorizationPolicyToUpdate : Microsoft.Graph.AuthorizationPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthorizationPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthorizationPolicy],[System.Object]]]] @@ -5936,6 +6216,14 @@ class Microsoft.Graph.BaseItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.BaseItem]] + param baseItemToUpdate : Microsoft.Graph.BaseItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItem]]]] + param baseItemToUpdate : Microsoft.Graph.BaseItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IBaseItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.BaseItem],[System.Object]]]] @@ -5989,6 +6277,14 @@ class Microsoft.Graph.BaseItemVersionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.BaseItemVersion]] + param baseItemVersionToUpdate : Microsoft.Graph.BaseItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItemVersion]]]] + param baseItemVersionToUpdate : Microsoft.Graph.BaseItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IBaseItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.BaseItemVersion],[System.Object]]]] @@ -6375,6 +6671,14 @@ class Microsoft.Graph.CalendarGroupRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarGroup]] + param calendarGroupToUpdate : Microsoft.Graph.CalendarGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarGroup]]]] + param calendarGroupToUpdate : Microsoft.Graph.CalendarGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarGroup],[System.Object]]]] @@ -6484,6 +6788,14 @@ class Microsoft.Graph.CalendarPermissionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarPermission]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarPermission]] + param calendarPermissionToUpdate : Microsoft.Graph.CalendarPermission + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarPermission]]]] + param calendarPermissionToUpdate : Microsoft.Graph.CalendarPermission + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarPermissionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarPermission],[System.Object]]]] @@ -6531,6 +6843,14 @@ class Microsoft.Graph.CalendarRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Calendar]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Calendar]] + param calendarToUpdate : Microsoft.Graph.Calendar + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Calendar]]]] + param calendarToUpdate : Microsoft.Graph.Calendar + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Calendar],[System.Object]]]] @@ -6617,6 +6937,14 @@ class Microsoft.Graph.CalendarSharingMessageRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarSharingMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarSharingMessage]] + param calendarSharingMessageToUpdate : Microsoft.Graph.CalendarSharingMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarSharingMessage]]]] + param calendarSharingMessageToUpdate : Microsoft.Graph.CalendarSharingMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarSharingMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarSharingMessage],[System.Object]]]] @@ -6995,6 +7323,14 @@ class Microsoft.Graph.CallRecords.CallRecordRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.CallRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.CallRecord]] + param callRecordToUpdate : Microsoft.Graph.CallRecords.CallRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.CallRecord]]]] + param callRecordToUpdate : Microsoft.Graph.CallRecords.CallRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ICallRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.CallRecord],[System.Object]]]] @@ -7159,6 +7495,14 @@ class Microsoft.Graph.CallRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Call]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Call]] + param callToUpdate : Microsoft.Graph.Call + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Call]]]] + param callToUpdate : Microsoft.Graph.Call + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICallRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Call],[System.Object]]]] @@ -7341,6 +7685,14 @@ class Microsoft.Graph.CancelMediaProcessingOperationRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CancelMediaProcessingOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CancelMediaProcessingOperation]] + param cancelMediaProcessingOperationToUpdate : Microsoft.Graph.CancelMediaProcessingOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CancelMediaProcessingOperation]]]] + param cancelMediaProcessingOperationToUpdate : Microsoft.Graph.CancelMediaProcessingOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICancelMediaProcessingOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CancelMediaProcessingOperation],[System.Object]]]] @@ -7420,6 +7772,14 @@ class Microsoft.Graph.CertificateBasedAuthConfigurationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]] + param certificateBasedAuthConfigurationToUpdate : Microsoft.Graph.CertificateBasedAuthConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]]]] + param certificateBasedAuthConfigurationToUpdate : Microsoft.Graph.CertificateBasedAuthConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICertificateBasedAuthConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CertificateBasedAuthConfiguration],[System.Object]]]] @@ -7550,6 +7910,14 @@ class Microsoft.Graph.ChangeTrackedEntityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChangeTrackedEntity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChangeTrackedEntity]] + param changeTrackedEntityToUpdate : Microsoft.Graph.ChangeTrackedEntity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChangeTrackedEntity]]]] + param changeTrackedEntityToUpdate : Microsoft.Graph.ChangeTrackedEntity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChangeTrackedEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChangeTrackedEntity],[System.Object]]]] @@ -7718,6 +8086,14 @@ class Microsoft.Graph.ChannelRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Channel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Channel]] + param channelToUpdate : Microsoft.Graph.Channel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Channel]]]] + param channelToUpdate : Microsoft.Graph.Channel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChannelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Channel],[System.Object]]]] @@ -8037,6 +8413,14 @@ class Microsoft.Graph.ChatMessageHostedContentRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessageHostedContent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChatMessageHostedContent]] + param chatMessageHostedContentToUpdate : Microsoft.Graph.ChatMessageHostedContent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessageHostedContent]]]] + param chatMessageHostedContentToUpdate : Microsoft.Graph.ChatMessageHostedContent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatMessageHostedContentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChatMessageHostedContent],[System.Object]]]] @@ -8221,6 +8605,14 @@ class Microsoft.Graph.ChatMessageRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChatMessage]] + param chatMessageToUpdate : Microsoft.Graph.ChatMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessage]]]] + param chatMessageToUpdate : Microsoft.Graph.ChatMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChatMessage],[System.Object]]]] @@ -8291,6 +8683,14 @@ class Microsoft.Graph.ChatRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Chat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Chat]] + param chatToUpdate : Microsoft.Graph.Chat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Chat]]]] + param chatToUpdate : Microsoft.Graph.Chat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Chat],[System.Object]]]] @@ -8494,6 +8894,14 @@ class Microsoft.Graph.ClaimsMappingPolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ClaimsMappingPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ClaimsMappingPolicy]] + param claimsMappingPolicyToUpdate : Microsoft.Graph.ClaimsMappingPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ClaimsMappingPolicy]]]] + param claimsMappingPolicyToUpdate : Microsoft.Graph.ClaimsMappingPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IClaimsMappingPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ClaimsMappingPolicy],[System.Object]]]] @@ -8874,6 +9282,14 @@ class Microsoft.Graph.CloudCommunicationsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CloudCommunications]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CloudCommunications]] + param cloudCommunicationsToUpdate : Microsoft.Graph.CloudCommunications + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CloudCommunications]]]] + param cloudCommunicationsToUpdate : Microsoft.Graph.CloudCommunications + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICloudCommunicationsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CloudCommunications],[System.Object]]]] @@ -8949,6 +9365,14 @@ class Microsoft.Graph.ColumnDefinitionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ColumnDefinition]] + param columnDefinitionToUpdate : Microsoft.Graph.ColumnDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnDefinition]]]] + param columnDefinitionToUpdate : Microsoft.Graph.ColumnDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IColumnDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ColumnDefinition],[System.Object]]]] @@ -8998,6 +9422,14 @@ class Microsoft.Graph.ColumnLinkRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnLink]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ColumnLink]] + param columnLinkToUpdate : Microsoft.Graph.ColumnLink + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnLink]]]] + param columnLinkToUpdate : Microsoft.Graph.ColumnLink + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IColumnLinkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ColumnLink],[System.Object]]]] @@ -9058,6 +9490,14 @@ class Microsoft.Graph.CommsOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CommsOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CommsOperation]] + param commsOperationToUpdate : Microsoft.Graph.CommsOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CommsOperation]]]] + param commsOperationToUpdate : Microsoft.Graph.CommsOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICommsOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CommsOperation],[System.Object]]]] @@ -9132,6 +9572,14 @@ class Microsoft.Graph.ComplianceManagementPartnerRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ComplianceManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ComplianceManagementPartner]] + param complianceManagementPartnerToUpdate : Microsoft.Graph.ComplianceManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ComplianceManagementPartner]]]] + param complianceManagementPartnerToUpdate : Microsoft.Graph.ComplianceManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IComplianceManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ComplianceManagementPartner],[System.Object]]]] @@ -9221,6 +9669,14 @@ class Microsoft.Graph.ConditionalAccessPolicyRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConditionalAccessPolicy]] + param conditionalAccessPolicyToUpdate : Microsoft.Graph.ConditionalAccessPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessPolicy]]]] + param conditionalAccessPolicyToUpdate : Microsoft.Graph.ConditionalAccessPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConditionalAccessPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConditionalAccessPolicy],[System.Object]]]] @@ -9381,6 +9837,14 @@ class Microsoft.Graph.ConditionalAccessRootRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConditionalAccessRoot]] + param conditionalAccessRootToUpdate : Microsoft.Graph.ConditionalAccessRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessRoot]]]] + param conditionalAccessRootToUpdate : Microsoft.Graph.ConditionalAccessRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConditionalAccessRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConditionalAccessRoot],[System.Object]]]] @@ -9799,6 +10263,14 @@ class Microsoft.Graph.ContactFolderRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContactFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ContactFolder]] + param contactFolderToUpdate : Microsoft.Graph.ContactFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContactFolder]]]] + param contactFolderToUpdate : Microsoft.Graph.ContactFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContactFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ContactFolder],[System.Object]]]] @@ -9960,6 +10432,14 @@ class Microsoft.Graph.ContactRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contact]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Contact]] + param contactToUpdate : Microsoft.Graph.Contact + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contact]]]] + param contactToUpdate : Microsoft.Graph.Contact + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContactRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Contact],[System.Object]]]] @@ -10142,6 +10622,14 @@ class Microsoft.Graph.ContentTypeRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContentType]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ContentType]] + param contentTypeToUpdate : Microsoft.Graph.ContentType + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContentType]]]] + param contentTypeToUpdate : Microsoft.Graph.ContentType + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContentTypeRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ContentType],[System.Object]]]] @@ -10195,6 +10683,14 @@ class Microsoft.Graph.ContractRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contract]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Contract]] + param contractToUpdate : Microsoft.Graph.Contract + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contract]]]] + param contractToUpdate : Microsoft.Graph.Contract + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContractRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Contract],[System.Object]]]] @@ -10260,6 +10756,14 @@ class Microsoft.Graph.ConversationMemberRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationMember]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConversationMember]] + param conversationMemberToUpdate : Microsoft.Graph.ConversationMember + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationMember]]]] + param conversationMemberToUpdate : Microsoft.Graph.ConversationMember + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationMemberRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConversationMember],[System.Object]]]] @@ -10307,6 +10811,14 @@ class Microsoft.Graph.ConversationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Conversation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Conversation]] + param conversationToUpdate : Microsoft.Graph.Conversation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Conversation]]]] + param conversationToUpdate : Microsoft.Graph.Conversation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Conversation],[System.Object]]]] @@ -10437,6 +10949,14 @@ class Microsoft.Graph.ConversationThreadRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationThread]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConversationThread]] + param conversationThreadToUpdate : Microsoft.Graph.ConversationThread + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationThread]]]] + param conversationThreadToUpdate : Microsoft.Graph.ConversationThread + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationThreadRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConversationThread],[System.Object]]]] @@ -10570,6 +11090,14 @@ class Microsoft.Graph.CountryNamedLocationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CountryNamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CountryNamedLocation]] + param countryNamedLocationToUpdate : Microsoft.Graph.CountryNamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CountryNamedLocation]]]] + param countryNamedLocationToUpdate : Microsoft.Graph.CountryNamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICountryNamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CountryNamedLocation],[System.Object]]]] @@ -10632,6 +11160,14 @@ class Microsoft.Graph.DataPolicyOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DataPolicyOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DataPolicyOperation]] + param dataPolicyOperationToUpdate : Microsoft.Graph.DataPolicyOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DataPolicyOperation]]]] + param dataPolicyOperationToUpdate : Microsoft.Graph.DataPolicyOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDataPolicyOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DataPolicyOperation],[System.Object]]]] @@ -10811,6 +11347,14 @@ class Microsoft.Graph.DefaultManagedAppProtectionRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DefaultManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DefaultManagedAppProtection]] + param defaultManagedAppProtectionToUpdate : Microsoft.Graph.DefaultManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DefaultManagedAppProtection]]]] + param defaultManagedAppProtectionToUpdate : Microsoft.Graph.DefaultManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDefaultManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DefaultManagedAppProtection],[System.Object]]]] @@ -10878,6 +11422,14 @@ class Microsoft.Graph.DelegatedPermissionClassificationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DelegatedPermissionClassification]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DelegatedPermissionClassification]] + param delegatedPermissionClassificationToUpdate : Microsoft.Graph.DelegatedPermissionClassification + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DelegatedPermissionClassification]]]] + param delegatedPermissionClassificationToUpdate : Microsoft.Graph.DelegatedPermissionClassification + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDelegatedPermissionClassificationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DelegatedPermissionClassification],[System.Object]]]] @@ -11000,6 +11552,14 @@ class Microsoft.Graph.DetectedAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DetectedApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DetectedApp]] + param detectedAppToUpdate : Microsoft.Graph.DetectedApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DetectedApp]]]] + param detectedAppToUpdate : Microsoft.Graph.DetectedApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDetectedAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DetectedApp],[System.Object]]]] @@ -11085,6 +11645,14 @@ class Microsoft.Graph.DeviceAndAppManagementRoleAssignmentRequest : Microsoft.Gr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]] + param deviceAndAppManagementRoleAssignmentToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]]]] + param deviceAndAppManagementRoleAssignmentToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAndAppManagementRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment],[System.Object]]]] @@ -11133,6 +11701,14 @@ class Microsoft.Graph.DeviceAndAppManagementRoleDefinitionRequest : Microsoft.Gr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]] + param deviceAndAppManagementRoleDefinitionToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]]]] + param deviceAndAppManagementRoleDefinitionToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAndAppManagementRoleDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition],[System.Object]]]] @@ -11806,6 +12382,14 @@ class Microsoft.Graph.DeviceAppManagementRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAppManagement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAppManagement]] + param deviceAppManagementToUpdate : Microsoft.Graph.DeviceAppManagement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAppManagement]]]] + param deviceAppManagementToUpdate : Microsoft.Graph.DeviceAppManagement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAppManagementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAppManagement],[System.Object]]]] @@ -12051,6 +12635,14 @@ class Microsoft.Graph.DeviceCategoryRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCategory]] + param deviceCategoryToUpdate : Microsoft.Graph.DeviceCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCategory]]]] + param deviceCategoryToUpdate : Microsoft.Graph.DeviceCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCategory],[System.Object]]]] @@ -12103,6 +12695,14 @@ class Microsoft.Graph.DeviceComplianceActionItemRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceActionItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceActionItem]] + param deviceComplianceActionItemToUpdate : Microsoft.Graph.DeviceComplianceActionItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceActionItem]]]] + param deviceComplianceActionItemToUpdate : Microsoft.Graph.DeviceComplianceActionItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceActionItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceActionItem],[System.Object]]]] @@ -12158,6 +12758,14 @@ class Microsoft.Graph.DeviceComplianceDeviceOverviewRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]] + param deviceComplianceDeviceOverviewToUpdate : Microsoft.Graph.DeviceComplianceDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]]]] + param deviceComplianceDeviceOverviewToUpdate : Microsoft.Graph.DeviceComplianceDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceDeviceOverview],[System.Object]]]] @@ -12213,6 +12821,14 @@ class Microsoft.Graph.DeviceComplianceDeviceStatusRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]] + param deviceComplianceDeviceStatusToUpdate : Microsoft.Graph.DeviceComplianceDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]]]] + param deviceComplianceDeviceStatusToUpdate : Microsoft.Graph.DeviceComplianceDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceDeviceStatus],[System.Object]]]] @@ -12284,6 +12900,14 @@ class Microsoft.Graph.DeviceCompliancePolicyAssignmentRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]] + param deviceCompliancePolicyAssignmentToUpdate : Microsoft.Graph.DeviceCompliancePolicyAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]]]] + param deviceCompliancePolicyAssignmentToUpdate : Microsoft.Graph.DeviceCompliancePolicyAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyAssignment],[System.Object]]]] @@ -12480,6 +13104,14 @@ class Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummaryRequest : Microsof method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]] + param deviceCompliancePolicyDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]]]] + param deviceCompliancePolicyDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyDeviceStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary],[System.Object]]]] @@ -12582,6 +13214,14 @@ class Microsoft.Graph.DeviceCompliancePolicyRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicy]] + param deviceCompliancePolicyToUpdate : Microsoft.Graph.DeviceCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicy]]]] + param deviceCompliancePolicyToUpdate : Microsoft.Graph.DeviceCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicy],[System.Object]]]] @@ -12796,6 +13436,14 @@ class Microsoft.Graph.DeviceCompliancePolicySettingStateSummaryRequest : Microso method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]] + param deviceCompliancePolicySettingStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicySettingStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]]]] + param deviceCompliancePolicySettingStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicySettingStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicySettingStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary],[System.Object]]]] @@ -12851,6 +13499,14 @@ class Microsoft.Graph.DeviceCompliancePolicyStateRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyState]] + param deviceCompliancePolicyStateToUpdate : Microsoft.Graph.DeviceCompliancePolicyState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyState]]]] + param deviceCompliancePolicyStateToUpdate : Microsoft.Graph.DeviceCompliancePolicyState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyState],[System.Object]]]] @@ -12956,6 +13612,14 @@ class Microsoft.Graph.DeviceComplianceScheduledActionForRuleRequest : Microsoft. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]] + param deviceComplianceScheduledActionForRuleToUpdate : Microsoft.Graph.DeviceComplianceScheduledActionForRule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]]]] + param deviceComplianceScheduledActionForRuleToUpdate : Microsoft.Graph.DeviceComplianceScheduledActionForRule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceScheduledActionForRuleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceScheduledActionForRule],[System.Object]]]] @@ -13071,6 +13735,14 @@ class Microsoft.Graph.DeviceComplianceSettingStateRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceSettingState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceSettingState]] + param deviceComplianceSettingStateToUpdate : Microsoft.Graph.DeviceComplianceSettingState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceSettingState]]]] + param deviceComplianceSettingStateToUpdate : Microsoft.Graph.DeviceComplianceSettingState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceSettingStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceSettingState],[System.Object]]]] @@ -13126,6 +13798,14 @@ class Microsoft.Graph.DeviceComplianceUserOverviewRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceUserOverview]] + param deviceComplianceUserOverviewToUpdate : Microsoft.Graph.DeviceComplianceUserOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserOverview]]]] + param deviceComplianceUserOverviewToUpdate : Microsoft.Graph.DeviceComplianceUserOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceUserOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceUserOverview],[System.Object]]]] @@ -13179,6 +13859,14 @@ class Microsoft.Graph.DeviceComplianceUserStatusRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceUserStatus]] + param deviceComplianceUserStatusToUpdate : Microsoft.Graph.DeviceComplianceUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserStatus]]]] + param deviceComplianceUserStatusToUpdate : Microsoft.Graph.DeviceComplianceUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceUserStatus],[System.Object]]]] @@ -13249,6 +13937,14 @@ class Microsoft.Graph.DeviceConfigurationAssignmentRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationAssignment]] + param deviceConfigurationAssignmentToUpdate : Microsoft.Graph.DeviceConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationAssignment]]]] + param deviceConfigurationAssignmentToUpdate : Microsoft.Graph.DeviceConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationAssignment],[System.Object]]]] @@ -13388,6 +14084,14 @@ class Microsoft.Graph.DeviceConfigurationDeviceOverviewRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]] + param deviceConfigurationDeviceOverviewToUpdate : Microsoft.Graph.DeviceConfigurationDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]]]] + param deviceConfigurationDeviceOverviewToUpdate : Microsoft.Graph.DeviceConfigurationDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceOverview],[System.Object]]]] @@ -13498,6 +14202,14 @@ class Microsoft.Graph.DeviceConfigurationDeviceStateSummaryRequest : Microsoft.G method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]] + param deviceConfigurationDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]]]] + param deviceConfigurationDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary],[System.Object]]]] @@ -13608,6 +14320,14 @@ class Microsoft.Graph.DeviceConfigurationDeviceStatusRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]] + param deviceConfigurationDeviceStatusToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]]]] + param deviceConfigurationDeviceStatusToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceStatus],[System.Object]]]] @@ -13655,6 +14375,14 @@ class Microsoft.Graph.DeviceConfigurationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfiguration]] + param deviceConfigurationToUpdate : Microsoft.Graph.DeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfiguration]]]] + param deviceConfigurationToUpdate : Microsoft.Graph.DeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfiguration],[System.Object]]]] @@ -13733,6 +14461,14 @@ class Microsoft.Graph.DeviceConfigurationStateRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationState]] + param deviceConfigurationStateToUpdate : Microsoft.Graph.DeviceConfigurationState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationState]]]] + param deviceConfigurationStateToUpdate : Microsoft.Graph.DeviceConfigurationState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationState],[System.Object]]]] @@ -13788,6 +14524,14 @@ class Microsoft.Graph.DeviceConfigurationUserOverviewRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationUserOverview]] + param deviceConfigurationUserOverviewToUpdate : Microsoft.Graph.DeviceConfigurationUserOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserOverview]]]] + param deviceConfigurationUserOverviewToUpdate : Microsoft.Graph.DeviceConfigurationUserOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationUserOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationUserOverview],[System.Object]]]] @@ -13896,6 +14640,14 @@ class Microsoft.Graph.DeviceConfigurationUserStatusRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationUserStatus]] + param deviceConfigurationUserStatusToUpdate : Microsoft.Graph.DeviceConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserStatus]]]] + param deviceConfigurationUserStatusToUpdate : Microsoft.Graph.DeviceConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationUserStatus],[System.Object]]]] @@ -14033,6 +14785,14 @@ class Microsoft.Graph.DeviceEnrollmentConfigurationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]] + param deviceEnrollmentConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]]]] + param deviceEnrollmentConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentConfiguration],[System.Object]]]] @@ -14106,6 +14866,14 @@ class Microsoft.Graph.DeviceEnrollmentLimitConfigurationRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]] + param deviceEnrollmentLimitConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentLimitConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]]]] + param deviceEnrollmentLimitConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentLimitConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentLimitConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration],[System.Object]]]] @@ -14166,6 +14934,14 @@ class Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfigurationRequest : method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]] + param deviceEnrollmentPlatformRestrictionsConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]]]] + param deviceEnrollmentPlatformRestrictionsConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentPlatformRestrictionsConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration],[System.Object]]]] @@ -14226,6 +15002,14 @@ class Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfigurationReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]] + param deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]]]] + param deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration],[System.Object]]]] @@ -14415,6 +15199,14 @@ class Microsoft.Graph.DeviceInstallStateRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceInstallState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceInstallState]] + param deviceInstallStateToUpdate : Microsoft.Graph.DeviceInstallState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceInstallState]]]] + param deviceInstallStateToUpdate : Microsoft.Graph.DeviceInstallState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceInstallStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceInstallState],[System.Object]]]] @@ -14945,6 +15737,14 @@ class Microsoft.Graph.DeviceManagementExchangeConnectorRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementExchangeConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementExchangeConnector]] + param deviceManagementExchangeConnectorToUpdate : Microsoft.Graph.DeviceManagementExchangeConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementExchangeConnector]]]] + param deviceManagementExchangeConnectorToUpdate : Microsoft.Graph.DeviceManagementExchangeConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementExchangeConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementExchangeConnector],[System.Object]]]] @@ -15331,6 +16131,14 @@ class Microsoft.Graph.DeviceManagementPartnerRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementPartner]] + param deviceManagementPartnerToUpdate : Microsoft.Graph.DeviceManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementPartner]]]] + param deviceManagementPartnerToUpdate : Microsoft.Graph.DeviceManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementPartner],[System.Object]]]] @@ -15433,6 +16241,14 @@ class Microsoft.Graph.DeviceManagementRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagement]] + param deviceManagementToUpdate : Microsoft.Graph.DeviceManagement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagement]]]] + param deviceManagementToUpdate : Microsoft.Graph.DeviceManagement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagement],[System.Object]]]] @@ -15798,6 +16614,14 @@ class Microsoft.Graph.DeviceManagementTroubleshootingEventRequest : Microsoft.Gr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]] + param deviceManagementTroubleshootingEventToUpdate : Microsoft.Graph.DeviceManagementTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]]]] + param deviceManagementTroubleshootingEventToUpdate : Microsoft.Graph.DeviceManagementTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementTroubleshootingEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementTroubleshootingEvent],[System.Object]]]] @@ -16222,6 +17046,14 @@ class Microsoft.Graph.DeviceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Device]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Device]] + param deviceToUpdate : Microsoft.Graph.Device + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Device]]]] + param deviceToUpdate : Microsoft.Graph.Device + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Device],[System.Object]]]] @@ -16414,6 +17246,14 @@ class Microsoft.Graph.DirectoryAuditRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryAudit]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryAudit]] + param directoryAuditToUpdate : Microsoft.Graph.DirectoryAudit + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryAudit]]]] + param directoryAuditToUpdate : Microsoft.Graph.DirectoryAudit + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryAuditRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryAudit],[System.Object]]]] @@ -16765,6 +17605,14 @@ class Microsoft.Graph.DirectoryObjectPartnerReferenceRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObjectPartnerReference]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryObjectPartnerReference]] + param directoryObjectPartnerReferenceToUpdate : Microsoft.Graph.DirectoryObjectPartnerReference + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObjectPartnerReference]]]] + param directoryObjectPartnerReferenceToUpdate : Microsoft.Graph.DirectoryObjectPartnerReference + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryObjectPartnerReferenceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryObjectPartnerReference],[System.Object]]]] @@ -16833,6 +17681,14 @@ class Microsoft.Graph.DirectoryObjectRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryObject]] + param directoryObjectToUpdate : Microsoft.Graph.DirectoryObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObject]]]] + param directoryObjectToUpdate : Microsoft.Graph.DirectoryObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryObjectRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryObject],[System.Object]]]] @@ -16976,6 +17832,14 @@ class Microsoft.Graph.DirectoryRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Directory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Directory]] + param directoryToUpdate : Microsoft.Graph.Directory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Directory]]]] + param directoryToUpdate : Microsoft.Graph.Directory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Directory],[System.Object]]]] @@ -17129,6 +17993,14 @@ class Microsoft.Graph.DirectoryRoleRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRole]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryRole]] + param directoryRoleToUpdate : Microsoft.Graph.DirectoryRole + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRole]]]] + param directoryRoleToUpdate : Microsoft.Graph.DirectoryRole + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRoleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryRole],[System.Object]]]] @@ -17236,6 +18108,14 @@ class Microsoft.Graph.DirectoryRoleTemplateRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRoleTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryRoleTemplate]] + param directoryRoleTemplateToUpdate : Microsoft.Graph.DirectoryRoleTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRoleTemplate]]]] + param directoryRoleTemplateToUpdate : Microsoft.Graph.DirectoryRoleTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRoleTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryRoleTemplate],[System.Object]]]] @@ -17302,6 +18182,14 @@ class Microsoft.Graph.DomainDnsCnameRecordRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsCnameRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsCnameRecord]] + param domainDnsCnameRecordToUpdate : Microsoft.Graph.DomainDnsCnameRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsCnameRecord]]]] + param domainDnsCnameRecordToUpdate : Microsoft.Graph.DomainDnsCnameRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsCnameRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsCnameRecord],[System.Object]]]] @@ -17352,6 +18240,14 @@ class Microsoft.Graph.DomainDnsMxRecordRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsMxRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsMxRecord]] + param domainDnsMxRecordToUpdate : Microsoft.Graph.DomainDnsMxRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsMxRecord]]]] + param domainDnsMxRecordToUpdate : Microsoft.Graph.DomainDnsMxRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsMxRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsMxRecord],[System.Object]]]] @@ -17405,6 +18301,14 @@ class Microsoft.Graph.DomainDnsRecordRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsRecord]] + param domainDnsRecordToUpdate : Microsoft.Graph.DomainDnsRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsRecord]]]] + param domainDnsRecordToUpdate : Microsoft.Graph.DomainDnsRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsRecord],[System.Object]]]] @@ -17459,6 +18363,14 @@ class Microsoft.Graph.DomainDnsSrvRecordRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsSrvRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsSrvRecord]] + param domainDnsSrvRecordToUpdate : Microsoft.Graph.DomainDnsSrvRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsSrvRecord]]]] + param domainDnsSrvRecordToUpdate : Microsoft.Graph.DomainDnsSrvRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsSrvRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsSrvRecord],[System.Object]]]] @@ -17508,6 +18420,14 @@ class Microsoft.Graph.DomainDnsTxtRecordRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsTxtRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsTxtRecord]] + param domainDnsTxtRecordToUpdate : Microsoft.Graph.DomainDnsTxtRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsTxtRecord]]]] + param domainDnsTxtRecordToUpdate : Microsoft.Graph.DomainDnsTxtRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsTxtRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsTxtRecord],[System.Object]]]] @@ -17557,6 +18477,14 @@ class Microsoft.Graph.DomainDnsUnavailableRecordRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsUnavailableRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsUnavailableRecord]] + param domainDnsUnavailableRecordToUpdate : Microsoft.Graph.DomainDnsUnavailableRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsUnavailableRecord]]]] + param domainDnsUnavailableRecordToUpdate : Microsoft.Graph.DomainDnsUnavailableRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsUnavailableRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsUnavailableRecord],[System.Object]]]] @@ -17684,6 +18612,14 @@ class Microsoft.Graph.DomainRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Domain]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Domain]] + param domainToUpdate : Microsoft.Graph.Domain + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Domain]]]] + param domainToUpdate : Microsoft.Graph.Domain + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Domain],[System.Object]]]] @@ -18333,6 +19269,14 @@ class Microsoft.Graph.DriveItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DriveItem]] + param driveItemToUpdate : Microsoft.Graph.DriveItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItem]]]] + param driveItemToUpdate : Microsoft.Graph.DriveItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DriveItem],[System.Object]]]] @@ -18735,6 +19679,14 @@ class Microsoft.Graph.DriveItemVersionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DriveItemVersion]] + param driveItemVersionToUpdate : Microsoft.Graph.DriveItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItemVersion]]]] + param driveItemVersionToUpdate : Microsoft.Graph.DriveItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DriveItemVersion],[System.Object]]]] @@ -18895,6 +19847,14 @@ class Microsoft.Graph.DriveRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Drive]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Drive]] + param driveToUpdate : Microsoft.Graph.Drive + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Drive]]]] + param driveToUpdate : Microsoft.Graph.Drive + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Drive],[System.Object]]]] @@ -19087,6 +20047,14 @@ class Microsoft.Graph.EBookInstallSummaryRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EBookInstallSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EBookInstallSummary]] + param eBookInstallSummaryToUpdate : Microsoft.Graph.EBookInstallSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EBookInstallSummary]]]] + param eBookInstallSummaryToUpdate : Microsoft.Graph.EBookInstallSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEBookInstallSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EBookInstallSummary],[System.Object]]]] @@ -19146,6 +20114,14 @@ class Microsoft.Graph.EditionUpgradeConfigurationRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EditionUpgradeConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EditionUpgradeConfiguration]] + param editionUpgradeConfigurationToUpdate : Microsoft.Graph.EditionUpgradeConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EditionUpgradeConfiguration]]]] + param editionUpgradeConfigurationToUpdate : Microsoft.Graph.EditionUpgradeConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEditionUpgradeConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EditionUpgradeConfiguration],[System.Object]]]] @@ -19329,6 +20305,14 @@ class Microsoft.Graph.EducationClassRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationClass]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationClass]] + param educationClassToUpdate : Microsoft.Graph.EducationClass + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationClass]]]] + param educationClassToUpdate : Microsoft.Graph.EducationClass + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationClassRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationClass],[System.Object]]]] @@ -19571,6 +20555,14 @@ class Microsoft.Graph.EducationOrganizationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationOrganization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationOrganization]] + param educationOrganizationToUpdate : Microsoft.Graph.EducationOrganization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationOrganization]]]] + param educationOrganizationToUpdate : Microsoft.Graph.EducationOrganization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationOrganizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationOrganization],[System.Object]]]] @@ -19680,6 +20672,14 @@ class Microsoft.Graph.EducationRootRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationRoot]] + param educationRootToUpdate : Microsoft.Graph.EducationRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationRoot]]]] + param educationRootToUpdate : Microsoft.Graph.EducationRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationRoot],[System.Object]]]] @@ -19979,6 +20979,14 @@ class Microsoft.Graph.EducationSchoolRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationSchool]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationSchool]] + param educationSchoolToUpdate : Microsoft.Graph.EducationSchool + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationSchool]]]] + param educationSchoolToUpdate : Microsoft.Graph.EducationSchool + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationSchoolRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationSchool],[System.Object]]]] @@ -20316,6 +21324,14 @@ class Microsoft.Graph.EducationUserRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationUser]] + param educationUserToUpdate : Microsoft.Graph.EducationUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationUser]]]] + param educationUserToUpdate : Microsoft.Graph.EducationUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationUser],[System.Object]]]] @@ -20604,6 +21620,14 @@ class Microsoft.Graph.EmailAuthenticationMethodConfigurationRequest : Microsoft. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]] + param emailAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.EmailAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]]]] + param emailAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.EmailAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEmailAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EmailAuthenticationMethodConfiguration],[System.Object]]]] @@ -20656,6 +21680,14 @@ class Microsoft.Graph.EmailFileAssessmentRequestRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]] + param emailFileAssessmentRequestObjectToUpdate : Microsoft.Graph.EmailFileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]]]] + param emailFileAssessmentRequestObjectToUpdate : Microsoft.Graph.EmailFileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEmailFileAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EmailFileAssessmentRequestObject],[System.Object]]]] @@ -20718,6 +21750,14 @@ class Microsoft.Graph.EndpointRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Endpoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Endpoint]] + param endpointToUpdate : Microsoft.Graph.Endpoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Endpoint]]]] + param endpointToUpdate : Microsoft.Graph.Endpoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEndpointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Endpoint],[System.Object]]]] @@ -20767,6 +21807,14 @@ class Microsoft.Graph.EnrollmentConfigurationAssignmentRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]] + param enrollmentConfigurationAssignmentToUpdate : Microsoft.Graph.EnrollmentConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]]]] + param enrollmentConfigurationAssignmentToUpdate : Microsoft.Graph.EnrollmentConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEnrollmentConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EnrollmentConfigurationAssignment],[System.Object]]]] @@ -20823,6 +21871,14 @@ class Microsoft.Graph.EnrollmentTroubleshootingEventRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]] + param enrollmentTroubleshootingEventToUpdate : Microsoft.Graph.EnrollmentTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]]]] + param enrollmentTroubleshootingEventToUpdate : Microsoft.Graph.EnrollmentTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEnrollmentTroubleshootingEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EnrollmentTroubleshootingEvent],[System.Object]]]] @@ -20895,6 +21951,14 @@ class Microsoft.Graph.EntityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Entity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Entity]] + param entityToUpdate : Microsoft.Graph.Entity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Entity]]]] + param entityToUpdate : Microsoft.Graph.Entity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Entity],[System.Object]]]] @@ -21338,6 +22402,14 @@ class Microsoft.Graph.EventMessageRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessage]] + param eventMessageToUpdate : Microsoft.Graph.EventMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessage]]]] + param eventMessageToUpdate : Microsoft.Graph.EventMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessage],[System.Object]]]] @@ -21393,6 +22465,14 @@ class Microsoft.Graph.EventMessageRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessageRequestObject]] + param eventMessageRequestObjectToUpdate : Microsoft.Graph.EventMessageRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageRequestObject]]]] + param eventMessageRequestObjectToUpdate : Microsoft.Graph.EventMessageRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessageRequestObject],[System.Object]]]] @@ -21443,6 +22523,14 @@ class Microsoft.Graph.EventMessageResponseRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageResponse]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessageResponse]] + param eventMessageResponseToUpdate : Microsoft.Graph.EventMessageResponse + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageResponse]]]] + param eventMessageResponseToUpdate : Microsoft.Graph.EventMessageResponse + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageResponseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessageResponse],[System.Object]]]] @@ -21545,6 +22633,14 @@ class Microsoft.Graph.EventRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Event]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Event]] + param eventToUpdate : Microsoft.Graph.Event + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Event]]]] + param eventToUpdate : Microsoft.Graph.Event + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Event],[System.Object]]]] @@ -21720,6 +22816,14 @@ class Microsoft.Graph.ExtensionPropertyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ExtensionProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ExtensionProperty]] + param extensionPropertyToUpdate : Microsoft.Graph.ExtensionProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ExtensionProperty]]]] + param extensionPropertyToUpdate : Microsoft.Graph.ExtensionProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IExtensionPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ExtensionProperty],[System.Object]]]] @@ -21767,6 +22871,14 @@ class Microsoft.Graph.ExtensionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Extension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Extension]] + param extensionToUpdate : Microsoft.Graph.Extension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Extension]]]] + param extensionToUpdate : Microsoft.Graph.Extension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Extension],[System.Object]]]] @@ -21898,6 +23010,14 @@ class Microsoft.Graph.Fido2AuthenticationMethodConfigurationRequest : Microsoft. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]] + param fido2AuthenticationMethodConfigurationToUpdate : Microsoft.Graph.Fido2AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]]]] + param fido2AuthenticationMethodConfigurationToUpdate : Microsoft.Graph.Fido2AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFido2AuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration],[System.Object]]]] @@ -21946,6 +23066,14 @@ class Microsoft.Graph.Fido2AuthenticationMethodRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Fido2AuthenticationMethod]] + param fido2AuthenticationMethodToUpdate : Microsoft.Graph.Fido2AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethod]]]] + param fido2AuthenticationMethodToUpdate : Microsoft.Graph.Fido2AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFido2AuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Fido2AuthenticationMethod],[System.Object]]]] @@ -22000,6 +23128,14 @@ class Microsoft.Graph.FieldValueSetRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FieldValueSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FieldValueSet]] + param fieldValueSetToUpdate : Microsoft.Graph.FieldValueSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FieldValueSet]]]] + param fieldValueSetToUpdate : Microsoft.Graph.FieldValueSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFieldValueSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FieldValueSet],[System.Object]]]] @@ -22056,6 +23192,14 @@ class Microsoft.Graph.FileAssessmentRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FileAssessmentRequestObject]] + param fileAssessmentRequestObjectToUpdate : Microsoft.Graph.FileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAssessmentRequestObject]]]] + param fileAssessmentRequestObjectToUpdate : Microsoft.Graph.FileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFileAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FileAssessmentRequestObject],[System.Object]]]] @@ -22130,6 +23274,14 @@ class Microsoft.Graph.FileAttachmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FileAttachment]] + param fileAttachmentToUpdate : Microsoft.Graph.FileAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAttachment]]]] + param fileAttachmentToUpdate : Microsoft.Graph.FileAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFileAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FileAttachment],[System.Object]]]] @@ -25150,6 +26302,14 @@ class Microsoft.Graph.GroupLifecyclePolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupLifecyclePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupLifecyclePolicy]] + param groupLifecyclePolicyToUpdate : Microsoft.Graph.GroupLifecyclePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupLifecyclePolicy]]]] + param groupLifecyclePolicyToUpdate : Microsoft.Graph.GroupLifecyclePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupLifecyclePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupLifecyclePolicy],[System.Object]]]] @@ -25677,6 +26837,14 @@ class Microsoft.Graph.GroupRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Group]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Group]] + param groupToUpdate : Microsoft.Graph.Group + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Group]]]] + param groupToUpdate : Microsoft.Graph.Group + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Group],[System.Object]]]] @@ -25792,6 +26960,14 @@ class Microsoft.Graph.GroupSettingRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSetting]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupSetting]] + param groupSettingToUpdate : Microsoft.Graph.GroupSetting + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSetting]]]] + param groupSettingToUpdate : Microsoft.Graph.GroupSetting + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupSettingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupSetting],[System.Object]]]] @@ -25898,6 +27074,14 @@ class Microsoft.Graph.GroupSettingTemplateRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSettingTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupSettingTemplate]] + param groupSettingTemplateToUpdate : Microsoft.Graph.GroupSettingTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSettingTemplate]]]] + param groupSettingTemplateToUpdate : Microsoft.Graph.GroupSettingTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupSettingTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupSettingTemplate],[System.Object]]]] @@ -26317,6 +27501,14 @@ class Microsoft.Graph.HomeRealmDiscoveryPolicyRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]] + param homeRealmDiscoveryPolicyToUpdate : Microsoft.Graph.HomeRealmDiscoveryPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]]]] + param homeRealmDiscoveryPolicyToUpdate : Microsoft.Graph.HomeRealmDiscoveryPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IHomeRealmDiscoveryPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.HomeRealmDiscoveryPolicy],[System.Object]]]] @@ -26431,6 +27623,14 @@ class Microsoft.Graph.IdentityContainerRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityContainer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityContainer]] + param identityContainerToUpdate : Microsoft.Graph.IdentityContainer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityContainer]]]] + param identityContainerToUpdate : Microsoft.Graph.IdentityContainer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityContainerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityContainer],[System.Object]]]] @@ -26483,6 +27683,14 @@ class Microsoft.Graph.IdentityGovernanceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityGovernance]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityGovernance]] + param identityGovernanceToUpdate : Microsoft.Graph.IdentityGovernance + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityGovernance]]]] + param identityGovernanceToUpdate : Microsoft.Graph.IdentityGovernance + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityGovernanceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityGovernance],[System.Object]]]] @@ -26536,6 +27744,14 @@ class Microsoft.Graph.IdentityProviderRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityProvider]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityProvider]] + param identityProviderToUpdate : Microsoft.Graph.IdentityProvider + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityProvider]]]] + param identityProviderToUpdate : Microsoft.Graph.IdentityProvider + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityProviderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityProvider],[System.Object]]]] @@ -26585,6 +27801,14 @@ class Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicyRequest : Microso method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]] + param identitySecurityDefaultsEnforcementPolicyToUpdate : Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]]]] + param identitySecurityDefaultsEnforcementPolicyToUpdate : Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentitySecurityDefaultsEnforcementPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy],[System.Object]]]] @@ -26672,6 +27896,14 @@ class Microsoft.Graph.InferenceClassificationOverrideRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassificationOverride]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InferenceClassificationOverride]] + param inferenceClassificationOverrideToUpdate : Microsoft.Graph.InferenceClassificationOverride + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassificationOverride]]]] + param inferenceClassificationOverrideToUpdate : Microsoft.Graph.InferenceClassificationOverride + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInferenceClassificationOverrideRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InferenceClassificationOverride],[System.Object]]]] @@ -26774,6 +28006,14 @@ class Microsoft.Graph.InferenceClassificationRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassification]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InferenceClassification]] + param inferenceClassificationToUpdate : Microsoft.Graph.InferenceClassification + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassification]]]] + param inferenceClassificationToUpdate : Microsoft.Graph.InferenceClassification + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInferenceClassificationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InferenceClassification],[System.Object]]]] @@ -26832,6 +28072,14 @@ class Microsoft.Graph.InformationProtectionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InformationProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InformationProtection]] + param informationProtectionToUpdate : Microsoft.Graph.InformationProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InformationProtection]]]] + param informationProtectionToUpdate : Microsoft.Graph.InformationProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInformationProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InformationProtection],[System.Object]]]] @@ -26993,6 +28241,14 @@ class Microsoft.Graph.InvitationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Invitation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Invitation]] + param invitationToUpdate : Microsoft.Graph.Invitation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Invitation]]]] + param invitationToUpdate : Microsoft.Graph.Invitation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInvitationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Invitation],[System.Object]]]] @@ -27049,6 +28305,14 @@ class Microsoft.Graph.InviteParticipantsOperationRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InviteParticipantsOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InviteParticipantsOperation]] + param inviteParticipantsOperationToUpdate : Microsoft.Graph.InviteParticipantsOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InviteParticipantsOperation]]]] + param inviteParticipantsOperationToUpdate : Microsoft.Graph.InviteParticipantsOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInviteParticipantsOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InviteParticipantsOperation],[System.Object]]]] @@ -27097,6 +28361,14 @@ class Microsoft.Graph.IosCertificateProfileRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCertificateProfile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCertificateProfile]] + param iosCertificateProfileToUpdate : Microsoft.Graph.IosCertificateProfile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCertificateProfile]]]] + param iosCertificateProfileToUpdate : Microsoft.Graph.IosCertificateProfile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCertificateProfileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCertificateProfile],[System.Object]]]] @@ -27159,6 +28431,14 @@ class Microsoft.Graph.IosCompliancePolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCompliancePolicy]] + param iosCompliancePolicyToUpdate : Microsoft.Graph.IosCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCompliancePolicy]]]] + param iosCompliancePolicyToUpdate : Microsoft.Graph.IosCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCompliancePolicy],[System.Object]]]] @@ -27210,6 +28490,14 @@ class Microsoft.Graph.IosCustomConfigurationRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCustomConfiguration]] + param iosCustomConfigurationToUpdate : Microsoft.Graph.IosCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCustomConfiguration]]]] + param iosCustomConfigurationToUpdate : Microsoft.Graph.IosCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCustomConfiguration],[System.Object]]]] @@ -27263,6 +28551,14 @@ class Microsoft.Graph.IosDeviceFeaturesConfigurationRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]] + param iosDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.IosDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]]]] + param iosDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.IosDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosDeviceFeaturesConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosDeviceFeaturesConfiguration],[System.Object]]]] @@ -27447,6 +28743,14 @@ class Microsoft.Graph.IosGeneralDeviceConfigurationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]] + param iosGeneralDeviceConfigurationToUpdate : Microsoft.Graph.IosGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]]]] + param iosGeneralDeviceConfigurationToUpdate : Microsoft.Graph.IosGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosGeneralDeviceConfiguration],[System.Object]]]] @@ -27521,6 +28825,14 @@ class Microsoft.Graph.IosLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosLobApp]] + param iosLobAppToUpdate : Microsoft.Graph.IosLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosLobApp]]]] + param iosLobAppToUpdate : Microsoft.Graph.IosLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosLobApp],[System.Object]]]] @@ -27631,6 +28943,14 @@ class Microsoft.Graph.IosManagedAppProtectionRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosManagedAppProtection]] + param iosManagedAppProtectionToUpdate : Microsoft.Graph.IosManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppProtection]]]] + param iosManagedAppProtectionToUpdate : Microsoft.Graph.IosManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosManagedAppProtection],[System.Object]]]] @@ -27681,6 +29001,14 @@ class Microsoft.Graph.IosManagedAppRegistrationRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosManagedAppRegistration]] + param iosManagedAppRegistrationToUpdate : Microsoft.Graph.IosManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppRegistration]]]] + param iosManagedAppRegistrationToUpdate : Microsoft.Graph.IosManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosManagedAppRegistration],[System.Object]]]] @@ -27740,6 +29068,14 @@ class Microsoft.Graph.IosMobileAppConfigurationRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosMobileAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosMobileAppConfiguration]] + param iosMobileAppConfigurationToUpdate : Microsoft.Graph.IosMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosMobileAppConfiguration]]]] + param iosMobileAppConfigurationToUpdate : Microsoft.Graph.IosMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosMobileAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosMobileAppConfiguration],[System.Object]]]] @@ -27814,6 +29150,14 @@ class Microsoft.Graph.IosStoreAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosStoreApp]] + param iosStoreAppToUpdate : Microsoft.Graph.IosStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosStoreApp]]]] + param iosStoreAppToUpdate : Microsoft.Graph.IosStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosStoreApp],[System.Object]]]] @@ -27866,6 +29210,14 @@ class Microsoft.Graph.IosUpdateConfigurationRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosUpdateConfiguration]] + param iosUpdateConfigurationToUpdate : Microsoft.Graph.IosUpdateConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateConfiguration]]]] + param iosUpdateConfigurationToUpdate : Microsoft.Graph.IosUpdateConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosUpdateConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosUpdateConfiguration],[System.Object]]]] @@ -27925,6 +29277,14 @@ class Microsoft.Graph.IosUpdateDeviceStatusRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosUpdateDeviceStatus]] + param iosUpdateDeviceStatusToUpdate : Microsoft.Graph.IosUpdateDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateDeviceStatus]]]] + param iosUpdateDeviceStatusToUpdate : Microsoft.Graph.IosUpdateDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosUpdateDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosUpdateDeviceStatus],[System.Object]]]] @@ -27986,6 +29346,14 @@ class Microsoft.Graph.IosVppAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppApp]] + param iosVppAppToUpdate : Microsoft.Graph.IosVppApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppApp]]]] + param iosVppAppToUpdate : Microsoft.Graph.IosVppApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppApp],[System.Object]]]] @@ -28043,6 +29411,14 @@ class Microsoft.Graph.IosVppEBookAssignmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBookAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppEBookAssignment]] + param iosVppEBookAssignmentToUpdate : Microsoft.Graph.IosVppEBookAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBookAssignment]]]] + param iosVppEBookAssignmentToUpdate : Microsoft.Graph.IosVppEBookAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppEBookAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppEBookAssignment],[System.Object]]]] @@ -28090,6 +29466,14 @@ class Microsoft.Graph.IosVppEBookRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppEBook]] + param iosVppEBookToUpdate : Microsoft.Graph.IosVppEBook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBook]]]] + param iosVppEBookToUpdate : Microsoft.Graph.IosVppEBook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppEBookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppEBook],[System.Object]]]] @@ -28140,6 +29524,14 @@ class Microsoft.Graph.IpNamedLocationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IpNamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IpNamedLocation]] + param ipNamedLocationToUpdate : Microsoft.Graph.IpNamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IpNamedLocation]]]] + param ipNamedLocationToUpdate : Microsoft.Graph.IpNamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIpNamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IpNamedLocation],[System.Object]]]] @@ -28210,6 +29602,14 @@ class Microsoft.Graph.ItemActivityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemActivity]] + param itemActivityToUpdate : Microsoft.Graph.ItemActivity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivity]]]] + param itemActivityToUpdate : Microsoft.Graph.ItemActivity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemActivityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemActivity],[System.Object]]]] @@ -28345,6 +29745,14 @@ class Microsoft.Graph.ItemActivityStatRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivityStat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemActivityStat]] + param itemActivityStatToUpdate : Microsoft.Graph.ItemActivityStat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivityStat]]]] + param itemActivityStatToUpdate : Microsoft.Graph.ItemActivityStat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemActivityStatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemActivityStat],[System.Object]]]] @@ -28521,6 +29929,14 @@ class Microsoft.Graph.ItemAnalyticsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAnalytics]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemAnalytics]] + param itemAnalyticsToUpdate : Microsoft.Graph.ItemAnalytics + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAnalytics]]]] + param itemAnalyticsToUpdate : Microsoft.Graph.ItemAnalytics + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemAnalyticsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemAnalytics],[System.Object]]]] @@ -28621,6 +30037,14 @@ class Microsoft.Graph.ItemAttachmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemAttachment]] + param itemAttachmentToUpdate : Microsoft.Graph.ItemAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAttachment]]]] + param itemAttachmentToUpdate : Microsoft.Graph.ItemAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemAttachment],[System.Object]]]] @@ -28724,6 +30148,14 @@ class Microsoft.Graph.LicenseDetailsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LicenseDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LicenseDetails]] + param licenseDetailsToUpdate : Microsoft.Graph.LicenseDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LicenseDetails]]]] + param licenseDetailsToUpdate : Microsoft.Graph.LicenseDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILicenseDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LicenseDetails],[System.Object]]]] @@ -28786,6 +30218,14 @@ class Microsoft.Graph.LinkedResourceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LinkedResource]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LinkedResource]] + param linkedResourceToUpdate : Microsoft.Graph.LinkedResource + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LinkedResource]]]] + param linkedResourceToUpdate : Microsoft.Graph.LinkedResource + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILinkedResourceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LinkedResource],[System.Object]]]] @@ -29001,6 +30441,14 @@ class Microsoft.Graph.ListItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ListItem]] + param listItemToUpdate : Microsoft.Graph.ListItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItem]]]] + param listItemToUpdate : Microsoft.Graph.ListItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ListItem],[System.Object]]]] @@ -29116,6 +30564,14 @@ class Microsoft.Graph.ListItemVersionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ListItemVersion]] + param listItemVersionToUpdate : Microsoft.Graph.ListItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItemVersion]]]] + param listItemVersionToUpdate : Microsoft.Graph.ListItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ListItemVersion],[System.Object]]]] @@ -29235,6 +30691,14 @@ class Microsoft.Graph.ListRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.List]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.List]] + param listToUpdate : Microsoft.Graph.List + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.List]]]] + param listToUpdate : Microsoft.Graph.List + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.List],[System.Object]]]] @@ -29358,6 +30822,14 @@ class Microsoft.Graph.LocalizedNotificationMessageRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LocalizedNotificationMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LocalizedNotificationMessage]] + param localizedNotificationMessageToUpdate : Microsoft.Graph.LocalizedNotificationMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LocalizedNotificationMessage]]]] + param localizedNotificationMessageToUpdate : Microsoft.Graph.LocalizedNotificationMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILocalizedNotificationMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LocalizedNotificationMessage],[System.Object]]]] @@ -29452,6 +30924,14 @@ class Microsoft.Graph.MacOSCompliancePolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSCompliancePolicy]] + param macOSCompliancePolicyToUpdate : Microsoft.Graph.MacOSCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCompliancePolicy]]]] + param macOSCompliancePolicyToUpdate : Microsoft.Graph.MacOSCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSCompliancePolicy],[System.Object]]]] @@ -29503,6 +30983,14 @@ class Microsoft.Graph.MacOSCustomConfigurationRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSCustomConfiguration]] + param macOSCustomConfigurationToUpdate : Microsoft.Graph.MacOSCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCustomConfiguration]]]] + param macOSCustomConfigurationToUpdate : Microsoft.Graph.MacOSCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSCustomConfiguration],[System.Object]]]] @@ -29551,6 +31039,14 @@ class Microsoft.Graph.MacOSDeviceFeaturesConfigurationRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]] + param macOSDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.MacOSDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]]]] + param macOSDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.MacOSDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSDeviceFeaturesConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration],[System.Object]]]] @@ -29611,6 +31107,14 @@ class Microsoft.Graph.MacOSGeneralDeviceConfigurationRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]] + param macOSGeneralDeviceConfigurationToUpdate : Microsoft.Graph.MacOSGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]]]] + param macOSGeneralDeviceConfigurationToUpdate : Microsoft.Graph.MacOSGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSGeneralDeviceConfiguration],[System.Object]]]] @@ -29659,6 +31163,14 @@ class Microsoft.Graph.MacOSOfficeSuiteAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSOfficeSuiteApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSOfficeSuiteApp]] + param macOSOfficeSuiteAppToUpdate : Microsoft.Graph.MacOSOfficeSuiteApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSOfficeSuiteApp]]]] + param macOSOfficeSuiteAppToUpdate : Microsoft.Graph.MacOSOfficeSuiteApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSOfficeSuiteAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSOfficeSuiteApp],[System.Object]]]] @@ -29710,6 +31222,14 @@ class Microsoft.Graph.MailAssessmentRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailAssessmentRequestObject]] + param mailAssessmentRequestObjectToUpdate : Microsoft.Graph.MailAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailAssessmentRequestObject]]]] + param mailAssessmentRequestObjectToUpdate : Microsoft.Graph.MailAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailAssessmentRequestObject],[System.Object]]]] @@ -30072,6 +31592,14 @@ class Microsoft.Graph.MailFolderRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailFolder]] + param mailFolderToUpdate : Microsoft.Graph.MailFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailFolder]]]] + param mailFolderToUpdate : Microsoft.Graph.MailFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailFolder],[System.Object]]]] @@ -30190,6 +31718,14 @@ class Microsoft.Graph.MailSearchFolderRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailSearchFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailSearchFolder]] + param mailSearchFolderToUpdate : Microsoft.Graph.MailSearchFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailSearchFolder]]]] + param mailSearchFolderToUpdate : Microsoft.Graph.MailSearchFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailSearchFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailSearchFolder],[System.Object]]]] @@ -30270,6 +31806,14 @@ class Microsoft.Graph.ManagedAndroidLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAndroidLobApp]] + param managedAndroidLobAppToUpdate : Microsoft.Graph.ManagedAndroidLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidLobApp]]]] + param managedAndroidLobAppToUpdate : Microsoft.Graph.ManagedAndroidLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAndroidLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAndroidLobApp],[System.Object]]]] @@ -30321,6 +31865,14 @@ class Microsoft.Graph.ManagedAndroidStoreAppRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAndroidStoreApp]] + param managedAndroidStoreAppToUpdate : Microsoft.Graph.ManagedAndroidStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidStoreApp]]]] + param managedAndroidStoreAppToUpdate : Microsoft.Graph.ManagedAndroidStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAndroidStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAndroidStoreApp],[System.Object]]]] @@ -30373,6 +31925,14 @@ class Microsoft.Graph.ManagedAppConfigurationRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppConfiguration]] + param managedAppConfigurationToUpdate : Microsoft.Graph.ManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppConfiguration]]]] + param managedAppConfigurationToUpdate : Microsoft.Graph.ManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppConfiguration],[System.Object]]]] @@ -30431,6 +31991,14 @@ class Microsoft.Graph.ManagedAppOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppOperation]] + param managedAppOperationToUpdate : Microsoft.Graph.ManagedAppOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppOperation]]]] + param managedAppOperationToUpdate : Microsoft.Graph.ManagedAppOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppOperation],[System.Object]]]] @@ -30495,6 +32063,14 @@ class Microsoft.Graph.ManagedAppPolicyDeploymentSummaryRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]] + param managedAppPolicyDeploymentSummaryToUpdate : Microsoft.Graph.ManagedAppPolicyDeploymentSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]]]] + param managedAppPolicyDeploymentSummaryToUpdate : Microsoft.Graph.ManagedAppPolicyDeploymentSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppPolicyDeploymentSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary],[System.Object]]]] @@ -30542,6 +32118,14 @@ class Microsoft.Graph.ManagedAppPolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppPolicy]] + param managedAppPolicyToUpdate : Microsoft.Graph.ManagedAppPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicy]]]] + param managedAppPolicyToUpdate : Microsoft.Graph.ManagedAppPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppPolicy],[System.Object]]]] @@ -30637,6 +32221,14 @@ class Microsoft.Graph.ManagedAppProtectionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppProtection]] + param managedAppProtectionToUpdate : Microsoft.Graph.ManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppProtection]]]] + param managedAppProtectionToUpdate : Microsoft.Graph.ManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppProtection],[System.Object]]]] @@ -30941,6 +32533,14 @@ class Microsoft.Graph.ManagedAppRegistrationRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppRegistration]] + param managedAppRegistrationToUpdate : Microsoft.Graph.ManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppRegistration]]]] + param managedAppRegistrationToUpdate : Microsoft.Graph.ManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppRegistration],[System.Object]]]] @@ -31039,6 +32639,14 @@ class Microsoft.Graph.ManagedAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedApp]] + param managedAppToUpdate : Microsoft.Graph.ManagedApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedApp]]]] + param managedAppToUpdate : Microsoft.Graph.ManagedApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedApp],[System.Object]]]] @@ -31091,6 +32699,14 @@ class Microsoft.Graph.ManagedAppStatusRawRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatusRaw]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppStatusRaw]] + param managedAppStatusRawToUpdate : Microsoft.Graph.ManagedAppStatusRaw + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatusRaw]]]] + param managedAppStatusRawToUpdate : Microsoft.Graph.ManagedAppStatusRaw + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppStatusRawRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppStatusRaw],[System.Object]]]] @@ -31138,6 +32754,14 @@ class Microsoft.Graph.ManagedAppStatusRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppStatus]] + param managedAppStatusToUpdate : Microsoft.Graph.ManagedAppStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatus]]]] + param managedAppStatusToUpdate : Microsoft.Graph.ManagedAppStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppStatus],[System.Object]]]] @@ -31449,6 +33073,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignmentRequest : Mic method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]] + param managedDeviceMobileAppConfigurationAssignmentToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]]]] + param managedDeviceMobileAppConfigurationAssignmentToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment],[System.Object]]]] @@ -31631,6 +33263,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatusRequest : M method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]] + param managedDeviceMobileAppConfigurationDeviceStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]]]] + param managedDeviceMobileAppConfigurationDeviceStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus],[System.Object]]]] @@ -31686,6 +33326,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummaryRequest : method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]] + param managedDeviceMobileAppConfigurationDeviceSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]]]] + param managedDeviceMobileAppConfigurationDeviceSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary],[System.Object]]]] @@ -31733,6 +33381,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationRequest : Microsoft.Gra method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]] + param managedDeviceMobileAppConfigurationToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]]]] + param managedDeviceMobileAppConfigurationToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration],[System.Object]]]] @@ -31849,6 +33505,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatusRequest : Mic method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]] + param managedDeviceMobileAppConfigurationUserStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]]]] + param managedDeviceMobileAppConfigurationUserStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus],[System.Object]]]] @@ -31904,6 +33568,14 @@ class Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummaryRequest : Mi method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]] + param managedDeviceMobileAppConfigurationUserSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]]]] + param managedDeviceMobileAppConfigurationUserSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary],[System.Object]]]] @@ -31978,6 +33650,14 @@ class Microsoft.Graph.ManagedDeviceOverviewRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceOverview]] + param managedDeviceOverviewToUpdate : Microsoft.Graph.ManagedDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceOverview]]]] + param managedDeviceOverviewToUpdate : Microsoft.Graph.ManagedDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceOverview],[System.Object]]]] @@ -32136,6 +33816,14 @@ class Microsoft.Graph.ManagedDeviceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDevice]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDevice]] + param managedDeviceToUpdate : Microsoft.Graph.ManagedDevice + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDevice]]]] + param managedDeviceToUpdate : Microsoft.Graph.ManagedDevice + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDevice],[System.Object]]]] @@ -32431,6 +34119,14 @@ class Microsoft.Graph.ManagedEBookAssignmentRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBookAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedEBookAssignment]] + param managedEBookAssignmentToUpdate : Microsoft.Graph.ManagedEBookAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBookAssignment]]]] + param managedEBookAssignmentToUpdate : Microsoft.Graph.ManagedEBookAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedEBookAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedEBookAssignment],[System.Object]]]] @@ -32605,6 +34301,14 @@ class Microsoft.Graph.ManagedEBookRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedEBook]] + param managedEBookToUpdate : Microsoft.Graph.ManagedEBook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBook]]]] + param managedEBookToUpdate : Microsoft.Graph.ManagedEBook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedEBookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedEBook],[System.Object]]]] @@ -32721,6 +34425,14 @@ class Microsoft.Graph.ManagedIOSLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedIOSLobApp]] + param managedIOSLobAppToUpdate : Microsoft.Graph.ManagedIOSLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSLobApp]]]] + param managedIOSLobAppToUpdate : Microsoft.Graph.ManagedIOSLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedIOSLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedIOSLobApp],[System.Object]]]] @@ -32773,6 +34485,14 @@ class Microsoft.Graph.ManagedIOSStoreAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedIOSStoreApp]] + param managedIOSStoreAppToUpdate : Microsoft.Graph.ManagedIOSStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSStoreApp]]]] + param managedIOSStoreAppToUpdate : Microsoft.Graph.ManagedIOSStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedIOSStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedIOSStoreApp],[System.Object]]]] @@ -32823,6 +34543,14 @@ class Microsoft.Graph.ManagedMobileAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedMobileApp]] + param managedMobileAppToUpdate : Microsoft.Graph.ManagedMobileApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileApp]]]] + param managedMobileAppToUpdate : Microsoft.Graph.ManagedMobileApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedMobileAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedMobileApp],[System.Object]]]] @@ -32930,6 +34658,14 @@ class Microsoft.Graph.ManagedMobileLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedMobileLobApp]] + param managedMobileLobAppToUpdate : Microsoft.Graph.ManagedMobileLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileLobApp]]]] + param managedMobileLobAppToUpdate : Microsoft.Graph.ManagedMobileLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedMobileLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedMobileLobApp],[System.Object]]]] @@ -32979,6 +34715,14 @@ class Microsoft.Graph.MdmWindowsInformationProtectionPolicyRequest : Microsoft.G method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]] + param mdmWindowsInformationProtectionPolicyToUpdate : Microsoft.Graph.MdmWindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]]]] + param mdmWindowsInformationProtectionPolicyToUpdate : Microsoft.Graph.MdmWindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMdmWindowsInformationProtectionPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy],[System.Object]]]] @@ -33556,6 +35300,14 @@ class Microsoft.Graph.MessageRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Message]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Message]] + param messageToUpdate : Microsoft.Graph.Message + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Message]]]] + param messageToUpdate : Microsoft.Graph.Message + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Message],[System.Object]]]] @@ -33698,6 +35450,14 @@ class Microsoft.Graph.MessageRuleRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MessageRule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MessageRule]] + param messageRuleToUpdate : Microsoft.Graph.MessageRule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MessageRule]]]] + param messageRuleToUpdate : Microsoft.Graph.MessageRule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMessageRuleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MessageRule],[System.Object]]]] @@ -33889,6 +35649,14 @@ class Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfigurationReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]] + param microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]]]] + param microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration],[System.Object]]]] @@ -33937,6 +35705,14 @@ class Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodRequest : Micros method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]] + param microsoftAuthenticatorAuthenticationMethodToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]]]] + param microsoftAuthenticatorAuthenticationMethodToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod],[System.Object]]]] @@ -33988,6 +35764,14 @@ class Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTargetRequest : method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]] + param microsoftAuthenticatorAuthenticationMethodTargetToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]]]] + param microsoftAuthenticatorAuthenticationMethodTargetToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodTargetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget],[System.Object]]]] @@ -34043,6 +35827,14 @@ class Microsoft.Graph.MicrosoftStoreForBusinessAppRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]] + param microsoftStoreForBusinessAppToUpdate : Microsoft.Graph.MicrosoftStoreForBusinessApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]]]] + param microsoftStoreForBusinessAppToUpdate : Microsoft.Graph.MicrosoftStoreForBusinessApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftStoreForBusinessAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftStoreForBusinessApp],[System.Object]]]] @@ -34115,6 +35907,14 @@ class Microsoft.Graph.MobileAppAssignmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppAssignment]] + param mobileAppAssignmentToUpdate : Microsoft.Graph.MobileAppAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppAssignment]]]] + param mobileAppAssignmentToUpdate : Microsoft.Graph.MobileAppAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppAssignment],[System.Object]]]] @@ -34324,6 +36124,14 @@ class Microsoft.Graph.MobileAppCategoryRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppCategory]] + param mobileAppCategoryToUpdate : Microsoft.Graph.MobileAppCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppCategory]]]] + param mobileAppCategoryToUpdate : Microsoft.Graph.MobileAppCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppCategory],[System.Object]]]] @@ -34462,6 +36270,14 @@ class Microsoft.Graph.MobileAppContentFileRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContentFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppContentFile]] + param mobileAppContentFileToUpdate : Microsoft.Graph.MobileAppContentFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContentFile]]]] + param mobileAppContentFileToUpdate : Microsoft.Graph.MobileAppContentFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppContentFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppContentFile],[System.Object]]]] @@ -34569,6 +36385,14 @@ class Microsoft.Graph.MobileAppContentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppContent]] + param mobileAppContentToUpdate : Microsoft.Graph.MobileAppContent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContent]]]] + param mobileAppContentToUpdate : Microsoft.Graph.MobileAppContent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppContentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppContent],[System.Object]]]] @@ -34626,6 +36450,14 @@ class Microsoft.Graph.MobileAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileApp]] + param mobileAppToUpdate : Microsoft.Graph.MobileApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileApp]]]] + param mobileAppToUpdate : Microsoft.Graph.MobileApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileApp],[System.Object]]]] @@ -34738,6 +36570,14 @@ class Microsoft.Graph.MobileLobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileLobApp]] + param mobileLobAppToUpdate : Microsoft.Graph.MobileLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileLobApp]]]] + param mobileLobAppToUpdate : Microsoft.Graph.MobileLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileLobApp],[System.Object]]]] @@ -34795,6 +36635,14 @@ class Microsoft.Graph.MobileThreatDefenseConnectorRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileThreatDefenseConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileThreatDefenseConnector]] + param mobileThreatDefenseConnectorToUpdate : Microsoft.Graph.MobileThreatDefenseConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileThreatDefenseConnector]]]] + param mobileThreatDefenseConnectorToUpdate : Microsoft.Graph.MobileThreatDefenseConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileThreatDefenseConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileThreatDefenseConnector],[System.Object]]]] @@ -34850,6 +36698,14 @@ class Microsoft.Graph.MultiValueLegacyExtendedPropertyRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]] + param multiValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.MultiValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]]]] + param multiValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.MultiValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMultiValueLegacyExtendedPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MultiValueLegacyExtendedProperty],[System.Object]]]] @@ -34898,6 +36754,14 @@ class Microsoft.Graph.MuteParticipantOperationRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MuteParticipantOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MuteParticipantOperation]] + param muteParticipantOperationToUpdate : Microsoft.Graph.MuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MuteParticipantOperation]]]] + param muteParticipantOperationToUpdate : Microsoft.Graph.MuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMuteParticipantOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MuteParticipantOperation],[System.Object]]]] @@ -34949,6 +36813,14 @@ class Microsoft.Graph.NamedLocationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.NamedLocation]] + param namedLocationToUpdate : Microsoft.Graph.NamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NamedLocation]]]] + param namedLocationToUpdate : Microsoft.Graph.NamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.NamedLocation],[System.Object]]]] @@ -35133,6 +37005,14 @@ class Microsoft.Graph.NotebookRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Notebook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Notebook]] + param notebookToUpdate : Microsoft.Graph.Notebook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Notebook]]]] + param notebookToUpdate : Microsoft.Graph.Notebook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INotebookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Notebook],[System.Object]]]] @@ -35360,6 +37240,14 @@ class Microsoft.Graph.NotificationMessageTemplateRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NotificationMessageTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.NotificationMessageTemplate]] + param notificationMessageTemplateToUpdate : Microsoft.Graph.NotificationMessageTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NotificationMessageTemplate]]]] + param notificationMessageTemplateToUpdate : Microsoft.Graph.NotificationMessageTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INotificationMessageTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.NotificationMessageTemplate],[System.Object]]]] @@ -35493,6 +37381,14 @@ class Microsoft.Graph.OAuth2PermissionGrantRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OAuth2PermissionGrant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OAuth2PermissionGrant]] + param oAuth2PermissionGrantToUpdate : Microsoft.Graph.OAuth2PermissionGrant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OAuth2PermissionGrant]]]] + param oAuth2PermissionGrantToUpdate : Microsoft.Graph.OAuth2PermissionGrant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOAuth2PermissionGrantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OAuth2PermissionGrant],[System.Object]]]] @@ -35599,6 +37495,14 @@ class Microsoft.Graph.OfferShiftRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfferShiftRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OfferShiftRequestObject]] + param offerShiftRequestObjectToUpdate : Microsoft.Graph.OfferShiftRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfferShiftRequestObject]]]] + param offerShiftRequestObjectToUpdate : Microsoft.Graph.OfferShiftRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOfferShiftRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OfferShiftRequestObject],[System.Object]]]] @@ -35650,6 +37554,14 @@ class Microsoft.Graph.OfficeGraphInsightsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfficeGraphInsights]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OfficeGraphInsights]] + param officeGraphInsightsToUpdate : Microsoft.Graph.OfficeGraphInsights + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfficeGraphInsights]]]] + param officeGraphInsightsToUpdate : Microsoft.Graph.OfficeGraphInsights + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOfficeGraphInsightsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OfficeGraphInsights],[System.Object]]]] @@ -35896,6 +37808,14 @@ class Microsoft.Graph.OnenoteEntityBaseModelRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityBaseModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntityBaseModel]] + param onenoteEntityBaseModelToUpdate : Microsoft.Graph.OnenoteEntityBaseModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityBaseModel]]]] + param onenoteEntityBaseModelToUpdate : Microsoft.Graph.OnenoteEntityBaseModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntityBaseModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntityBaseModel],[System.Object]]]] @@ -35948,6 +37868,14 @@ class Microsoft.Graph.OnenoteEntityHierarchyModelRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]] + param onenoteEntityHierarchyModelToUpdate : Microsoft.Graph.OnenoteEntityHierarchyModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]]]] + param onenoteEntityHierarchyModelToUpdate : Microsoft.Graph.OnenoteEntityHierarchyModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntityHierarchyModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntityHierarchyModel],[System.Object]]]] @@ -35997,6 +37925,14 @@ class Microsoft.Graph.OnenoteEntitySchemaObjectModelRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]] + param onenoteEntitySchemaObjectModelToUpdate : Microsoft.Graph.OnenoteEntitySchemaObjectModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]]]] + param onenoteEntitySchemaObjectModelToUpdate : Microsoft.Graph.OnenoteEntitySchemaObjectModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntitySchemaObjectModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntitySchemaObjectModel],[System.Object]]]] @@ -36115,6 +38051,14 @@ class Microsoft.Graph.OnenoteOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteOperation]] + param onenoteOperationToUpdate : Microsoft.Graph.OnenoteOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteOperation]]]] + param onenoteOperationToUpdate : Microsoft.Graph.OnenoteOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteOperation],[System.Object]]]] @@ -36312,6 +38256,14 @@ class Microsoft.Graph.OnenotePageRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenotePage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenotePage]] + param onenotePageToUpdate : Microsoft.Graph.OnenotePage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenotePage]]]] + param onenotePageToUpdate : Microsoft.Graph.OnenotePage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenotePageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenotePage],[System.Object]]]] @@ -36435,6 +38387,14 @@ class Microsoft.Graph.OnenoteRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Onenote]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Onenote]] + param onenoteToUpdate : Microsoft.Graph.Onenote + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Onenote]]]] + param onenoteToUpdate : Microsoft.Graph.Onenote + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Onenote],[System.Object]]]] @@ -36514,6 +38474,14 @@ class Microsoft.Graph.OnenoteResourceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteResource]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteResource]] + param onenoteResourceToUpdate : Microsoft.Graph.OnenoteResource + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteResource]]]] + param onenoteResourceToUpdate : Microsoft.Graph.OnenoteResource + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteResourceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteResource],[System.Object]]]] @@ -36801,6 +38769,14 @@ class Microsoft.Graph.OnenoteSectionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteSection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteSection]] + param onenoteSectionToUpdate : Microsoft.Graph.OnenoteSection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteSection]]]] + param onenoteSectionToUpdate : Microsoft.Graph.OnenoteSection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteSectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteSection],[System.Object]]]] @@ -36966,6 +38942,14 @@ class Microsoft.Graph.OnlineMeetingRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnlineMeeting]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnlineMeeting]] + param onlineMeetingToUpdate : Microsoft.Graph.OnlineMeeting + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnlineMeeting]]]] + param onlineMeetingToUpdate : Microsoft.Graph.OnlineMeeting + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnlineMeetingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnlineMeeting],[System.Object]]]] @@ -37018,6 +39002,14 @@ class Microsoft.Graph.OnPremisesConditionalAccessSettingsRequest : Microsoft.Gra method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]] + param onPremisesConditionalAccessSettingsToUpdate : Microsoft.Graph.OnPremisesConditionalAccessSettings + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]]]] + param onPremisesConditionalAccessSettingsToUpdate : Microsoft.Graph.OnPremisesConditionalAccessSettings + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnPremisesConditionalAccessSettingsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnPremisesConditionalAccessSettings],[System.Object]]]] @@ -37096,6 +39088,14 @@ class Microsoft.Graph.OpenShiftChangeRequestRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShiftChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenShiftChangeRequestObject]] + param openShiftChangeRequestObjectToUpdate : Microsoft.Graph.OpenShiftChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShiftChangeRequestObject]]]] + param openShiftChangeRequestObjectToUpdate : Microsoft.Graph.OpenShiftChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenShiftChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenShiftChangeRequestObject],[System.Object]]]] @@ -37145,6 +39145,14 @@ class Microsoft.Graph.OpenShiftRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShift]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenShift]] + param openShiftToUpdate : Microsoft.Graph.OpenShift + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShift]]]] + param openShiftToUpdate : Microsoft.Graph.OpenShift + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenShiftRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenShift],[System.Object]]]] @@ -37194,6 +39202,14 @@ class Microsoft.Graph.OpenTypeExtensionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenTypeExtension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenTypeExtension]] + param openTypeExtensionToUpdate : Microsoft.Graph.OpenTypeExtension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenTypeExtension]]]] + param openTypeExtensionToUpdate : Microsoft.Graph.OpenTypeExtension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenTypeExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenTypeExtension],[System.Object]]]] @@ -37250,6 +39266,14 @@ class Microsoft.Graph.OperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Operation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Operation]] + param operationToUpdate : Microsoft.Graph.Operation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Operation]]]] + param operationToUpdate : Microsoft.Graph.Operation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Operation],[System.Object]]]] @@ -37339,6 +39363,14 @@ class Microsoft.Graph.OrganizationalBrandingLocalizationRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingLocalization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBrandingLocalization]] + param organizationalBrandingLocalizationToUpdate : Microsoft.Graph.OrganizationalBrandingLocalization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingLocalization]]]] + param organizationalBrandingLocalizationToUpdate : Microsoft.Graph.OrganizationalBrandingLocalization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingLocalizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBrandingLocalization],[System.Object]]]] @@ -37494,6 +39526,14 @@ class Microsoft.Graph.OrganizationalBrandingPropertiesRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingProperties]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBrandingProperties]] + param organizationalBrandingPropertiesToUpdate : Microsoft.Graph.OrganizationalBrandingProperties + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingProperties]]]] + param organizationalBrandingPropertiesToUpdate : Microsoft.Graph.OrganizationalBrandingProperties + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingPropertiesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBrandingProperties],[System.Object]]]] @@ -37567,6 +39607,14 @@ class Microsoft.Graph.OrganizationalBrandingRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBranding]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBranding]] + param organizationalBrandingToUpdate : Microsoft.Graph.OrganizationalBranding + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBranding]]]] + param organizationalBrandingToUpdate : Microsoft.Graph.OrganizationalBranding + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBranding],[System.Object]]]] @@ -37733,6 +39781,14 @@ class Microsoft.Graph.OrganizationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Organization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Organization]] + param organizationToUpdate : Microsoft.Graph.Organization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Organization]]]] + param organizationToUpdate : Microsoft.Graph.Organization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Organization],[System.Object]]]] @@ -37981,6 +40037,14 @@ class Microsoft.Graph.OrgContactRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrgContact]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrgContact]] + param orgContactToUpdate : Microsoft.Graph.OrgContact + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrgContact]]]] + param orgContactToUpdate : Microsoft.Graph.OrgContact + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrgContactRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrgContact],[System.Object]]]] @@ -38099,6 +40163,14 @@ class Microsoft.Graph.OutlookCategoryRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookCategory]] + param outlookCategoryToUpdate : Microsoft.Graph.OutlookCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookCategory]]]] + param outlookCategoryToUpdate : Microsoft.Graph.OutlookCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookCategory],[System.Object]]]] @@ -38159,6 +40231,14 @@ class Microsoft.Graph.OutlookItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookItem]] + param outlookItemToUpdate : Microsoft.Graph.OutlookItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookItem]]]] + param outlookItemToUpdate : Microsoft.Graph.OutlookItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookItem],[System.Object]]]] @@ -38263,6 +40343,14 @@ class Microsoft.Graph.OutlookUserRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookUser]] + param outlookUserToUpdate : Microsoft.Graph.OutlookUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookUser]]]] + param outlookUserToUpdate : Microsoft.Graph.OutlookUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookUser],[System.Object]]]] @@ -38474,6 +40562,14 @@ class Microsoft.Graph.ParticipantRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Participant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Participant]] + param participantToUpdate : Microsoft.Graph.Participant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Participant]]]] + param participantToUpdate : Microsoft.Graph.Participant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IParticipantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Participant],[System.Object]]]] @@ -38581,6 +40677,14 @@ class Microsoft.Graph.PermissionGrantConditionSetRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantConditionSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PermissionGrantConditionSet]] + param permissionGrantConditionSetToUpdate : Microsoft.Graph.PermissionGrantConditionSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantConditionSet]]]] + param permissionGrantConditionSetToUpdate : Microsoft.Graph.PermissionGrantConditionSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionGrantConditionSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PermissionGrantConditionSet],[System.Object]]]] @@ -38741,6 +40845,14 @@ class Microsoft.Graph.PermissionGrantPolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PermissionGrantPolicy]] + param permissionGrantPolicyToUpdate : Microsoft.Graph.PermissionGrantPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantPolicy]]]] + param permissionGrantPolicyToUpdate : Microsoft.Graph.PermissionGrantPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionGrantPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PermissionGrantPolicy],[System.Object]]]] @@ -38820,6 +40932,14 @@ class Microsoft.Graph.PermissionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Permission]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Permission]] + param permissionToUpdate : Microsoft.Graph.Permission + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Permission]]]] + param permissionToUpdate : Microsoft.Graph.Permission + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Permission],[System.Object]]]] @@ -38911,6 +41031,14 @@ class Microsoft.Graph.PersonRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Person]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Person]] + param personToUpdate : Microsoft.Graph.Person + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Person]]]] + param personToUpdate : Microsoft.Graph.Person + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPersonRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Person],[System.Object]]]] @@ -39004,6 +41132,14 @@ class Microsoft.Graph.PlaceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Place]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Place]] + param placeToUpdate : Microsoft.Graph.Place + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Place]]]] + param placeToUpdate : Microsoft.Graph.Place + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlaceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Place],[System.Object]]]] @@ -39070,6 +41206,14 @@ class Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormatRequest : Microsoft.Gr method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]] + param plannerAssignedToTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]]]] + param plannerAssignedToTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerAssignedToTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat],[System.Object]]]] @@ -39139,6 +41283,14 @@ class Microsoft.Graph.PlannerBucketRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucket]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerBucket]] + param plannerBucketToUpdate : Microsoft.Graph.PlannerBucket + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucket]]]] + param plannerBucketToUpdate : Microsoft.Graph.PlannerBucket + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerBucketRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerBucket],[System.Object]]]] @@ -39244,6 +41396,14 @@ class Microsoft.Graph.PlannerBucketTaskBoardTaskFormatRequest : Microsoft.Graph. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]] + param plannerBucketTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerBucketTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]]]] + param plannerBucketTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerBucketTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerBucketTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat],[System.Object]]]] @@ -39447,6 +41607,14 @@ class Microsoft.Graph.PlannerGroupRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerGroup]] + param plannerGroupToUpdate : Microsoft.Graph.PlannerGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerGroup]]]] + param plannerGroupToUpdate : Microsoft.Graph.PlannerGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerGroup],[System.Object]]]] @@ -39567,6 +41735,14 @@ class Microsoft.Graph.PlannerPlanDetailsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlanDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerPlanDetails]] + param plannerPlanDetailsToUpdate : Microsoft.Graph.PlannerPlanDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlanDetails]]]] + param plannerPlanDetailsToUpdate : Microsoft.Graph.PlannerPlanDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerPlanDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerPlanDetails],[System.Object]]]] @@ -39614,6 +41790,14 @@ class Microsoft.Graph.PlannerPlanRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlan]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerPlan]] + param plannerPlanToUpdate : Microsoft.Graph.PlannerPlan + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlan]]]] + param plannerPlanToUpdate : Microsoft.Graph.PlannerPlan + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerPlanRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerPlan],[System.Object]]]] @@ -39776,6 +41960,14 @@ class Microsoft.Graph.PlannerProgressTaskBoardTaskFormatRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]] + param plannerProgressTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerProgressTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]]]] + param plannerProgressTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerProgressTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerProgressTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat],[System.Object]]]] @@ -39823,6 +42015,14 @@ class Microsoft.Graph.PlannerRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Planner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Planner]] + param plannerToUpdate : Microsoft.Graph.Planner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Planner]]]] + param plannerToUpdate : Microsoft.Graph.Planner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Planner],[System.Object]]]] @@ -39903,6 +42103,14 @@ class Microsoft.Graph.PlannerTaskDetailsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTaskDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerTaskDetails]] + param plannerTaskDetailsToUpdate : Microsoft.Graph.PlannerTaskDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTaskDetails]]]] + param plannerTaskDetailsToUpdate : Microsoft.Graph.PlannerTaskDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerTaskDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerTaskDetails],[System.Object]]]] @@ -39950,6 +42158,14 @@ class Microsoft.Graph.PlannerTaskRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerTask]] + param plannerTaskToUpdate : Microsoft.Graph.PlannerTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTask]]]] + param plannerTaskToUpdate : Microsoft.Graph.PlannerTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerTask],[System.Object]]]] @@ -40129,6 +42345,14 @@ class Microsoft.Graph.PlannerUserRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerUser]] + param plannerUserToUpdate : Microsoft.Graph.PlannerUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerUser]]]] + param plannerUserToUpdate : Microsoft.Graph.PlannerUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerUser],[System.Object]]]] @@ -40234,6 +42458,14 @@ class Microsoft.Graph.PlayPromptOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlayPromptOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlayPromptOperation]] + param playPromptOperationToUpdate : Microsoft.Graph.PlayPromptOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlayPromptOperation]]]] + param playPromptOperationToUpdate : Microsoft.Graph.PlayPromptOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlayPromptOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlayPromptOperation],[System.Object]]]] @@ -40284,6 +42516,14 @@ class Microsoft.Graph.PolicyBaseRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PolicyBase]] + param policyBaseToUpdate : Microsoft.Graph.PolicyBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyBase]]]] + param policyBaseToUpdate : Microsoft.Graph.PolicyBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPolicyBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PolicyBase],[System.Object]]]] @@ -40617,6 +42857,14 @@ class Microsoft.Graph.PolicyRootRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PolicyRoot]] + param policyRootToUpdate : Microsoft.Graph.PolicyRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyRoot]]]] + param policyRootToUpdate : Microsoft.Graph.PolicyRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPolicyRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PolicyRoot],[System.Object]]]] @@ -41001,6 +43249,14 @@ class Microsoft.Graph.PostRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Post]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Post]] + param postToUpdate : Microsoft.Graph.Post + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Post]]]] + param postToUpdate : Microsoft.Graph.Post + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPostRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Post],[System.Object]]]] @@ -41123,6 +43379,14 @@ class Microsoft.Graph.PresenceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Presence]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Presence]] + param presenceToUpdate : Microsoft.Graph.Presence + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Presence]]]] + param presenceToUpdate : Microsoft.Graph.Presence + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPresenceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Presence],[System.Object]]]] @@ -41213,6 +43477,14 @@ class Microsoft.Graph.PrintConnectorRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintConnector]] + param printConnectorToUpdate : Microsoft.Graph.PrintConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintConnector]]]] + param printConnectorToUpdate : Microsoft.Graph.PrintConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintConnector],[System.Object]]]] @@ -41407,6 +43679,14 @@ class Microsoft.Graph.PrintDocumentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintDocument]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintDocument]] + param printDocumentToUpdate : Microsoft.Graph.PrintDocument + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintDocument]]]] + param printDocumentToUpdate : Microsoft.Graph.PrintDocument + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintDocumentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintDocument],[System.Object]]]] @@ -41536,6 +43816,14 @@ class Microsoft.Graph.PrinterBaseRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterBase]] + param printerBaseToUpdate : Microsoft.Graph.PrinterBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterBase]]]] + param printerBaseToUpdate : Microsoft.Graph.PrinterBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterBase],[System.Object]]]] @@ -41678,6 +43966,14 @@ class Microsoft.Graph.PrinterCreateOperationRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterCreateOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterCreateOperation]] + param printerCreateOperationToUpdate : Microsoft.Graph.PrinterCreateOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterCreateOperation]]]] + param printerCreateOperationToUpdate : Microsoft.Graph.PrinterCreateOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterCreateOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterCreateOperation],[System.Object]]]] @@ -41810,6 +44106,14 @@ class Microsoft.Graph.PrinterRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Printer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Printer]] + param printerToUpdate : Microsoft.Graph.Printer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Printer]]]] + param printerToUpdate : Microsoft.Graph.Printer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Printer],[System.Object]]]] @@ -42029,6 +44333,14 @@ class Microsoft.Graph.PrinterShareRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterShare]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterShare]] + param printerShareToUpdate : Microsoft.Graph.PrinterShare + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterShare]]]] + param printerShareToUpdate : Microsoft.Graph.PrinterShare + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterShareRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterShare],[System.Object]]]] @@ -42435,6 +44747,14 @@ class Microsoft.Graph.PrintJobRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintJob]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintJob]] + param printJobToUpdate : Microsoft.Graph.PrintJob + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintJob]]]] + param printJobToUpdate : Microsoft.Graph.PrintJob + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintJobRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintJob],[System.Object]]]] @@ -42581,6 +44901,14 @@ class Microsoft.Graph.PrintOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintOperation]] + param printOperationToUpdate : Microsoft.Graph.PrintOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintOperation]]]] + param printOperationToUpdate : Microsoft.Graph.PrintOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintOperation],[System.Object]]]] @@ -42752,6 +45080,14 @@ class Microsoft.Graph.PrintRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Print]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Print]] + param printToUpdate : Microsoft.Graph.Print + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Print]]]] + param printToUpdate : Microsoft.Graph.Print + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Print],[System.Object]]]] @@ -42810,6 +45146,14 @@ class Microsoft.Graph.PrintServiceEndpointRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintServiceEndpoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintServiceEndpoint]] + param printServiceEndpointToUpdate : Microsoft.Graph.PrintServiceEndpoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintServiceEndpoint]]]] + param printServiceEndpointToUpdate : Microsoft.Graph.PrintServiceEndpoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintServiceEndpointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintServiceEndpoint],[System.Object]]]] @@ -42912,6 +45256,14 @@ class Microsoft.Graph.PrintServiceRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintService]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintService]] + param printServiceToUpdate : Microsoft.Graph.PrintService + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintService]]]] + param printServiceToUpdate : Microsoft.Graph.PrintService + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintServiceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintService],[System.Object]]]] @@ -43104,6 +45456,14 @@ class Microsoft.Graph.PrintTaskDefinitionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTaskDefinition]] + param printTaskDefinitionToUpdate : Microsoft.Graph.PrintTaskDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskDefinition]]]] + param printTaskDefinitionToUpdate : Microsoft.Graph.PrintTaskDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTaskDefinition],[System.Object]]]] @@ -43310,6 +45670,14 @@ class Microsoft.Graph.PrintTaskRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTask]] + param printTaskToUpdate : Microsoft.Graph.PrintTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTask]]]] + param printTaskToUpdate : Microsoft.Graph.PrintTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTask],[System.Object]]]] @@ -43388,6 +45756,14 @@ class Microsoft.Graph.PrintTaskTriggerRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskTrigger]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTaskTrigger]] + param printTaskTriggerToUpdate : Microsoft.Graph.PrintTaskTrigger + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskTrigger]]]] + param printTaskTriggerToUpdate : Microsoft.Graph.PrintTaskTrigger + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskTriggerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTaskTrigger],[System.Object]]]] @@ -43491,6 +45867,14 @@ class Microsoft.Graph.PrintUsageByPrinterRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByPrinter]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsageByPrinter]] + param printUsageByPrinterToUpdate : Microsoft.Graph.PrintUsageByPrinter + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByPrinter]]]] + param printUsageByPrinterToUpdate : Microsoft.Graph.PrintUsageByPrinter + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageByPrinterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsageByPrinter],[System.Object]]]] @@ -43540,6 +45924,14 @@ class Microsoft.Graph.PrintUsageByUserRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsageByUser]] + param printUsageByUserToUpdate : Microsoft.Graph.PrintUsageByUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByUser]]]] + param printUsageByUserToUpdate : Microsoft.Graph.PrintUsageByUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageByUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsageByUser],[System.Object]]]] @@ -43587,6 +45979,14 @@ class Microsoft.Graph.PrintUsageRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsage]] + param printUsageToUpdate : Microsoft.Graph.PrintUsage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsage]]]] + param printUsageToUpdate : Microsoft.Graph.PrintUsage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsage],[System.Object]]]] @@ -43680,6 +46080,14 @@ class Microsoft.Graph.ProfilePhotoRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ProfilePhoto]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ProfilePhoto]] + param profilePhotoToUpdate : Microsoft.Graph.ProfilePhoto + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ProfilePhoto]]]] + param profilePhotoToUpdate : Microsoft.Graph.ProfilePhoto + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IProfilePhotoRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ProfilePhoto],[System.Object]]]] @@ -43830,6 +46238,14 @@ class Microsoft.Graph.RecordOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RecordOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RecordOperation]] + param recordOperationToUpdate : Microsoft.Graph.RecordOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RecordOperation]]]] + param recordOperationToUpdate : Microsoft.Graph.RecordOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRecordOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RecordOperation],[System.Object]]]] @@ -43896,6 +46312,14 @@ class Microsoft.Graph.ReferenceAttachmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReferenceAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ReferenceAttachment]] + param referenceAttachmentToUpdate : Microsoft.Graph.ReferenceAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReferenceAttachment]]]] + param referenceAttachmentToUpdate : Microsoft.Graph.ReferenceAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IReferenceAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ReferenceAttachment],[System.Object]]]] @@ -44000,6 +46424,14 @@ class Microsoft.Graph.RemoteAssistancePartnerRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RemoteAssistancePartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RemoteAssistancePartner]] + param remoteAssistancePartnerToUpdate : Microsoft.Graph.RemoteAssistancePartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RemoteAssistancePartner]]]] + param remoteAssistancePartnerToUpdate : Microsoft.Graph.RemoteAssistancePartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRemoteAssistancePartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RemoteAssistancePartner],[System.Object]]]] @@ -46560,6 +48992,14 @@ class Microsoft.Graph.ReportRootRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReportRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ReportRoot]] + param reportRootToUpdate : Microsoft.Graph.ReportRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReportRoot]]]] + param reportRootToUpdate : Microsoft.Graph.ReportRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IReportRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ReportRoot],[System.Object]]]] @@ -46913,6 +49353,14 @@ class Microsoft.Graph.ResourceOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ResourceOperation]] + param resourceOperationToUpdate : Microsoft.Graph.ResourceOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceOperation]]]] + param resourceOperationToUpdate : Microsoft.Graph.ResourceOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IResourceOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ResourceOperation],[System.Object]]]] @@ -46977,6 +49425,14 @@ class Microsoft.Graph.ResourceSpecificPermissionGrantRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]] + param resourceSpecificPermissionGrantToUpdate : Microsoft.Graph.ResourceSpecificPermissionGrant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]]]] + param resourceSpecificPermissionGrantToUpdate : Microsoft.Graph.ResourceSpecificPermissionGrant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IResourceSpecificPermissionGrantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ResourceSpecificPermissionGrant],[System.Object]]]] @@ -47042,6 +49498,14 @@ class Microsoft.Graph.RestrictedSignInRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RestrictedSignIn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RestrictedSignIn]] + param restrictedSignInToUpdate : Microsoft.Graph.RestrictedSignIn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RestrictedSignIn]]]] + param restrictedSignInToUpdate : Microsoft.Graph.RestrictedSignIn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRestrictedSignInRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RestrictedSignIn],[System.Object]]]] @@ -47106,6 +49570,14 @@ class Microsoft.Graph.RoleAssignmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoleAssignment]] + param roleAssignmentToUpdate : Microsoft.Graph.RoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleAssignment]]]] + param roleAssignmentToUpdate : Microsoft.Graph.RoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoleAssignment],[System.Object]]]] @@ -47181,6 +49653,14 @@ class Microsoft.Graph.RoleDefinitionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoleDefinition]] + param roleDefinitionToUpdate : Microsoft.Graph.RoleDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleDefinition]]]] + param roleDefinitionToUpdate : Microsoft.Graph.RoleDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoleDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoleDefinition],[System.Object]]]] @@ -47353,6 +49833,14 @@ class Microsoft.Graph.RoomListRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoomList]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoomList]] + param roomListToUpdate : Microsoft.Graph.RoomList + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoomList]]]] + param roomListToUpdate : Microsoft.Graph.RoomList + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoomListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoomList],[System.Object]]]] @@ -47456,6 +49944,14 @@ class Microsoft.Graph.RoomRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Room]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Room]] + param roomToUpdate : Microsoft.Graph.Room + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Room]]]] + param roomToUpdate : Microsoft.Graph.Room + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoomRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Room],[System.Object]]]] @@ -47573,6 +50069,14 @@ class Microsoft.Graph.ScheduleChangeRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScheduleChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ScheduleChangeRequestObject]] + param scheduleChangeRequestObjectToUpdate : Microsoft.Graph.ScheduleChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScheduleChangeRequestObject]]]] + param scheduleChangeRequestObjectToUpdate : Microsoft.Graph.ScheduleChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScheduleChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ScheduleChangeRequestObject],[System.Object]]]] @@ -47814,6 +50318,14 @@ class Microsoft.Graph.ScheduleRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Schedule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Schedule]] + param scheduleToUpdate : Microsoft.Graph.Schedule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Schedule]]]] + param scheduleToUpdate : Microsoft.Graph.Schedule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScheduleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Schedule],[System.Object]]]] @@ -48228,6 +50740,14 @@ class Microsoft.Graph.SchedulingGroupRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchedulingGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SchedulingGroup]] + param schedulingGroupToUpdate : Microsoft.Graph.SchedulingGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchedulingGroup]]]] + param schedulingGroupToUpdate : Microsoft.Graph.SchedulingGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISchedulingGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SchedulingGroup],[System.Object]]]] @@ -48281,6 +50801,14 @@ class Microsoft.Graph.SchemaExtensionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchemaExtension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SchemaExtension]] + param schemaExtensionToUpdate : Microsoft.Graph.SchemaExtension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchemaExtension]]]] + param schemaExtensionToUpdate : Microsoft.Graph.SchemaExtension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISchemaExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SchemaExtension],[System.Object]]]] @@ -48332,6 +50860,14 @@ class Microsoft.Graph.ScopedRoleMembershipRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScopedRoleMembership]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ScopedRoleMembership]] + param scopedRoleMembershipToUpdate : Microsoft.Graph.ScopedRoleMembership + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScopedRoleMembership]]]] + param scopedRoleMembershipToUpdate : Microsoft.Graph.ScopedRoleMembership + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScopedRoleMembershipRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ScopedRoleMembership],[System.Object]]]] @@ -48425,6 +50961,14 @@ class Microsoft.Graph.SearchEntityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SearchEntity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SearchEntity]] + param searchEntityToUpdate : Microsoft.Graph.SearchEntity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SearchEntity]]]] + param searchEntityToUpdate : Microsoft.Graph.SearchEntity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISearchEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SearchEntity],[System.Object]]]] @@ -48519,6 +51063,14 @@ class Microsoft.Graph.SectionGroupRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SectionGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SectionGroup]] + param sectionGroupToUpdate : Microsoft.Graph.SectionGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SectionGroup]]]] + param sectionGroupToUpdate : Microsoft.Graph.SectionGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISectionGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SectionGroup],[System.Object]]]] @@ -48716,6 +51268,14 @@ class Microsoft.Graph.SecureScoreControlProfileRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScoreControlProfile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SecureScoreControlProfile]] + param secureScoreControlProfileToUpdate : Microsoft.Graph.SecureScoreControlProfile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScoreControlProfile]]]] + param secureScoreControlProfileToUpdate : Microsoft.Graph.SecureScoreControlProfile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecureScoreControlProfileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SecureScoreControlProfile],[System.Object]]]] @@ -48771,6 +51331,14 @@ class Microsoft.Graph.SecureScoreRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScore]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SecureScore]] + param secureScoreToUpdate : Microsoft.Graph.SecureScore + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScore]]]] + param secureScoreToUpdate : Microsoft.Graph.SecureScore + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecureScoreRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SecureScore],[System.Object]]]] @@ -48877,6 +51445,14 @@ class Microsoft.Graph.SecurityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Security]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Security]] + param securityToUpdate : Microsoft.Graph.Security + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Security]]]] + param securityToUpdate : Microsoft.Graph.Security + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecurityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Security],[System.Object]]]] @@ -49056,6 +51632,14 @@ class Microsoft.Graph.CallRecords.SegmentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Segment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.Segment]] + param segmentToUpdate : Microsoft.Graph.CallRecords.Segment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Segment]]]] + param segmentToUpdate : Microsoft.Graph.CallRecords.Segment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ISegmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.Segment],[System.Object]]]] @@ -49946,6 +52530,14 @@ class Microsoft.Graph.ServicePrincipalRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ServicePrincipal]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ServicePrincipal]] + param servicePrincipalToUpdate : Microsoft.Graph.ServicePrincipal + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ServicePrincipal]]]] + param servicePrincipalToUpdate : Microsoft.Graph.ServicePrincipal + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IServicePrincipalRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ServicePrincipal],[System.Object]]]] @@ -50269,6 +52861,14 @@ class Microsoft.Graph.CallRecords.SessionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Session]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.Session]] + param sessionToUpdate : Microsoft.Graph.CallRecords.Session + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Session]]]] + param sessionToUpdate : Microsoft.Graph.CallRecords.Session + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ISessionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.Session],[System.Object]]]] @@ -50387,6 +52987,14 @@ class Microsoft.Graph.SettingStateDeviceSummaryRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SettingStateDeviceSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SettingStateDeviceSummary]] + param settingStateDeviceSummaryToUpdate : Microsoft.Graph.SettingStateDeviceSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SettingStateDeviceSummary]]]] + param settingStateDeviceSummaryToUpdate : Microsoft.Graph.SettingStateDeviceSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISettingStateDeviceSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SettingStateDeviceSummary],[System.Object]]]] @@ -50517,6 +53125,14 @@ class Microsoft.Graph.SharedDriveItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedDriveItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedDriveItem]] + param sharedDriveItemToUpdate : Microsoft.Graph.SharedDriveItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedDriveItem]]]] + param sharedDriveItemToUpdate : Microsoft.Graph.SharedDriveItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedDriveItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedDriveItem],[System.Object]]]] @@ -50578,6 +53194,14 @@ class Microsoft.Graph.SharedInsightRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedInsight]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedInsight]] + param sharedInsightToUpdate : Microsoft.Graph.SharedInsight + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedInsight]]]] + param sharedInsightToUpdate : Microsoft.Graph.SharedInsight + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedInsightRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedInsight],[System.Object]]]] @@ -50647,6 +53271,14 @@ class Microsoft.Graph.SharedPCConfigurationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedPCConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedPCConfiguration]] + param sharedPCConfigurationToUpdate : Microsoft.Graph.SharedPCConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedPCConfiguration]]]] + param sharedPCConfigurationToUpdate : Microsoft.Graph.SharedPCConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedPCConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedPCConfiguration],[System.Object]]]] @@ -50754,6 +53386,14 @@ class Microsoft.Graph.ShiftPreferencesRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ShiftPreferences]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ShiftPreferences]] + param shiftPreferencesToUpdate : Microsoft.Graph.ShiftPreferences + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ShiftPreferences]]]] + param shiftPreferencesToUpdate : Microsoft.Graph.ShiftPreferences + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IShiftPreferencesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ShiftPreferences],[System.Object]]]] @@ -50801,6 +53441,14 @@ class Microsoft.Graph.ShiftRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Shift]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Shift]] + param shiftToUpdate : Microsoft.Graph.Shift + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Shift]]]] + param shiftToUpdate : Microsoft.Graph.Shift + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IShiftRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Shift],[System.Object]]]] @@ -50882,6 +53530,14 @@ class Microsoft.Graph.SignInRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SignIn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SignIn]] + param signInToUpdate : Microsoft.Graph.SignIn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SignIn]]]] + param signInToUpdate : Microsoft.Graph.SignIn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISignInRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SignIn],[System.Object]]]] @@ -50937,6 +53593,14 @@ class Microsoft.Graph.SingleValueLegacyExtendedPropertyRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]] + param singleValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.SingleValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]]]] + param singleValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.SingleValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISingleValueLegacyExtendedPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SingleValueLegacyExtendedProperty],[System.Object]]]] @@ -51524,6 +54188,14 @@ class Microsoft.Graph.SiteRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Site]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Site]] + param siteToUpdate : Microsoft.Graph.Site + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Site]]]] + param siteToUpdate : Microsoft.Graph.Site + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISiteRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Site],[System.Object]]]] @@ -51745,6 +54417,14 @@ class Microsoft.Graph.SoftwareUpdateStatusSummaryRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]] + param softwareUpdateStatusSummaryToUpdate : Microsoft.Graph.SoftwareUpdateStatusSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]]]] + param softwareUpdateStatusSummaryToUpdate : Microsoft.Graph.SoftwareUpdateStatusSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISoftwareUpdateStatusSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SoftwareUpdateStatusSummary],[System.Object]]]] @@ -51927,6 +54607,14 @@ class Microsoft.Graph.StsPolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.StsPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.StsPolicy]] + param stsPolicyToUpdate : Microsoft.Graph.StsPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.StsPolicy]]]] + param stsPolicyToUpdate : Microsoft.Graph.StsPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IStsPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.StsPolicy],[System.Object]]]] @@ -51983,6 +54671,14 @@ class Microsoft.Graph.SubscribedSkuRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribedSku]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SubscribedSku]] + param subscribedSkuToUpdate : Microsoft.Graph.SubscribedSku + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribedSku]]]] + param subscribedSkuToUpdate : Microsoft.Graph.SubscribedSku + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscribedSkuRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SubscribedSku],[System.Object]]]] @@ -52031,6 +54727,14 @@ class Microsoft.Graph.SubscribeToToneOperationRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribeToToneOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SubscribeToToneOperation]] + param subscribeToToneOperationToUpdate : Microsoft.Graph.SubscribeToToneOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribeToToneOperation]]]] + param subscribeToToneOperationToUpdate : Microsoft.Graph.SubscribeToToneOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscribeToToneOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SubscribeToToneOperation],[System.Object]]]] @@ -52091,6 +54795,14 @@ class Microsoft.Graph.SubscriptionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Subscription]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Subscription]] + param subscriptionToUpdate : Microsoft.Graph.Subscription + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Subscription]]]] + param subscriptionToUpdate : Microsoft.Graph.Subscription + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscriptionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Subscription],[System.Object]]]] @@ -52140,6 +54852,14 @@ class Microsoft.Graph.SwapShiftsChangeRequestRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]] + param swapShiftsChangeRequestObjectToUpdate : Microsoft.Graph.SwapShiftsChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]]]] + param swapShiftsChangeRequestObjectToUpdate : Microsoft.Graph.SwapShiftsChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISwapShiftsChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SwapShiftsChangeRequestObject],[System.Object]]]] @@ -52323,6 +55043,14 @@ class Microsoft.Graph.TargetedManagedAppConfigurationRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppConfiguration]] + param targetedManagedAppConfigurationToUpdate : Microsoft.Graph.TargetedManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppConfiguration]]]] + param targetedManagedAppConfigurationToUpdate : Microsoft.Graph.TargetedManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppConfiguration],[System.Object]]]] @@ -52398,6 +55126,14 @@ class Microsoft.Graph.TargetedManagedAppPolicyAssignmentRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]] + param targetedManagedAppPolicyAssignmentToUpdate : Microsoft.Graph.TargetedManagedAppPolicyAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]]]] + param targetedManagedAppPolicyAssignmentToUpdate : Microsoft.Graph.TargetedManagedAppPolicyAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppPolicyAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppPolicyAssignment],[System.Object]]]] @@ -52520,6 +55256,14 @@ class Microsoft.Graph.TargetedManagedAppProtectionRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppProtection]] + param targetedManagedAppProtectionToUpdate : Microsoft.Graph.TargetedManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppProtection]]]] + param targetedManagedAppProtectionToUpdate : Microsoft.Graph.TargetedManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppProtection],[System.Object]]]] @@ -52930,10 +55674,11 @@ class Microsoft.Graph.TeamRequest : Microsoft.Graph.BaseRequest param cancellationToken : System.Threading.CancellationToken method PutAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Team]] - param teamToCreate : Microsoft.Graph.Team - method PutAsync - return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Team]] - param teamToCreate : Microsoft.Graph.Team + param teamToUpdate : Microsoft.Graph.Team + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Team]]]] + param teamToUpdate : Microsoft.Graph.Team param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamRequest @@ -53094,6 +55839,14 @@ class Microsoft.Graph.TeamsAppDefinitionRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAppDefinition]] + param teamsAppDefinitionToUpdate : Microsoft.Graph.TeamsAppDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppDefinition]]]] + param teamsAppDefinitionToUpdate : Microsoft.Graph.TeamsAppDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAppDefinition],[System.Object]]]] @@ -53193,6 +55946,14 @@ class Microsoft.Graph.TeamsAppInstallationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppInstallation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAppInstallation]] + param teamsAppInstallationToUpdate : Microsoft.Graph.TeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppInstallation]]]] + param teamsAppInstallationToUpdate : Microsoft.Graph.TeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppInstallationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAppInstallation],[System.Object]]]] @@ -53279,6 +56040,14 @@ class Microsoft.Graph.TeamsAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsApp]] + param teamsAppToUpdate : Microsoft.Graph.TeamsApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsApp]]]] + param teamsAppToUpdate : Microsoft.Graph.TeamsApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsApp],[System.Object]]]] @@ -53384,6 +56153,14 @@ class Microsoft.Graph.TeamsAsyncOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAsyncOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAsyncOperation]] + param teamsAsyncOperationToUpdate : Microsoft.Graph.TeamsAsyncOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAsyncOperation]]]] + param teamsAsyncOperationToUpdate : Microsoft.Graph.TeamsAsyncOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAsyncOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAsyncOperation],[System.Object]]]] @@ -53444,6 +56221,14 @@ class Microsoft.Graph.TeamsTabRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTab]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsTab]] + param teamsTabToUpdate : Microsoft.Graph.TeamsTab + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTab]]]] + param teamsTabToUpdate : Microsoft.Graph.TeamsTab + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsTabRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsTab],[System.Object]]]] @@ -53514,6 +56299,14 @@ class Microsoft.Graph.TeamsTemplateRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsTemplate]] + param teamsTemplateToUpdate : Microsoft.Graph.TeamsTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTemplate]]]] + param teamsTemplateToUpdate : Microsoft.Graph.TeamsTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsTemplate],[System.Object]]]] @@ -53626,6 +56419,14 @@ class Microsoft.Graph.TeamworkBotRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamworkBot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamworkBot]] + param teamworkBotToUpdate : Microsoft.Graph.TeamworkBot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamworkBot]]]] + param teamworkBotToUpdate : Microsoft.Graph.TeamworkBot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamworkBotRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamworkBot],[System.Object]]]] @@ -53673,6 +56474,14 @@ class Microsoft.Graph.TeamworkRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Teamwork]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Teamwork]] + param teamworkToUpdate : Microsoft.Graph.Teamwork + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Teamwork]]]] + param teamworkToUpdate : Microsoft.Graph.Teamwork + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamworkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Teamwork],[System.Object]]]] @@ -53782,6 +56591,14 @@ class Microsoft.Graph.TelecomExpenseManagementPartnerRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TelecomExpenseManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TelecomExpenseManagementPartner]] + param telecomExpenseManagementPartnerToUpdate : Microsoft.Graph.TelecomExpenseManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TelecomExpenseManagementPartner]]]] + param telecomExpenseManagementPartnerToUpdate : Microsoft.Graph.TelecomExpenseManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITelecomExpenseManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TelecomExpenseManagementPartner],[System.Object]]]] @@ -53945,6 +56762,14 @@ class Microsoft.Graph.TermsAndConditionsAcceptanceStatusRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]] + param termsAndConditionsAcceptanceStatusToUpdate : Microsoft.Graph.TermsAndConditionsAcceptanceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]]]] + param termsAndConditionsAcceptanceStatusToUpdate : Microsoft.Graph.TermsAndConditionsAcceptanceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsAcceptanceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus],[System.Object]]]] @@ -53995,6 +56820,14 @@ class Microsoft.Graph.TermsAndConditionsAssignmentRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditionsAssignment]] + param termsAndConditionsAssignmentToUpdate : Microsoft.Graph.TermsAndConditionsAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAssignment]]]] + param termsAndConditionsAssignmentToUpdate : Microsoft.Graph.TermsAndConditionsAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditionsAssignment],[System.Object]]]] @@ -54118,6 +56951,14 @@ class Microsoft.Graph.TermsAndConditionsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditions]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditions]] + param termsAndConditionsToUpdate : Microsoft.Graph.TermsAndConditions + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditions]]]] + param termsAndConditionsToUpdate : Microsoft.Graph.TermsAndConditions + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditions],[System.Object]]]] @@ -54333,6 +57174,14 @@ class Microsoft.Graph.TermsOfUseContainerRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsOfUseContainer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsOfUseContainer]] + param termsOfUseContainerToUpdate : Microsoft.Graph.TermsOfUseContainer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsOfUseContainer]]]] + param termsOfUseContainerToUpdate : Microsoft.Graph.TermsOfUseContainer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsOfUseContainerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsOfUseContainer],[System.Object]]]] @@ -54399,6 +57248,14 @@ class Microsoft.Graph.ThreatAssessmentRequestRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThreatAssessmentRequestObject]] + param threatAssessmentRequestObjectToUpdate : Microsoft.Graph.ThreatAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentRequestObject]]]] + param threatAssessmentRequestObjectToUpdate : Microsoft.Graph.ThreatAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThreatAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThreatAssessmentRequestObject],[System.Object]]]] @@ -54506,6 +57363,14 @@ class Microsoft.Graph.ThreatAssessmentResultRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentResult]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThreatAssessmentResult]] + param threatAssessmentResultToUpdate : Microsoft.Graph.ThreatAssessmentResult + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentResult]]]] + param threatAssessmentResultToUpdate : Microsoft.Graph.ThreatAssessmentResult + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThreatAssessmentResultRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThreatAssessmentResult],[System.Object]]]] @@ -54584,6 +57449,14 @@ class Microsoft.Graph.ThumbnailRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Thumbnail]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Thumbnail]] + param thumbnailToUpdate : Microsoft.Graph.Thumbnail + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Thumbnail]]]] + param thumbnailToUpdate : Microsoft.Graph.Thumbnail + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThumbnailRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Thumbnail],[System.Object]]]] @@ -54638,6 +57511,14 @@ class Microsoft.Graph.ThumbnailSetRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThumbnailSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThumbnailSet]] + param thumbnailSetToUpdate : Microsoft.Graph.ThumbnailSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThumbnailSet]]]] + param thumbnailSetToUpdate : Microsoft.Graph.ThumbnailSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThumbnailSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThumbnailSet],[System.Object]]]] @@ -54701,6 +57582,14 @@ class Microsoft.Graph.TimeOffReasonRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffReason]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOffReason]] + param timeOffReasonToUpdate : Microsoft.Graph.TimeOffReason + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffReason]]]] + param timeOffReasonToUpdate : Microsoft.Graph.TimeOffReason + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffReasonRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOffReason],[System.Object]]]] @@ -54748,6 +57637,14 @@ class Microsoft.Graph.TimeOffRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOff]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOff]] + param timeOffToUpdate : Microsoft.Graph.TimeOff + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOff]]]] + param timeOffToUpdate : Microsoft.Graph.TimeOff + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOff],[System.Object]]]] @@ -54799,6 +57696,14 @@ class Microsoft.Graph.TimeOffRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOffRequestObject]] + param timeOffRequestObjectToUpdate : Microsoft.Graph.TimeOffRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffRequestObject]]]] + param timeOffRequestObjectToUpdate : Microsoft.Graph.TimeOffRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOffRequestObject],[System.Object]]]] @@ -54924,6 +57829,14 @@ class Microsoft.Graph.TodoRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Todo]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Todo]] + param todoToUpdate : Microsoft.Graph.Todo + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Todo]]]] + param todoToUpdate : Microsoft.Graph.Todo + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Todo],[System.Object]]]] @@ -55229,6 +58142,14 @@ class Microsoft.Graph.TodoTaskListRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTaskList]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TodoTaskList]] + param todoTaskListToUpdate : Microsoft.Graph.TodoTaskList + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTaskList]]]] + param todoTaskListToUpdate : Microsoft.Graph.TodoTaskList + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoTaskListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TodoTaskList],[System.Object]]]] @@ -55335,6 +58256,14 @@ class Microsoft.Graph.TodoTaskRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TodoTask]] + param todoTaskToUpdate : Microsoft.Graph.TodoTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTask]]]] + param todoTaskToUpdate : Microsoft.Graph.TodoTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TodoTask],[System.Object]]]] @@ -55406,6 +58335,14 @@ class Microsoft.Graph.TokenIssuancePolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenIssuancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TokenIssuancePolicy]] + param tokenIssuancePolicyToUpdate : Microsoft.Graph.TokenIssuancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenIssuancePolicy]]]] + param tokenIssuancePolicyToUpdate : Microsoft.Graph.TokenIssuancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITokenIssuancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TokenIssuancePolicy],[System.Object]]]] @@ -55523,6 +58460,14 @@ class Microsoft.Graph.TokenLifetimePolicyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenLifetimePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TokenLifetimePolicy]] + param tokenLifetimePolicyToUpdate : Microsoft.Graph.TokenLifetimePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenLifetimePolicy]]]] + param tokenLifetimePolicyToUpdate : Microsoft.Graph.TokenLifetimePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITokenLifetimePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TokenLifetimePolicy],[System.Object]]]] @@ -55631,6 +58576,14 @@ class Microsoft.Graph.TrendingRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Trending]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Trending]] + param trendingToUpdate : Microsoft.Graph.Trending + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Trending]]]] + param trendingToUpdate : Microsoft.Graph.Trending + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITrendingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Trending],[System.Object]]]] @@ -55680,6 +58633,14 @@ class Microsoft.Graph.UnmuteParticipantOperationRequest : Microsoft.Graph.BaseRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UnmuteParticipantOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UnmuteParticipantOperation]] + param unmuteParticipantOperationToUpdate : Microsoft.Graph.UnmuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UnmuteParticipantOperation]]]] + param unmuteParticipantOperationToUpdate : Microsoft.Graph.UnmuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUnmuteParticipantOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UnmuteParticipantOperation],[System.Object]]]] @@ -55728,6 +58689,14 @@ class Microsoft.Graph.UpdateRecordingStatusOperationRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UpdateRecordingStatusOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UpdateRecordingStatusOperation]] + param updateRecordingStatusOperationToUpdate : Microsoft.Graph.UpdateRecordingStatusOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UpdateRecordingStatusOperation]]]] + param updateRecordingStatusOperationToUpdate : Microsoft.Graph.UpdateRecordingStatusOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUpdateRecordingStatusOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UpdateRecordingStatusOperation],[System.Object]]]] @@ -55826,6 +58795,14 @@ class Microsoft.Graph.UrlAssessmentRequestRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UrlAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UrlAssessmentRequestObject]] + param urlAssessmentRequestObjectToUpdate : Microsoft.Graph.UrlAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UrlAssessmentRequestObject]]]] + param urlAssessmentRequestObjectToUpdate : Microsoft.Graph.UrlAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUrlAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UrlAssessmentRequestObject],[System.Object]]]] @@ -55883,6 +58860,14 @@ class Microsoft.Graph.UsedInsightRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UsedInsight]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UsedInsight]] + param usedInsightToUpdate : Microsoft.Graph.UsedInsight + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UsedInsight]]]] + param usedInsightToUpdate : Microsoft.Graph.UsedInsight + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUsedInsightRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UsedInsight],[System.Object]]]] @@ -56243,6 +59228,14 @@ class Microsoft.Graph.UserActivityRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserActivity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserActivity]] + param userActivityToUpdate : Microsoft.Graph.UserActivity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserActivity]]]] + param userActivityToUpdate : Microsoft.Graph.UserActivity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserActivityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserActivity],[System.Object]]]] @@ -57449,6 +60442,14 @@ class Microsoft.Graph.UserInstallStateSummaryRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserInstallStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserInstallStateSummary]] + param userInstallStateSummaryToUpdate : Microsoft.Graph.UserInstallStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserInstallStateSummary]]]] + param userInstallStateSummaryToUpdate : Microsoft.Graph.UserInstallStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserInstallStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserInstallStateSummary],[System.Object]]]] @@ -58417,6 +61418,14 @@ class Microsoft.Graph.UserRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.User]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.User]] + param userToUpdate : Microsoft.Graph.User + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.User]]]] + param userToUpdate : Microsoft.Graph.User + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.User],[System.Object]]]] @@ -58634,6 +61643,14 @@ class Microsoft.Graph.UserScopeTeamsAppInstallationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]] + param userScopeTeamsAppInstallationToUpdate : Microsoft.Graph.UserScopeTeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]]]] + param userScopeTeamsAppInstallationToUpdate : Microsoft.Graph.UserScopeTeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserScopeTeamsAppInstallationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserScopeTeamsAppInstallation],[System.Object]]]] @@ -58721,6 +61738,14 @@ class Microsoft.Graph.UserSettingsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserSettings]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserSettings]] + param userSettingsToUpdate : Microsoft.Graph.UserSettings + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserSettings]]]] + param userSettingsToUpdate : Microsoft.Graph.UserSettings + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserSettingsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserSettings],[System.Object]]]] @@ -58826,6 +61851,14 @@ class Microsoft.Graph.UserTeamworkRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserTeamwork]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserTeamwork]] + param userTeamworkToUpdate : Microsoft.Graph.UserTeamwork + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserTeamwork]]]] + param userTeamworkToUpdate : Microsoft.Graph.UserTeamwork + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserTeamworkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserTeamwork],[System.Object]]]] @@ -59088,6 +62121,14 @@ class Microsoft.Graph.VppTokenRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.VppToken]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.VppToken]] + param vppTokenToUpdate : Microsoft.Graph.VppToken + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.VppToken]]]] + param vppTokenToUpdate : Microsoft.Graph.VppToken + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IVppTokenRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.VppToken],[System.Object]]]] @@ -59167,6 +62208,14 @@ class Microsoft.Graph.WebAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WebApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WebApp]] + param webAppToUpdate : Microsoft.Graph.WebApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WebApp]]]] + param webAppToUpdate : Microsoft.Graph.WebApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWebAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WebApp],[System.Object]]]] @@ -59280,6 +62329,14 @@ class Microsoft.Graph.Win32LobAppRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Win32LobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Win32LobApp]] + param win32LobAppToUpdate : Microsoft.Graph.Win32LobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Win32LobApp]]]] + param win32LobAppToUpdate : Microsoft.Graph.Win32LobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWin32LobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Win32LobApp],[System.Object]]]] @@ -59362,6 +62419,14 @@ class Microsoft.Graph.Windows10CompliancePolicyRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10CompliancePolicy]] + param windows10CompliancePolicyToUpdate : Microsoft.Graph.Windows10CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CompliancePolicy]]]] + param windows10CompliancePolicyToUpdate : Microsoft.Graph.Windows10CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10CompliancePolicy],[System.Object]]]] @@ -59411,6 +62476,14 @@ class Microsoft.Graph.Windows10CustomConfigurationRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10CustomConfiguration]] + param windows10CustomConfigurationToUpdate : Microsoft.Graph.Windows10CustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CustomConfiguration]]]] + param windows10CustomConfigurationToUpdate : Microsoft.Graph.Windows10CustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10CustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10CustomConfiguration],[System.Object]]]] @@ -59495,6 +62568,14 @@ class Microsoft.Graph.Windows10EndpointProtectionConfigurationRequest : Microsof method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]] + param windows10EndpointProtectionConfigurationToUpdate : Microsoft.Graph.Windows10EndpointProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]]]] + param windows10EndpointProtectionConfigurationToUpdate : Microsoft.Graph.Windows10EndpointProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10EndpointProtectionConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10EndpointProtectionConfiguration],[System.Object]]]] @@ -59544,6 +62625,14 @@ class Microsoft.Graph.Windows10EnterpriseModernAppManagementConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]] + param windows10EnterpriseModernAppManagementConfigurationToUpdate : Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]]]] + param windows10EnterpriseModernAppManagementConfigurationToUpdate : Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10EnterpriseModernAppManagementConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration],[System.Object]]]] @@ -59793,6 +62882,14 @@ class Microsoft.Graph.Windows10GeneralConfigurationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10GeneralConfiguration]] + param windows10GeneralConfigurationToUpdate : Microsoft.Graph.Windows10GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10GeneralConfiguration]]]] + param windows10GeneralConfigurationToUpdate : Microsoft.Graph.Windows10GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10GeneralConfiguration],[System.Object]]]] @@ -59857,6 +62954,14 @@ class Microsoft.Graph.Windows10MobileCompliancePolicyRequest : Microsoft.Graph.B method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]] + param windows10MobileCompliancePolicyToUpdate : Microsoft.Graph.Windows10MobileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]]]] + param windows10MobileCompliancePolicyToUpdate : Microsoft.Graph.Windows10MobileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10MobileCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10MobileCompliancePolicy],[System.Object]]]] @@ -59916,6 +63021,14 @@ class Microsoft.Graph.Windows10SecureAssessmentConfigurationRequest : Microsoft. method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]] + param windows10SecureAssessmentConfigurationToUpdate : Microsoft.Graph.Windows10SecureAssessmentConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]]]] + param windows10SecureAssessmentConfigurationToUpdate : Microsoft.Graph.Windows10SecureAssessmentConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10SecureAssessmentConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10SecureAssessmentConfiguration],[System.Object]]]] @@ -59984,6 +63097,14 @@ class Microsoft.Graph.Windows10TeamGeneralConfigurationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]] + param windows10TeamGeneralConfigurationToUpdate : Microsoft.Graph.Windows10TeamGeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]]]] + param windows10TeamGeneralConfigurationToUpdate : Microsoft.Graph.Windows10TeamGeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10TeamGeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10TeamGeneralConfiguration],[System.Object]]]] @@ -60043,6 +63164,14 @@ class Microsoft.Graph.Windows81CompliancePolicyRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows81CompliancePolicy]] + param windows81CompliancePolicyToUpdate : Microsoft.Graph.Windows81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81CompliancePolicy]]]] + param windows81CompliancePolicyToUpdate : Microsoft.Graph.Windows81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows81CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows81CompliancePolicy],[System.Object]]]] @@ -60124,6 +63253,14 @@ class Microsoft.Graph.Windows81GeneralConfigurationRequest : Microsoft.Graph.Bas method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows81GeneralConfiguration]] + param windows81GeneralConfigurationToUpdate : Microsoft.Graph.Windows81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81GeneralConfiguration]]]] + param windows81GeneralConfigurationToUpdate : Microsoft.Graph.Windows81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows81GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows81GeneralConfiguration],[System.Object]]]] @@ -60174,6 +63311,14 @@ class Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfigurationReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]] + param windowsDefenderAdvancedThreatProtectionConfigurationToUpdate : Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]]]] + param windowsDefenderAdvancedThreatProtectionConfigurationToUpdate : Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsDefenderAdvancedThreatProtectionConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration],[System.Object]]]] @@ -60252,6 +63397,14 @@ class Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethodRequest : Micro method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]] + param windowsHelloForBusinessAuthenticationMethodToUpdate : Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]]]] + param windowsHelloForBusinessAuthenticationMethodToUpdate : Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsHelloForBusinessAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod],[System.Object]]]] @@ -60338,6 +63491,14 @@ class Microsoft.Graph.WindowsInformationProtectionAppLearningSummaryRequest : Mi method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]] + param windowsInformationProtectionAppLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLearningSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]]]] + param windowsInformationProtectionAppLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLearningSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionAppLearningSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary],[System.Object]]]] @@ -60390,6 +63551,14 @@ class Microsoft.Graph.WindowsInformationProtectionAppLockerFileRequest : Microso method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]] + param windowsInformationProtectionAppLockerFileToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLockerFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]]]] + param windowsInformationProtectionAppLockerFileToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLockerFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionAppLockerFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile],[System.Object]]]] @@ -60583,6 +63752,14 @@ class Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]] + param windowsInformationProtectionNetworkLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]]]] + param windowsInformationProtectionNetworkLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionNetworkLearningSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary],[System.Object]]]] @@ -60643,6 +63820,14 @@ class Microsoft.Graph.WindowsInformationProtectionPolicyRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]] + param windowsInformationProtectionPolicyToUpdate : Microsoft.Graph.WindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]]]] + param windowsInformationProtectionPolicyToUpdate : Microsoft.Graph.WindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionPolicy],[System.Object]]]] @@ -60750,6 +63935,14 @@ class Microsoft.Graph.WindowsInformationProtectionRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtection]] + param windowsInformationProtectionToUpdate : Microsoft.Graph.WindowsInformationProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtection]]]] + param windowsInformationProtectionToUpdate : Microsoft.Graph.WindowsInformationProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtection],[System.Object]]]] @@ -60820,6 +64013,14 @@ class Microsoft.Graph.WindowsMobileMSIRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsMobileMSI]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsMobileMSI]] + param windowsMobileMSIToUpdate : Microsoft.Graph.WindowsMobileMSI + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsMobileMSI]]]] + param windowsMobileMSIToUpdate : Microsoft.Graph.WindowsMobileMSI + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsMobileMSIRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsMobileMSI],[System.Object]]]] @@ -60879,6 +64080,14 @@ class Microsoft.Graph.WindowsPhone81CompliancePolicyRequest : Microsoft.Graph.Ba method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]] + param windowsPhone81CompliancePolicyToUpdate : Microsoft.Graph.WindowsPhone81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]]]] + param windowsPhone81CompliancePolicyToUpdate : Microsoft.Graph.WindowsPhone81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81CompliancePolicy],[System.Object]]]] @@ -60928,6 +64137,14 @@ class Microsoft.Graph.WindowsPhone81CustomConfigurationRequest : Microsoft.Graph method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]] + param windowsPhone81CustomConfigurationToUpdate : Microsoft.Graph.WindowsPhone81CustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]]]] + param windowsPhone81CustomConfigurationToUpdate : Microsoft.Graph.WindowsPhone81CustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81CustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81CustomConfiguration],[System.Object]]]] @@ -61005,6 +64222,14 @@ class Microsoft.Graph.WindowsPhone81GeneralConfigurationRequest : Microsoft.Grap method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]] + param windowsPhone81GeneralConfigurationToUpdate : Microsoft.Graph.WindowsPhone81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]]]] + param windowsPhone81GeneralConfigurationToUpdate : Microsoft.Graph.WindowsPhone81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81GeneralConfiguration],[System.Object]]]] @@ -61061,6 +64286,14 @@ class Microsoft.Graph.WindowsUniversalAppXRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUniversalAppX]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsUniversalAppX]] + param windowsUniversalAppXToUpdate : Microsoft.Graph.WindowsUniversalAppX + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUniversalAppX]]]] + param windowsUniversalAppXToUpdate : Microsoft.Graph.WindowsUniversalAppX + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsUniversalAppXRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsUniversalAppX],[System.Object]]]] @@ -61125,6 +64358,14 @@ class Microsoft.Graph.WindowsUpdateForBusinessConfigurationRequest : Microsoft.G method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]] + param windowsUpdateForBusinessConfigurationToUpdate : Microsoft.Graph.WindowsUpdateForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]]]] + param windowsUpdateForBusinessConfigurationToUpdate : Microsoft.Graph.WindowsUpdateForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsUpdateForBusinessConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration],[System.Object]]]] @@ -61205,6 +64446,14 @@ class Microsoft.Graph.WorkbookApplicationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookApplication]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookApplication]] + param workbookApplicationToUpdate : Microsoft.Graph.WorkbookApplication + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookApplication]]]] + param workbookApplicationToUpdate : Microsoft.Graph.WorkbookApplication + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookApplicationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookApplication],[System.Object]]]] @@ -61290,6 +64539,14 @@ class Microsoft.Graph.WorkbookChartAreaFormatRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAreaFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAreaFormat]] + param workbookChartAreaFormatToUpdate : Microsoft.Graph.WorkbookChartAreaFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAreaFormat]]]] + param workbookChartAreaFormatToUpdate : Microsoft.Graph.WorkbookChartAreaFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAreaFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAreaFormat],[System.Object]]]] @@ -61343,6 +64600,14 @@ class Microsoft.Graph.WorkbookChartAxesRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxes]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxes]] + param workbookChartAxesToUpdate : Microsoft.Graph.WorkbookChartAxes + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxes]]]] + param workbookChartAxesToUpdate : Microsoft.Graph.WorkbookChartAxes + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxes],[System.Object]]]] @@ -61405,6 +64670,14 @@ class Microsoft.Graph.WorkbookChartAxisFormatRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisFormat]] + param workbookChartAxisFormatToUpdate : Microsoft.Graph.WorkbookChartAxisFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisFormat]]]] + param workbookChartAxisFormatToUpdate : Microsoft.Graph.WorkbookChartAxisFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisFormat],[System.Object]]]] @@ -61454,6 +64727,14 @@ class Microsoft.Graph.WorkbookChartAxisRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxis]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxis]] + param workbookChartAxisToUpdate : Microsoft.Graph.WorkbookChartAxis + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxis]]]] + param workbookChartAxisToUpdate : Microsoft.Graph.WorkbookChartAxis + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxis],[System.Object]]]] @@ -61511,6 +64792,14 @@ class Microsoft.Graph.WorkbookChartAxisTitleFormatRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]] + param workbookChartAxisTitleFormatToUpdate : Microsoft.Graph.WorkbookChartAxisTitleFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]]]] + param workbookChartAxisTitleFormatToUpdate : Microsoft.Graph.WorkbookChartAxisTitleFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisTitleFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisTitleFormat],[System.Object]]]] @@ -61559,6 +64848,14 @@ class Microsoft.Graph.WorkbookChartAxisTitleRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitle]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisTitle]] + param workbookChartAxisTitleToUpdate : Microsoft.Graph.WorkbookChartAxisTitle + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitle]]]] + param workbookChartAxisTitleToUpdate : Microsoft.Graph.WorkbookChartAxisTitle + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisTitleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisTitle],[System.Object]]]] @@ -61624,6 +64921,14 @@ class Microsoft.Graph.WorkbookChartDataLabelFormatRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]] + param workbookChartDataLabelFormatToUpdate : Microsoft.Graph.WorkbookChartDataLabelFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]]]] + param workbookChartDataLabelFormatToUpdate : Microsoft.Graph.WorkbookChartDataLabelFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartDataLabelFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartDataLabelFormat],[System.Object]]]] @@ -61683,6 +64988,14 @@ class Microsoft.Graph.WorkbookChartDataLabelsRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabels]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartDataLabels]] + param workbookChartDataLabelsToUpdate : Microsoft.Graph.WorkbookChartDataLabels + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabels]]]] + param workbookChartDataLabelsToUpdate : Microsoft.Graph.WorkbookChartDataLabels + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartDataLabelsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartDataLabels],[System.Object]]]] @@ -61746,6 +65059,14 @@ class Microsoft.Graph.WorkbookChartFillRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFill]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartFill]] + param workbookChartFillToUpdate : Microsoft.Graph.WorkbookChartFill + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFill]]]] + param workbookChartFillToUpdate : Microsoft.Graph.WorkbookChartFill + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartFillRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartFill],[System.Object]]]] @@ -61822,6 +65143,14 @@ class Microsoft.Graph.WorkbookChartFontRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFont]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartFont]] + param workbookChartFontToUpdate : Microsoft.Graph.WorkbookChartFont + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFont]]]] + param workbookChartFontToUpdate : Microsoft.Graph.WorkbookChartFont + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartFontRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartFont],[System.Object]]]] @@ -61874,6 +65203,14 @@ class Microsoft.Graph.WorkbookChartGridlinesFormatRequest : Microsoft.Graph.Base method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]] + param workbookChartGridlinesFormatToUpdate : Microsoft.Graph.WorkbookChartGridlinesFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]]]] + param workbookChartGridlinesFormatToUpdate : Microsoft.Graph.WorkbookChartGridlinesFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartGridlinesFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartGridlinesFormat],[System.Object]]]] @@ -61922,6 +65259,14 @@ class Microsoft.Graph.WorkbookChartGridlinesRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlines]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartGridlines]] + param workbookChartGridlinesToUpdate : Microsoft.Graph.WorkbookChartGridlines + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlines]]]] + param workbookChartGridlinesToUpdate : Microsoft.Graph.WorkbookChartGridlines + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartGridlinesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartGridlines],[System.Object]]]] @@ -62136,6 +65481,14 @@ class Microsoft.Graph.WorkbookChartLegendFormatRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegendFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLegendFormat]] + param workbookChartLegendFormatToUpdate : Microsoft.Graph.WorkbookChartLegendFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegendFormat]]]] + param workbookChartLegendFormatToUpdate : Microsoft.Graph.WorkbookChartLegendFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLegendFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLegendFormat],[System.Object]]]] @@ -62185,6 +65538,14 @@ class Microsoft.Graph.WorkbookChartLegendRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegend]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLegend]] + param workbookChartLegendToUpdate : Microsoft.Graph.WorkbookChartLegend + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegend]]]] + param workbookChartLegendToUpdate : Microsoft.Graph.WorkbookChartLegend + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLegendRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLegend],[System.Object]]]] @@ -62249,6 +65610,14 @@ class Microsoft.Graph.WorkbookChartLineFormatRequest : Microsoft.Graph.BaseReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLineFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLineFormat]] + param workbookChartLineFormatToUpdate : Microsoft.Graph.WorkbookChartLineFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLineFormat]]]] + param workbookChartLineFormatToUpdate : Microsoft.Graph.WorkbookChartLineFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLineFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLineFormat],[System.Object]]]] @@ -62317,6 +65686,14 @@ class Microsoft.Graph.WorkbookChartPointFormatRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPointFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartPointFormat]] + param workbookChartPointFormatToUpdate : Microsoft.Graph.WorkbookChartPointFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPointFormat]]]] + param workbookChartPointFormatToUpdate : Microsoft.Graph.WorkbookChartPointFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartPointFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartPointFormat],[System.Object]]]] @@ -62401,6 +65778,14 @@ class Microsoft.Graph.WorkbookChartPointRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartPoint]] + param workbookChartPointToUpdate : Microsoft.Graph.WorkbookChartPoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPoint]]]] + param workbookChartPointToUpdate : Microsoft.Graph.WorkbookChartPoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartPointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartPoint],[System.Object]]]] @@ -62449,6 +65834,14 @@ class Microsoft.Graph.WorkbookChartRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChart]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChart]] + param workbookChartToUpdate : Microsoft.Graph.WorkbookChart + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChart]]]] + param workbookChartToUpdate : Microsoft.Graph.WorkbookChart + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChart],[System.Object]]]] @@ -62606,6 +65999,14 @@ class Microsoft.Graph.WorkbookChartSeriesFormatRequest : Microsoft.Graph.BaseReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeriesFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartSeriesFormat]] + param workbookChartSeriesFormatToUpdate : Microsoft.Graph.WorkbookChartSeriesFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeriesFormat]]]] + param workbookChartSeriesFormatToUpdate : Microsoft.Graph.WorkbookChartSeriesFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartSeriesFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartSeriesFormat],[System.Object]]]] @@ -62752,6 +66153,14 @@ class Microsoft.Graph.WorkbookChartSeriesRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeries]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartSeries]] + param workbookChartSeriesToUpdate : Microsoft.Graph.WorkbookChartSeries + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeries]]]] + param workbookChartSeriesToUpdate : Microsoft.Graph.WorkbookChartSeries + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartSeriesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartSeries],[System.Object]]]] @@ -62845,6 +66254,14 @@ class Microsoft.Graph.WorkbookChartTitleFormatRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitleFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartTitleFormat]] + param workbookChartTitleFormatToUpdate : Microsoft.Graph.WorkbookChartTitleFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitleFormat]]]] + param workbookChartTitleFormatToUpdate : Microsoft.Graph.WorkbookChartTitleFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartTitleFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartTitleFormat],[System.Object]]]] @@ -62894,6 +66311,14 @@ class Microsoft.Graph.WorkbookChartTitleRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitle]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartTitle]] + param workbookChartTitleToUpdate : Microsoft.Graph.WorkbookChartTitle + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitle]]]] + param workbookChartTitleToUpdate : Microsoft.Graph.WorkbookChartTitle + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartTitleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartTitle],[System.Object]]]] @@ -63018,6 +66443,14 @@ class Microsoft.Graph.WorkbookCommentReplyRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookCommentReply]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookCommentReply]] + param workbookCommentReplyToUpdate : Microsoft.Graph.WorkbookCommentReply + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookCommentReply]]]] + param workbookCommentReplyToUpdate : Microsoft.Graph.WorkbookCommentReply + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookCommentReplyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookCommentReply],[System.Object]]]] @@ -63065,6 +66498,14 @@ class Microsoft.Graph.WorkbookCommentRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookComment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookComment]] + param workbookCommentToUpdate : Microsoft.Graph.WorkbookComment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookComment]]]] + param workbookCommentToUpdate : Microsoft.Graph.WorkbookComment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookCommentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookComment],[System.Object]]]] @@ -63406,6 +66847,14 @@ class Microsoft.Graph.WorkbookFilterRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFilter]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFilter]] + param workbookFilterToUpdate : Microsoft.Graph.WorkbookFilter + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFilter]]]] + param workbookFilterToUpdate : Microsoft.Graph.WorkbookFilter + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFilterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFilter],[System.Object]]]] @@ -63493,6 +66942,14 @@ class Microsoft.Graph.WorkbookFormatProtectionRequest : Microsoft.Graph.BaseRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFormatProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFormatProtection]] + param workbookFormatProtectionToUpdate : Microsoft.Graph.WorkbookFormatProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFormatProtection]]]] + param workbookFormatProtectionToUpdate : Microsoft.Graph.WorkbookFormatProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFormatProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFormatProtection],[System.Object]]]] @@ -63543,6 +67000,14 @@ class Microsoft.Graph.WorkbookFunctionResultRequest : Microsoft.Graph.BaseReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctionResult]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFunctionResult]] + param workbookFunctionResultToUpdate : Microsoft.Graph.WorkbookFunctionResult + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctionResult]]]] + param workbookFunctionResultToUpdate : Microsoft.Graph.WorkbookFunctionResult + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFunctionResultRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFunctionResult],[System.Object]]]] @@ -68808,6 +72273,14 @@ class Microsoft.Graph.WorkbookFunctionsRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctions]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFunctions]] + param workbookFunctionsToUpdate : Microsoft.Graph.WorkbookFunctions + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctions]]]] + param workbookFunctionsToUpdate : Microsoft.Graph.WorkbookFunctions + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFunctionsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFunctions],[System.Object]]]] @@ -72001,6 +75474,14 @@ class Microsoft.Graph.WorkbookNamedItemRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookNamedItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookNamedItem]] + param workbookNamedItemToUpdate : Microsoft.Graph.WorkbookNamedItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookNamedItem]]]] + param workbookNamedItemToUpdate : Microsoft.Graph.WorkbookNamedItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookNamedItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookNamedItem],[System.Object]]]] @@ -72126,6 +75607,14 @@ class Microsoft.Graph.WorkbookOperationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookOperation]] + param workbookOperationToUpdate : Microsoft.Graph.WorkbookOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookOperation]]]] + param workbookOperationToUpdate : Microsoft.Graph.WorkbookOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookOperation],[System.Object]]]] @@ -72259,6 +75748,14 @@ class Microsoft.Graph.WorkbookPivotTableRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookPivotTable]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookPivotTable]] + param workbookPivotTableToUpdate : Microsoft.Graph.WorkbookPivotTable + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookPivotTable]]]] + param workbookPivotTableToUpdate : Microsoft.Graph.WorkbookPivotTable + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookPivotTableRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookPivotTable],[System.Object]]]] @@ -72384,6 +75881,14 @@ class Microsoft.Graph.WorkbookRangeBorderRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeBorder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeBorder]] + param workbookRangeBorderToUpdate : Microsoft.Graph.WorkbookRangeBorder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeBorder]]]] + param workbookRangeBorderToUpdate : Microsoft.Graph.WorkbookRangeBorder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeBorderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeBorder],[System.Object]]]] @@ -73237,6 +76742,14 @@ class Microsoft.Graph.WorkbookRangeFillRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFill]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFill]] + param workbookRangeFillToUpdate : Microsoft.Graph.WorkbookRangeFill + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFill]]]] + param workbookRangeFillToUpdate : Microsoft.Graph.WorkbookRangeFill + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFillRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFill],[System.Object]]]] @@ -73293,6 +76806,14 @@ class Microsoft.Graph.WorkbookRangeFontRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFont]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFont]] + param workbookRangeFontToUpdate : Microsoft.Graph.WorkbookRangeFont + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFont]]]] + param workbookRangeFontToUpdate : Microsoft.Graph.WorkbookRangeFont + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFontRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFont],[System.Object]]]] @@ -73438,6 +76959,14 @@ class Microsoft.Graph.WorkbookRangeFormatRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFormat]] + param workbookRangeFormatToUpdate : Microsoft.Graph.WorkbookRangeFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFormat]]]] + param workbookRangeFormatToUpdate : Microsoft.Graph.WorkbookRangeFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFormat],[System.Object]]]] @@ -74071,6 +77600,14 @@ class Microsoft.Graph.WorkbookRangeRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRange]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRange]] + param workbookRangeToUpdate : Microsoft.Graph.WorkbookRange + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRange]]]] + param workbookRangeToUpdate : Microsoft.Graph.WorkbookRange + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRange],[System.Object]]]] @@ -74650,6 +78187,14 @@ class Microsoft.Graph.WorkbookRangeSortRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeSort]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeSort]] + param workbookRangeSortToUpdate : Microsoft.Graph.WorkbookRangeSort + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeSort]]]] + param workbookRangeSortToUpdate : Microsoft.Graph.WorkbookRangeSort + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeSortRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeSort],[System.Object]]]] @@ -74983,6 +78528,14 @@ class Microsoft.Graph.WorkbookRangeViewRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeView]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeView]] + param workbookRangeViewToUpdate : Microsoft.Graph.WorkbookRangeView + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeView]]]] + param workbookRangeViewToUpdate : Microsoft.Graph.WorkbookRangeView + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeViewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeView],[System.Object]]]] @@ -75141,6 +78694,14 @@ class Microsoft.Graph.WorkbookRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Workbook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Workbook]] + param workbookToUpdate : Microsoft.Graph.Workbook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Workbook]]]] + param workbookToUpdate : Microsoft.Graph.Workbook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Workbook],[System.Object]]]] @@ -75691,6 +79252,14 @@ class Microsoft.Graph.WorkbookTableColumnRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableColumn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableColumn]] + param workbookTableColumnToUpdate : Microsoft.Graph.WorkbookTableColumn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableColumn]]]] + param workbookTableColumnToUpdate : Microsoft.Graph.WorkbookTableColumn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableColumnRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableColumn],[System.Object]]]] @@ -76343,6 +79912,14 @@ class Microsoft.Graph.WorkbookTableRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTable]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTable]] + param workbookTableToUpdate : Microsoft.Graph.WorkbookTable + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTable]]]] + param workbookTableToUpdate : Microsoft.Graph.WorkbookTable + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTable],[System.Object]]]] @@ -76592,6 +80169,14 @@ class Microsoft.Graph.WorkbookTableRowRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableRow]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableRow]] + param workbookTableRowToUpdate : Microsoft.Graph.WorkbookTableRow + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableRow]]]] + param workbookTableRowToUpdate : Microsoft.Graph.WorkbookTableRow + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableRowRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableRow],[System.Object]]]] @@ -76820,6 +80405,14 @@ class Microsoft.Graph.WorkbookTableSortRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableSort]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableSort]] + param workbookTableSortToUpdate : Microsoft.Graph.WorkbookTableSort + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableSort]]]] + param workbookTableSortToUpdate : Microsoft.Graph.WorkbookTableSort + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableSortRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableSort],[System.Object]]]] @@ -77342,6 +80935,14 @@ class Microsoft.Graph.WorkbookWorksheetProtectionRequest : Microsoft.Graph.BaseR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheetProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookWorksheetProtection]] + param workbookWorksheetProtectionToUpdate : Microsoft.Graph.WorkbookWorksheetProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheetProtection]]]] + param workbookWorksheetProtectionToUpdate : Microsoft.Graph.WorkbookWorksheetProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookWorksheetProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookWorksheetProtection],[System.Object]]]] @@ -77516,6 +81117,14 @@ class Microsoft.Graph.WorkbookWorksheetRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookWorksheet]] + param workbookWorksheetToUpdate : Microsoft.Graph.WorkbookWorksheet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheet]]]] + param workbookWorksheetToUpdate : Microsoft.Graph.WorkbookWorksheet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookWorksheetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookWorksheet],[System.Object]]]] @@ -77824,6 +81433,14 @@ class Microsoft.Graph.WorkforceIntegrationRequest : Microsoft.Graph.BaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkforceIntegration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkforceIntegration]] + param workforceIntegrationToUpdate : Microsoft.Graph.WorkforceIntegration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkforceIntegration]]]] + param workforceIntegrationToUpdate : Microsoft.Graph.WorkforceIntegration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkforceIntegrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkforceIntegration],[System.Object]]]] @@ -77878,6 +81495,14 @@ interface Microsoft.Graph.IAadUserConversationMemberRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AadUserConversationMember]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AadUserConversationMember]] + param aadUserConversationMemberToUpdate : Microsoft.Graph.AadUserConversationMember + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AadUserConversationMember]]]] + param aadUserConversationMemberToUpdate : Microsoft.Graph.AadUserConversationMember + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAadUserConversationMemberRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AadUserConversationMember],[System.Object]]]] @@ -77926,6 +81551,14 @@ interface Microsoft.Graph.IActivityBasedTimeoutPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]] + param activityBasedTimeoutPolicyToUpdate : Microsoft.Graph.ActivityBasedTimeoutPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityBasedTimeoutPolicy]]]] + param activityBasedTimeoutPolicyToUpdate : Microsoft.Graph.ActivityBasedTimeoutPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IActivityBasedTimeoutPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ActivityBasedTimeoutPolicy],[System.Object]]]] @@ -77973,6 +81606,14 @@ interface Microsoft.Graph.IActivityHistoryItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityHistoryItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ActivityHistoryItem]] + param activityHistoryItemToUpdate : Microsoft.Graph.ActivityHistoryItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ActivityHistoryItem]]]] + param activityHistoryItemToUpdate : Microsoft.Graph.ActivityHistoryItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IActivityHistoryItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ActivityHistoryItem],[System.Object]]]] @@ -78189,6 +81830,14 @@ interface Microsoft.Graph.IAdministrativeUnitRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AdministrativeUnit]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AdministrativeUnit]] + param administrativeUnitToUpdate : Microsoft.Graph.AdministrativeUnit + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AdministrativeUnit]]]] + param administrativeUnitToUpdate : Microsoft.Graph.AdministrativeUnit + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAdministrativeUnitRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AdministrativeUnit],[System.Object]]]] @@ -78360,6 +82009,14 @@ interface Microsoft.Graph.IAgreementAcceptanceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementAcceptance]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementAcceptance]] + param agreementAcceptanceToUpdate : Microsoft.Graph.AgreementAcceptance + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementAcceptance]]]] + param agreementAcceptanceToUpdate : Microsoft.Graph.AgreementAcceptance + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementAcceptanceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementAcceptance],[System.Object]]]] @@ -78507,6 +82164,14 @@ interface Microsoft.Graph.IAgreementFileLocalizationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileLocalization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileLocalization]] + param agreementFileLocalizationToUpdate : Microsoft.Graph.AgreementFileLocalization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileLocalization]]]] + param agreementFileLocalizationToUpdate : Microsoft.Graph.AgreementFileLocalization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileLocalizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileLocalization],[System.Object]]]] @@ -78659,6 +82324,14 @@ interface Microsoft.Graph.IAgreementFilePropertiesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileProperties]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileProperties]] + param agreementFilePropertiesToUpdate : Microsoft.Graph.AgreementFileProperties + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileProperties]]]] + param agreementFilePropertiesToUpdate : Microsoft.Graph.AgreementFileProperties + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFilePropertiesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileProperties],[System.Object]]]] @@ -78706,6 +82379,14 @@ interface Microsoft.Graph.IAgreementFileRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFile]] + param agreementFileToUpdate : Microsoft.Graph.AgreementFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFile]]]] + param agreementFileToUpdate : Microsoft.Graph.AgreementFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFile],[System.Object]]]] @@ -78806,6 +82487,14 @@ interface Microsoft.Graph.IAgreementFileVersionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AgreementFileVersion]] + param agreementFileVersionToUpdate : Microsoft.Graph.AgreementFileVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AgreementFileVersion]]]] + param agreementFileVersionToUpdate : Microsoft.Graph.AgreementFileVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementFileVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AgreementFileVersion],[System.Object]]]] @@ -78853,6 +82542,14 @@ interface Microsoft.Graph.IAgreementRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Agreement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Agreement]] + param agreementToUpdate : Microsoft.Graph.Agreement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Agreement]]]] + param agreementToUpdate : Microsoft.Graph.Agreement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAgreementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Agreement],[System.Object]]]] @@ -78903,6 +82600,14 @@ interface Microsoft.Graph.IAlertRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Alert]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Alert]] + param alertToUpdate : Microsoft.Graph.Alert + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Alert]]]] + param alertToUpdate : Microsoft.Graph.Alert + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAlertRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Alert],[System.Object]]]] @@ -78950,6 +82655,14 @@ interface Microsoft.Graph.IAndroidCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidCompliancePolicy]] + param androidCompliancePolicyToUpdate : Microsoft.Graph.AndroidCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCompliancePolicy]]]] + param androidCompliancePolicyToUpdate : Microsoft.Graph.AndroidCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidCompliancePolicy],[System.Object]]]] @@ -78997,6 +82710,14 @@ interface Microsoft.Graph.IAndroidCustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidCustomConfiguration]] + param androidCustomConfigurationToUpdate : Microsoft.Graph.AndroidCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidCustomConfiguration]]]] + param androidCustomConfigurationToUpdate : Microsoft.Graph.AndroidCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidCustomConfiguration],[System.Object]]]] @@ -79044,6 +82765,14 @@ interface Microsoft.Graph.IAndroidGeneralDeviceConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]] + param androidGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidGeneralDeviceConfiguration]]]] + param androidGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidGeneralDeviceConfiguration],[System.Object]]]] @@ -79091,6 +82820,14 @@ interface Microsoft.Graph.IAndroidLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidLobApp]] + param androidLobAppToUpdate : Microsoft.Graph.AndroidLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidLobApp]]]] + param androidLobAppToUpdate : Microsoft.Graph.AndroidLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidLobApp],[System.Object]]]] @@ -79190,6 +82927,14 @@ interface Microsoft.Graph.IAndroidManagedAppProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidManagedAppProtection]] + param androidManagedAppProtectionToUpdate : Microsoft.Graph.AndroidManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppProtection]]]] + param androidManagedAppProtectionToUpdate : Microsoft.Graph.AndroidManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidManagedAppProtection],[System.Object]]]] @@ -79239,6 +82984,14 @@ interface Microsoft.Graph.IAndroidManagedAppRegistrationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidManagedAppRegistration]] + param androidManagedAppRegistrationToUpdate : Microsoft.Graph.AndroidManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidManagedAppRegistration]]]] + param androidManagedAppRegistrationToUpdate : Microsoft.Graph.AndroidManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidManagedAppRegistration],[System.Object]]]] @@ -79286,6 +83039,14 @@ interface Microsoft.Graph.IAndroidStoreAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidStoreApp]] + param androidStoreAppToUpdate : Microsoft.Graph.AndroidStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidStoreApp]]]] + param androidStoreAppToUpdate : Microsoft.Graph.AndroidStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidStoreApp],[System.Object]]]] @@ -79333,6 +83094,14 @@ interface Microsoft.Graph.IAndroidWorkProfileCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]] + param androidWorkProfileCompliancePolicyToUpdate : Microsoft.Graph.AndroidWorkProfileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy]]]] + param androidWorkProfileCompliancePolicyToUpdate : Microsoft.Graph.AndroidWorkProfileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileCompliancePolicy],[System.Object]]]] @@ -79380,6 +83149,14 @@ interface Microsoft.Graph.IAndroidWorkProfileCustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]] + param androidWorkProfileCustomConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration]]]] + param androidWorkProfileCustomConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileCustomConfiguration],[System.Object]]]] @@ -79427,6 +83204,14 @@ interface Microsoft.Graph.IAndroidWorkProfileGeneralDeviceConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]] + param androidWorkProfileGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration]]]] + param androidWorkProfileGeneralDeviceConfigurationToUpdate : Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAndroidWorkProfileGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AndroidWorkProfileGeneralDeviceConfiguration],[System.Object]]]] @@ -79474,6 +83259,14 @@ interface Microsoft.Graph.IAppCatalogsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppCatalogs]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppCatalogs]] + param appCatalogsToUpdate : Microsoft.Graph.AppCatalogs + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppCatalogs]]]] + param appCatalogsToUpdate : Microsoft.Graph.AppCatalogs + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppCatalogsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppCatalogs],[System.Object]]]] @@ -79574,6 +83367,14 @@ interface Microsoft.Graph.IAppleDeviceFeaturesConfigurationBaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]] + param appleDeviceFeaturesConfigurationBaseToUpdate : Microsoft.Graph.AppleDeviceFeaturesConfigurationBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase]]]] + param appleDeviceFeaturesConfigurationBaseToUpdate : Microsoft.Graph.AppleDeviceFeaturesConfigurationBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppleDeviceFeaturesConfigurationBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppleDeviceFeaturesConfigurationBase],[System.Object]]]] @@ -79638,6 +83439,14 @@ interface Microsoft.Graph.IApplePushNotificationCertificateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplePushNotificationCertificate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ApplePushNotificationCertificate]] + param applePushNotificationCertificateToUpdate : Microsoft.Graph.ApplePushNotificationCertificate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplePushNotificationCertificate]]]] + param applePushNotificationCertificateToUpdate : Microsoft.Graph.ApplePushNotificationCertificate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplePushNotificationCertificateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ApplePushNotificationCertificate],[System.Object]]]] @@ -80010,6 +83819,14 @@ interface Microsoft.Graph.IApplicationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Application]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Application]] + param applicationToUpdate : Microsoft.Graph.Application + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Application]]]] + param applicationToUpdate : Microsoft.Graph.Application + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplicationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Application],[System.Object]]]] @@ -80097,6 +83914,14 @@ interface Microsoft.Graph.IApplicationTemplateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplicationTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ApplicationTemplate]] + param applicationTemplateToUpdate : Microsoft.Graph.ApplicationTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ApplicationTemplate]]]] + param applicationTemplateToUpdate : Microsoft.Graph.ApplicationTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IApplicationTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ApplicationTemplate],[System.Object]]]] @@ -80315,6 +84140,14 @@ interface Microsoft.Graph.IAppRoleAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppRoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AppRoleAssignment]] + param appRoleAssignmentToUpdate : Microsoft.Graph.AppRoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AppRoleAssignment]]]] + param appRoleAssignmentToUpdate : Microsoft.Graph.AppRoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAppRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AppRoleAssignment],[System.Object]]]] @@ -80380,6 +84213,14 @@ interface Microsoft.Graph.IAttachmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Attachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Attachment]] + param attachmentToUpdate : Microsoft.Graph.Attachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Attachment]]]] + param attachmentToUpdate : Microsoft.Graph.Attachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Attachment],[System.Object]]]] @@ -80479,6 +84320,14 @@ interface Microsoft.Graph.IAuditLogRootRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuditLogRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuditLogRoot]] + param auditLogRootToUpdate : Microsoft.Graph.AuditLogRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuditLogRoot]]]] + param auditLogRootToUpdate : Microsoft.Graph.AuditLogRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuditLogRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuditLogRoot],[System.Object]]]] @@ -80685,6 +84534,14 @@ interface Microsoft.Graph.IAuthenticationMethodConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodConfiguration]] + param authenticationMethodConfigurationToUpdate : Microsoft.Graph.AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodConfiguration]]]] + param authenticationMethodConfigurationToUpdate : Microsoft.Graph.AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodConfiguration],[System.Object]]]] @@ -80732,6 +84589,14 @@ interface Microsoft.Graph.IAuthenticationMethodRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethod]] + param authenticationMethodToUpdate : Microsoft.Graph.AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethod]]]] + param authenticationMethodToUpdate : Microsoft.Graph.AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethod],[System.Object]]]] @@ -80883,6 +84748,14 @@ interface Microsoft.Graph.IAuthenticationMethodsPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodsPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodsPolicy]] + param authenticationMethodsPolicyToUpdate : Microsoft.Graph.AuthenticationMethodsPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodsPolicy]]]] + param authenticationMethodsPolicyToUpdate : Microsoft.Graph.AuthenticationMethodsPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodsPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodsPolicy],[System.Object]]]] @@ -80931,6 +84804,14 @@ interface Microsoft.Graph.IAuthenticationMethodTargetRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodTarget]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthenticationMethodTarget]] + param authenticationMethodTargetToUpdate : Microsoft.Graph.AuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthenticationMethodTarget]]]] + param authenticationMethodTargetToUpdate : Microsoft.Graph.AuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationMethodTargetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthenticationMethodTarget],[System.Object]]]] @@ -81030,6 +84911,14 @@ interface Microsoft.Graph.IAuthenticationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Authentication]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Authentication]] + param authenticationToUpdate : Microsoft.Graph.Authentication + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Authentication]]]] + param authenticationToUpdate : Microsoft.Graph.Authentication + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthenticationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Authentication],[System.Object]]]] @@ -81133,6 +85022,14 @@ interface Microsoft.Graph.IAuthorizationPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthorizationPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.AuthorizationPolicy]] + param authorizationPolicyToUpdate : Microsoft.Graph.AuthorizationPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.AuthorizationPolicy]]]] + param authorizationPolicyToUpdate : Microsoft.Graph.AuthorizationPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IAuthorizationPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.AuthorizationPolicy],[System.Object]]]] @@ -81180,6 +85077,14 @@ interface Microsoft.Graph.IBaseItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.BaseItem]] + param baseItemToUpdate : Microsoft.Graph.BaseItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItem]]]] + param baseItemToUpdate : Microsoft.Graph.BaseItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IBaseItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.BaseItem],[System.Object]]]] @@ -81229,6 +85134,14 @@ interface Microsoft.Graph.IBaseItemVersionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.BaseItemVersion]] + param baseItemVersionToUpdate : Microsoft.Graph.BaseItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.BaseItemVersion]]]] + param baseItemVersionToUpdate : Microsoft.Graph.BaseItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IBaseItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.BaseItemVersion],[System.Object]]]] @@ -81559,6 +85472,14 @@ interface Microsoft.Graph.ICalendarGroupRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarGroup]] + param calendarGroupToUpdate : Microsoft.Graph.CalendarGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarGroup]]]] + param calendarGroupToUpdate : Microsoft.Graph.CalendarGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarGroup],[System.Object]]]] @@ -81659,6 +85580,14 @@ interface Microsoft.Graph.ICalendarPermissionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarPermission]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarPermission]] + param calendarPermissionToUpdate : Microsoft.Graph.CalendarPermission + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarPermission]]]] + param calendarPermissionToUpdate : Microsoft.Graph.CalendarPermission + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarPermissionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarPermission],[System.Object]]]] @@ -81706,6 +85635,14 @@ interface Microsoft.Graph.ICalendarRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Calendar]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Calendar]] + param calendarToUpdate : Microsoft.Graph.Calendar + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Calendar]]]] + param calendarToUpdate : Microsoft.Graph.Calendar + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Calendar],[System.Object]]]] @@ -81784,6 +85721,14 @@ interface Microsoft.Graph.ICalendarSharingMessageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarSharingMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CalendarSharingMessage]] + param calendarSharingMessageToUpdate : Microsoft.Graph.CalendarSharingMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CalendarSharingMessage]]]] + param calendarSharingMessageToUpdate : Microsoft.Graph.CalendarSharingMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICalendarSharingMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CalendarSharingMessage],[System.Object]]]] @@ -82118,6 +86063,14 @@ interface Microsoft.Graph.CallRecords.ICallRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.CallRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.CallRecord]] + param callRecordToUpdate : Microsoft.Graph.CallRecords.CallRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.CallRecord]]]] + param callRecordToUpdate : Microsoft.Graph.CallRecords.CallRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ICallRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.CallRecord],[System.Object]]]] @@ -82272,6 +86225,14 @@ interface Microsoft.Graph.ICallRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Call]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Call]] + param callToUpdate : Microsoft.Graph.Call + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Call]]]] + param callToUpdate : Microsoft.Graph.Call + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICallRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Call],[System.Object]]]] @@ -82445,6 +86406,14 @@ interface Microsoft.Graph.ICancelMediaProcessingOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CancelMediaProcessingOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CancelMediaProcessingOperation]] + param cancelMediaProcessingOperationToUpdate : Microsoft.Graph.CancelMediaProcessingOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CancelMediaProcessingOperation]]]] + param cancelMediaProcessingOperationToUpdate : Microsoft.Graph.CancelMediaProcessingOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICancelMediaProcessingOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CancelMediaProcessingOperation],[System.Object]]]] @@ -82513,6 +86482,14 @@ interface Microsoft.Graph.ICertificateBasedAuthConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]] + param certificateBasedAuthConfigurationToUpdate : Microsoft.Graph.CertificateBasedAuthConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CertificateBasedAuthConfiguration]]]] + param certificateBasedAuthConfigurationToUpdate : Microsoft.Graph.CertificateBasedAuthConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICertificateBasedAuthConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CertificateBasedAuthConfiguration],[System.Object]]]] @@ -82608,6 +86585,14 @@ interface Microsoft.Graph.IChangeTrackedEntityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChangeTrackedEntity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChangeTrackedEntity]] + param changeTrackedEntityToUpdate : Microsoft.Graph.ChangeTrackedEntity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChangeTrackedEntity]]]] + param changeTrackedEntityToUpdate : Microsoft.Graph.ChangeTrackedEntity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChangeTrackedEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChangeTrackedEntity],[System.Object]]]] @@ -82759,6 +86744,14 @@ interface Microsoft.Graph.IChannelRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Channel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Channel]] + param channelToUpdate : Microsoft.Graph.Channel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Channel]]]] + param channelToUpdate : Microsoft.Graph.Channel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChannelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Channel],[System.Object]]]] @@ -83024,6 +87017,14 @@ interface Microsoft.Graph.IChatMessageHostedContentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessageHostedContent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChatMessageHostedContent]] + param chatMessageHostedContentToUpdate : Microsoft.Graph.ChatMessageHostedContent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessageHostedContent]]]] + param chatMessageHostedContentToUpdate : Microsoft.Graph.ChatMessageHostedContent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatMessageHostedContentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChatMessageHostedContent],[System.Object]]]] @@ -83176,6 +87177,14 @@ interface Microsoft.Graph.IChatMessageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ChatMessage]] + param chatMessageToUpdate : Microsoft.Graph.ChatMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ChatMessage]]]] + param chatMessageToUpdate : Microsoft.Graph.ChatMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ChatMessage],[System.Object]]]] @@ -83246,6 +87255,14 @@ interface Microsoft.Graph.IChatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Chat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Chat]] + param chatToUpdate : Microsoft.Graph.Chat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Chat]]]] + param chatToUpdate : Microsoft.Graph.Chat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IChatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Chat],[System.Object]]]] @@ -83417,6 +87434,14 @@ interface Microsoft.Graph.IClaimsMappingPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ClaimsMappingPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ClaimsMappingPolicy]] + param claimsMappingPolicyToUpdate : Microsoft.Graph.ClaimsMappingPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ClaimsMappingPolicy]]]] + param claimsMappingPolicyToUpdate : Microsoft.Graph.ClaimsMappingPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IClaimsMappingPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ClaimsMappingPolicy],[System.Object]]]] @@ -83767,6 +87792,14 @@ interface Microsoft.Graph.ICloudCommunicationsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CloudCommunications]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CloudCommunications]] + param cloudCommunicationsToUpdate : Microsoft.Graph.CloudCommunications + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CloudCommunications]]]] + param cloudCommunicationsToUpdate : Microsoft.Graph.CloudCommunications + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICloudCommunicationsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CloudCommunications],[System.Object]]]] @@ -83821,6 +87854,14 @@ interface Microsoft.Graph.IColumnDefinitionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ColumnDefinition]] + param columnDefinitionToUpdate : Microsoft.Graph.ColumnDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnDefinition]]]] + param columnDefinitionToUpdate : Microsoft.Graph.ColumnDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IColumnDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ColumnDefinition],[System.Object]]]] @@ -83868,6 +87909,14 @@ interface Microsoft.Graph.IColumnLinkRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnLink]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ColumnLink]] + param columnLinkToUpdate : Microsoft.Graph.ColumnLink + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ColumnLink]]]] + param columnLinkToUpdate : Microsoft.Graph.ColumnLink + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IColumnLinkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ColumnLink],[System.Object]]]] @@ -83915,6 +87964,14 @@ interface Microsoft.Graph.ICommsOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CommsOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CommsOperation]] + param commsOperationToUpdate : Microsoft.Graph.CommsOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CommsOperation]]]] + param commsOperationToUpdate : Microsoft.Graph.CommsOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICommsOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CommsOperation],[System.Object]]]] @@ -83962,6 +88019,14 @@ interface Microsoft.Graph.IComplianceManagementPartnerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ComplianceManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ComplianceManagementPartner]] + param complianceManagementPartnerToUpdate : Microsoft.Graph.ComplianceManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ComplianceManagementPartner]]]] + param complianceManagementPartnerToUpdate : Microsoft.Graph.ComplianceManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IComplianceManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ComplianceManagementPartner],[System.Object]]]] @@ -84009,6 +88074,14 @@ interface Microsoft.Graph.IConditionalAccessPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConditionalAccessPolicy]] + param conditionalAccessPolicyToUpdate : Microsoft.Graph.ConditionalAccessPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessPolicy]]]] + param conditionalAccessPolicyToUpdate : Microsoft.Graph.ConditionalAccessPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConditionalAccessPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConditionalAccessPolicy],[System.Object]]]] @@ -84160,6 +88233,14 @@ interface Microsoft.Graph.IConditionalAccessRootRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConditionalAccessRoot]] + param conditionalAccessRootToUpdate : Microsoft.Graph.ConditionalAccessRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConditionalAccessRoot]]]] + param conditionalAccessRootToUpdate : Microsoft.Graph.ConditionalAccessRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConditionalAccessRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConditionalAccessRoot],[System.Object]]]] @@ -84491,6 +88572,14 @@ interface Microsoft.Graph.IContactFolderRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContactFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ContactFolder]] + param contactFolderToUpdate : Microsoft.Graph.ContactFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContactFolder]]]] + param contactFolderToUpdate : Microsoft.Graph.ContactFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContactFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ContactFolder],[System.Object]]]] @@ -84646,6 +88735,14 @@ interface Microsoft.Graph.IContactRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contact]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Contact]] + param contactToUpdate : Microsoft.Graph.Contact + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contact]]]] + param contactToUpdate : Microsoft.Graph.Contact + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContactRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Contact],[System.Object]]]] @@ -84801,6 +88898,14 @@ interface Microsoft.Graph.IContentTypeRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContentType]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ContentType]] + param contentTypeToUpdate : Microsoft.Graph.ContentType + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ContentType]]]] + param contentTypeToUpdate : Microsoft.Graph.ContentType + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContentTypeRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ContentType],[System.Object]]]] @@ -84849,6 +88954,14 @@ interface Microsoft.Graph.IContractRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contract]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Contract]] + param contractToUpdate : Microsoft.Graph.Contract + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Contract]]]] + param contractToUpdate : Microsoft.Graph.Contract + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IContractRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Contract],[System.Object]]]] @@ -84896,6 +89009,14 @@ interface Microsoft.Graph.IConversationMemberRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationMember]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConversationMember]] + param conversationMemberToUpdate : Microsoft.Graph.ConversationMember + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationMember]]]] + param conversationMemberToUpdate : Microsoft.Graph.ConversationMember + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationMemberRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConversationMember],[System.Object]]]] @@ -84943,6 +89064,14 @@ interface Microsoft.Graph.IConversationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Conversation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Conversation]] + param conversationToUpdate : Microsoft.Graph.Conversation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Conversation]]]] + param conversationToUpdate : Microsoft.Graph.Conversation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Conversation],[System.Object]]]] @@ -85061,6 +89190,14 @@ interface Microsoft.Graph.IConversationThreadRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationThread]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ConversationThread]] + param conversationThreadToUpdate : Microsoft.Graph.ConversationThread + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ConversationThread]]]] + param conversationThreadToUpdate : Microsoft.Graph.ConversationThread + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IConversationThreadRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ConversationThread],[System.Object]]]] @@ -85164,6 +89301,14 @@ interface Microsoft.Graph.ICountryNamedLocationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CountryNamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CountryNamedLocation]] + param countryNamedLocationToUpdate : Microsoft.Graph.CountryNamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CountryNamedLocation]]]] + param countryNamedLocationToUpdate : Microsoft.Graph.CountryNamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ICountryNamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CountryNamedLocation],[System.Object]]]] @@ -85211,6 +89356,14 @@ interface Microsoft.Graph.IDataPolicyOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DataPolicyOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DataPolicyOperation]] + param dataPolicyOperationToUpdate : Microsoft.Graph.DataPolicyOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DataPolicyOperation]]]] + param dataPolicyOperationToUpdate : Microsoft.Graph.DataPolicyOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDataPolicyOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DataPolicyOperation],[System.Object]]]] @@ -85310,6 +89463,14 @@ interface Microsoft.Graph.IDefaultManagedAppProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DefaultManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DefaultManagedAppProtection]] + param defaultManagedAppProtectionToUpdate : Microsoft.Graph.DefaultManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DefaultManagedAppProtection]]]] + param defaultManagedAppProtectionToUpdate : Microsoft.Graph.DefaultManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDefaultManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DefaultManagedAppProtection],[System.Object]]]] @@ -85359,6 +89520,14 @@ interface Microsoft.Graph.IDelegatedPermissionClassificationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DelegatedPermissionClassification]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DelegatedPermissionClassification]] + param delegatedPermissionClassificationToUpdate : Microsoft.Graph.DelegatedPermissionClassification + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DelegatedPermissionClassification]]]] + param delegatedPermissionClassificationToUpdate : Microsoft.Graph.DelegatedPermissionClassification + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDelegatedPermissionClassificationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DelegatedPermissionClassification],[System.Object]]]] @@ -85466,6 +89635,14 @@ interface Microsoft.Graph.IDetectedAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DetectedApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DetectedApp]] + param detectedAppToUpdate : Microsoft.Graph.DetectedApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DetectedApp]]]] + param detectedAppToUpdate : Microsoft.Graph.DetectedApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDetectedAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DetectedApp],[System.Object]]]] @@ -85514,6 +89691,14 @@ interface Microsoft.Graph.IDeviceAndAppManagementRoleAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]] + param deviceAndAppManagementRoleAssignmentToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment]]]] + param deviceAndAppManagementRoleAssignmentToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAndAppManagementRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAndAppManagementRoleAssignment],[System.Object]]]] @@ -85561,6 +89746,14 @@ interface Microsoft.Graph.IDeviceAndAppManagementRoleDefinitionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]] + param deviceAndAppManagementRoleDefinitionToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition]]]] + param deviceAndAppManagementRoleDefinitionToUpdate : Microsoft.Graph.DeviceAndAppManagementRoleDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAndAppManagementRoleDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAndAppManagementRoleDefinition],[System.Object]]]] @@ -86182,6 +90375,14 @@ interface Microsoft.Graph.IDeviceAppManagementRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAppManagement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceAppManagement]] + param deviceAppManagementToUpdate : Microsoft.Graph.DeviceAppManagement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceAppManagement]]]] + param deviceAppManagementToUpdate : Microsoft.Graph.DeviceAppManagement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceAppManagementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceAppManagement],[System.Object]]]] @@ -86418,6 +90619,14 @@ interface Microsoft.Graph.IDeviceCategoryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCategory]] + param deviceCategoryToUpdate : Microsoft.Graph.DeviceCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCategory]]]] + param deviceCategoryToUpdate : Microsoft.Graph.DeviceCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCategory],[System.Object]]]] @@ -86465,6 +90674,14 @@ interface Microsoft.Graph.IDeviceComplianceActionItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceActionItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceActionItem]] + param deviceComplianceActionItemToUpdate : Microsoft.Graph.DeviceComplianceActionItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceActionItem]]]] + param deviceComplianceActionItemToUpdate : Microsoft.Graph.DeviceComplianceActionItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceActionItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceActionItem],[System.Object]]]] @@ -86512,6 +90729,14 @@ interface Microsoft.Graph.IDeviceComplianceDeviceOverviewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]] + param deviceComplianceDeviceOverviewToUpdate : Microsoft.Graph.DeviceComplianceDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceOverview]]]] + param deviceComplianceDeviceOverviewToUpdate : Microsoft.Graph.DeviceComplianceDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceDeviceOverview],[System.Object]]]] @@ -86559,6 +90784,14 @@ interface Microsoft.Graph.IDeviceComplianceDeviceStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]] + param deviceComplianceDeviceStatusToUpdate : Microsoft.Graph.DeviceComplianceDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceDeviceStatus]]]] + param deviceComplianceDeviceStatusToUpdate : Microsoft.Graph.DeviceComplianceDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceDeviceStatus],[System.Object]]]] @@ -86612,6 +90845,14 @@ interface Microsoft.Graph.IDeviceCompliancePolicyAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]] + param deviceCompliancePolicyAssignmentToUpdate : Microsoft.Graph.DeviceCompliancePolicyAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyAssignment]]]] + param deviceCompliancePolicyAssignmentToUpdate : Microsoft.Graph.DeviceCompliancePolicyAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyAssignment],[System.Object]]]] @@ -86793,6 +91034,14 @@ interface Microsoft.Graph.IDeviceCompliancePolicyDeviceStateSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]] + param deviceCompliancePolicyDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary]]]] + param deviceCompliancePolicyDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyDeviceStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyDeviceStateSummary],[System.Object]]]] @@ -86892,6 +91141,14 @@ interface Microsoft.Graph.IDeviceCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicy]] + param deviceCompliancePolicyToUpdate : Microsoft.Graph.DeviceCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicy]]]] + param deviceCompliancePolicyToUpdate : Microsoft.Graph.DeviceCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicy],[System.Object]]]] @@ -87074,6 +91331,14 @@ interface Microsoft.Graph.IDeviceCompliancePolicySettingStateSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]] + param deviceCompliancePolicySettingStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicySettingStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary]]]] + param deviceCompliancePolicySettingStateSummaryToUpdate : Microsoft.Graph.DeviceCompliancePolicySettingStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicySettingStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicySettingStateSummary],[System.Object]]]] @@ -87122,6 +91387,14 @@ interface Microsoft.Graph.IDeviceCompliancePolicyStateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceCompliancePolicyState]] + param deviceCompliancePolicyStateToUpdate : Microsoft.Graph.DeviceCompliancePolicyState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceCompliancePolicyState]]]] + param deviceCompliancePolicyStateToUpdate : Microsoft.Graph.DeviceCompliancePolicyState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceCompliancePolicyStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceCompliancePolicyState],[System.Object]]]] @@ -87221,6 +91494,14 @@ interface Microsoft.Graph.IDeviceComplianceScheduledActionForRuleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]] + param deviceComplianceScheduledActionForRuleToUpdate : Microsoft.Graph.DeviceComplianceScheduledActionForRule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceScheduledActionForRule]]]] + param deviceComplianceScheduledActionForRuleToUpdate : Microsoft.Graph.DeviceComplianceScheduledActionForRule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceScheduledActionForRuleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceScheduledActionForRule],[System.Object]]]] @@ -87321,6 +91602,14 @@ interface Microsoft.Graph.IDeviceComplianceSettingStateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceSettingState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceSettingState]] + param deviceComplianceSettingStateToUpdate : Microsoft.Graph.DeviceComplianceSettingState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceSettingState]]]] + param deviceComplianceSettingStateToUpdate : Microsoft.Graph.DeviceComplianceSettingState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceSettingStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceSettingState],[System.Object]]]] @@ -87368,6 +91657,14 @@ interface Microsoft.Graph.IDeviceComplianceUserOverviewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceUserOverview]] + param deviceComplianceUserOverviewToUpdate : Microsoft.Graph.DeviceComplianceUserOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserOverview]]]] + param deviceComplianceUserOverviewToUpdate : Microsoft.Graph.DeviceComplianceUserOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceUserOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceUserOverview],[System.Object]]]] @@ -87415,6 +91712,14 @@ interface Microsoft.Graph.IDeviceComplianceUserStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceComplianceUserStatus]] + param deviceComplianceUserStatusToUpdate : Microsoft.Graph.DeviceComplianceUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceComplianceUserStatus]]]] + param deviceComplianceUserStatusToUpdate : Microsoft.Graph.DeviceComplianceUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceComplianceUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceComplianceUserStatus],[System.Object]]]] @@ -87468,6 +91773,14 @@ interface Microsoft.Graph.IDeviceConfigurationAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationAssignment]] + param deviceConfigurationAssignmentToUpdate : Microsoft.Graph.DeviceConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationAssignment]]]] + param deviceConfigurationAssignmentToUpdate : Microsoft.Graph.DeviceConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationAssignment],[System.Object]]]] @@ -87597,6 +91910,14 @@ interface Microsoft.Graph.IDeviceConfigurationDeviceOverviewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]] + param deviceConfigurationDeviceOverviewToUpdate : Microsoft.Graph.DeviceConfigurationDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceOverview]]]] + param deviceConfigurationDeviceOverviewToUpdate : Microsoft.Graph.DeviceConfigurationDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceOverview],[System.Object]]]] @@ -87696,6 +92017,14 @@ interface Microsoft.Graph.IDeviceConfigurationDeviceStateSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]] + param deviceConfigurationDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary]]]] + param deviceConfigurationDeviceStateSummaryToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceStateSummary],[System.Object]]]] @@ -87795,6 +92124,14 @@ interface Microsoft.Graph.IDeviceConfigurationDeviceStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]] + param deviceConfigurationDeviceStatusToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationDeviceStatus]]]] + param deviceConfigurationDeviceStatusToUpdate : Microsoft.Graph.DeviceConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationDeviceStatus],[System.Object]]]] @@ -87842,6 +92179,14 @@ interface Microsoft.Graph.IDeviceConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfiguration]] + param deviceConfigurationToUpdate : Microsoft.Graph.DeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfiguration]]]] + param deviceConfigurationToUpdate : Microsoft.Graph.DeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfiguration],[System.Object]]]] @@ -87898,6 +92243,14 @@ interface Microsoft.Graph.IDeviceConfigurationStateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationState]] + param deviceConfigurationStateToUpdate : Microsoft.Graph.DeviceConfigurationState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationState]]]] + param deviceConfigurationStateToUpdate : Microsoft.Graph.DeviceConfigurationState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationState],[System.Object]]]] @@ -87945,6 +92298,14 @@ interface Microsoft.Graph.IDeviceConfigurationUserOverviewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationUserOverview]] + param deviceConfigurationUserOverviewToUpdate : Microsoft.Graph.DeviceConfigurationUserOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserOverview]]]] + param deviceConfigurationUserOverviewToUpdate : Microsoft.Graph.DeviceConfigurationUserOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationUserOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationUserOverview],[System.Object]]]] @@ -88044,6 +92405,14 @@ interface Microsoft.Graph.IDeviceConfigurationUserStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceConfigurationUserStatus]] + param deviceConfigurationUserStatusToUpdate : Microsoft.Graph.DeviceConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceConfigurationUserStatus]]]] + param deviceConfigurationUserStatusToUpdate : Microsoft.Graph.DeviceConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceConfigurationUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceConfigurationUserStatus],[System.Object]]]] @@ -88161,6 +92530,14 @@ interface Microsoft.Graph.IDeviceEnrollmentConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]] + param deviceEnrollmentConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentConfiguration]]]] + param deviceEnrollmentConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentConfiguration],[System.Object]]]] @@ -88233,6 +92610,14 @@ interface Microsoft.Graph.IDeviceEnrollmentLimitConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]] + param deviceEnrollmentLimitConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentLimitConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration]]]] + param deviceEnrollmentLimitConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentLimitConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentLimitConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentLimitConfiguration],[System.Object]]]] @@ -88280,6 +92665,14 @@ interface Microsoft.Graph.IDeviceEnrollmentPlatformRestrictionsConfigurationRequ method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]] + param deviceEnrollmentPlatformRestrictionsConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration]]]] + param deviceEnrollmentPlatformRestrictionsConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentPlatformRestrictionsConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentPlatformRestrictionsConfiguration],[System.Object]]]] @@ -88327,6 +92720,14 @@ interface Microsoft.Graph.IDeviceEnrollmentWindowsHelloForBusinessConfigurationR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]] + param deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration]]]] + param deviceEnrollmentWindowsHelloForBusinessConfigurationToUpdate : Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceEnrollmentWindowsHelloForBusinessConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceEnrollmentWindowsHelloForBusinessConfiguration],[System.Object]]]] @@ -88426,6 +92827,14 @@ interface Microsoft.Graph.IDeviceInstallStateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceInstallState]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceInstallState]] + param deviceInstallStateToUpdate : Microsoft.Graph.DeviceInstallState + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceInstallState]]]] + param deviceInstallStateToUpdate : Microsoft.Graph.DeviceInstallState + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceInstallStateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceInstallState],[System.Object]]]] @@ -88889,6 +93298,14 @@ interface Microsoft.Graph.IDeviceManagementExchangeConnectorRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementExchangeConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementExchangeConnector]] + param deviceManagementExchangeConnectorToUpdate : Microsoft.Graph.DeviceManagementExchangeConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementExchangeConnector]]]] + param deviceManagementExchangeConnectorToUpdate : Microsoft.Graph.DeviceManagementExchangeConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementExchangeConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementExchangeConnector],[System.Object]]]] @@ -89252,6 +93669,14 @@ interface Microsoft.Graph.IDeviceManagementPartnerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementPartner]] + param deviceManagementPartnerToUpdate : Microsoft.Graph.DeviceManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementPartner]]]] + param deviceManagementPartnerToUpdate : Microsoft.Graph.DeviceManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementPartner],[System.Object]]]] @@ -89351,6 +93776,14 @@ interface Microsoft.Graph.IDeviceManagementRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagement]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagement]] + param deviceManagementToUpdate : Microsoft.Graph.DeviceManagement + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagement]]]] + param deviceManagementToUpdate : Microsoft.Graph.DeviceManagement + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagement],[System.Object]]]] @@ -89692,6 +94125,14 @@ interface Microsoft.Graph.IDeviceManagementTroubleshootingEventRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]] + param deviceManagementTroubleshootingEventToUpdate : Microsoft.Graph.DeviceManagementTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DeviceManagementTroubleshootingEvent]]]] + param deviceManagementTroubleshootingEventToUpdate : Microsoft.Graph.DeviceManagementTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceManagementTroubleshootingEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DeviceManagementTroubleshootingEvent],[System.Object]]]] @@ -90092,6 +94533,14 @@ interface Microsoft.Graph.IDeviceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Device]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Device]] + param deviceToUpdate : Microsoft.Graph.Device + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Device]]]] + param deviceToUpdate : Microsoft.Graph.Device + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDeviceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Device],[System.Object]]]] @@ -90258,6 +94707,14 @@ interface Microsoft.Graph.IDirectoryAuditRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryAudit]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryAudit]] + param directoryAuditToUpdate : Microsoft.Graph.DirectoryAudit + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryAudit]]]] + param directoryAuditToUpdate : Microsoft.Graph.DirectoryAudit + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryAuditRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryAudit],[System.Object]]]] @@ -90586,6 +95043,14 @@ interface Microsoft.Graph.IDirectoryObjectPartnerReferenceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObjectPartnerReference]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryObjectPartnerReference]] + param directoryObjectPartnerReferenceToUpdate : Microsoft.Graph.DirectoryObjectPartnerReference + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObjectPartnerReference]]]] + param directoryObjectPartnerReferenceToUpdate : Microsoft.Graph.DirectoryObjectPartnerReference + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryObjectPartnerReferenceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryObjectPartnerReference],[System.Object]]]] @@ -90654,6 +95119,14 @@ interface Microsoft.Graph.IDirectoryObjectRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryObject]] + param directoryObjectToUpdate : Microsoft.Graph.DirectoryObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryObject]]]] + param directoryObjectToUpdate : Microsoft.Graph.DirectoryObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryObjectRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryObject],[System.Object]]]] @@ -90798,6 +95271,14 @@ interface Microsoft.Graph.IDirectoryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Directory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Directory]] + param directoryToUpdate : Microsoft.Graph.Directory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Directory]]]] + param directoryToUpdate : Microsoft.Graph.Directory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Directory],[System.Object]]]] @@ -90942,6 +95423,14 @@ interface Microsoft.Graph.IDirectoryRoleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRole]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryRole]] + param directoryRoleToUpdate : Microsoft.Graph.DirectoryRole + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRole]]]] + param directoryRoleToUpdate : Microsoft.Graph.DirectoryRole + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRoleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryRole],[System.Object]]]] @@ -91043,6 +95532,14 @@ interface Microsoft.Graph.IDirectoryRoleTemplateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRoleTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DirectoryRoleTemplate]] + param directoryRoleTemplateToUpdate : Microsoft.Graph.DirectoryRoleTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DirectoryRoleTemplate]]]] + param directoryRoleTemplateToUpdate : Microsoft.Graph.DirectoryRoleTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDirectoryRoleTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DirectoryRoleTemplate],[System.Object]]]] @@ -91090,6 +95587,14 @@ interface Microsoft.Graph.IDomainDnsCnameRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsCnameRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsCnameRecord]] + param domainDnsCnameRecordToUpdate : Microsoft.Graph.DomainDnsCnameRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsCnameRecord]]]] + param domainDnsCnameRecordToUpdate : Microsoft.Graph.DomainDnsCnameRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsCnameRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsCnameRecord],[System.Object]]]] @@ -91137,6 +95642,14 @@ interface Microsoft.Graph.IDomainDnsMxRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsMxRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsMxRecord]] + param domainDnsMxRecordToUpdate : Microsoft.Graph.DomainDnsMxRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsMxRecord]]]] + param domainDnsMxRecordToUpdate : Microsoft.Graph.DomainDnsMxRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsMxRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsMxRecord],[System.Object]]]] @@ -91184,6 +95697,14 @@ interface Microsoft.Graph.IDomainDnsRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsRecord]] + param domainDnsRecordToUpdate : Microsoft.Graph.DomainDnsRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsRecord]]]] + param domainDnsRecordToUpdate : Microsoft.Graph.DomainDnsRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsRecord],[System.Object]]]] @@ -91231,6 +95752,14 @@ interface Microsoft.Graph.IDomainDnsSrvRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsSrvRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsSrvRecord]] + param domainDnsSrvRecordToUpdate : Microsoft.Graph.DomainDnsSrvRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsSrvRecord]]]] + param domainDnsSrvRecordToUpdate : Microsoft.Graph.DomainDnsSrvRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsSrvRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsSrvRecord],[System.Object]]]] @@ -91278,6 +95807,14 @@ interface Microsoft.Graph.IDomainDnsTxtRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsTxtRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsTxtRecord]] + param domainDnsTxtRecordToUpdate : Microsoft.Graph.DomainDnsTxtRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsTxtRecord]]]] + param domainDnsTxtRecordToUpdate : Microsoft.Graph.DomainDnsTxtRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsTxtRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsTxtRecord],[System.Object]]]] @@ -91325,6 +95862,14 @@ interface Microsoft.Graph.IDomainDnsUnavailableRecordRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsUnavailableRecord]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DomainDnsUnavailableRecord]] + param domainDnsUnavailableRecordToUpdate : Microsoft.Graph.DomainDnsUnavailableRecord + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DomainDnsUnavailableRecord]]]] + param domainDnsUnavailableRecordToUpdate : Microsoft.Graph.DomainDnsUnavailableRecord + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainDnsUnavailableRecordRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DomainDnsUnavailableRecord],[System.Object]]]] @@ -91450,6 +95995,14 @@ interface Microsoft.Graph.IDomainRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Domain]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Domain]] + param domainToUpdate : Microsoft.Graph.Domain + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Domain]]]] + param domainToUpdate : Microsoft.Graph.Domain + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDomainRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Domain],[System.Object]]]] @@ -92035,6 +96588,14 @@ interface Microsoft.Graph.IDriveItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DriveItem]] + param driveItemToUpdate : Microsoft.Graph.DriveItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItem]]]] + param driveItemToUpdate : Microsoft.Graph.DriveItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DriveItem],[System.Object]]]] @@ -92421,6 +96982,14 @@ interface Microsoft.Graph.IDriveItemVersionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.DriveItemVersion]] + param driveItemVersionToUpdate : Microsoft.Graph.DriveItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.DriveItemVersion]]]] + param driveItemVersionToUpdate : Microsoft.Graph.DriveItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.DriveItemVersion],[System.Object]]]] @@ -92575,6 +97144,14 @@ interface Microsoft.Graph.IDriveRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Drive]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Drive]] + param driveToUpdate : Microsoft.Graph.Drive + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Drive]]]] + param driveToUpdate : Microsoft.Graph.Drive + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IDriveRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Drive],[System.Object]]]] @@ -92757,6 +97334,14 @@ interface Microsoft.Graph.IEBookInstallSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EBookInstallSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EBookInstallSummary]] + param eBookInstallSummaryToUpdate : Microsoft.Graph.EBookInstallSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EBookInstallSummary]]]] + param eBookInstallSummaryToUpdate : Microsoft.Graph.EBookInstallSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEBookInstallSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EBookInstallSummary],[System.Object]]]] @@ -92804,6 +97389,14 @@ interface Microsoft.Graph.IEditionUpgradeConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EditionUpgradeConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EditionUpgradeConfiguration]] + param editionUpgradeConfigurationToUpdate : Microsoft.Graph.EditionUpgradeConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EditionUpgradeConfiguration]]]] + param editionUpgradeConfigurationToUpdate : Microsoft.Graph.EditionUpgradeConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEditionUpgradeConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EditionUpgradeConfiguration],[System.Object]]]] @@ -92967,6 +97560,14 @@ interface Microsoft.Graph.IEducationClassRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationClass]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationClass]] + param educationClassToUpdate : Microsoft.Graph.EducationClass + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationClass]]]] + param educationClassToUpdate : Microsoft.Graph.EducationClass + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationClassRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationClass],[System.Object]]]] @@ -93186,6 +97787,14 @@ interface Microsoft.Graph.IEducationOrganizationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationOrganization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationOrganization]] + param educationOrganizationToUpdate : Microsoft.Graph.EducationOrganization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationOrganization]]]] + param educationOrganizationToUpdate : Microsoft.Graph.EducationOrganization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationOrganizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationOrganization],[System.Object]]]] @@ -93287,6 +97896,14 @@ interface Microsoft.Graph.IEducationRootRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationRoot]] + param educationRootToUpdate : Microsoft.Graph.EducationRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationRoot]]]] + param educationRootToUpdate : Microsoft.Graph.EducationRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationRoot],[System.Object]]]] @@ -93562,6 +98179,14 @@ interface Microsoft.Graph.IEducationSchoolRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationSchool]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationSchool]] + param educationSchoolToUpdate : Microsoft.Graph.EducationSchool + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationSchool]]]] + param educationSchoolToUpdate : Microsoft.Graph.EducationSchool + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationSchoolRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationSchool],[System.Object]]]] @@ -93836,6 +98461,14 @@ interface Microsoft.Graph.IEducationUserRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EducationUser]] + param educationUserToUpdate : Microsoft.Graph.EducationUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EducationUser]]]] + param educationUserToUpdate : Microsoft.Graph.EducationUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEducationUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EducationUser],[System.Object]]]] @@ -94107,6 +98740,14 @@ interface Microsoft.Graph.IEmailAuthenticationMethodConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]] + param emailAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.EmailAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailAuthenticationMethodConfiguration]]]] + param emailAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.EmailAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEmailAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EmailAuthenticationMethodConfiguration],[System.Object]]]] @@ -94155,6 +98796,14 @@ interface Microsoft.Graph.IEmailFileAssessmentRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]] + param emailFileAssessmentRequestObjectToUpdate : Microsoft.Graph.EmailFileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EmailFileAssessmentRequestObject]]]] + param emailFileAssessmentRequestObjectToUpdate : Microsoft.Graph.EmailFileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEmailFileAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EmailFileAssessmentRequestObject],[System.Object]]]] @@ -94202,6 +98851,14 @@ interface Microsoft.Graph.IEndpointRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Endpoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Endpoint]] + param endpointToUpdate : Microsoft.Graph.Endpoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Endpoint]]]] + param endpointToUpdate : Microsoft.Graph.Endpoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEndpointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Endpoint],[System.Object]]]] @@ -94249,6 +98906,14 @@ interface Microsoft.Graph.IEnrollmentConfigurationAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]] + param enrollmentConfigurationAssignmentToUpdate : Microsoft.Graph.EnrollmentConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentConfigurationAssignment]]]] + param enrollmentConfigurationAssignmentToUpdate : Microsoft.Graph.EnrollmentConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEnrollmentConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EnrollmentConfigurationAssignment],[System.Object]]]] @@ -94296,6 +98961,14 @@ interface Microsoft.Graph.IEnrollmentTroubleshootingEventRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]] + param enrollmentTroubleshootingEventToUpdate : Microsoft.Graph.EnrollmentTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EnrollmentTroubleshootingEvent]]]] + param enrollmentTroubleshootingEventToUpdate : Microsoft.Graph.EnrollmentTroubleshootingEvent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEnrollmentTroubleshootingEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EnrollmentTroubleshootingEvent],[System.Object]]]] @@ -94364,6 +99037,14 @@ interface Microsoft.Graph.IEntityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Entity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Entity]] + param entityToUpdate : Microsoft.Graph.Entity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Entity]]]] + param entityToUpdate : Microsoft.Graph.Entity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Entity],[System.Object]]]] @@ -94744,6 +99425,14 @@ interface Microsoft.Graph.IEventMessageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessage]] + param eventMessageToUpdate : Microsoft.Graph.EventMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessage]]]] + param eventMessageToUpdate : Microsoft.Graph.EventMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessage],[System.Object]]]] @@ -94792,6 +99481,14 @@ interface Microsoft.Graph.IEventMessageRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessageRequestObject]] + param eventMessageRequestObjectToUpdate : Microsoft.Graph.EventMessageRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageRequestObject]]]] + param eventMessageRequestObjectToUpdate : Microsoft.Graph.EventMessageRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessageRequestObject],[System.Object]]]] @@ -94839,6 +99536,14 @@ interface Microsoft.Graph.IEventMessageResponseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageResponse]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.EventMessageResponse]] + param eventMessageResponseToUpdate : Microsoft.Graph.EventMessageResponse + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.EventMessageResponse]]]] + param eventMessageResponseToUpdate : Microsoft.Graph.EventMessageResponse + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventMessageResponseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.EventMessageResponse],[System.Object]]]] @@ -94938,6 +99643,14 @@ interface Microsoft.Graph.IEventRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Event]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Event]] + param eventToUpdate : Microsoft.Graph.Event + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Event]]]] + param eventToUpdate : Microsoft.Graph.Event + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IEventRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Event],[System.Object]]]] @@ -95103,6 +99816,14 @@ interface Microsoft.Graph.IExtensionPropertyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ExtensionProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ExtensionProperty]] + param extensionPropertyToUpdate : Microsoft.Graph.ExtensionProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ExtensionProperty]]]] + param extensionPropertyToUpdate : Microsoft.Graph.ExtensionProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IExtensionPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ExtensionProperty],[System.Object]]]] @@ -95150,6 +99871,14 @@ interface Microsoft.Graph.IExtensionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Extension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Extension]] + param extensionToUpdate : Microsoft.Graph.Extension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Extension]]]] + param extensionToUpdate : Microsoft.Graph.Extension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Extension],[System.Object]]]] @@ -95249,6 +99978,14 @@ interface Microsoft.Graph.IFido2AuthenticationMethodConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]] + param fido2AuthenticationMethodConfigurationToUpdate : Microsoft.Graph.Fido2AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration]]]] + param fido2AuthenticationMethodConfigurationToUpdate : Microsoft.Graph.Fido2AuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFido2AuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Fido2AuthenticationMethodConfiguration],[System.Object]]]] @@ -95297,6 +100034,14 @@ interface Microsoft.Graph.IFido2AuthenticationMethodRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Fido2AuthenticationMethod]] + param fido2AuthenticationMethodToUpdate : Microsoft.Graph.Fido2AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Fido2AuthenticationMethod]]]] + param fido2AuthenticationMethodToUpdate : Microsoft.Graph.Fido2AuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFido2AuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Fido2AuthenticationMethod],[System.Object]]]] @@ -95344,6 +100089,14 @@ interface Microsoft.Graph.IFieldValueSetRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FieldValueSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FieldValueSet]] + param fieldValueSetToUpdate : Microsoft.Graph.FieldValueSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FieldValueSet]]]] + param fieldValueSetToUpdate : Microsoft.Graph.FieldValueSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFieldValueSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FieldValueSet],[System.Object]]]] @@ -95391,6 +100144,14 @@ interface Microsoft.Graph.IFileAssessmentRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FileAssessmentRequestObject]] + param fileAssessmentRequestObjectToUpdate : Microsoft.Graph.FileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAssessmentRequestObject]]]] + param fileAssessmentRequestObjectToUpdate : Microsoft.Graph.FileAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFileAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FileAssessmentRequestObject],[System.Object]]]] @@ -95461,6 +100222,14 @@ interface Microsoft.Graph.IFileAttachmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.FileAttachment]] + param fileAttachmentToUpdate : Microsoft.Graph.FileAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.FileAttachment]]]] + param fileAttachmentToUpdate : Microsoft.Graph.FileAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IFileAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.FileAttachment],[System.Object]]]] @@ -98148,6 +102917,14 @@ interface Microsoft.Graph.IGroupLifecyclePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupLifecyclePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupLifecyclePolicy]] + param groupLifecyclePolicyToUpdate : Microsoft.Graph.GroupLifecyclePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupLifecyclePolicy]]]] + param groupLifecyclePolicyToUpdate : Microsoft.Graph.GroupLifecyclePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupLifecyclePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupLifecyclePolicy],[System.Object]]]] @@ -98660,6 +103437,14 @@ interface Microsoft.Graph.IGroupRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Group]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Group]] + param groupToUpdate : Microsoft.Graph.Group + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Group]]]] + param groupToUpdate : Microsoft.Graph.Group + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Group],[System.Object]]]] @@ -98774,6 +103559,14 @@ interface Microsoft.Graph.IGroupSettingRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSetting]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupSetting]] + param groupSettingToUpdate : Microsoft.Graph.GroupSetting + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSetting]]]] + param groupSettingToUpdate : Microsoft.Graph.GroupSetting + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupSettingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupSetting],[System.Object]]]] @@ -98873,6 +103666,14 @@ interface Microsoft.Graph.IGroupSettingTemplateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSettingTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GroupSettingTemplate]] + param groupSettingTemplateToUpdate : Microsoft.Graph.GroupSettingTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.GroupSettingTemplate]]]] + param groupSettingTemplateToUpdate : Microsoft.Graph.GroupSettingTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IGroupSettingTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.GroupSettingTemplate],[System.Object]]]] @@ -99271,6 +104072,14 @@ interface Microsoft.Graph.IHomeRealmDiscoveryPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]] + param homeRealmDiscoveryPolicyToUpdate : Microsoft.Graph.HomeRealmDiscoveryPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.HomeRealmDiscoveryPolicy]]]] + param homeRealmDiscoveryPolicyToUpdate : Microsoft.Graph.HomeRealmDiscoveryPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IHomeRealmDiscoveryPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.HomeRealmDiscoveryPolicy],[System.Object]]]] @@ -99366,6 +104175,14 @@ interface Microsoft.Graph.IIdentityContainerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityContainer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityContainer]] + param identityContainerToUpdate : Microsoft.Graph.IdentityContainer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityContainer]]]] + param identityContainerToUpdate : Microsoft.Graph.IdentityContainer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityContainerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityContainer],[System.Object]]]] @@ -99414,6 +104231,14 @@ interface Microsoft.Graph.IIdentityGovernanceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityGovernance]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityGovernance]] + param identityGovernanceToUpdate : Microsoft.Graph.IdentityGovernance + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityGovernance]]]] + param identityGovernanceToUpdate : Microsoft.Graph.IdentityGovernance + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityGovernanceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityGovernance],[System.Object]]]] @@ -99462,6 +104287,14 @@ interface Microsoft.Graph.IIdentityProviderRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityProvider]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentityProvider]] + param identityProviderToUpdate : Microsoft.Graph.IdentityProvider + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentityProvider]]]] + param identityProviderToUpdate : Microsoft.Graph.IdentityProvider + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentityProviderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentityProvider],[System.Object]]]] @@ -99509,6 +104342,14 @@ interface Microsoft.Graph.IIdentitySecurityDefaultsEnforcementPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]] + param identitySecurityDefaultsEnforcementPolicyToUpdate : Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy]]]] + param identitySecurityDefaultsEnforcementPolicyToUpdate : Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIdentitySecurityDefaultsEnforcementPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IdentitySecurityDefaultsEnforcementPolicy],[System.Object]]]] @@ -99556,6 +104397,14 @@ interface Microsoft.Graph.IInferenceClassificationOverrideRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassificationOverride]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InferenceClassificationOverride]] + param inferenceClassificationOverrideToUpdate : Microsoft.Graph.InferenceClassificationOverride + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassificationOverride]]]] + param inferenceClassificationOverrideToUpdate : Microsoft.Graph.InferenceClassificationOverride + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInferenceClassificationOverrideRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InferenceClassificationOverride],[System.Object]]]] @@ -99655,6 +104504,14 @@ interface Microsoft.Graph.IInferenceClassificationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassification]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InferenceClassification]] + param inferenceClassificationToUpdate : Microsoft.Graph.InferenceClassification + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InferenceClassification]]]] + param inferenceClassificationToUpdate : Microsoft.Graph.InferenceClassification + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInferenceClassificationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InferenceClassification],[System.Object]]]] @@ -99703,6 +104560,14 @@ interface Microsoft.Graph.IInformationProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InformationProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InformationProtection]] + param informationProtectionToUpdate : Microsoft.Graph.InformationProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InformationProtection]]]] + param informationProtectionToUpdate : Microsoft.Graph.InformationProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInformationProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InformationProtection],[System.Object]]]] @@ -99803,6 +104668,14 @@ interface Microsoft.Graph.IInvitationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Invitation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Invitation]] + param invitationToUpdate : Microsoft.Graph.Invitation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Invitation]]]] + param invitationToUpdate : Microsoft.Graph.Invitation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInvitationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Invitation],[System.Object]]]] @@ -99851,6 +104724,14 @@ interface Microsoft.Graph.IInviteParticipantsOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InviteParticipantsOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.InviteParticipantsOperation]] + param inviteParticipantsOperationToUpdate : Microsoft.Graph.InviteParticipantsOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.InviteParticipantsOperation]]]] + param inviteParticipantsOperationToUpdate : Microsoft.Graph.InviteParticipantsOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IInviteParticipantsOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.InviteParticipantsOperation],[System.Object]]]] @@ -99898,6 +104779,14 @@ interface Microsoft.Graph.IIosCertificateProfileRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCertificateProfile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCertificateProfile]] + param iosCertificateProfileToUpdate : Microsoft.Graph.IosCertificateProfile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCertificateProfile]]]] + param iosCertificateProfileToUpdate : Microsoft.Graph.IosCertificateProfile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCertificateProfileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCertificateProfile],[System.Object]]]] @@ -99945,6 +104834,14 @@ interface Microsoft.Graph.IIosCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCompliancePolicy]] + param iosCompliancePolicyToUpdate : Microsoft.Graph.IosCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCompliancePolicy]]]] + param iosCompliancePolicyToUpdate : Microsoft.Graph.IosCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCompliancePolicy],[System.Object]]]] @@ -99992,6 +104889,14 @@ interface Microsoft.Graph.IIosCustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosCustomConfiguration]] + param iosCustomConfigurationToUpdate : Microsoft.Graph.IosCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosCustomConfiguration]]]] + param iosCustomConfigurationToUpdate : Microsoft.Graph.IosCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosCustomConfiguration],[System.Object]]]] @@ -100039,6 +104944,14 @@ interface Microsoft.Graph.IIosDeviceFeaturesConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]] + param iosDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.IosDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosDeviceFeaturesConfiguration]]]] + param iosDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.IosDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosDeviceFeaturesConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosDeviceFeaturesConfiguration],[System.Object]]]] @@ -100086,6 +104999,14 @@ interface Microsoft.Graph.IIosGeneralDeviceConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]] + param iosGeneralDeviceConfigurationToUpdate : Microsoft.Graph.IosGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosGeneralDeviceConfiguration]]]] + param iosGeneralDeviceConfigurationToUpdate : Microsoft.Graph.IosGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosGeneralDeviceConfiguration],[System.Object]]]] @@ -100133,6 +105054,14 @@ interface Microsoft.Graph.IIosLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosLobApp]] + param iosLobAppToUpdate : Microsoft.Graph.IosLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosLobApp]]]] + param iosLobAppToUpdate : Microsoft.Graph.IosLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosLobApp],[System.Object]]]] @@ -100232,6 +105161,14 @@ interface Microsoft.Graph.IIosManagedAppProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosManagedAppProtection]] + param iosManagedAppProtectionToUpdate : Microsoft.Graph.IosManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppProtection]]]] + param iosManagedAppProtectionToUpdate : Microsoft.Graph.IosManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosManagedAppProtection],[System.Object]]]] @@ -100281,6 +105218,14 @@ interface Microsoft.Graph.IIosManagedAppRegistrationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosManagedAppRegistration]] + param iosManagedAppRegistrationToUpdate : Microsoft.Graph.IosManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosManagedAppRegistration]]]] + param iosManagedAppRegistrationToUpdate : Microsoft.Graph.IosManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosManagedAppRegistration],[System.Object]]]] @@ -100328,6 +105273,14 @@ interface Microsoft.Graph.IIosMobileAppConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosMobileAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosMobileAppConfiguration]] + param iosMobileAppConfigurationToUpdate : Microsoft.Graph.IosMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosMobileAppConfiguration]]]] + param iosMobileAppConfigurationToUpdate : Microsoft.Graph.IosMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosMobileAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosMobileAppConfiguration],[System.Object]]]] @@ -100375,6 +105328,14 @@ interface Microsoft.Graph.IIosStoreAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosStoreApp]] + param iosStoreAppToUpdate : Microsoft.Graph.IosStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosStoreApp]]]] + param iosStoreAppToUpdate : Microsoft.Graph.IosStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosStoreApp],[System.Object]]]] @@ -100422,6 +105383,14 @@ interface Microsoft.Graph.IIosUpdateConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosUpdateConfiguration]] + param iosUpdateConfigurationToUpdate : Microsoft.Graph.IosUpdateConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateConfiguration]]]] + param iosUpdateConfigurationToUpdate : Microsoft.Graph.IosUpdateConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosUpdateConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosUpdateConfiguration],[System.Object]]]] @@ -100469,6 +105438,14 @@ interface Microsoft.Graph.IIosUpdateDeviceStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosUpdateDeviceStatus]] + param iosUpdateDeviceStatusToUpdate : Microsoft.Graph.IosUpdateDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosUpdateDeviceStatus]]]] + param iosUpdateDeviceStatusToUpdate : Microsoft.Graph.IosUpdateDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosUpdateDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosUpdateDeviceStatus],[System.Object]]]] @@ -100516,6 +105493,14 @@ interface Microsoft.Graph.IIosVppAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppApp]] + param iosVppAppToUpdate : Microsoft.Graph.IosVppApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppApp]]]] + param iosVppAppToUpdate : Microsoft.Graph.IosVppApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppApp],[System.Object]]]] @@ -100563,6 +105548,14 @@ interface Microsoft.Graph.IIosVppEBookAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBookAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppEBookAssignment]] + param iosVppEBookAssignmentToUpdate : Microsoft.Graph.IosVppEBookAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBookAssignment]]]] + param iosVppEBookAssignmentToUpdate : Microsoft.Graph.IosVppEBookAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppEBookAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppEBookAssignment],[System.Object]]]] @@ -100610,6 +105603,14 @@ interface Microsoft.Graph.IIosVppEBookRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IosVppEBook]] + param iosVppEBookToUpdate : Microsoft.Graph.IosVppEBook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IosVppEBook]]]] + param iosVppEBookToUpdate : Microsoft.Graph.IosVppEBook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIosVppEBookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IosVppEBook],[System.Object]]]] @@ -100657,6 +105658,14 @@ interface Microsoft.Graph.IIpNamedLocationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IpNamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.IpNamedLocation]] + param ipNamedLocationToUpdate : Microsoft.Graph.IpNamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.IpNamedLocation]]]] + param ipNamedLocationToUpdate : Microsoft.Graph.IpNamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IIpNamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.IpNamedLocation],[System.Object]]]] @@ -100704,6 +105713,14 @@ interface Microsoft.Graph.IItemActivityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemActivity]] + param itemActivityToUpdate : Microsoft.Graph.ItemActivity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivity]]]] + param itemActivityToUpdate : Microsoft.Graph.ItemActivity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemActivityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemActivity],[System.Object]]]] @@ -100825,6 +105842,14 @@ interface Microsoft.Graph.IItemActivityStatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivityStat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemActivityStat]] + param itemActivityStatToUpdate : Microsoft.Graph.ItemActivityStat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemActivityStat]]]] + param itemActivityStatToUpdate : Microsoft.Graph.ItemActivityStat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemActivityStatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemActivityStat],[System.Object]]]] @@ -100994,6 +106019,14 @@ interface Microsoft.Graph.IItemAnalyticsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAnalytics]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemAnalytics]] + param itemAnalyticsToUpdate : Microsoft.Graph.ItemAnalytics + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAnalytics]]]] + param itemAnalyticsToUpdate : Microsoft.Graph.ItemAnalytics + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemAnalyticsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemAnalytics],[System.Object]]]] @@ -101092,6 +106125,14 @@ interface Microsoft.Graph.IItemAttachmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ItemAttachment]] + param itemAttachmentToUpdate : Microsoft.Graph.ItemAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ItemAttachment]]]] + param itemAttachmentToUpdate : Microsoft.Graph.ItemAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IItemAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ItemAttachment],[System.Object]]]] @@ -101140,6 +106181,14 @@ interface Microsoft.Graph.ILicenseDetailsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LicenseDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LicenseDetails]] + param licenseDetailsToUpdate : Microsoft.Graph.LicenseDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LicenseDetails]]]] + param licenseDetailsToUpdate : Microsoft.Graph.LicenseDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILicenseDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LicenseDetails],[System.Object]]]] @@ -101187,6 +106236,14 @@ interface Microsoft.Graph.ILinkedResourceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LinkedResource]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LinkedResource]] + param linkedResourceToUpdate : Microsoft.Graph.LinkedResource + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LinkedResource]]]] + param linkedResourceToUpdate : Microsoft.Graph.LinkedResource + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILinkedResourceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LinkedResource],[System.Object]]]] @@ -101373,6 +106430,14 @@ interface Microsoft.Graph.IListItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ListItem]] + param listItemToUpdate : Microsoft.Graph.ListItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItem]]]] + param listItemToUpdate : Microsoft.Graph.ListItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ListItem],[System.Object]]]] @@ -101483,6 +106548,14 @@ interface Microsoft.Graph.IListItemVersionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItemVersion]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ListItemVersion]] + param listItemVersionToUpdate : Microsoft.Graph.ListItemVersion + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ListItemVersion]]]] + param listItemVersionToUpdate : Microsoft.Graph.ListItemVersion + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListItemVersionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ListItemVersion],[System.Object]]]] @@ -101602,6 +106675,14 @@ interface Microsoft.Graph.IListRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.List]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.List]] + param listToUpdate : Microsoft.Graph.List + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.List]]]] + param listToUpdate : Microsoft.Graph.List + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.List],[System.Object]]]] @@ -101706,6 +106787,14 @@ interface Microsoft.Graph.ILocalizedNotificationMessageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LocalizedNotificationMessage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.LocalizedNotificationMessage]] + param localizedNotificationMessageToUpdate : Microsoft.Graph.LocalizedNotificationMessage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.LocalizedNotificationMessage]]]] + param localizedNotificationMessageToUpdate : Microsoft.Graph.LocalizedNotificationMessage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ILocalizedNotificationMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.LocalizedNotificationMessage],[System.Object]]]] @@ -101753,6 +106842,14 @@ interface Microsoft.Graph.IMacOSCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSCompliancePolicy]] + param macOSCompliancePolicyToUpdate : Microsoft.Graph.MacOSCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCompliancePolicy]]]] + param macOSCompliancePolicyToUpdate : Microsoft.Graph.MacOSCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSCompliancePolicy],[System.Object]]]] @@ -101800,6 +106897,14 @@ interface Microsoft.Graph.IMacOSCustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSCustomConfiguration]] + param macOSCustomConfigurationToUpdate : Microsoft.Graph.MacOSCustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSCustomConfiguration]]]] + param macOSCustomConfigurationToUpdate : Microsoft.Graph.MacOSCustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSCustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSCustomConfiguration],[System.Object]]]] @@ -101847,6 +106952,14 @@ interface Microsoft.Graph.IMacOSDeviceFeaturesConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]] + param macOSDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.MacOSDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration]]]] + param macOSDeviceFeaturesConfigurationToUpdate : Microsoft.Graph.MacOSDeviceFeaturesConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSDeviceFeaturesConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSDeviceFeaturesConfiguration],[System.Object]]]] @@ -101894,6 +107007,14 @@ interface Microsoft.Graph.IMacOSGeneralDeviceConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]] + param macOSGeneralDeviceConfigurationToUpdate : Microsoft.Graph.MacOSGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSGeneralDeviceConfiguration]]]] + param macOSGeneralDeviceConfigurationToUpdate : Microsoft.Graph.MacOSGeneralDeviceConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSGeneralDeviceConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSGeneralDeviceConfiguration],[System.Object]]]] @@ -101941,6 +107062,14 @@ interface Microsoft.Graph.IMacOSOfficeSuiteAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSOfficeSuiteApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MacOSOfficeSuiteApp]] + param macOSOfficeSuiteAppToUpdate : Microsoft.Graph.MacOSOfficeSuiteApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MacOSOfficeSuiteApp]]]] + param macOSOfficeSuiteAppToUpdate : Microsoft.Graph.MacOSOfficeSuiteApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMacOSOfficeSuiteAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MacOSOfficeSuiteApp],[System.Object]]]] @@ -101988,6 +107117,14 @@ interface Microsoft.Graph.IMailAssessmentRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailAssessmentRequestObject]] + param mailAssessmentRequestObjectToUpdate : Microsoft.Graph.MailAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailAssessmentRequestObject]]]] + param mailAssessmentRequestObjectToUpdate : Microsoft.Graph.MailAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailAssessmentRequestObject],[System.Object]]]] @@ -102318,6 +107455,14 @@ interface Microsoft.Graph.IMailFolderRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailFolder]] + param mailFolderToUpdate : Microsoft.Graph.MailFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailFolder]]]] + param mailFolderToUpdate : Microsoft.Graph.MailFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailFolder],[System.Object]]]] @@ -102428,6 +107573,14 @@ interface Microsoft.Graph.IMailSearchFolderRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailSearchFolder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MailSearchFolder]] + param mailSearchFolderToUpdate : Microsoft.Graph.MailSearchFolder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MailSearchFolder]]]] + param mailSearchFolderToUpdate : Microsoft.Graph.MailSearchFolder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMailSearchFolderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MailSearchFolder],[System.Object]]]] @@ -102475,6 +107628,14 @@ interface Microsoft.Graph.IManagedAndroidLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAndroidLobApp]] + param managedAndroidLobAppToUpdate : Microsoft.Graph.ManagedAndroidLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidLobApp]]]] + param managedAndroidLobAppToUpdate : Microsoft.Graph.ManagedAndroidLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAndroidLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAndroidLobApp],[System.Object]]]] @@ -102522,6 +107683,14 @@ interface Microsoft.Graph.IManagedAndroidStoreAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAndroidStoreApp]] + param managedAndroidStoreAppToUpdate : Microsoft.Graph.ManagedAndroidStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAndroidStoreApp]]]] + param managedAndroidStoreAppToUpdate : Microsoft.Graph.ManagedAndroidStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAndroidStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAndroidStoreApp],[System.Object]]]] @@ -102569,6 +107738,14 @@ interface Microsoft.Graph.IManagedAppConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppConfiguration]] + param managedAppConfigurationToUpdate : Microsoft.Graph.ManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppConfiguration]]]] + param managedAppConfigurationToUpdate : Microsoft.Graph.ManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppConfiguration],[System.Object]]]] @@ -102616,6 +107793,14 @@ interface Microsoft.Graph.IManagedAppOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppOperation]] + param managedAppOperationToUpdate : Microsoft.Graph.ManagedAppOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppOperation]]]] + param managedAppOperationToUpdate : Microsoft.Graph.ManagedAppOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppOperation],[System.Object]]]] @@ -102663,6 +107848,14 @@ interface Microsoft.Graph.IManagedAppPolicyDeploymentSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]] + param managedAppPolicyDeploymentSummaryToUpdate : Microsoft.Graph.ManagedAppPolicyDeploymentSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary]]]] + param managedAppPolicyDeploymentSummaryToUpdate : Microsoft.Graph.ManagedAppPolicyDeploymentSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppPolicyDeploymentSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppPolicyDeploymentSummary],[System.Object]]]] @@ -102710,6 +107903,14 @@ interface Microsoft.Graph.IManagedAppPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppPolicy]] + param managedAppPolicyToUpdate : Microsoft.Graph.ManagedAppPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppPolicy]]]] + param managedAppPolicyToUpdate : Microsoft.Graph.ManagedAppPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppPolicy],[System.Object]]]] @@ -102778,6 +107979,14 @@ interface Microsoft.Graph.IManagedAppProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppProtection]] + param managedAppProtectionToUpdate : Microsoft.Graph.ManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppProtection]]]] + param managedAppProtectionToUpdate : Microsoft.Graph.ManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppProtection],[System.Object]]]] @@ -103058,6 +108267,14 @@ interface Microsoft.Graph.IManagedAppRegistrationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppRegistration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppRegistration]] + param managedAppRegistrationToUpdate : Microsoft.Graph.ManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppRegistration]]]] + param managedAppRegistrationToUpdate : Microsoft.Graph.ManagedAppRegistration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppRegistrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppRegistration],[System.Object]]]] @@ -103156,6 +108373,14 @@ interface Microsoft.Graph.IManagedAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedApp]] + param managedAppToUpdate : Microsoft.Graph.ManagedApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedApp]]]] + param managedAppToUpdate : Microsoft.Graph.ManagedApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedApp],[System.Object]]]] @@ -103203,6 +108428,14 @@ interface Microsoft.Graph.IManagedAppStatusRawRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatusRaw]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppStatusRaw]] + param managedAppStatusRawToUpdate : Microsoft.Graph.ManagedAppStatusRaw + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatusRaw]]]] + param managedAppStatusRawToUpdate : Microsoft.Graph.ManagedAppStatusRaw + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppStatusRawRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppStatusRaw],[System.Object]]]] @@ -103250,6 +108483,14 @@ interface Microsoft.Graph.IManagedAppStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedAppStatus]] + param managedAppStatusToUpdate : Microsoft.Graph.ManagedAppStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedAppStatus]]]] + param managedAppStatusToUpdate : Microsoft.Graph.ManagedAppStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedAppStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedAppStatus],[System.Object]]]] @@ -103505,6 +108746,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]] + param managedDeviceMobileAppConfigurationAssignmentToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment]]]] + param managedDeviceMobileAppConfigurationAssignmentToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationAssignment],[System.Object]]]] @@ -103674,6 +108923,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceStatusReques method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]] + param managedDeviceMobileAppConfigurationDeviceStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus]]]] + param managedDeviceMobileAppConfigurationDeviceStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceStatus],[System.Object]]]] @@ -103721,6 +108978,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceSummaryReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]] + param managedDeviceMobileAppConfigurationDeviceSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary]]]] + param managedDeviceMobileAppConfigurationDeviceSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationDeviceSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationDeviceSummary],[System.Object]]]] @@ -103768,6 +109033,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]] + param managedDeviceMobileAppConfigurationToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration]]]] + param managedDeviceMobileAppConfigurationToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfiguration],[System.Object]]]] @@ -103875,6 +109148,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]] + param managedDeviceMobileAppConfigurationUserStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus]]]] + param managedDeviceMobileAppConfigurationUserStatusToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserStatus],[System.Object]]]] @@ -103922,6 +109203,14 @@ interface Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]] + param managedDeviceMobileAppConfigurationUserSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary]]]] + param managedDeviceMobileAppConfigurationUserSummaryToUpdate : Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceMobileAppConfigurationUserSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceMobileAppConfigurationUserSummary],[System.Object]]]] @@ -103990,6 +109279,14 @@ interface Microsoft.Graph.IManagedDeviceOverviewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceOverview]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDeviceOverview]] + param managedDeviceOverviewToUpdate : Microsoft.Graph.ManagedDeviceOverview + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDeviceOverview]]]] + param managedDeviceOverviewToUpdate : Microsoft.Graph.ManagedDeviceOverview + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceOverviewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDeviceOverview],[System.Object]]]] @@ -104157,6 +109454,14 @@ interface Microsoft.Graph.IManagedDeviceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDevice]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedDevice]] + param managedDeviceToUpdate : Microsoft.Graph.ManagedDevice + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedDevice]]]] + param managedDeviceToUpdate : Microsoft.Graph.ManagedDevice + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedDeviceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedDevice],[System.Object]]]] @@ -104454,6 +109759,14 @@ interface Microsoft.Graph.IManagedEBookAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBookAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedEBookAssignment]] + param managedEBookAssignmentToUpdate : Microsoft.Graph.ManagedEBookAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBookAssignment]]]] + param managedEBookAssignmentToUpdate : Microsoft.Graph.ManagedEBookAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedEBookAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedEBookAssignment],[System.Object]]]] @@ -104623,6 +109936,14 @@ interface Microsoft.Graph.IManagedEBookRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedEBook]] + param managedEBookToUpdate : Microsoft.Graph.ManagedEBook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedEBook]]]] + param managedEBookToUpdate : Microsoft.Graph.ManagedEBook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedEBookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedEBook],[System.Object]]]] @@ -104729,6 +110050,14 @@ interface Microsoft.Graph.IManagedIOSLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedIOSLobApp]] + param managedIOSLobAppToUpdate : Microsoft.Graph.ManagedIOSLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSLobApp]]]] + param managedIOSLobAppToUpdate : Microsoft.Graph.ManagedIOSLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedIOSLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedIOSLobApp],[System.Object]]]] @@ -104776,6 +110105,14 @@ interface Microsoft.Graph.IManagedIOSStoreAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSStoreApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedIOSStoreApp]] + param managedIOSStoreAppToUpdate : Microsoft.Graph.ManagedIOSStoreApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedIOSStoreApp]]]] + param managedIOSStoreAppToUpdate : Microsoft.Graph.ManagedIOSStoreApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedIOSStoreAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedIOSStoreApp],[System.Object]]]] @@ -104823,6 +110160,14 @@ interface Microsoft.Graph.IManagedMobileAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedMobileApp]] + param managedMobileAppToUpdate : Microsoft.Graph.ManagedMobileApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileApp]]]] + param managedMobileAppToUpdate : Microsoft.Graph.ManagedMobileApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedMobileAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedMobileApp],[System.Object]]]] @@ -104922,6 +110267,14 @@ interface Microsoft.Graph.IManagedMobileLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ManagedMobileLobApp]] + param managedMobileLobAppToUpdate : Microsoft.Graph.ManagedMobileLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ManagedMobileLobApp]]]] + param managedMobileLobAppToUpdate : Microsoft.Graph.ManagedMobileLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IManagedMobileLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ManagedMobileLobApp],[System.Object]]]] @@ -104970,6 +110323,14 @@ interface Microsoft.Graph.IMdmWindowsInformationProtectionPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]] + param mdmWindowsInformationProtectionPolicyToUpdate : Microsoft.Graph.MdmWindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy]]]] + param mdmWindowsInformationProtectionPolicyToUpdate : Microsoft.Graph.MdmWindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMdmWindowsInformationProtectionPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MdmWindowsInformationProtectionPolicy],[System.Object]]]] @@ -105378,6 +110739,14 @@ interface Microsoft.Graph.IMessageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Message]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Message]] + param messageToUpdate : Microsoft.Graph.Message + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Message]]]] + param messageToUpdate : Microsoft.Graph.Message + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMessageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Message],[System.Object]]]] @@ -105464,6 +110833,14 @@ interface Microsoft.Graph.IMessageRuleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MessageRule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MessageRule]] + param messageRuleToUpdate : Microsoft.Graph.MessageRule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MessageRule]]]] + param messageRuleToUpdate : Microsoft.Graph.MessageRule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMessageRuleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MessageRule],[System.Object]]]] @@ -105632,6 +111009,14 @@ interface Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodConfigurati method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]] + param microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration]]]] + param microsoftAuthenticatorAuthenticationMethodConfigurationToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodConfiguration],[System.Object]]]] @@ -105680,6 +111065,14 @@ interface Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]] + param microsoftAuthenticatorAuthenticationMethodToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod]]]] + param microsoftAuthenticatorAuthenticationMethodToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethod],[System.Object]]]] @@ -105728,6 +111121,14 @@ interface Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodTargetReque method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]] + param microsoftAuthenticatorAuthenticationMethodTargetToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget]]]] + param microsoftAuthenticatorAuthenticationMethodTargetToUpdate : Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftAuthenticatorAuthenticationMethodTargetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftAuthenticatorAuthenticationMethodTarget],[System.Object]]]] @@ -105775,6 +111176,14 @@ interface Microsoft.Graph.IMicrosoftStoreForBusinessAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]] + param microsoftStoreForBusinessAppToUpdate : Microsoft.Graph.MicrosoftStoreForBusinessApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MicrosoftStoreForBusinessApp]]]] + param microsoftStoreForBusinessAppToUpdate : Microsoft.Graph.MicrosoftStoreForBusinessApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMicrosoftStoreForBusinessAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MicrosoftStoreForBusinessApp],[System.Object]]]] @@ -105822,6 +111231,14 @@ interface Microsoft.Graph.IMobileAppAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppAssignment]] + param mobileAppAssignmentToUpdate : Microsoft.Graph.MobileAppAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppAssignment]]]] + param mobileAppAssignmentToUpdate : Microsoft.Graph.MobileAppAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppAssignment],[System.Object]]]] @@ -106020,6 +111437,14 @@ interface Microsoft.Graph.IMobileAppCategoryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppCategory]] + param mobileAppCategoryToUpdate : Microsoft.Graph.MobileAppCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppCategory]]]] + param mobileAppCategoryToUpdate : Microsoft.Graph.MobileAppCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppCategory],[System.Object]]]] @@ -106150,6 +111575,14 @@ interface Microsoft.Graph.IMobileAppContentFileRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContentFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppContentFile]] + param mobileAppContentFileToUpdate : Microsoft.Graph.MobileAppContentFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContentFile]]]] + param mobileAppContentFileToUpdate : Microsoft.Graph.MobileAppContentFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppContentFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppContentFile],[System.Object]]]] @@ -106254,6 +111687,14 @@ interface Microsoft.Graph.IMobileAppContentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContent]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileAppContent]] + param mobileAppContentToUpdate : Microsoft.Graph.MobileAppContent + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileAppContent]]]] + param mobileAppContentToUpdate : Microsoft.Graph.MobileAppContent + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppContentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileAppContent],[System.Object]]]] @@ -106302,6 +111743,14 @@ interface Microsoft.Graph.IMobileAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileApp]] + param mobileAppToUpdate : Microsoft.Graph.MobileApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileApp]]]] + param mobileAppToUpdate : Microsoft.Graph.MobileApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileApp],[System.Object]]]] @@ -106406,6 +111855,14 @@ interface Microsoft.Graph.IMobileLobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileLobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileLobApp]] + param mobileLobAppToUpdate : Microsoft.Graph.MobileLobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileLobApp]]]] + param mobileLobAppToUpdate : Microsoft.Graph.MobileLobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileLobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileLobApp],[System.Object]]]] @@ -106454,6 +111911,14 @@ interface Microsoft.Graph.IMobileThreatDefenseConnectorRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileThreatDefenseConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MobileThreatDefenseConnector]] + param mobileThreatDefenseConnectorToUpdate : Microsoft.Graph.MobileThreatDefenseConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MobileThreatDefenseConnector]]]] + param mobileThreatDefenseConnectorToUpdate : Microsoft.Graph.MobileThreatDefenseConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMobileThreatDefenseConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MobileThreatDefenseConnector],[System.Object]]]] @@ -106501,6 +111966,14 @@ interface Microsoft.Graph.IMultiValueLegacyExtendedPropertyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]] + param multiValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.MultiValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MultiValueLegacyExtendedProperty]]]] + param multiValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.MultiValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMultiValueLegacyExtendedPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MultiValueLegacyExtendedProperty],[System.Object]]]] @@ -106548,6 +112021,14 @@ interface Microsoft.Graph.IMuteParticipantOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MuteParticipantOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.MuteParticipantOperation]] + param muteParticipantOperationToUpdate : Microsoft.Graph.MuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.MuteParticipantOperation]]]] + param muteParticipantOperationToUpdate : Microsoft.Graph.MuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IMuteParticipantOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.MuteParticipantOperation],[System.Object]]]] @@ -106595,6 +112076,14 @@ interface Microsoft.Graph.INamedLocationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NamedLocation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.NamedLocation]] + param namedLocationToUpdate : Microsoft.Graph.NamedLocation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NamedLocation]]]] + param namedLocationToUpdate : Microsoft.Graph.NamedLocation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INamedLocationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.NamedLocation],[System.Object]]]] @@ -106713,6 +112202,14 @@ interface Microsoft.Graph.INotebookRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Notebook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Notebook]] + param notebookToUpdate : Microsoft.Graph.Notebook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Notebook]]]] + param notebookToUpdate : Microsoft.Graph.Notebook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INotebookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Notebook],[System.Object]]]] @@ -106925,6 +112422,14 @@ interface Microsoft.Graph.INotificationMessageTemplateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NotificationMessageTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.NotificationMessageTemplate]] + param notificationMessageTemplateToUpdate : Microsoft.Graph.NotificationMessageTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.NotificationMessageTemplate]]]] + param notificationMessageTemplateToUpdate : Microsoft.Graph.NotificationMessageTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.INotificationMessageTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.NotificationMessageTemplate],[System.Object]]]] @@ -107048,6 +112553,14 @@ interface Microsoft.Graph.IOAuth2PermissionGrantRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OAuth2PermissionGrant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OAuth2PermissionGrant]] + param oAuth2PermissionGrantToUpdate : Microsoft.Graph.OAuth2PermissionGrant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OAuth2PermissionGrant]]]] + param oAuth2PermissionGrantToUpdate : Microsoft.Graph.OAuth2PermissionGrant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOAuth2PermissionGrantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OAuth2PermissionGrant],[System.Object]]]] @@ -107143,6 +112656,14 @@ interface Microsoft.Graph.IOfferShiftRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfferShiftRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OfferShiftRequestObject]] + param offerShiftRequestObjectToUpdate : Microsoft.Graph.OfferShiftRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfferShiftRequestObject]]]] + param offerShiftRequestObjectToUpdate : Microsoft.Graph.OfferShiftRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOfferShiftRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OfferShiftRequestObject],[System.Object]]]] @@ -107190,6 +112711,14 @@ interface Microsoft.Graph.IOfficeGraphInsightsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfficeGraphInsights]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OfficeGraphInsights]] + param officeGraphInsightsToUpdate : Microsoft.Graph.OfficeGraphInsights + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OfficeGraphInsights]]]] + param officeGraphInsightsToUpdate : Microsoft.Graph.OfficeGraphInsights + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOfficeGraphInsightsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OfficeGraphInsights],[System.Object]]]] @@ -107396,6 +112925,14 @@ interface Microsoft.Graph.IOnenoteEntityBaseModelRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityBaseModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntityBaseModel]] + param onenoteEntityBaseModelToUpdate : Microsoft.Graph.OnenoteEntityBaseModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityBaseModel]]]] + param onenoteEntityBaseModelToUpdate : Microsoft.Graph.OnenoteEntityBaseModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntityBaseModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntityBaseModel],[System.Object]]]] @@ -107443,6 +112980,14 @@ interface Microsoft.Graph.IOnenoteEntityHierarchyModelRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]] + param onenoteEntityHierarchyModelToUpdate : Microsoft.Graph.OnenoteEntityHierarchyModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntityHierarchyModel]]]] + param onenoteEntityHierarchyModelToUpdate : Microsoft.Graph.OnenoteEntityHierarchyModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntityHierarchyModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntityHierarchyModel],[System.Object]]]] @@ -107490,6 +113035,14 @@ interface Microsoft.Graph.IOnenoteEntitySchemaObjectModelRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]] + param onenoteEntitySchemaObjectModelToUpdate : Microsoft.Graph.OnenoteEntitySchemaObjectModel + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteEntitySchemaObjectModel]]]] + param onenoteEntitySchemaObjectModelToUpdate : Microsoft.Graph.OnenoteEntitySchemaObjectModel + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteEntitySchemaObjectModelRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteEntitySchemaObjectModel],[System.Object]]]] @@ -107595,6 +113148,14 @@ interface Microsoft.Graph.IOnenoteOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteOperation]] + param onenoteOperationToUpdate : Microsoft.Graph.OnenoteOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteOperation]]]] + param onenoteOperationToUpdate : Microsoft.Graph.OnenoteOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteOperation],[System.Object]]]] @@ -107770,6 +113331,14 @@ interface Microsoft.Graph.IOnenotePageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenotePage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenotePage]] + param onenotePageToUpdate : Microsoft.Graph.OnenotePage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenotePage]]]] + param onenotePageToUpdate : Microsoft.Graph.OnenotePage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenotePageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenotePage],[System.Object]]]] @@ -107883,6 +113452,14 @@ interface Microsoft.Graph.IOnenoteRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Onenote]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Onenote]] + param onenoteToUpdate : Microsoft.Graph.Onenote + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Onenote]]]] + param onenoteToUpdate : Microsoft.Graph.Onenote + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Onenote],[System.Object]]]] @@ -107959,6 +113536,14 @@ interface Microsoft.Graph.IOnenoteResourceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteResource]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteResource]] + param onenoteResourceToUpdate : Microsoft.Graph.OnenoteResource + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteResource]]]] + param onenoteResourceToUpdate : Microsoft.Graph.OnenoteResource + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteResourceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteResource],[System.Object]]]] @@ -108224,6 +113809,14 @@ interface Microsoft.Graph.IOnenoteSectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteSection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnenoteSection]] + param onenoteSectionToUpdate : Microsoft.Graph.OnenoteSection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnenoteSection]]]] + param onenoteSectionToUpdate : Microsoft.Graph.OnenoteSection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnenoteSectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnenoteSection],[System.Object]]]] @@ -108358,6 +113951,14 @@ interface Microsoft.Graph.IOnlineMeetingRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnlineMeeting]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnlineMeeting]] + param onlineMeetingToUpdate : Microsoft.Graph.OnlineMeeting + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnlineMeeting]]]] + param onlineMeetingToUpdate : Microsoft.Graph.OnlineMeeting + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnlineMeetingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnlineMeeting],[System.Object]]]] @@ -108405,6 +114006,14 @@ interface Microsoft.Graph.IOnPremisesConditionalAccessSettingsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]] + param onPremisesConditionalAccessSettingsToUpdate : Microsoft.Graph.OnPremisesConditionalAccessSettings + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OnPremisesConditionalAccessSettings]]]] + param onPremisesConditionalAccessSettingsToUpdate : Microsoft.Graph.OnPremisesConditionalAccessSettings + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOnPremisesConditionalAccessSettingsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OnPremisesConditionalAccessSettings],[System.Object]]]] @@ -108452,6 +114061,14 @@ interface Microsoft.Graph.IOpenShiftChangeRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShiftChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenShiftChangeRequestObject]] + param openShiftChangeRequestObjectToUpdate : Microsoft.Graph.OpenShiftChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShiftChangeRequestObject]]]] + param openShiftChangeRequestObjectToUpdate : Microsoft.Graph.OpenShiftChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenShiftChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenShiftChangeRequestObject],[System.Object]]]] @@ -108499,6 +114116,14 @@ interface Microsoft.Graph.IOpenShiftRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShift]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenShift]] + param openShiftToUpdate : Microsoft.Graph.OpenShift + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenShift]]]] + param openShiftToUpdate : Microsoft.Graph.OpenShift + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenShiftRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenShift],[System.Object]]]] @@ -108546,6 +114171,14 @@ interface Microsoft.Graph.IOpenTypeExtensionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenTypeExtension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OpenTypeExtension]] + param openTypeExtensionToUpdate : Microsoft.Graph.OpenTypeExtension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OpenTypeExtension]]]] + param openTypeExtensionToUpdate : Microsoft.Graph.OpenTypeExtension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOpenTypeExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OpenTypeExtension],[System.Object]]]] @@ -108593,6 +114226,14 @@ interface Microsoft.Graph.IOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Operation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Operation]] + param operationToUpdate : Microsoft.Graph.Operation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Operation]]]] + param operationToUpdate : Microsoft.Graph.Operation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Operation],[System.Object]]]] @@ -108640,6 +114281,14 @@ interface Microsoft.Graph.IOrganizationalBrandingLocalizationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingLocalization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBrandingLocalization]] + param organizationalBrandingLocalizationToUpdate : Microsoft.Graph.OrganizationalBrandingLocalization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingLocalization]]]] + param organizationalBrandingLocalizationToUpdate : Microsoft.Graph.OrganizationalBrandingLocalization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingLocalizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBrandingLocalization],[System.Object]]]] @@ -108785,6 +114434,14 @@ interface Microsoft.Graph.IOrganizationalBrandingPropertiesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingProperties]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBrandingProperties]] + param organizationalBrandingPropertiesToUpdate : Microsoft.Graph.OrganizationalBrandingProperties + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBrandingProperties]]]] + param organizationalBrandingPropertiesToUpdate : Microsoft.Graph.OrganizationalBrandingProperties + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingPropertiesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBrandingProperties],[System.Object]]]] @@ -108858,6 +114515,14 @@ interface Microsoft.Graph.IOrganizationalBrandingRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBranding]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrganizationalBranding]] + param organizationalBrandingToUpdate : Microsoft.Graph.OrganizationalBranding + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrganizationalBranding]]]] + param organizationalBrandingToUpdate : Microsoft.Graph.OrganizationalBranding + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationalBrandingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrganizationalBranding],[System.Object]]]] @@ -109018,6 +114683,14 @@ interface Microsoft.Graph.IOrganizationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Organization]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Organization]] + param organizationToUpdate : Microsoft.Graph.Organization + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Organization]]]] + param organizationToUpdate : Microsoft.Graph.Organization + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrganizationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Organization],[System.Object]]]] @@ -109242,6 +114915,14 @@ interface Microsoft.Graph.IOrgContactRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrgContact]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OrgContact]] + param orgContactToUpdate : Microsoft.Graph.OrgContact + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OrgContact]]]] + param orgContactToUpdate : Microsoft.Graph.OrgContact + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOrgContactRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OrgContact],[System.Object]]]] @@ -109353,6 +115034,14 @@ interface Microsoft.Graph.IOutlookCategoryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookCategory]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookCategory]] + param outlookCategoryToUpdate : Microsoft.Graph.OutlookCategory + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookCategory]]]] + param outlookCategoryToUpdate : Microsoft.Graph.OutlookCategory + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookCategoryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookCategory],[System.Object]]]] @@ -109400,6 +115089,14 @@ interface Microsoft.Graph.IOutlookItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookItem]] + param outlookItemToUpdate : Microsoft.Graph.OutlookItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookItem]]]] + param outlookItemToUpdate : Microsoft.Graph.OutlookItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookItem],[System.Object]]]] @@ -109499,6 +115196,14 @@ interface Microsoft.Graph.IOutlookUserRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.OutlookUser]] + param outlookUserToUpdate : Microsoft.Graph.OutlookUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.OutlookUser]]]] + param outlookUserToUpdate : Microsoft.Graph.OutlookUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IOutlookUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.OutlookUser],[System.Object]]]] @@ -109660,6 +115365,14 @@ interface Microsoft.Graph.IParticipantRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Participant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Participant]] + param participantToUpdate : Microsoft.Graph.Participant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Participant]]]] + param participantToUpdate : Microsoft.Graph.Participant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IParticipantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Participant],[System.Object]]]] @@ -109716,6 +115429,14 @@ interface Microsoft.Graph.IPermissionGrantConditionSetRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantConditionSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PermissionGrantConditionSet]] + param permissionGrantConditionSetToUpdate : Microsoft.Graph.PermissionGrantConditionSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantConditionSet]]]] + param permissionGrantConditionSetToUpdate : Microsoft.Graph.PermissionGrantConditionSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionGrantConditionSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PermissionGrantConditionSet],[System.Object]]]] @@ -109867,6 +115588,14 @@ interface Microsoft.Graph.IPermissionGrantPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PermissionGrantPolicy]] + param permissionGrantPolicyToUpdate : Microsoft.Graph.PermissionGrantPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PermissionGrantPolicy]]]] + param permissionGrantPolicyToUpdate : Microsoft.Graph.PermissionGrantPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionGrantPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PermissionGrantPolicy],[System.Object]]]] @@ -109946,6 +115675,14 @@ interface Microsoft.Graph.IPermissionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Permission]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Permission]] + param permissionToUpdate : Microsoft.Graph.Permission + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Permission]]]] + param permissionToUpdate : Microsoft.Graph.Permission + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPermissionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Permission],[System.Object]]]] @@ -109997,6 +115734,14 @@ interface Microsoft.Graph.IPersonRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Person]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Person]] + param personToUpdate : Microsoft.Graph.Person + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Person]]]] + param personToUpdate : Microsoft.Graph.Person + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPersonRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Person],[System.Object]]]] @@ -110044,6 +115789,14 @@ interface Microsoft.Graph.IPlaceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Place]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Place]] + param placeToUpdate : Microsoft.Graph.Place + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Place]]]] + param placeToUpdate : Microsoft.Graph.Place + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlaceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Place],[System.Object]]]] @@ -110091,6 +115844,14 @@ interface Microsoft.Graph.IPlannerAssignedToTaskBoardTaskFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]] + param plannerAssignedToTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat]]]] + param plannerAssignedToTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerAssignedToTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerAssignedToTaskBoardTaskFormat],[System.Object]]]] @@ -110138,6 +115899,14 @@ interface Microsoft.Graph.IPlannerBucketRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucket]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerBucket]] + param plannerBucketToUpdate : Microsoft.Graph.PlannerBucket + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucket]]]] + param plannerBucketToUpdate : Microsoft.Graph.PlannerBucket + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerBucketRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerBucket],[System.Object]]]] @@ -110238,6 +116007,14 @@ interface Microsoft.Graph.IPlannerBucketTaskBoardTaskFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]] + param plannerBucketTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerBucketTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat]]]] + param plannerBucketTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerBucketTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerBucketTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerBucketTaskBoardTaskFormat],[System.Object]]]] @@ -110389,6 +116166,14 @@ interface Microsoft.Graph.IPlannerGroupRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerGroup]] + param plannerGroupToUpdate : Microsoft.Graph.PlannerGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerGroup]]]] + param plannerGroupToUpdate : Microsoft.Graph.PlannerGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerGroup],[System.Object]]]] @@ -110489,6 +116274,14 @@ interface Microsoft.Graph.IPlannerPlanDetailsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlanDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerPlanDetails]] + param plannerPlanDetailsToUpdate : Microsoft.Graph.PlannerPlanDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlanDetails]]]] + param plannerPlanDetailsToUpdate : Microsoft.Graph.PlannerPlanDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerPlanDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerPlanDetails],[System.Object]]]] @@ -110536,6 +116329,14 @@ interface Microsoft.Graph.IPlannerPlanRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlan]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerPlan]] + param plannerPlanToUpdate : Microsoft.Graph.PlannerPlan + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerPlan]]]] + param plannerPlanToUpdate : Microsoft.Graph.PlannerPlan + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerPlanRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerPlan],[System.Object]]]] @@ -110690,6 +116491,14 @@ interface Microsoft.Graph.IPlannerProgressTaskBoardTaskFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]] + param plannerProgressTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerProgressTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat]]]] + param plannerProgressTaskBoardTaskFormatToUpdate : Microsoft.Graph.PlannerProgressTaskBoardTaskFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerProgressTaskBoardTaskFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerProgressTaskBoardTaskFormat],[System.Object]]]] @@ -110737,6 +116546,14 @@ interface Microsoft.Graph.IPlannerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Planner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Planner]] + param plannerToUpdate : Microsoft.Graph.Planner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Planner]]]] + param plannerToUpdate : Microsoft.Graph.Planner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Planner],[System.Object]]]] @@ -110787,6 +116604,14 @@ interface Microsoft.Graph.IPlannerTaskDetailsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTaskDetails]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerTaskDetails]] + param plannerTaskDetailsToUpdate : Microsoft.Graph.PlannerTaskDetails + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTaskDetails]]]] + param plannerTaskDetailsToUpdate : Microsoft.Graph.PlannerTaskDetails + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerTaskDetailsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerTaskDetails],[System.Object]]]] @@ -110834,6 +116659,14 @@ interface Microsoft.Graph.IPlannerTaskRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerTask]] + param plannerTaskToUpdate : Microsoft.Graph.PlannerTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerTask]]]] + param plannerTaskToUpdate : Microsoft.Graph.PlannerTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerTask],[System.Object]]]] @@ -110989,6 +116822,14 @@ interface Microsoft.Graph.IPlannerUserRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlannerUser]] + param plannerUserToUpdate : Microsoft.Graph.PlannerUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlannerUser]]]] + param plannerUserToUpdate : Microsoft.Graph.PlannerUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlannerUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlannerUser],[System.Object]]]] @@ -111090,6 +116931,14 @@ interface Microsoft.Graph.IPlayPromptOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlayPromptOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PlayPromptOperation]] + param playPromptOperationToUpdate : Microsoft.Graph.PlayPromptOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PlayPromptOperation]]]] + param playPromptOperationToUpdate : Microsoft.Graph.PlayPromptOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPlayPromptOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PlayPromptOperation],[System.Object]]]] @@ -111137,6 +116986,14 @@ interface Microsoft.Graph.IPolicyBaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PolicyBase]] + param policyBaseToUpdate : Microsoft.Graph.PolicyBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyBase]]]] + param policyBaseToUpdate : Microsoft.Graph.PolicyBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPolicyBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PolicyBase],[System.Object]]]] @@ -111444,6 +117301,14 @@ interface Microsoft.Graph.IPolicyRootRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PolicyRoot]] + param policyRootToUpdate : Microsoft.Graph.PolicyRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PolicyRoot]]]] + param policyRootToUpdate : Microsoft.Graph.PolicyRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPolicyRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PolicyRoot],[System.Object]]]] @@ -111800,6 +117665,14 @@ interface Microsoft.Graph.IPostRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Post]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Post]] + param postToUpdate : Microsoft.Graph.Post + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Post]]]] + param postToUpdate : Microsoft.Graph.Post + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPostRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Post],[System.Object]]]] @@ -111911,6 +117784,14 @@ interface Microsoft.Graph.IPresenceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Presence]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Presence]] + param presenceToUpdate : Microsoft.Graph.Presence + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Presence]]]] + param presenceToUpdate : Microsoft.Graph.Presence + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPresenceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Presence],[System.Object]]]] @@ -111979,6 +117860,14 @@ interface Microsoft.Graph.IPrintConnectorRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintConnector]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintConnector]] + param printConnectorToUpdate : Microsoft.Graph.PrintConnector + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintConnector]]]] + param printConnectorToUpdate : Microsoft.Graph.PrintConnector + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintConnectorRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintConnector],[System.Object]]]] @@ -112167,6 +118056,14 @@ interface Microsoft.Graph.IPrintDocumentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintDocument]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintDocument]] + param printDocumentToUpdate : Microsoft.Graph.PrintDocument + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintDocument]]]] + param printDocumentToUpdate : Microsoft.Graph.PrintDocument + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintDocumentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintDocument],[System.Object]]]] @@ -112270,6 +118167,14 @@ interface Microsoft.Graph.IPrinterBaseRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterBase]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterBase]] + param printerBaseToUpdate : Microsoft.Graph.PrinterBase + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterBase]]]] + param printerBaseToUpdate : Microsoft.Graph.PrinterBase + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterBaseRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterBase],[System.Object]]]] @@ -112378,6 +118283,14 @@ interface Microsoft.Graph.IPrinterCreateOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterCreateOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterCreateOperation]] + param printerCreateOperationToUpdate : Microsoft.Graph.PrinterCreateOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterCreateOperation]]]] + param printerCreateOperationToUpdate : Microsoft.Graph.PrinterCreateOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterCreateOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterCreateOperation],[System.Object]]]] @@ -112465,6 +118378,14 @@ interface Microsoft.Graph.IPrinterRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Printer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Printer]] + param printerToUpdate : Microsoft.Graph.Printer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Printer]]]] + param printerToUpdate : Microsoft.Graph.Printer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Printer],[System.Object]]]] @@ -112675,6 +118596,14 @@ interface Microsoft.Graph.IPrinterShareRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterShare]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrinterShare]] + param printerShareToUpdate : Microsoft.Graph.PrinterShare + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrinterShare]]]] + param printerShareToUpdate : Microsoft.Graph.PrinterShare + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrinterShareRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrinterShare],[System.Object]]]] @@ -113038,6 +118967,14 @@ interface Microsoft.Graph.IPrintJobRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintJob]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintJob]] + param printJobToUpdate : Microsoft.Graph.PrintJob + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintJob]]]] + param printJobToUpdate : Microsoft.Graph.PrintJob + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintJobRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintJob],[System.Object]]]] @@ -113167,6 +119104,14 @@ interface Microsoft.Graph.IPrintOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintOperation]] + param printOperationToUpdate : Microsoft.Graph.PrintOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintOperation]]]] + param printOperationToUpdate : Microsoft.Graph.PrintOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintOperation],[System.Object]]]] @@ -113327,6 +119272,14 @@ interface Microsoft.Graph.IPrintRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Print]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Print]] + param printToUpdate : Microsoft.Graph.Print + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Print]]]] + param printToUpdate : Microsoft.Graph.Print + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Print],[System.Object]]]] @@ -113380,6 +119333,14 @@ interface Microsoft.Graph.IPrintServiceEndpointRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintServiceEndpoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintServiceEndpoint]] + param printServiceEndpointToUpdate : Microsoft.Graph.PrintServiceEndpoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintServiceEndpoint]]]] + param printServiceEndpointToUpdate : Microsoft.Graph.PrintServiceEndpoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintServiceEndpointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintServiceEndpoint],[System.Object]]]] @@ -113479,6 +119440,14 @@ interface Microsoft.Graph.IPrintServiceRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintService]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintService]] + param printServiceToUpdate : Microsoft.Graph.PrintService + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintService]]]] + param printServiceToUpdate : Microsoft.Graph.PrintService + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintServiceRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintService],[System.Object]]]] @@ -113652,6 +119621,14 @@ interface Microsoft.Graph.IPrintTaskDefinitionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTaskDefinition]] + param printTaskDefinitionToUpdate : Microsoft.Graph.PrintTaskDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskDefinition]]]] + param printTaskDefinitionToUpdate : Microsoft.Graph.PrintTaskDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTaskDefinition],[System.Object]]]] @@ -113852,6 +119829,14 @@ interface Microsoft.Graph.IPrintTaskRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTask]] + param printTaskToUpdate : Microsoft.Graph.PrintTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTask]]]] + param printTaskToUpdate : Microsoft.Graph.PrintTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTask],[System.Object]]]] @@ -113922,6 +119907,14 @@ interface Microsoft.Graph.IPrintTaskTriggerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskTrigger]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintTaskTrigger]] + param printTaskTriggerToUpdate : Microsoft.Graph.PrintTaskTrigger + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintTaskTrigger]]]] + param printTaskTriggerToUpdate : Microsoft.Graph.PrintTaskTrigger + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintTaskTriggerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintTaskTrigger],[System.Object]]]] @@ -114018,6 +120011,14 @@ interface Microsoft.Graph.IPrintUsageByPrinterRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByPrinter]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsageByPrinter]] + param printUsageByPrinterToUpdate : Microsoft.Graph.PrintUsageByPrinter + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByPrinter]]]] + param printUsageByPrinterToUpdate : Microsoft.Graph.PrintUsageByPrinter + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageByPrinterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsageByPrinter],[System.Object]]]] @@ -114065,6 +120066,14 @@ interface Microsoft.Graph.IPrintUsageByUserRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByUser]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsageByUser]] + param printUsageByUserToUpdate : Microsoft.Graph.PrintUsageByUser + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsageByUser]]]] + param printUsageByUserToUpdate : Microsoft.Graph.PrintUsageByUser + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageByUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsageByUser],[System.Object]]]] @@ -114112,6 +120121,14 @@ interface Microsoft.Graph.IPrintUsageRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsage]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.PrintUsage]] + param printUsageToUpdate : Microsoft.Graph.PrintUsage + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.PrintUsage]]]] + param printUsageToUpdate : Microsoft.Graph.PrintUsage + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IPrintUsageRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.PrintUsage],[System.Object]]]] @@ -114182,6 +120199,14 @@ interface Microsoft.Graph.IProfilePhotoRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ProfilePhoto]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ProfilePhoto]] + param profilePhotoToUpdate : Microsoft.Graph.ProfilePhoto + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ProfilePhoto]]]] + param profilePhotoToUpdate : Microsoft.Graph.ProfilePhoto + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IProfilePhotoRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ProfilePhoto],[System.Object]]]] @@ -114230,6 +120255,14 @@ interface Microsoft.Graph.IRecordOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RecordOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RecordOperation]] + param recordOperationToUpdate : Microsoft.Graph.RecordOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RecordOperation]]]] + param recordOperationToUpdate : Microsoft.Graph.RecordOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRecordOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RecordOperation],[System.Object]]]] @@ -114277,6 +120310,14 @@ interface Microsoft.Graph.IReferenceAttachmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReferenceAttachment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ReferenceAttachment]] + param referenceAttachmentToUpdate : Microsoft.Graph.ReferenceAttachment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReferenceAttachment]]]] + param referenceAttachmentToUpdate : Microsoft.Graph.ReferenceAttachment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IReferenceAttachmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ReferenceAttachment],[System.Object]]]] @@ -114358,6 +120399,14 @@ interface Microsoft.Graph.IRemoteAssistancePartnerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RemoteAssistancePartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RemoteAssistancePartner]] + param remoteAssistancePartnerToUpdate : Microsoft.Graph.RemoteAssistancePartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RemoteAssistancePartner]]]] + param remoteAssistancePartnerToUpdate : Microsoft.Graph.RemoteAssistancePartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRemoteAssistancePartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RemoteAssistancePartner],[System.Object]]]] @@ -117089,6 +123138,14 @@ interface Microsoft.Graph.IReportRootRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReportRoot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ReportRoot]] + param reportRootToUpdate : Microsoft.Graph.ReportRoot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ReportRoot]]]] + param reportRootToUpdate : Microsoft.Graph.ReportRoot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IReportRootRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ReportRoot],[System.Object]]]] @@ -117418,6 +123475,14 @@ interface Microsoft.Graph.IResourceOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ResourceOperation]] + param resourceOperationToUpdate : Microsoft.Graph.ResourceOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceOperation]]]] + param resourceOperationToUpdate : Microsoft.Graph.ResourceOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IResourceOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ResourceOperation],[System.Object]]]] @@ -117465,6 +123530,14 @@ interface Microsoft.Graph.IResourceSpecificPermissionGrantRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]] + param resourceSpecificPermissionGrantToUpdate : Microsoft.Graph.ResourceSpecificPermissionGrant + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ResourceSpecificPermissionGrant]]]] + param resourceSpecificPermissionGrantToUpdate : Microsoft.Graph.ResourceSpecificPermissionGrant + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IResourceSpecificPermissionGrantRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ResourceSpecificPermissionGrant],[System.Object]]]] @@ -117512,6 +123585,14 @@ interface Microsoft.Graph.IRestrictedSignInRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RestrictedSignIn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RestrictedSignIn]] + param restrictedSignInToUpdate : Microsoft.Graph.RestrictedSignIn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RestrictedSignIn]]]] + param restrictedSignInToUpdate : Microsoft.Graph.RestrictedSignIn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRestrictedSignInRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RestrictedSignIn],[System.Object]]]] @@ -117559,6 +123640,14 @@ interface Microsoft.Graph.IRoleAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoleAssignment]] + param roleAssignmentToUpdate : Microsoft.Graph.RoleAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleAssignment]]]] + param roleAssignmentToUpdate : Microsoft.Graph.RoleAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoleAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoleAssignment],[System.Object]]]] @@ -117628,6 +123717,14 @@ interface Microsoft.Graph.IRoleDefinitionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoleDefinition]] + param roleDefinitionToUpdate : Microsoft.Graph.RoleDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoleDefinition]]]] + param roleDefinitionToUpdate : Microsoft.Graph.RoleDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoleDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoleDefinition],[System.Object]]]] @@ -117776,6 +123873,14 @@ interface Microsoft.Graph.IRoomListRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoomList]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.RoomList]] + param roomListToUpdate : Microsoft.Graph.RoomList + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.RoomList]]]] + param roomListToUpdate : Microsoft.Graph.RoomList + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoomListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.RoomList],[System.Object]]]] @@ -117876,6 +123981,14 @@ interface Microsoft.Graph.IRoomRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Room]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Room]] + param roomToUpdate : Microsoft.Graph.Room + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Room]]]] + param roomToUpdate : Microsoft.Graph.Room + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IRoomRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Room],[System.Object]]]] @@ -117959,6 +124072,14 @@ interface Microsoft.Graph.IScheduleChangeRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScheduleChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ScheduleChangeRequestObject]] + param scheduleChangeRequestObjectToUpdate : Microsoft.Graph.ScheduleChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScheduleChangeRequestObject]]]] + param scheduleChangeRequestObjectToUpdate : Microsoft.Graph.ScheduleChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScheduleChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ScheduleChangeRequestObject],[System.Object]]]] @@ -118168,6 +124289,14 @@ interface Microsoft.Graph.IScheduleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Schedule]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Schedule]] + param scheduleToUpdate : Microsoft.Graph.Schedule + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Schedule]]]] + param scheduleToUpdate : Microsoft.Graph.Schedule + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScheduleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Schedule],[System.Object]]]] @@ -118559,6 +124688,14 @@ interface Microsoft.Graph.ISchedulingGroupRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchedulingGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SchedulingGroup]] + param schedulingGroupToUpdate : Microsoft.Graph.SchedulingGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchedulingGroup]]]] + param schedulingGroupToUpdate : Microsoft.Graph.SchedulingGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISchedulingGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SchedulingGroup],[System.Object]]]] @@ -118606,6 +124743,14 @@ interface Microsoft.Graph.ISchemaExtensionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchemaExtension]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SchemaExtension]] + param schemaExtensionToUpdate : Microsoft.Graph.SchemaExtension + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SchemaExtension]]]] + param schemaExtensionToUpdate : Microsoft.Graph.SchemaExtension + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISchemaExtensionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SchemaExtension],[System.Object]]]] @@ -118653,6 +124798,14 @@ interface Microsoft.Graph.IScopedRoleMembershipRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScopedRoleMembership]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ScopedRoleMembership]] + param scopedRoleMembershipToUpdate : Microsoft.Graph.ScopedRoleMembership + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ScopedRoleMembership]]]] + param scopedRoleMembershipToUpdate : Microsoft.Graph.ScopedRoleMembership + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IScopedRoleMembershipRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ScopedRoleMembership],[System.Object]]]] @@ -118736,6 +124889,14 @@ interface Microsoft.Graph.ISearchEntityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SearchEntity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SearchEntity]] + param searchEntityToUpdate : Microsoft.Graph.SearchEntity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SearchEntity]]]] + param searchEntityToUpdate : Microsoft.Graph.SearchEntity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISearchEntityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SearchEntity],[System.Object]]]] @@ -118786,6 +124947,14 @@ interface Microsoft.Graph.ISectionGroupRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SectionGroup]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SectionGroup]] + param sectionGroupToUpdate : Microsoft.Graph.SectionGroup + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SectionGroup]]]] + param sectionGroupToUpdate : Microsoft.Graph.SectionGroup + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISectionGroupRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SectionGroup],[System.Object]]]] @@ -118941,6 +125110,14 @@ interface Microsoft.Graph.ISecureScoreControlProfileRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScoreControlProfile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SecureScoreControlProfile]] + param secureScoreControlProfileToUpdate : Microsoft.Graph.SecureScoreControlProfile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScoreControlProfile]]]] + param secureScoreControlProfileToUpdate : Microsoft.Graph.SecureScoreControlProfile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecureScoreControlProfileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SecureScoreControlProfile],[System.Object]]]] @@ -118988,6 +125165,14 @@ interface Microsoft.Graph.ISecureScoreRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScore]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SecureScore]] + param secureScoreToUpdate : Microsoft.Graph.SecureScore + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SecureScore]]]] + param secureScoreToUpdate : Microsoft.Graph.SecureScore + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecureScoreRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SecureScore],[System.Object]]]] @@ -119087,6 +125272,14 @@ interface Microsoft.Graph.ISecurityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Security]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Security]] + param securityToUpdate : Microsoft.Graph.Security + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Security]]]] + param securityToUpdate : Microsoft.Graph.Security + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISecurityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Security],[System.Object]]]] @@ -119241,6 +125434,14 @@ interface Microsoft.Graph.CallRecords.ISegmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Segment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.Segment]] + param segmentToUpdate : Microsoft.Graph.CallRecords.Segment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Segment]]]] + param segmentToUpdate : Microsoft.Graph.CallRecords.Segment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ISegmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.Segment],[System.Object]]]] @@ -120044,6 +126245,14 @@ interface Microsoft.Graph.IServicePrincipalRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ServicePrincipal]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ServicePrincipal]] + param servicePrincipalToUpdate : Microsoft.Graph.ServicePrincipal + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ServicePrincipal]]]] + param servicePrincipalToUpdate : Microsoft.Graph.ServicePrincipal + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IServicePrincipalRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ServicePrincipal],[System.Object]]]] @@ -120348,6 +126557,14 @@ interface Microsoft.Graph.CallRecords.ISessionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Session]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.CallRecords.Session]] + param sessionToUpdate : Microsoft.Graph.CallRecords.Session + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.CallRecords.Session]]]] + param sessionToUpdate : Microsoft.Graph.CallRecords.Session + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.CallRecords.ISessionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.CallRecords.Session],[System.Object]]]] @@ -120448,6 +126665,14 @@ interface Microsoft.Graph.ISettingStateDeviceSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SettingStateDeviceSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SettingStateDeviceSummary]] + param settingStateDeviceSummaryToUpdate : Microsoft.Graph.SettingStateDeviceSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SettingStateDeviceSummary]]]] + param settingStateDeviceSummaryToUpdate : Microsoft.Graph.SettingStateDeviceSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISettingStateDeviceSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SettingStateDeviceSummary],[System.Object]]]] @@ -120547,6 +126772,14 @@ interface Microsoft.Graph.ISharedDriveItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedDriveItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedDriveItem]] + param sharedDriveItemToUpdate : Microsoft.Graph.SharedDriveItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedDriveItem]]]] + param sharedDriveItemToUpdate : Microsoft.Graph.SharedDriveItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedDriveItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedDriveItem],[System.Object]]]] @@ -120601,6 +126834,14 @@ interface Microsoft.Graph.ISharedInsightRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedInsight]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedInsight]] + param sharedInsightToUpdate : Microsoft.Graph.SharedInsight + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedInsight]]]] + param sharedInsightToUpdate : Microsoft.Graph.SharedInsight + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedInsightRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedInsight],[System.Object]]]] @@ -120650,6 +126891,14 @@ interface Microsoft.Graph.ISharedPCConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedPCConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SharedPCConfiguration]] + param sharedPCConfigurationToUpdate : Microsoft.Graph.SharedPCConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SharedPCConfiguration]]]] + param sharedPCConfigurationToUpdate : Microsoft.Graph.SharedPCConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISharedPCConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SharedPCConfiguration],[System.Object]]]] @@ -120697,6 +126946,14 @@ interface Microsoft.Graph.IShiftPreferencesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ShiftPreferences]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ShiftPreferences]] + param shiftPreferencesToUpdate : Microsoft.Graph.ShiftPreferences + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ShiftPreferences]]]] + param shiftPreferencesToUpdate : Microsoft.Graph.ShiftPreferences + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IShiftPreferencesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ShiftPreferences],[System.Object]]]] @@ -120744,6 +127001,14 @@ interface Microsoft.Graph.IShiftRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Shift]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Shift]] + param shiftToUpdate : Microsoft.Graph.Shift + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Shift]]]] + param shiftToUpdate : Microsoft.Graph.Shift + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IShiftRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Shift],[System.Object]]]] @@ -120791,6 +127056,14 @@ interface Microsoft.Graph.ISignInRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SignIn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SignIn]] + param signInToUpdate : Microsoft.Graph.SignIn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SignIn]]]] + param signInToUpdate : Microsoft.Graph.SignIn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISignInRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SignIn],[System.Object]]]] @@ -120838,6 +127111,14 @@ interface Microsoft.Graph.ISingleValueLegacyExtendedPropertyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]] + param singleValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.SingleValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SingleValueLegacyExtendedProperty]]]] + param singleValueLegacyExtendedPropertyToUpdate : Microsoft.Graph.SingleValueLegacyExtendedProperty + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISingleValueLegacyExtendedPropertyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SingleValueLegacyExtendedProperty],[System.Object]]]] @@ -121384,6 +127665,14 @@ interface Microsoft.Graph.ISiteRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Site]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Site]] + param siteToUpdate : Microsoft.Graph.Site + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Site]]]] + param siteToUpdate : Microsoft.Graph.Site + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISiteRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Site],[System.Object]]]] @@ -121581,6 +127870,14 @@ interface Microsoft.Graph.ISoftwareUpdateStatusSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]] + param softwareUpdateStatusSummaryToUpdate : Microsoft.Graph.SoftwareUpdateStatusSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SoftwareUpdateStatusSummary]]]] + param softwareUpdateStatusSummaryToUpdate : Microsoft.Graph.SoftwareUpdateStatusSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISoftwareUpdateStatusSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SoftwareUpdateStatusSummary],[System.Object]]]] @@ -121736,6 +128033,14 @@ interface Microsoft.Graph.IStsPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.StsPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.StsPolicy]] + param stsPolicyToUpdate : Microsoft.Graph.StsPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.StsPolicy]]]] + param stsPolicyToUpdate : Microsoft.Graph.StsPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IStsPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.StsPolicy],[System.Object]]]] @@ -121784,6 +128089,14 @@ interface Microsoft.Graph.ISubscribedSkuRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribedSku]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SubscribedSku]] + param subscribedSkuToUpdate : Microsoft.Graph.SubscribedSku + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribedSku]]]] + param subscribedSkuToUpdate : Microsoft.Graph.SubscribedSku + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscribedSkuRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SubscribedSku],[System.Object]]]] @@ -121831,6 +128144,14 @@ interface Microsoft.Graph.ISubscribeToToneOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribeToToneOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SubscribeToToneOperation]] + param subscribeToToneOperationToUpdate : Microsoft.Graph.SubscribeToToneOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SubscribeToToneOperation]]]] + param subscribeToToneOperationToUpdate : Microsoft.Graph.SubscribeToToneOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscribeToToneOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SubscribeToToneOperation],[System.Object]]]] @@ -121878,6 +128199,14 @@ interface Microsoft.Graph.ISubscriptionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Subscription]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Subscription]] + param subscriptionToUpdate : Microsoft.Graph.Subscription + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Subscription]]]] + param subscriptionToUpdate : Microsoft.Graph.Subscription + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISubscriptionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Subscription],[System.Object]]]] @@ -121925,6 +128254,14 @@ interface Microsoft.Graph.ISwapShiftsChangeRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]] + param swapShiftsChangeRequestObjectToUpdate : Microsoft.Graph.SwapShiftsChangeRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.SwapShiftsChangeRequestObject]]]] + param swapShiftsChangeRequestObjectToUpdate : Microsoft.Graph.SwapShiftsChangeRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ISwapShiftsChangeRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.SwapShiftsChangeRequestObject],[System.Object]]]] @@ -122094,6 +128431,14 @@ interface Microsoft.Graph.ITargetedManagedAppConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppConfiguration]] + param targetedManagedAppConfigurationToUpdate : Microsoft.Graph.TargetedManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppConfiguration]]]] + param targetedManagedAppConfigurationToUpdate : Microsoft.Graph.TargetedManagedAppConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppConfiguration],[System.Object]]]] @@ -122168,6 +128513,14 @@ interface Microsoft.Graph.ITargetedManagedAppPolicyAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]] + param targetedManagedAppPolicyAssignmentToUpdate : Microsoft.Graph.TargetedManagedAppPolicyAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppPolicyAssignment]]]] + param targetedManagedAppPolicyAssignmentToUpdate : Microsoft.Graph.TargetedManagedAppPolicyAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppPolicyAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppPolicyAssignment],[System.Object]]]] @@ -122285,6 +128638,14 @@ interface Microsoft.Graph.ITargetedManagedAppProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TargetedManagedAppProtection]] + param targetedManagedAppProtectionToUpdate : Microsoft.Graph.TargetedManagedAppProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TargetedManagedAppProtection]]]] + param targetedManagedAppProtectionToUpdate : Microsoft.Graph.TargetedManagedAppProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITargetedManagedAppProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TargetedManagedAppProtection],[System.Object]]]] @@ -122617,10 +128978,11 @@ interface Microsoft.Graph.ITeamRequest param cancellationToken : System.Threading.CancellationToken method PutAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Team]] - param teamToCreate : Microsoft.Graph.Team - method PutAsync - return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Team]] - param teamToCreate : Microsoft.Graph.Team + param teamToUpdate : Microsoft.Graph.Team + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Team]]]] + param teamToUpdate : Microsoft.Graph.Team param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamRequest @@ -122763,6 +129125,14 @@ interface Microsoft.Graph.ITeamsAppDefinitionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppDefinition]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAppDefinition]] + param teamsAppDefinitionToUpdate : Microsoft.Graph.TeamsAppDefinition + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppDefinition]]]] + param teamsAppDefinitionToUpdate : Microsoft.Graph.TeamsAppDefinition + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppDefinitionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAppDefinition],[System.Object]]]] @@ -122859,6 +129229,14 @@ interface Microsoft.Graph.ITeamsAppInstallationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppInstallation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAppInstallation]] + param teamsAppInstallationToUpdate : Microsoft.Graph.TeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAppInstallation]]]] + param teamsAppInstallationToUpdate : Microsoft.Graph.TeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppInstallationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAppInstallation],[System.Object]]]] @@ -122948,6 +129326,14 @@ interface Microsoft.Graph.ITeamsAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsApp]] + param teamsAppToUpdate : Microsoft.Graph.TeamsApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsApp]]]] + param teamsAppToUpdate : Microsoft.Graph.TeamsApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsApp],[System.Object]]]] @@ -123044,6 +129430,14 @@ interface Microsoft.Graph.ITeamsAsyncOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAsyncOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsAsyncOperation]] + param teamsAsyncOperationToUpdate : Microsoft.Graph.TeamsAsyncOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsAsyncOperation]]]] + param teamsAsyncOperationToUpdate : Microsoft.Graph.TeamsAsyncOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsAsyncOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsAsyncOperation],[System.Object]]]] @@ -123091,6 +129485,14 @@ interface Microsoft.Graph.ITeamsTabRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTab]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsTab]] + param teamsTabToUpdate : Microsoft.Graph.TeamsTab + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTab]]]] + param teamsTabToUpdate : Microsoft.Graph.TeamsTab + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsTabRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsTab],[System.Object]]]] @@ -123160,6 +129562,14 @@ interface Microsoft.Graph.ITeamsTemplateRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTemplate]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamsTemplate]] + param teamsTemplateToUpdate : Microsoft.Graph.TeamsTemplate + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamsTemplate]]]] + param teamsTemplateToUpdate : Microsoft.Graph.TeamsTemplate + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamsTemplateRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamsTemplate],[System.Object]]]] @@ -123272,6 +129682,14 @@ interface Microsoft.Graph.ITeamworkBotRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamworkBot]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TeamworkBot]] + param teamworkBotToUpdate : Microsoft.Graph.TeamworkBot + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TeamworkBot]]]] + param teamworkBotToUpdate : Microsoft.Graph.TeamworkBot + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamworkBotRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TeamworkBot],[System.Object]]]] @@ -123319,6 +129737,14 @@ interface Microsoft.Graph.ITeamworkRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Teamwork]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Teamwork]] + param teamworkToUpdate : Microsoft.Graph.Teamwork + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Teamwork]]]] + param teamworkToUpdate : Microsoft.Graph.Teamwork + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITeamworkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Teamwork],[System.Object]]]] @@ -123419,6 +129845,14 @@ interface Microsoft.Graph.ITelecomExpenseManagementPartnerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TelecomExpenseManagementPartner]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TelecomExpenseManagementPartner]] + param telecomExpenseManagementPartnerToUpdate : Microsoft.Graph.TelecomExpenseManagementPartner + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TelecomExpenseManagementPartner]]]] + param telecomExpenseManagementPartnerToUpdate : Microsoft.Graph.TelecomExpenseManagementPartner + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITelecomExpenseManagementPartnerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TelecomExpenseManagementPartner],[System.Object]]]] @@ -123518,6 +129952,14 @@ interface Microsoft.Graph.ITermsAndConditionsAcceptanceStatusRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]] + param termsAndConditionsAcceptanceStatusToUpdate : Microsoft.Graph.TermsAndConditionsAcceptanceStatus + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus]]]] + param termsAndConditionsAcceptanceStatusToUpdate : Microsoft.Graph.TermsAndConditionsAcceptanceStatus + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsAcceptanceStatusRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditionsAcceptanceStatus],[System.Object]]]] @@ -123566,6 +130008,14 @@ interface Microsoft.Graph.ITermsAndConditionsAssignmentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAssignment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditionsAssignment]] + param termsAndConditionsAssignmentToUpdate : Microsoft.Graph.TermsAndConditionsAssignment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditionsAssignment]]]] + param termsAndConditionsAssignmentToUpdate : Microsoft.Graph.TermsAndConditionsAssignment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsAssignmentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditionsAssignment],[System.Object]]]] @@ -123686,6 +130136,14 @@ interface Microsoft.Graph.ITermsAndConditionsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditions]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsAndConditions]] + param termsAndConditionsToUpdate : Microsoft.Graph.TermsAndConditions + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsAndConditions]]]] + param termsAndConditionsToUpdate : Microsoft.Graph.TermsAndConditions + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsAndConditionsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsAndConditions],[System.Object]]]] @@ -123887,6 +130345,14 @@ interface Microsoft.Graph.ITermsOfUseContainerRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsOfUseContainer]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TermsOfUseContainer]] + param termsOfUseContainerToUpdate : Microsoft.Graph.TermsOfUseContainer + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TermsOfUseContainer]]]] + param termsOfUseContainerToUpdate : Microsoft.Graph.TermsOfUseContainer + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITermsOfUseContainerRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TermsOfUseContainer],[System.Object]]]] @@ -123936,6 +130402,14 @@ interface Microsoft.Graph.IThreatAssessmentRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThreatAssessmentRequestObject]] + param threatAssessmentRequestObjectToUpdate : Microsoft.Graph.ThreatAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentRequestObject]]]] + param threatAssessmentRequestObjectToUpdate : Microsoft.Graph.ThreatAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThreatAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThreatAssessmentRequestObject],[System.Object]]]] @@ -124036,6 +130510,14 @@ interface Microsoft.Graph.IThreatAssessmentResultRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentResult]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThreatAssessmentResult]] + param threatAssessmentResultToUpdate : Microsoft.Graph.ThreatAssessmentResult + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThreatAssessmentResult]]]] + param threatAssessmentResultToUpdate : Microsoft.Graph.ThreatAssessmentResult + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThreatAssessmentResultRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThreatAssessmentResult],[System.Object]]]] @@ -124106,6 +130588,14 @@ interface Microsoft.Graph.IThumbnailRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Thumbnail]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Thumbnail]] + param thumbnailToUpdate : Microsoft.Graph.Thumbnail + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Thumbnail]]]] + param thumbnailToUpdate : Microsoft.Graph.Thumbnail + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThumbnailRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Thumbnail],[System.Object]]]] @@ -124154,6 +130644,14 @@ interface Microsoft.Graph.IThumbnailSetRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThumbnailSet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.ThumbnailSet]] + param thumbnailSetToUpdate : Microsoft.Graph.ThumbnailSet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.ThumbnailSet]]]] + param thumbnailSetToUpdate : Microsoft.Graph.ThumbnailSet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IThumbnailSetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.ThumbnailSet],[System.Object]]]] @@ -124202,6 +130700,14 @@ interface Microsoft.Graph.ITimeOffReasonRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffReason]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOffReason]] + param timeOffReasonToUpdate : Microsoft.Graph.TimeOffReason + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffReason]]]] + param timeOffReasonToUpdate : Microsoft.Graph.TimeOffReason + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffReasonRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOffReason],[System.Object]]]] @@ -124249,6 +130755,14 @@ interface Microsoft.Graph.ITimeOffRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOff]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOff]] + param timeOffToUpdate : Microsoft.Graph.TimeOff + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOff]]]] + param timeOffToUpdate : Microsoft.Graph.TimeOff + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOff],[System.Object]]]] @@ -124296,6 +130810,14 @@ interface Microsoft.Graph.ITimeOffRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TimeOffRequestObject]] + param timeOffRequestObjectToUpdate : Microsoft.Graph.TimeOffRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TimeOffRequestObject]]]] + param timeOffRequestObjectToUpdate : Microsoft.Graph.TimeOffRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITimeOffRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TimeOffRequestObject],[System.Object]]]] @@ -124397,6 +130919,14 @@ interface Microsoft.Graph.ITodoRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Todo]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Todo]] + param todoToUpdate : Microsoft.Graph.Todo + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Todo]]]] + param todoToUpdate : Microsoft.Graph.Todo + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Todo],[System.Object]]]] @@ -124671,6 +131201,14 @@ interface Microsoft.Graph.ITodoTaskListRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTaskList]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TodoTaskList]] + param todoTaskListToUpdate : Microsoft.Graph.TodoTaskList + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTaskList]]]] + param todoTaskListToUpdate : Microsoft.Graph.TodoTaskList + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoTaskListRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TodoTaskList],[System.Object]]]] @@ -124774,6 +131312,14 @@ interface Microsoft.Graph.ITodoTaskRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTask]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TodoTask]] + param todoTaskToUpdate : Microsoft.Graph.TodoTask + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TodoTask]]]] + param todoTaskToUpdate : Microsoft.Graph.TodoTask + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITodoTaskRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TodoTask],[System.Object]]]] @@ -124844,6 +131390,14 @@ interface Microsoft.Graph.ITokenIssuancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenIssuancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TokenIssuancePolicy]] + param tokenIssuancePolicyToUpdate : Microsoft.Graph.TokenIssuancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenIssuancePolicy]]]] + param tokenIssuancePolicyToUpdate : Microsoft.Graph.TokenIssuancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITokenIssuancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TokenIssuancePolicy],[System.Object]]]] @@ -124960,6 +131514,14 @@ interface Microsoft.Graph.ITokenLifetimePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenLifetimePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.TokenLifetimePolicy]] + param tokenLifetimePolicyToUpdate : Microsoft.Graph.TokenLifetimePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.TokenLifetimePolicy]]]] + param tokenLifetimePolicyToUpdate : Microsoft.Graph.TokenLifetimePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITokenLifetimePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.TokenLifetimePolicy],[System.Object]]]] @@ -125055,6 +131617,14 @@ interface Microsoft.Graph.ITrendingRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Trending]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Trending]] + param trendingToUpdate : Microsoft.Graph.Trending + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Trending]]]] + param trendingToUpdate : Microsoft.Graph.Trending + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.ITrendingRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Trending],[System.Object]]]] @@ -125103,6 +131673,14 @@ interface Microsoft.Graph.IUnmuteParticipantOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UnmuteParticipantOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UnmuteParticipantOperation]] + param unmuteParticipantOperationToUpdate : Microsoft.Graph.UnmuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UnmuteParticipantOperation]]]] + param unmuteParticipantOperationToUpdate : Microsoft.Graph.UnmuteParticipantOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUnmuteParticipantOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UnmuteParticipantOperation],[System.Object]]]] @@ -125150,6 +131728,14 @@ interface Microsoft.Graph.IUpdateRecordingStatusOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UpdateRecordingStatusOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UpdateRecordingStatusOperation]] + param updateRecordingStatusOperationToUpdate : Microsoft.Graph.UpdateRecordingStatusOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UpdateRecordingStatusOperation]]]] + param updateRecordingStatusOperationToUpdate : Microsoft.Graph.UpdateRecordingStatusOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUpdateRecordingStatusOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UpdateRecordingStatusOperation],[System.Object]]]] @@ -125201,6 +131787,14 @@ interface Microsoft.Graph.IUrlAssessmentRequestRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UrlAssessmentRequestObject]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UrlAssessmentRequestObject]] + param urlAssessmentRequestObjectToUpdate : Microsoft.Graph.UrlAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UrlAssessmentRequestObject]]]] + param urlAssessmentRequestObjectToUpdate : Microsoft.Graph.UrlAssessmentRequestObject + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUrlAssessmentRequestRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UrlAssessmentRequestObject],[System.Object]]]] @@ -125248,6 +131842,14 @@ interface Microsoft.Graph.IUsedInsightRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UsedInsight]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UsedInsight]] + param usedInsightToUpdate : Microsoft.Graph.UsedInsight + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UsedInsight]]]] + param usedInsightToUpdate : Microsoft.Graph.UsedInsight + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUsedInsightRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UsedInsight],[System.Object]]]] @@ -125472,6 +132074,14 @@ interface Microsoft.Graph.IUserActivityRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserActivity]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserActivity]] + param userActivityToUpdate : Microsoft.Graph.UserActivity + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserActivity]]]] + param userActivityToUpdate : Microsoft.Graph.UserActivity + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserActivityRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserActivity],[System.Object]]]] @@ -126601,6 +133211,14 @@ interface Microsoft.Graph.IUserInstallStateSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserInstallStateSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserInstallStateSummary]] + param userInstallStateSummaryToUpdate : Microsoft.Graph.UserInstallStateSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserInstallStateSummary]]]] + param userInstallStateSummaryToUpdate : Microsoft.Graph.UserInstallStateSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserInstallStateSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserInstallStateSummary],[System.Object]]]] @@ -127533,6 +134151,14 @@ interface Microsoft.Graph.IUserRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.User]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.User]] + param userToUpdate : Microsoft.Graph.User + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.User]]]] + param userToUpdate : Microsoft.Graph.User + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.User],[System.Object]]]] @@ -127748,6 +134374,14 @@ interface Microsoft.Graph.IUserScopeTeamsAppInstallationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]] + param userScopeTeamsAppInstallationToUpdate : Microsoft.Graph.UserScopeTeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserScopeTeamsAppInstallation]]]] + param userScopeTeamsAppInstallationToUpdate : Microsoft.Graph.UserScopeTeamsAppInstallation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserScopeTeamsAppInstallationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserScopeTeamsAppInstallation],[System.Object]]]] @@ -127814,6 +134448,14 @@ interface Microsoft.Graph.IUserSettingsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserSettings]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserSettings]] + param userSettingsToUpdate : Microsoft.Graph.UserSettings + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserSettings]]]] + param userSettingsToUpdate : Microsoft.Graph.UserSettings + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserSettingsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserSettings],[System.Object]]]] @@ -127914,6 +134556,14 @@ interface Microsoft.Graph.IUserTeamworkRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserTeamwork]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.UserTeamwork]] + param userTeamworkToUpdate : Microsoft.Graph.UserTeamwork + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.UserTeamwork]]]] + param userTeamworkToUpdate : Microsoft.Graph.UserTeamwork + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IUserTeamworkRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.UserTeamwork],[System.Object]]]] @@ -128124,6 +134774,14 @@ interface Microsoft.Graph.IVppTokenRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.VppToken]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.VppToken]] + param vppTokenToUpdate : Microsoft.Graph.VppToken + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.VppToken]]]] + param vppTokenToUpdate : Microsoft.Graph.VppToken + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IVppTokenRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.VppToken],[System.Object]]]] @@ -128190,6 +134848,14 @@ interface Microsoft.Graph.IWebAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WebApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WebApp]] + param webAppToUpdate : Microsoft.Graph.WebApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WebApp]]]] + param webAppToUpdate : Microsoft.Graph.WebApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWebAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WebApp],[System.Object]]]] @@ -128237,6 +134903,14 @@ interface Microsoft.Graph.IWin32LobAppRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Win32LobApp]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Win32LobApp]] + param win32LobAppToUpdate : Microsoft.Graph.Win32LobApp + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Win32LobApp]]]] + param win32LobAppToUpdate : Microsoft.Graph.Win32LobApp + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWin32LobAppRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Win32LobApp],[System.Object]]]] @@ -128284,6 +134958,14 @@ interface Microsoft.Graph.IWindows10CompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10CompliancePolicy]] + param windows10CompliancePolicyToUpdate : Microsoft.Graph.Windows10CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CompliancePolicy]]]] + param windows10CompliancePolicyToUpdate : Microsoft.Graph.Windows10CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10CompliancePolicy],[System.Object]]]] @@ -128331,6 +135013,14 @@ interface Microsoft.Graph.IWindows10CustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10CustomConfiguration]] + param windows10CustomConfigurationToUpdate : Microsoft.Graph.Windows10CustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10CustomConfiguration]]]] + param windows10CustomConfigurationToUpdate : Microsoft.Graph.Windows10CustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10CustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10CustomConfiguration],[System.Object]]]] @@ -128378,6 +135068,14 @@ interface Microsoft.Graph.IWindows10EndpointProtectionConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]] + param windows10EndpointProtectionConfigurationToUpdate : Microsoft.Graph.Windows10EndpointProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EndpointProtectionConfiguration]]]] + param windows10EndpointProtectionConfigurationToUpdate : Microsoft.Graph.Windows10EndpointProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10EndpointProtectionConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10EndpointProtectionConfiguration],[System.Object]]]] @@ -128425,6 +135123,14 @@ interface Microsoft.Graph.IWindows10EnterpriseModernAppManagementConfigurationRe method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]] + param windows10EnterpriseModernAppManagementConfigurationToUpdate : Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration]]]] + param windows10EnterpriseModernAppManagementConfigurationToUpdate : Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10EnterpriseModernAppManagementConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10EnterpriseModernAppManagementConfiguration],[System.Object]]]] @@ -128472,6 +135178,14 @@ interface Microsoft.Graph.IWindows10GeneralConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10GeneralConfiguration]] + param windows10GeneralConfigurationToUpdate : Microsoft.Graph.Windows10GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10GeneralConfiguration]]]] + param windows10GeneralConfigurationToUpdate : Microsoft.Graph.Windows10GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10GeneralConfiguration],[System.Object]]]] @@ -128519,6 +135233,14 @@ interface Microsoft.Graph.IWindows10MobileCompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]] + param windows10MobileCompliancePolicyToUpdate : Microsoft.Graph.Windows10MobileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10MobileCompliancePolicy]]]] + param windows10MobileCompliancePolicyToUpdate : Microsoft.Graph.Windows10MobileCompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10MobileCompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10MobileCompliancePolicy],[System.Object]]]] @@ -128566,6 +135288,14 @@ interface Microsoft.Graph.IWindows10SecureAssessmentConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]] + param windows10SecureAssessmentConfigurationToUpdate : Microsoft.Graph.Windows10SecureAssessmentConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10SecureAssessmentConfiguration]]]] + param windows10SecureAssessmentConfigurationToUpdate : Microsoft.Graph.Windows10SecureAssessmentConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10SecureAssessmentConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10SecureAssessmentConfiguration],[System.Object]]]] @@ -128613,6 +135343,14 @@ interface Microsoft.Graph.IWindows10TeamGeneralConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]] + param windows10TeamGeneralConfigurationToUpdate : Microsoft.Graph.Windows10TeamGeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows10TeamGeneralConfiguration]]]] + param windows10TeamGeneralConfigurationToUpdate : Microsoft.Graph.Windows10TeamGeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows10TeamGeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows10TeamGeneralConfiguration],[System.Object]]]] @@ -128660,6 +135398,14 @@ interface Microsoft.Graph.IWindows81CompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows81CompliancePolicy]] + param windows81CompliancePolicyToUpdate : Microsoft.Graph.Windows81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81CompliancePolicy]]]] + param windows81CompliancePolicyToUpdate : Microsoft.Graph.Windows81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows81CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows81CompliancePolicy],[System.Object]]]] @@ -128707,6 +135453,14 @@ interface Microsoft.Graph.IWindows81GeneralConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Windows81GeneralConfiguration]] + param windows81GeneralConfigurationToUpdate : Microsoft.Graph.Windows81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Windows81GeneralConfiguration]]]] + param windows81GeneralConfigurationToUpdate : Microsoft.Graph.Windows81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindows81GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Windows81GeneralConfiguration],[System.Object]]]] @@ -128754,6 +135508,14 @@ interface Microsoft.Graph.IWindowsDefenderAdvancedThreatProtectionConfigurationR method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]] + param windowsDefenderAdvancedThreatProtectionConfigurationToUpdate : Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration]]]] + param windowsDefenderAdvancedThreatProtectionConfigurationToUpdate : Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsDefenderAdvancedThreatProtectionConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsDefenderAdvancedThreatProtectionConfiguration],[System.Object]]]] @@ -128801,6 +135563,14 @@ interface Microsoft.Graph.IWindowsHelloForBusinessAuthenticationMethodRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]] + param windowsHelloForBusinessAuthenticationMethodToUpdate : Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod]]]] + param windowsHelloForBusinessAuthenticationMethodToUpdate : Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsHelloForBusinessAuthenticationMethodRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsHelloForBusinessAuthenticationMethod],[System.Object]]]] @@ -128849,6 +135619,14 @@ interface Microsoft.Graph.IWindowsInformationProtectionAppLearningSummaryRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]] + param windowsInformationProtectionAppLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLearningSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary]]]] + param windowsInformationProtectionAppLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLearningSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionAppLearningSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionAppLearningSummary],[System.Object]]]] @@ -128896,6 +135674,14 @@ interface Microsoft.Graph.IWindowsInformationProtectionAppLockerFileRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]] + param windowsInformationProtectionAppLockerFileToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLockerFile + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile]]]] + param windowsInformationProtectionAppLockerFileToUpdate : Microsoft.Graph.WindowsInformationProtectionAppLockerFile + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionAppLockerFileRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionAppLockerFile],[System.Object]]]] @@ -129065,6 +135851,14 @@ interface Microsoft.Graph.IWindowsInformationProtectionNetworkLearningSummaryReq method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]] + param windowsInformationProtectionNetworkLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary]]]] + param windowsInformationProtectionNetworkLearningSummaryToUpdate : Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionNetworkLearningSummaryRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionNetworkLearningSummary],[System.Object]]]] @@ -129112,6 +135906,14 @@ interface Microsoft.Graph.IWindowsInformationProtectionPolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]] + param windowsInformationProtectionPolicyToUpdate : Microsoft.Graph.WindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtectionPolicy]]]] + param windowsInformationProtectionPolicyToUpdate : Microsoft.Graph.WindowsInformationProtectionPolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionPolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtectionPolicy],[System.Object]]]] @@ -129211,6 +136013,14 @@ interface Microsoft.Graph.IWindowsInformationProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsInformationProtection]] + param windowsInformationProtectionToUpdate : Microsoft.Graph.WindowsInformationProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsInformationProtection]]]] + param windowsInformationProtectionToUpdate : Microsoft.Graph.WindowsInformationProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsInformationProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsInformationProtection],[System.Object]]]] @@ -129264,6 +136074,14 @@ interface Microsoft.Graph.IWindowsMobileMSIRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsMobileMSI]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsMobileMSI]] + param windowsMobileMSIToUpdate : Microsoft.Graph.WindowsMobileMSI + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsMobileMSI]]]] + param windowsMobileMSIToUpdate : Microsoft.Graph.WindowsMobileMSI + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsMobileMSIRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsMobileMSI],[System.Object]]]] @@ -129311,6 +136129,14 @@ interface Microsoft.Graph.IWindowsPhone81CompliancePolicyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]] + param windowsPhone81CompliancePolicyToUpdate : Microsoft.Graph.WindowsPhone81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CompliancePolicy]]]] + param windowsPhone81CompliancePolicyToUpdate : Microsoft.Graph.WindowsPhone81CompliancePolicy + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81CompliancePolicyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81CompliancePolicy],[System.Object]]]] @@ -129358,6 +136184,14 @@ interface Microsoft.Graph.IWindowsPhone81CustomConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]] + param windowsPhone81CustomConfigurationToUpdate : Microsoft.Graph.WindowsPhone81CustomConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81CustomConfiguration]]]] + param windowsPhone81CustomConfigurationToUpdate : Microsoft.Graph.WindowsPhone81CustomConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81CustomConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81CustomConfiguration],[System.Object]]]] @@ -129405,6 +136239,14 @@ interface Microsoft.Graph.IWindowsPhone81GeneralConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]] + param windowsPhone81GeneralConfigurationToUpdate : Microsoft.Graph.WindowsPhone81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsPhone81GeneralConfiguration]]]] + param windowsPhone81GeneralConfigurationToUpdate : Microsoft.Graph.WindowsPhone81GeneralConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsPhone81GeneralConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsPhone81GeneralConfiguration],[System.Object]]]] @@ -129452,6 +136294,14 @@ interface Microsoft.Graph.IWindowsUniversalAppXRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUniversalAppX]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsUniversalAppX]] + param windowsUniversalAppXToUpdate : Microsoft.Graph.WindowsUniversalAppX + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUniversalAppX]]]] + param windowsUniversalAppXToUpdate : Microsoft.Graph.WindowsUniversalAppX + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsUniversalAppXRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsUniversalAppX],[System.Object]]]] @@ -129499,6 +136349,14 @@ interface Microsoft.Graph.IWindowsUpdateForBusinessConfigurationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]] + param windowsUpdateForBusinessConfigurationToUpdate : Microsoft.Graph.WindowsUpdateForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration]]]] + param windowsUpdateForBusinessConfigurationToUpdate : Microsoft.Graph.WindowsUpdateForBusinessConfiguration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWindowsUpdateForBusinessConfigurationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WindowsUpdateForBusinessConfiguration],[System.Object]]]] @@ -129564,6 +136422,14 @@ interface Microsoft.Graph.IWorkbookApplicationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookApplication]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookApplication]] + param workbookApplicationToUpdate : Microsoft.Graph.WorkbookApplication + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookApplication]]]] + param workbookApplicationToUpdate : Microsoft.Graph.WorkbookApplication + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookApplicationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookApplication],[System.Object]]]] @@ -129632,6 +136498,14 @@ interface Microsoft.Graph.IWorkbookChartAreaFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAreaFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAreaFormat]] + param workbookChartAreaFormatToUpdate : Microsoft.Graph.WorkbookChartAreaFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAreaFormat]]]] + param workbookChartAreaFormatToUpdate : Microsoft.Graph.WorkbookChartAreaFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAreaFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAreaFormat],[System.Object]]]] @@ -129681,6 +136555,14 @@ interface Microsoft.Graph.IWorkbookChartAxesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxes]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxes]] + param workbookChartAxesToUpdate : Microsoft.Graph.WorkbookChartAxes + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxes]]]] + param workbookChartAxesToUpdate : Microsoft.Graph.WorkbookChartAxes + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxes],[System.Object]]]] @@ -129731,6 +136613,14 @@ interface Microsoft.Graph.IWorkbookChartAxisFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisFormat]] + param workbookChartAxisFormatToUpdate : Microsoft.Graph.WorkbookChartAxisFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisFormat]]]] + param workbookChartAxisFormatToUpdate : Microsoft.Graph.WorkbookChartAxisFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisFormat],[System.Object]]]] @@ -129780,6 +136670,14 @@ interface Microsoft.Graph.IWorkbookChartAxisRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxis]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxis]] + param workbookChartAxisToUpdate : Microsoft.Graph.WorkbookChartAxis + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxis]]]] + param workbookChartAxisToUpdate : Microsoft.Graph.WorkbookChartAxis + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxis],[System.Object]]]] @@ -129831,6 +136729,14 @@ interface Microsoft.Graph.IWorkbookChartAxisTitleFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]] + param workbookChartAxisTitleFormatToUpdate : Microsoft.Graph.WorkbookChartAxisTitleFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitleFormat]]]] + param workbookChartAxisTitleFormatToUpdate : Microsoft.Graph.WorkbookChartAxisTitleFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisTitleFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisTitleFormat],[System.Object]]]] @@ -129879,6 +136785,14 @@ interface Microsoft.Graph.IWorkbookChartAxisTitleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitle]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartAxisTitle]] + param workbookChartAxisTitleToUpdate : Microsoft.Graph.WorkbookChartAxisTitle + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartAxisTitle]]]] + param workbookChartAxisTitleToUpdate : Microsoft.Graph.WorkbookChartAxisTitle + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartAxisTitleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartAxisTitle],[System.Object]]]] @@ -129944,6 +136858,14 @@ interface Microsoft.Graph.IWorkbookChartDataLabelFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]] + param workbookChartDataLabelFormatToUpdate : Microsoft.Graph.WorkbookChartDataLabelFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabelFormat]]]] + param workbookChartDataLabelFormatToUpdate : Microsoft.Graph.WorkbookChartDataLabelFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartDataLabelFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartDataLabelFormat],[System.Object]]]] @@ -129993,6 +136915,14 @@ interface Microsoft.Graph.IWorkbookChartDataLabelsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabels]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartDataLabels]] + param workbookChartDataLabelsToUpdate : Microsoft.Graph.WorkbookChartDataLabels + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartDataLabels]]]] + param workbookChartDataLabelsToUpdate : Microsoft.Graph.WorkbookChartDataLabels + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartDataLabelsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartDataLabels],[System.Object]]]] @@ -130058,6 +136988,14 @@ interface Microsoft.Graph.IWorkbookChartFillRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFill]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartFill]] + param workbookChartFillToUpdate : Microsoft.Graph.WorkbookChartFill + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFill]]]] + param workbookChartFillToUpdate : Microsoft.Graph.WorkbookChartFill + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartFillRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartFill],[System.Object]]]] @@ -130128,6 +137066,14 @@ interface Microsoft.Graph.IWorkbookChartFontRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFont]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartFont]] + param workbookChartFontToUpdate : Microsoft.Graph.WorkbookChartFont + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartFont]]]] + param workbookChartFontToUpdate : Microsoft.Graph.WorkbookChartFont + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartFontRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartFont],[System.Object]]]] @@ -130175,6 +137121,14 @@ interface Microsoft.Graph.IWorkbookChartGridlinesFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]] + param workbookChartGridlinesFormatToUpdate : Microsoft.Graph.WorkbookChartGridlinesFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlinesFormat]]]] + param workbookChartGridlinesFormatToUpdate : Microsoft.Graph.WorkbookChartGridlinesFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartGridlinesFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartGridlinesFormat],[System.Object]]]] @@ -130223,6 +137177,14 @@ interface Microsoft.Graph.IWorkbookChartGridlinesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlines]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartGridlines]] + param workbookChartGridlinesToUpdate : Microsoft.Graph.WorkbookChartGridlines + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartGridlines]]]] + param workbookChartGridlinesToUpdate : Microsoft.Graph.WorkbookChartGridlines + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartGridlinesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartGridlines],[System.Object]]]] @@ -130438,6 +137400,14 @@ interface Microsoft.Graph.IWorkbookChartLegendFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegendFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLegendFormat]] + param workbookChartLegendFormatToUpdate : Microsoft.Graph.WorkbookChartLegendFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegendFormat]]]] + param workbookChartLegendFormatToUpdate : Microsoft.Graph.WorkbookChartLegendFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLegendFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLegendFormat],[System.Object]]]] @@ -130487,6 +137457,14 @@ interface Microsoft.Graph.IWorkbookChartLegendRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegend]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLegend]] + param workbookChartLegendToUpdate : Microsoft.Graph.WorkbookChartLegend + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLegend]]]] + param workbookChartLegendToUpdate : Microsoft.Graph.WorkbookChartLegend + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLegendRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLegend],[System.Object]]]] @@ -130552,6 +137530,14 @@ interface Microsoft.Graph.IWorkbookChartLineFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLineFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartLineFormat]] + param workbookChartLineFormatToUpdate : Microsoft.Graph.WorkbookChartLineFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartLineFormat]]]] + param workbookChartLineFormatToUpdate : Microsoft.Graph.WorkbookChartLineFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartLineFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartLineFormat],[System.Object]]]] @@ -130618,6 +137604,14 @@ interface Microsoft.Graph.IWorkbookChartPointFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPointFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartPointFormat]] + param workbookChartPointFormatToUpdate : Microsoft.Graph.WorkbookChartPointFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPointFormat]]]] + param workbookChartPointFormatToUpdate : Microsoft.Graph.WorkbookChartPointFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartPointFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartPointFormat],[System.Object]]]] @@ -130705,6 +137699,14 @@ interface Microsoft.Graph.IWorkbookChartPointRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPoint]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartPoint]] + param workbookChartPointToUpdate : Microsoft.Graph.WorkbookChartPoint + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartPoint]]]] + param workbookChartPointToUpdate : Microsoft.Graph.WorkbookChartPoint + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartPointRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartPoint],[System.Object]]]] @@ -130753,6 +137755,14 @@ interface Microsoft.Graph.IWorkbookChartRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChart]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChart]] + param workbookChartToUpdate : Microsoft.Graph.WorkbookChart + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChart]]]] + param workbookChartToUpdate : Microsoft.Graph.WorkbookChart + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChart],[System.Object]]]] @@ -130903,6 +137913,14 @@ interface Microsoft.Graph.IWorkbookChartSeriesFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeriesFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartSeriesFormat]] + param workbookChartSeriesFormatToUpdate : Microsoft.Graph.WorkbookChartSeriesFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeriesFormat]]]] + param workbookChartSeriesFormatToUpdate : Microsoft.Graph.WorkbookChartSeriesFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartSeriesFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartSeriesFormat],[System.Object]]]] @@ -131049,6 +138067,14 @@ interface Microsoft.Graph.IWorkbookChartSeriesRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeries]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartSeries]] + param workbookChartSeriesToUpdate : Microsoft.Graph.WorkbookChartSeries + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartSeries]]]] + param workbookChartSeriesToUpdate : Microsoft.Graph.WorkbookChartSeries + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartSeriesRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartSeries],[System.Object]]]] @@ -131134,6 +138160,14 @@ interface Microsoft.Graph.IWorkbookChartTitleFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitleFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartTitleFormat]] + param workbookChartTitleFormatToUpdate : Microsoft.Graph.WorkbookChartTitleFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitleFormat]]]] + param workbookChartTitleFormatToUpdate : Microsoft.Graph.WorkbookChartTitleFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartTitleFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartTitleFormat],[System.Object]]]] @@ -131183,6 +138217,14 @@ interface Microsoft.Graph.IWorkbookChartTitleRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitle]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookChartTitle]] + param workbookChartTitleToUpdate : Microsoft.Graph.WorkbookChartTitle + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookChartTitle]]]] + param workbookChartTitleToUpdate : Microsoft.Graph.WorkbookChartTitle + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookChartTitleRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookChartTitle],[System.Object]]]] @@ -131300,6 +138342,14 @@ interface Microsoft.Graph.IWorkbookCommentReplyRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookCommentReply]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookCommentReply]] + param workbookCommentReplyToUpdate : Microsoft.Graph.WorkbookCommentReply + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookCommentReply]]]] + param workbookCommentReplyToUpdate : Microsoft.Graph.WorkbookCommentReply + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookCommentReplyRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookCommentReply],[System.Object]]]] @@ -131347,6 +138397,14 @@ interface Microsoft.Graph.IWorkbookCommentRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookComment]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookComment]] + param workbookCommentToUpdate : Microsoft.Graph.WorkbookComment + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookComment]]]] + param workbookCommentToUpdate : Microsoft.Graph.WorkbookComment + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookCommentRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookComment],[System.Object]]]] @@ -131680,6 +138738,14 @@ interface Microsoft.Graph.IWorkbookFilterRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFilter]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFilter]] + param workbookFilterToUpdate : Microsoft.Graph.WorkbookFilter + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFilter]]]] + param workbookFilterToUpdate : Microsoft.Graph.WorkbookFilter + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFilterRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFilter],[System.Object]]]] @@ -131764,6 +138830,14 @@ interface Microsoft.Graph.IWorkbookFormatProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFormatProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFormatProtection]] + param workbookFormatProtectionToUpdate : Microsoft.Graph.WorkbookFormatProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFormatProtection]]]] + param workbookFormatProtectionToUpdate : Microsoft.Graph.WorkbookFormatProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFormatProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFormatProtection],[System.Object]]]] @@ -131811,6 +138885,14 @@ interface Microsoft.Graph.IWorkbookFunctionResultRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctionResult]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFunctionResult]] + param workbookFunctionResultToUpdate : Microsoft.Graph.WorkbookFunctionResult + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctionResult]]]] + param workbookFunctionResultToUpdate : Microsoft.Graph.WorkbookFunctionResult + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFunctionResultRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFunctionResult],[System.Object]]]] @@ -137001,6 +144083,14 @@ interface Microsoft.Graph.IWorkbookFunctionsRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctions]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookFunctions]] + param workbookFunctionsToUpdate : Microsoft.Graph.WorkbookFunctions + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookFunctions]]]] + param workbookFunctionsToUpdate : Microsoft.Graph.WorkbookFunctions + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookFunctionsRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookFunctions],[System.Object]]]] @@ -140180,6 +147270,14 @@ interface Microsoft.Graph.IWorkbookNamedItemRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookNamedItem]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookNamedItem]] + param workbookNamedItemToUpdate : Microsoft.Graph.WorkbookNamedItem + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookNamedItem]]]] + param workbookNamedItemToUpdate : Microsoft.Graph.WorkbookNamedItem + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookNamedItemRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookNamedItem],[System.Object]]]] @@ -140292,6 +147390,14 @@ interface Microsoft.Graph.IWorkbookOperationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookOperation]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookOperation]] + param workbookOperationToUpdate : Microsoft.Graph.WorkbookOperation + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookOperation]]]] + param workbookOperationToUpdate : Microsoft.Graph.WorkbookOperation + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookOperationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookOperation],[System.Object]]]] @@ -140425,6 +147531,14 @@ interface Microsoft.Graph.IWorkbookPivotTableRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookPivotTable]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookPivotTable]] + param workbookPivotTableToUpdate : Microsoft.Graph.WorkbookPivotTable + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookPivotTable]]]] + param workbookPivotTableToUpdate : Microsoft.Graph.WorkbookPivotTable + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookPivotTableRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookPivotTable],[System.Object]]]] @@ -140530,6 +147644,14 @@ interface Microsoft.Graph.IWorkbookRangeBorderRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeBorder]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeBorder]] + param workbookRangeBorderToUpdate : Microsoft.Graph.WorkbookRangeBorder + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeBorder]]]] + param workbookRangeBorderToUpdate : Microsoft.Graph.WorkbookRangeBorder + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeBorderRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeBorder],[System.Object]]]] @@ -141407,6 +148529,14 @@ interface Microsoft.Graph.IWorkbookRangeFillRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFill]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFill]] + param workbookRangeFillToUpdate : Microsoft.Graph.WorkbookRangeFill + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFill]]]] + param workbookRangeFillToUpdate : Microsoft.Graph.WorkbookRangeFill + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFillRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFill],[System.Object]]]] @@ -141456,6 +148586,14 @@ interface Microsoft.Graph.IWorkbookRangeFontRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFont]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFont]] + param workbookRangeFontToUpdate : Microsoft.Graph.WorkbookRangeFont + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFont]]]] + param workbookRangeFontToUpdate : Microsoft.Graph.WorkbookRangeFont + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFontRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFont],[System.Object]]]] @@ -141594,6 +148732,14 @@ interface Microsoft.Graph.IWorkbookRangeFormatRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFormat]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeFormat]] + param workbookRangeFormatToUpdate : Microsoft.Graph.WorkbookRangeFormat + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeFormat]]]] + param workbookRangeFormatToUpdate : Microsoft.Graph.WorkbookRangeFormat + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeFormatRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeFormat],[System.Object]]]] @@ -142240,6 +149386,14 @@ interface Microsoft.Graph.IWorkbookRangeRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRange]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRange]] + param workbookRangeToUpdate : Microsoft.Graph.WorkbookRange + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRange]]]] + param workbookRangeToUpdate : Microsoft.Graph.WorkbookRange + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRange],[System.Object]]]] @@ -142827,6 +149981,14 @@ interface Microsoft.Graph.IWorkbookRangeSortRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeSort]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeSort]] + param workbookRangeSortToUpdate : Microsoft.Graph.WorkbookRangeSort + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeSort]]]] + param workbookRangeSortToUpdate : Microsoft.Graph.WorkbookRangeSort + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeSortRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeSort],[System.Object]]]] @@ -143159,6 +150321,14 @@ interface Microsoft.Graph.IWorkbookRangeViewRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeView]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookRangeView]] + param workbookRangeViewToUpdate : Microsoft.Graph.WorkbookRangeView + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookRangeView]]]] + param workbookRangeViewToUpdate : Microsoft.Graph.WorkbookRangeView + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRangeViewRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookRangeView],[System.Object]]]] @@ -143320,6 +150490,14 @@ interface Microsoft.Graph.IWorkbookRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Workbook]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.Workbook]] + param workbookToUpdate : Microsoft.Graph.Workbook + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.Workbook]]]] + param workbookToUpdate : Microsoft.Graph.Workbook + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.Workbook],[System.Object]]]] @@ -143856,6 +151034,14 @@ interface Microsoft.Graph.IWorkbookTableColumnRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableColumn]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableColumn]] + param workbookTableColumnToUpdate : Microsoft.Graph.WorkbookTableColumn + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableColumn]]]] + param workbookTableColumnToUpdate : Microsoft.Graph.WorkbookTableColumn + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableColumnRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableColumn],[System.Object]]]] @@ -144529,6 +151715,14 @@ interface Microsoft.Graph.IWorkbookTableRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTable]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTable]] + param workbookTableToUpdate : Microsoft.Graph.WorkbookTable + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTable]]]] + param workbookTableToUpdate : Microsoft.Graph.WorkbookTable + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTable],[System.Object]]]] @@ -144784,6 +151978,14 @@ interface Microsoft.Graph.IWorkbookTableRowRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableRow]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableRow]] + param workbookTableRowToUpdate : Microsoft.Graph.WorkbookTableRow + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableRow]]]] + param workbookTableRowToUpdate : Microsoft.Graph.WorkbookTableRow + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableRowRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableRow],[System.Object]]]] @@ -145007,6 +152209,14 @@ interface Microsoft.Graph.IWorkbookTableSortRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableSort]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookTableSort]] + param workbookTableSortToUpdate : Microsoft.Graph.WorkbookTableSort + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookTableSort]]]] + param workbookTableSortToUpdate : Microsoft.Graph.WorkbookTableSort + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookTableSortRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookTableSort],[System.Object]]]] @@ -145502,6 +152712,14 @@ interface Microsoft.Graph.IWorkbookWorksheetProtectionRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheetProtection]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookWorksheetProtection]] + param workbookWorksheetProtectionToUpdate : Microsoft.Graph.WorkbookWorksheetProtection + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheetProtection]]]] + param workbookWorksheetProtectionToUpdate : Microsoft.Graph.WorkbookWorksheetProtection + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookWorksheetProtectionRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookWorksheetProtection],[System.Object]]]] @@ -145682,6 +152900,14 @@ interface Microsoft.Graph.IWorkbookWorksheetRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheet]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkbookWorksheet]] + param workbookWorksheetToUpdate : Microsoft.Graph.WorkbookWorksheet + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkbookWorksheet]]]] + param workbookWorksheetToUpdate : Microsoft.Graph.WorkbookWorksheet + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkbookWorksheetRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkbookWorksheet],[System.Object]]]] @@ -145975,6 +153201,14 @@ interface Microsoft.Graph.IWorkforceIntegrationRequest method GetResponseAsync return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkforceIntegration]]]] param cancellationToken : System.Threading.CancellationToken + method PutAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.WorkforceIntegration]] + param workforceIntegrationToUpdate : Microsoft.Graph.WorkforceIntegration + param cancellationToken : System.Threading.CancellationToken + method PutResponseAsync + return type System.Threading.Tasks.Task`1[[Microsoft.Graph.GraphResponse`1[[Microsoft.Graph.WorkforceIntegration]]]] + param workforceIntegrationToUpdate : Microsoft.Graph.WorkforceIntegration + param cancellationToken : System.Threading.CancellationToken method Select return type Microsoft.Graph.IWorkforceIntegrationRequest param selectExpression : System.Linq.Expressions.Expression`1[[System.Func`2[[Microsoft.Graph.WorkforceIntegration],[System.Object]]]]