diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java
index 940ae814bfa..f820dc2e03e 100644
--- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java
@@ -93,23 +93,23 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java
return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ * Send a new chatMessage in the specified channel or a chat.
* @param body The request body
* @return a {@link ChatMessage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) {
return post(body, null);
}
/**
- * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ * Send a new chatMessage in the specified channel or a chat.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ChatMessage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -140,7 +140,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ * Send a new chatMessage in the specified channel or a chat.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -149,7 +149,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message.
+ * Send a new chatMessage in the specified channel or a chat.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java
index 471c548e60f..5675abf7a1b 100644
--- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java
@@ -36,23 +36,23 @@ public InviteRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja
super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants/invite", rawUrl);
}
/**
- * Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
* @param body The request body
* @return a {@link InviteParticipantsOperation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final InvitePostRequestBody body) {
return post(body, null);
}
/**
- * Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link InviteParticipantsOperation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final InvitePostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -63,7 +63,7 @@ public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final Invite
return this.requestAdapter.send(requestInfo, errorMapping, InviteParticipantsOperation::createFromDiscriminatorValue);
}
/**
- * Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Invite participants to the active call. For more information about how to handle operations, see commsOperation.
+ * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
index ae0da8bf08a..a8514c6ca3b 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java
@@ -175,7 +175,7 @@ public DeviceAppManagementRequestBuilder(@jakarta.annotation.Nonnull final Strin
* Read properties and relationships of the deviceAppManagement object.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement get() {
@@ -186,7 +186,7 @@ public DeviceAppManagement get() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -200,7 +200,7 @@ public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.func
* @param body The request body
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body) {
@@ -212,7 +212,7 @@ public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppMana
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceAppManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
index 5035f87d2ee..9108410b3e3 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java
@@ -60,21 +60,21 @@ public ManagedAppPoliciesRequestBuilder(@jakarta.annotation.Nonnull final String
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the windowsInformationProtection objects.
+ * List properties and relationships of the targetedManagedAppProtection objects.
* @return a {@link ManagedAppPolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicyCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the windowsInformationProtection objects.
+ * List properties and relationships of the targetedManagedAppProtection objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppPolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -109,7 +109,7 @@ public ManagedAppPolicy post(@jakarta.annotation.Nonnull final ManagedAppPolicy
return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppPolicy::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the windowsInformationProtection objects.
+ * List properties and relationships of the targetedManagedAppProtection objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -117,7 +117,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the windowsInformationProtection objects.
+ * List properties and relationships of the targetedManagedAppProtection objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -163,7 +163,7 @@ public ManagedAppPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina
return new ManagedAppPoliciesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the windowsInformationProtection objects.
+ * List properties and relationships of the targetedManagedAppProtection objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
index b552aaabb84..1eff5341195 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java
@@ -64,21 +64,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the managedAppPolicy object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @return a {@link ManagedAppPolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicy get() {
return get(null);
}
/**
- * Read properties and relationships of the managedAppPolicy object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppPolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -133,7 +133,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the managedAppPolicy object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -141,7 +141,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the managedAppPolicy object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -193,7 +193,7 @@ public ManagedAppPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the managedAppPolicy object.
+ * Read properties and relationships of the targetedManagedAppProtection object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
index 648674ff3e8..90134a12068 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
index 7bedaf1be58..29054f4a301 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java
@@ -82,21 +82,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the androidManagedAppRegistration object.
* @return a {@link ManagedAppRegistration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistration get() {
return get(null);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the androidManagedAppRegistration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedAppRegistration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedAppRegistration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -151,7 +151,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the androidManagedAppRegistration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -159,7 +159,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the androidManagedAppRegistration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -211,7 +211,7 @@ public ManagedAppRegistrationItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosManagedAppRegistration object.
+ * Read properties and relationships of the androidManagedAppRegistration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
index 860d86b8311..6b8d2345dc5 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/appliedpolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
index 85fe66c7236..910c4cf6a34 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/intendedpolicies/item/targetapps/TargetAppsRequestBuilder.java
@@ -38,7 +38,7 @@ public TargetAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* Not yet documented
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body) {
post(body, null);
@@ -48,7 +48,7 @@ public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody bod
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final TargetAppsPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
index 8f1d73a214c..99e8d46dffd 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java
@@ -102,21 +102,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the managedEBook object.
+ * Read properties and relationships of the iosVppEBook object.
* @return a {@link ManagedEBook}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBook get() {
return get(null);
}
/**
- * Read properties and relationships of the managedEBook object.
+ * Read properties and relationships of the iosVppEBook object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBook}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -173,7 +173,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the managedEBook object.
+ * Read properties and relationships of the iosVppEBook object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -181,7 +181,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the managedEBook object.
+ * Read properties and relationships of the iosVppEBook object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -233,7 +233,7 @@ public ManagedEBookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the managedEBook object.
+ * Read properties and relationships of the iosVppEBook object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
index 574df0454f5..c78ab3e1cd5 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java
@@ -60,21 +60,21 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl
super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the iosVppEBookAssignment objects.
+ * List properties and relationships of the managedEBookAssignment objects.
* @return a {@link ManagedEBookAssignmentCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignmentCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the iosVppEBookAssignment objects.
+ * List properties and relationships of the managedEBookAssignment objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookAssignmentCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public ManagedEBookAssignment post(@jakarta.annotation.Nonnull final ManagedEBoo
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the iosVppEBookAssignment objects.
+ * List properties and relationships of the managedEBookAssignment objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the iosVppEBookAssignment objects.
+ * List properties and relationships of the managedEBookAssignment objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -165,7 +165,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin
return new AssignmentsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the iosVppEBookAssignment objects.
+ * List properties and relationships of the managedEBookAssignment objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
index 1cd36d46e6a..55fb71a2125 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java
@@ -81,23 +81,23 @@ public ManagedEBookAssignment get(@jakarta.annotation.Nullable final java.util.f
return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue);
}
/**
- * Update the properties of a managedEBookAssignment object.
+ * Update the properties of a iosVppEBookAssignment object.
* @param body The request body
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body) {
return patch(body, null);
}
/**
- * Update the properties of a managedEBookAssignment object.
+ * Update the properties of a iosVppEBookAssignment object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedEBookAssignment}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -148,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a managedEBookAssignment object.
+ * Update the properties of a iosVppEBookAssignment object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a managedEBookAssignment object.
+ * Update the properties of a iosVppEBookAssignment object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
index 2dffcd3051c..783c561d2a9 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java
@@ -111,21 +111,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosMobileAppConfiguration object.
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
* @return a {@link ManagedDeviceMobileAppConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedDeviceMobileAppConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the iosMobileAppConfiguration object.
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ManagedDeviceMobileAppConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ManagedDeviceMobileAppConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -182,7 +182,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosMobileAppConfiguration object.
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -190,7 +190,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosMobileAppConfiguration object.
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -242,7 +242,7 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilder withUrl(@jakarta.an
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosMobileAppConfiguration object.
+ * Read properties and relationships of the managedDeviceMobileAppConfiguration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
index ce082e80297..d6b9bb638df 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java
@@ -204,21 +204,21 @@ public MobileAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the managedIOSStoreApp objects.
+ * List properties and relationships of the windowsMobileMSI objects.
* @return a {@link MobileAppCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileAppCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the managedIOSStoreApp objects.
+ * List properties and relationships of the windowsMobileMSI objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileAppCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -228,23 +228,23 @@ public MobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.u
return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new microsoftStoreForBusinessApp object.
+ * Create a new managedIOSStoreApp object.
* @param body The request body
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body) {
return post(body, null);
}
/**
- * Create a new microsoftStoreForBusinessApp object.
+ * Create a new managedIOSStoreApp object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -255,7 +255,7 @@ public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body, @jakarta
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the managedIOSStoreApp objects.
+ * List properties and relationships of the windowsMobileMSI objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -263,7 +263,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the managedIOSStoreApp objects.
+ * List properties and relationships of the windowsMobileMSI objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -275,7 +275,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new microsoftStoreForBusinessApp object.
+ * Create a new managedIOSStoreApp object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -284,7 +284,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new microsoftStoreForBusinessApp object.
+ * Create a new managedIOSStoreApp object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -309,7 +309,7 @@ public MobileAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new MobileAppsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the managedIOSStoreApp objects.
+ * List properties and relationships of the windowsMobileMSI objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
index 6d78b6b3f4e..491ce2592f3 100644
--- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java
@@ -208,18 +208,18 @@ public MobileAppItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU
super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a androidStoreApp.
+ * Deletes a windowsAppX.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a androidStoreApp.
+ * Deletes a windowsAppX.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -228,21 +228,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the webApp object.
+ * Read properties and relationships of the managedIOSLobApp object.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp get() {
return get(null);
}
/**
- * Read properties and relationships of the webApp object.
+ * Read properties and relationships of the managedIOSLobApp object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -252,23 +252,23 @@ public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consu
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * Update the properties of a iosLobApp object.
+ * Update the properties of a managedIOSLobApp object.
* @param body The request body
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body) {
return patch(body, null);
}
/**
- * Update the properties of a iosLobApp object.
+ * Update the properties of a managedIOSLobApp object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link MobileApp}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -279,7 +279,7 @@ public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakart
return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue);
}
/**
- * Deletes a androidStoreApp.
+ * Deletes a windowsAppX.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -287,7 +287,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a androidStoreApp.
+ * Deletes a windowsAppX.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -299,7 +299,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the webApp object.
+ * Read properties and relationships of the managedIOSLobApp object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -307,7 +307,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the webApp object.
+ * Read properties and relationships of the managedIOSLobApp object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -319,7 +319,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a iosLobApp object.
+ * Update the properties of a managedIOSLobApp object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -328,7 +328,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a iosLobApp object.
+ * Update the properties of a managedIOSLobApp object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -359,7 +359,7 @@ public MobileAppItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the webApp object.
+ * Read properties and relationships of the managedIOSLobApp object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
index 66b87571907..9a64ebe8b12 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java
@@ -573,7 +573,7 @@ public DeviceManagementRequestBuilder(@jakarta.annotation.Nonnull final String r
* Read properties and relationships of the deviceManagement object.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement get() {
@@ -584,7 +584,7 @@ public DeviceManagement get() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -608,7 +608,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder getEffectivePermissionsWit
* @param body The request body
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body) {
@@ -620,7 +620,7 @@ public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceManagement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
index 098b2f08702..6946d0d9e7d 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java
@@ -60,21 +60,21 @@ public DeviceCompliancePoliciesRequestBuilder(@jakarta.annotation.Nonnull final
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the windows10CompliancePolicy objects.
+ * List properties and relationships of the windowsPhone81CompliancePolicy objects.
* @return a {@link DeviceCompliancePolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicyCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the windows10CompliancePolicy objects.
+ * List properties and relationships of the windowsPhone81CompliancePolicy objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicyCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new windows10MobileCompliancePolicy object.
+ * Create a new iosCompliancePolicy object.
* @param body The request body
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) {
return post(body, null);
}
/**
- * Create a new windows10MobileCompliancePolicy object.
+ * Create a new iosCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompl
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the windows10CompliancePolicy objects.
+ * List properties and relationships of the windowsPhone81CompliancePolicy objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the windows10CompliancePolicy objects.
+ * List properties and relationships of the windowsPhone81CompliancePolicy objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new windows10MobileCompliancePolicy object.
+ * Create a new iosCompliancePolicy object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new windows10MobileCompliancePolicy object.
+ * Create a new iosCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public DeviceCompliancePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnul
return new DeviceCompliancePoliciesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the windows10CompliancePolicy objects.
+ * List properties and relationships of the windowsPhone81CompliancePolicy objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
index b8459aa73f2..e70268ec556 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java
@@ -118,18 +118,18 @@ public DeviceCompliancePolicyItemRequestBuilder(@jakarta.annotation.Nonnull fina
super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a androidWorkProfileCompliancePolicy.
+ * Deletes a windows81CompliancePolicy.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a androidWorkProfileCompliancePolicy.
+ * Deletes a windows81CompliancePolicy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -138,21 +138,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windows10MobileCompliancePolicy object.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy get() {
return get(null);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windows10MobileCompliancePolicy object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -162,23 +162,23 @@ public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.f
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * Update the properties of a windows81CompliancePolicy object.
+ * Update the properties of a iosCompliancePolicy object.
* @param body The request body
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) {
return patch(body, null);
}
/**
- * Update the properties of a windows81CompliancePolicy object.
+ * Update the properties of a iosCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceCompliancePolicy}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -189,7 +189,7 @@ public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceComp
return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue);
}
/**
- * Deletes a androidWorkProfileCompliancePolicy.
+ * Deletes a windows81CompliancePolicy.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -197,7 +197,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a androidWorkProfileCompliancePolicy.
+ * Deletes a windows81CompliancePolicy.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -209,7 +209,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windows10MobileCompliancePolicy object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -217,7 +217,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windows10MobileCompliancePolicy object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -229,7 +229,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a windows81CompliancePolicy object.
+ * Update the properties of a iosCompliancePolicy object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -238,7 +238,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a windows81CompliancePolicy object.
+ * Update the properties of a iosCompliancePolicy object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -269,7 +269,7 @@ public DeviceCompliancePolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the androidWorkProfileCompliancePolicy object.
+ * Read properties and relationships of the windows10MobileCompliancePolicy object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
index 969e66dd24a..cec68c4e73d 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java
@@ -60,21 +60,21 @@ public DeviceConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final Stri
super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the macOSGeneralDeviceConfiguration objects.
+ * List properties and relationships of the iosDeviceFeaturesConfiguration objects.
* @return a {@link DeviceConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfigurationCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the macOSGeneralDeviceConfiguration objects.
+ * List properties and relationships of the iosDeviceFeaturesConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable fi
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new androidWorkProfileCustomConfiguration object.
+ * Create a new iosGeneralDeviceConfiguration object.
* @param body The request body
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body) {
return post(body, null);
}
/**
- * Create a new androidWorkProfileCustomConfiguration object.
+ * Create a new iosGeneralDeviceConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfigur
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the macOSGeneralDeviceConfiguration objects.
+ * List properties and relationships of the iosDeviceFeaturesConfiguration objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the macOSGeneralDeviceConfiguration objects.
+ * List properties and relationships of the iosDeviceFeaturesConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new androidWorkProfileCustomConfiguration object.
+ * Create a new iosGeneralDeviceConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new androidWorkProfileCustomConfiguration object.
+ * Create a new iosGeneralDeviceConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public DeviceConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi
return new DeviceConfigurationsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the macOSGeneralDeviceConfiguration objects.
+ * List properties and relationships of the iosDeviceFeaturesConfiguration objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
index fd612f435fb..5dfd1c511ba 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java
@@ -101,18 +101,18 @@ public DeviceConfigurationItemRequestBuilder(@jakarta.annotation.Nonnull final S
super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a windows10CustomConfiguration.
+ * Deletes a windowsDefenderAdvancedThreatProtectionConfiguration.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a windows10CustomConfiguration.
+ * Deletes a windowsDefenderAdvancedThreatProtectionConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -121,21 +121,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the iosUpdateConfiguration object.
+ * Read properties and relationships of the androidWorkProfileCustomConfiguration object.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the iosUpdateConfiguration object.
+ * Read properties and relationships of the androidWorkProfileCustomConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -155,23 +155,23 @@ public GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder getOm
return new GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder(pathParameters, requestAdapter, secretReferenceValueId);
}
/**
- * Update the properties of a windowsPhone81GeneralConfiguration object.
+ * Update the properties of a windows10SecureAssessmentConfiguration object.
* @param body The request body
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body) {
return patch(body, null);
}
/**
- * Update the properties of a windowsPhone81GeneralConfiguration object.
+ * Update the properties of a windows10SecureAssessmentConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -182,7 +182,7 @@ public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfigu
return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue);
}
/**
- * Deletes a windows10CustomConfiguration.
+ * Deletes a windowsDefenderAdvancedThreatProtectionConfiguration.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -190,7 +190,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a windows10CustomConfiguration.
+ * Deletes a windowsDefenderAdvancedThreatProtectionConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -202,7 +202,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the iosUpdateConfiguration object.
+ * Read properties and relationships of the androidWorkProfileCustomConfiguration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -210,7 +210,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the iosUpdateConfiguration object.
+ * Read properties and relationships of the androidWorkProfileCustomConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -222,7 +222,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a windowsPhone81GeneralConfiguration object.
+ * Update the properties of a windows10SecureAssessmentConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -231,7 +231,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a windowsPhone81GeneralConfiguration object.
+ * Update the properties of a windows10SecureAssessmentConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -262,7 +262,7 @@ public DeviceConfigurationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the iosUpdateConfiguration object.
+ * Read properties and relationships of the androidWorkProfileCustomConfiguration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
index 7897bdc9c56..62ff9ccd09b 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java
@@ -60,21 +60,21 @@ public DeviceEnrollmentConfigurationsRequestBuilder(@jakarta.annotation.Nonnull
super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ * List properties and relationships of the deviceEnrollmentConfiguration objects.
* @return a {@link DeviceEnrollmentConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfigurationCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ * List properties and relationships of the deviceEnrollmentConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfigurationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -84,23 +84,23 @@ public DeviceEnrollmentConfigurationCollectionResponse get(@jakarta.annotation.N
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfigurationCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body) {
return post(body, null);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final Devi
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ * List properties and relationships of the deviceEnrollmentConfiguration objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ * List properties and relationships of the deviceEnrollmentConfiguration objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Create a new deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -165,7 +165,7 @@ public DeviceEnrollmentConfigurationsRequestBuilder withUrl(@jakarta.annotation.
return new DeviceEnrollmentConfigurationsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects.
+ * List properties and relationships of the deviceEnrollmentConfiguration objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
index d2a2ce81ad9..016e76c9ffc 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java
@@ -64,18 +64,18 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(@jakarta.annotation.Nonnu
super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
+ * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
+ * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -84,21 +84,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the deviceEnrollmentConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration get() {
return get(null);
}
/**
- * Read properties and relationships of the deviceEnrollmentConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -108,23 +108,23 @@ public DeviceEnrollmentConfiguration get(@jakarta.annotation.Nullable final java
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue);
}
/**
- * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body) {
return patch(body, null);
}
/**
- * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link DeviceEnrollmentConfiguration}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -135,7 +135,7 @@ public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final Dev
return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue);
}
/**
- * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
+ * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -143,7 +143,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a deviceEnrollmentWindowsHelloForBusinessConfiguration.
+ * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -155,7 +155,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the deviceEnrollmentConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -163,7 +163,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the deviceEnrollmentConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -175,7 +175,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -184,7 +184,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object.
+ * Update the properties of a deviceEnrollmentWindowsHelloForBusinessConfiguration object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -215,7 +215,7 @@ public DeviceEnrollmentConfigurationItemRequestBuilder withUrl(@jakarta.annotati
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the deviceEnrollmentConfiguration object.
+ * Read properties and relationships of the deviceEnrollmentLimitConfiguration object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
index 91d3a9ffe86..8d4d1eeb90a 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java
@@ -60,21 +60,21 @@ public RoleDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra
super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @return a {@link RoleDefinitionCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinitionCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinitionCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -111,7 +111,7 @@ public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body
return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -119,7 +119,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -165,7 +165,7 @@ public RoleDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S
return new RoleDefinitionsRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the deviceAndAppManagementRoleDefinition objects.
+ * List properties and relationships of the roleDefinition objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
index b300fa6364c..f7c9837f26c 100644
--- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java
@@ -46,18 +46,18 @@ public RoleDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final String
super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Deletes a deviceAndAppManagementRoleDefinition.
+ * Deletes a roleDefinition.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Deletes a deviceAndAppManagementRoleDefinition.
+ * Deletes a roleDefinition.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -66,21 +66,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition get() {
return get(null);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RoleDefinition}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public RoleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -117,7 +117,7 @@ public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition bod
return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue);
}
/**
- * Deletes a deviceAndAppManagementRoleDefinition.
+ * Deletes a roleDefinition.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -125,7 +125,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Deletes a deviceAndAppManagementRoleDefinition.
+ * Deletes a roleDefinition.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -137,7 +137,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -145,7 +145,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -197,7 +197,7 @@ public RoleDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read properties and relationships of the roleDefinition object.
+ * Read properties and relationships of the deviceAndAppManagementRoleDefinition object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java
index eaae73f655f..ba5560b8366 100644
--- a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java
@@ -99,23 +99,23 @@ public ExternalItem get(@jakarta.annotation.Nullable final java.util.function.Co
return this.requestAdapter.send(requestInfo, errorMapping, ExternalItem::createFromDiscriminatorValue);
}
/**
- * Update the properties of an externalItem object.
+ * Create a new externalItem object.
* @param body The request body
* @return a {@link ExternalItem}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ExternalItem put(@jakarta.annotation.Nonnull final ExternalItem body) {
return put(body, null);
}
/**
- * Update the properties of an externalItem object.
+ * Create a new externalItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ExternalItem}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ExternalItem put(@jakarta.annotation.Nonnull final ExternalItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -166,7 +166,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of an externalItem object.
+ * Create a new externalItem object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -175,7 +175,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi
return toPutRequestInformation(body, null);
}
/**
- * Update the properties of an externalItem object.
+ * Create a new externalItem object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
index 1bf51ef0e51..e8eb02d1211 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
index dcc2e1e38cc..0b1ee77600f 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java
index 8d1dceff407..2f2eba456dc 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
index 5b9bf875d2b..5faeaf33c73 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java
index 263fbb3a542..36d59f8df26 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/EventItemRequestBuilder.java
index b0afd7d1ff4..4c7ff4ec407 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java
index 4daa3199e9a..d480b8ad26f 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java
@@ -84,23 +84,23 @@ public ConversationCollectionResponse get(@jakarta.annotation.Nullable final jav
return this.requestAdapter.send(requestInfo, errorMapping, ConversationCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ * Use reply thread or reply post to further post to that conversation.
* @param body The request body
* @return a {@link Conversation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Conversation post(@jakarta.annotation.Nonnull final Conversation body) {
return post(body, null);
}
/**
- * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ * Use reply thread or reply post to further post to that conversation.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Conversation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Conversation post(@jakarta.annotation.Nonnull final Conversation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -131,7 +131,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ * Use reply thread or reply post to further post to that conversation.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -140,7 +140,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
+ * Use reply thread or reply post to further post to that conversation.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java
index 6e5426c29b0..e829bcb59ec 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java
@@ -66,21 +66,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * The group's conversations.
+ * Retrieve the properties and relationships of conversation object.
* @return a {@link Conversation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Conversation get() {
return get(null);
}
/**
- * The group's conversations.
+ * Retrieve the properties and relationships of conversation object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Conversation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Conversation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -110,7 +110,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * The group's conversations.
+ * Retrieve the properties and relationships of conversation object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -118,7 +118,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The group's conversations.
+ * Retrieve the properties and relationships of conversation object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -146,7 +146,7 @@ public ConversationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * The group's conversations.
+ * Retrieve the properties and relationships of conversation object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/reply/ReplyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/reply/ReplyRequestBuilder.java
index 9902355a599..b20eacba228 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/reply/ReplyRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/reply/ReplyRequestBuilder.java
@@ -35,20 +35,20 @@ public ReplyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/reply", rawUrl);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body) {
post(body, null);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
@@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body, @j
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java
index a339ce542d9..843d3b1796b 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/EventItemRequestBuilder.java
index eba3d5296b9..747bb22c015 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/reply/ReplyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/reply/ReplyRequestBuilder.java
index 950e00bfa49..f11d366df32 100644
--- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/reply/ReplyRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/reply/ReplyRequestBuilder.java
@@ -35,20 +35,20 @@ public ReplyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/reply", rawUrl);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body) {
post(body, null);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
Objects.requireNonNull(body);
@@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ReplyPostRequestBody body, @j
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Reply to a post and add a new post to the specified thread in a group conversation. You can specify both the parent conversation and thread in the request, or, you can specify just the parent thread without the parent conversation.
+ * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java
index f17c1e43f0d..ac609ae49cc 100644
--- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java
@@ -26,7 +26,7 @@ public class IdentityProvidersRequestBuilder extends BaseRequestBuilder {
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -38,7 +38,7 @@ public CountRequestBuilder count() {
* @param identityProviderId The unique identifier of identityProvider
* @return a {@link IdentityProviderItemRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -69,7 +69,7 @@ public IdentityProvidersRequestBuilder(@jakarta.annotation.Nonnull final String
* @return a {@link IdentityProviderCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -83,7 +83,7 @@ public IdentityProviderCollectionResponse get() {
* @return a {@link IdentityProviderCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -98,7 +98,7 @@ public IdentityProviderCollectionResponse get(@jakarta.annotation.Nullable final
* Get the identity providers in a b2xIdentityUserFlow object.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -110,7 +110,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -125,7 +125,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link IdentityProvidersRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/count/CountRequestBuilder.java
index 8b87a8a54f8..373494a54f5 100644
--- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/item/IdentityProviderItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/item/IdentityProviderItemRequestBuilder.java
index 2ef6634754a..3d220b7a4ad 100644
--- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/item/IdentityProviderItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/item/IdentityProviderItemRequestBuilder.java
@@ -41,7 +41,7 @@ public IdentityProviderItemRequestBuilder(@jakarta.annotation.Nonnull final Stri
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -54,7 +54,7 @@ public IdentityProvider get() {
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -68,7 +68,7 @@ public IdentityProvider get(@jakarta.annotation.Nullable final java.util.functio
* The identity providers included in the user flow.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -80,7 +80,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -95,7 +95,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link IdentityProviderItemRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java
index 6bafbee8fd4..57b7621deb8 100644
--- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java
@@ -37,18 +37,18 @@ public NamedLocationItemRequestBuilder(@jakarta.annotation.Nonnull final String
super(requestAdapter, "{+baseurl}/identity/conditionalAccess/namedLocations/{namedLocation%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Delete an ipNamedLocation object.
+ * Delete a countryNamedLocation object.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Delete an ipNamedLocation object.
+ * Delete a countryNamedLocation object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -81,23 +81,23 @@ public NamedLocation get(@jakarta.annotation.Nullable final java.util.function.C
return this.requestAdapter.send(requestInfo, errorMapping, NamedLocation::createFromDiscriminatorValue);
}
/**
- * Update the properties of a countryNamedLocation object.
+ * Update the properties of an ipNamedLocation object.
* @param body The request body
* @return a {@link NamedLocation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body) {
return patch(body, null);
}
/**
- * Update the properties of a countryNamedLocation object.
+ * Update the properties of an ipNamedLocation object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link NamedLocation}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -108,7 +108,7 @@ public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body,
return this.requestAdapter.send(requestInfo, errorMapping, NamedLocation::createFromDiscriminatorValue);
}
/**
- * Delete an ipNamedLocation object.
+ * Delete a countryNamedLocation object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -116,7 +116,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Delete an ipNamedLocation object.
+ * Delete a countryNamedLocation object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -148,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of a countryNamedLocation object.
+ * Update the properties of an ipNamedLocation object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of a countryNamedLocation object.
+ * Update the properties of an ipNamedLocation object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java
index b6e2b442d8a..354cb549225 100644
--- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java
@@ -120,21 +120,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Retrieve the properties and relationships of an accessPackage object.
+ * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
* @return a {@link AccessPackage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public AccessPackage get() {
return get(null);
}
/**
- * Retrieve the properties and relationships of an accessPackage object.
+ * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link AccessPackage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public AccessPackage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -191,7 +191,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve the properties and relationships of an accessPackage object.
+ * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -199,7 +199,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve the properties and relationships of an accessPackage object.
+ * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -251,7 +251,7 @@ public AccessPackageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve the properties and relationships of an accessPackage object.
+ * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java
index 251a786ceff..24b1b235c33 100644
--- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java
@@ -37,18 +37,18 @@ public CustomCalloutExtensionItemRequestBuilder(@jakarta.annotation.Nonnull fina
super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/customWorkflowExtensions/{customCalloutExtension%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ * Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ * Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -57,21 +57,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
* @return a {@link CustomCalloutExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CustomCalloutExtension get() {
return get(null);
}
/**
- * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link CustomCalloutExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -81,23 +81,23 @@ public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.f
return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue);
}
/**
- * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
+ * Update the properties of an accessPackageAssignmentWorkflowExtension object.
* @param body The request body
* @return a {@link CustomCalloutExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body) {
return patch(body, null);
}
/**
- * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
+ * Update the properties of an accessPackageAssignmentWorkflowExtension object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link CustomCalloutExtension}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -108,7 +108,7 @@ public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCall
return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue);
}
/**
- * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ * Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -116,7 +116,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
+ * Delete an accessPackageAssignmentWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies:
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -128,7 +128,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -136,7 +136,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -148,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
+ * Update the properties of an accessPackageAssignmentWorkflowExtension object.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the properties of an accessPackageAssignmentRequestWorkflowExtension object.
+ * Update the properties of an accessPackageAssignmentWorkflowExtension object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
@@ -188,7 +188,7 @@ public CustomCalloutExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Read the properties and relationships of an accessPackageAssignmentWorkflowExtension object.
+ * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java
index 900e65ca210..bbfee33be6c 100644
--- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java
@@ -84,21 +84,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Retrieve all files related to an agreement. This includes the default file and all localized files.
+ * Retrieve the properties and relationships of an agreement object.
* @return a {@link Agreement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Agreement get() {
return get(null);
}
/**
- * Retrieve all files related to an agreement. This includes the default file and all localized files.
+ * Retrieve the properties and relationships of an agreement object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Agreement}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public Agreement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -155,7 +155,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve all files related to an agreement. This includes the default file and all localized files.
+ * Retrieve the properties and relationships of an agreement object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -163,7 +163,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve all files related to an agreement. This includes the default file and all localized files.
+ * Retrieve the properties and relationships of an agreement object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -215,7 +215,7 @@ public AgreementItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve all files related to an agreement. This includes the default file and all localized files.
+ * Retrieve the properties and relationships of an agreement object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/identityproviders/IdentityProvidersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityproviders/IdentityProvidersRequestBuilder.java
index 97c99dbf140..6584d8bd2cf 100644
--- a/src/main/java/com/microsoft/graph/generated/identityproviders/IdentityProvidersRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identityproviders/IdentityProvidersRequestBuilder.java
@@ -28,7 +28,7 @@ public class IdentityProvidersRequestBuilder extends BaseRequestBuilder {
* Provides operations to call the availableProviderTypes method.
* @return a {@link AvailableProviderTypesRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -39,7 +39,7 @@ public AvailableProviderTypesRequestBuilder availableProviderTypes() {
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -51,7 +51,7 @@ public CountRequestBuilder count() {
* @param identityProviderId The unique identifier of identityProvider
* @return a {@link IdentityProviderItemRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -82,7 +82,7 @@ public IdentityProvidersRequestBuilder(@jakarta.annotation.Nonnull final String
* @return a {@link IdentityProviderCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -96,7 +96,7 @@ public IdentityProviderCollectionResponse get() {
* @return a {@link IdentityProviderCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -113,7 +113,7 @@ public IdentityProviderCollectionResponse get(@jakarta.annotation.Nullable final
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -128,7 +128,7 @@ public IdentityProvider post(@jakarta.annotation.Nonnull final IdentityProvider
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -144,7 +144,7 @@ public IdentityProvider post(@jakarta.annotation.Nonnull final IdentityProvider
* Retrieve all identityProviders in the directory.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -156,7 +156,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -171,7 +171,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -184,7 +184,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -201,7 +201,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link IdentityProvidersRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java
index 023128fc277..a1b51a37aa8 100644
--- a/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java
@@ -40,7 +40,7 @@ public AvailableProviderTypesRequestBuilder(@jakarta.annotation.Nonnull final St
* @return a {@link AvailableProviderTypesGetResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -54,7 +54,7 @@ public AvailableProviderTypesGetResponse get() {
* @return a {@link AvailableProviderTypesGetResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -69,7 +69,7 @@ public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final
* Retrieves all identity provider types available in a directory.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -81,7 +81,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -96,7 +96,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link AvailableProviderTypesRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identityproviders/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityproviders/count/CountRequestBuilder.java
index d7c644dcb9a..e493482d146 100644
--- a/src/main/java/com/microsoft/graph/generated/identityproviders/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identityproviders/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/identityproviders/item/IdentityProviderItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityproviders/item/IdentityProviderItemRequestBuilder.java
index e6fa5ff0ff8..f369012e8b8 100644
--- a/src/main/java/com/microsoft/graph/generated/identityproviders/item/IdentityProviderItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/identityproviders/item/IdentityProviderItemRequestBuilder.java
@@ -40,7 +40,7 @@ public IdentityProviderItemRequestBuilder(@jakarta.annotation.Nonnull final Stri
* Delete an existing identityProvider.
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@Deprecated
@@ -52,7 +52,7 @@ public void delete() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@Deprecated
@@ -67,7 +67,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -81,7 +81,7 @@ public IdentityProvider get() {
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -98,7 +98,7 @@ public IdentityProvider get(@jakarta.annotation.Nullable final java.util.functio
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -113,7 +113,7 @@ public IdentityProvider patch(@jakarta.annotation.Nonnull final IdentityProvider
* @return a {@link IdentityProvider}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -129,7 +129,7 @@ public IdentityProvider patch(@jakarta.annotation.Nonnull final IdentityProvider
* Delete an existing identityProvider.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -141,7 +141,7 @@ public RequestInformation toDeleteRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -155,7 +155,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
* Retrieve the properties of an existing identityProvider.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -167,7 +167,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -182,7 +182,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -195,7 +195,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -212,7 +212,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link IdentityProviderItemRequestBuilder}
* @deprecated
- * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider
+ * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider on 2021-08-24 and will be removed 2023-03-15
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/kiota-dom-export.txt b/src/main/java/com/microsoft/graph/generated/kiota-dom-export.txt
index 1fcd9808025..cec252db6f3 100644
--- a/src/main/java/com/microsoft/graph/generated/kiota-dom-export.txt
+++ b/src/main/java/com/microsoft/graph/generated/kiota-dom-export.txt
@@ -111543,6 +111543,7 @@ com.microsoft.graph.models.Application::|public|getAppId():String
com.microsoft.graph.models.Application::|public|getApplicationTemplateId():String
com.microsoft.graph.models.Application::|public|getAppManagementPolicies():java.util.List
com.microsoft.graph.models.Application::|public|getAppRoles():java.util.List
+com.microsoft.graph.models.Application::|public|getAuthenticationBehaviors():AuthenticationBehaviors
com.microsoft.graph.models.Application::|public|getCertification():Certification
com.microsoft.graph.models.Application::|public|getCreatedDateTime():OffsetDateTime
com.microsoft.graph.models.Application::|public|getCreatedOnBehalfOf():DirectoryObject
@@ -111593,6 +111594,7 @@ com.microsoft.graph.models.Application::|public|setAppId(value?:String):void
com.microsoft.graph.models.Application::|public|setApplicationTemplateId(value?:String):void
com.microsoft.graph.models.Application::|public|setAppManagementPolicies(value?:java.util.List):void
com.microsoft.graph.models.Application::|public|setAppRoles(value?:java.util.List):void
+com.microsoft.graph.models.Application::|public|setAuthenticationBehaviors(value?:AuthenticationBehaviors):void
com.microsoft.graph.models.Application::|public|setCertification(value?:Certification):void
com.microsoft.graph.models.Application::|public|setCreatedDateTime(value?:OffsetDateTime):void
com.microsoft.graph.models.Application::|public|setCreatedOnBehalfOf(value?:DirectoryObject):void
@@ -113018,6 +113020,24 @@ com.microsoft.graph.models.AuthenticationAttributeCollectionPageViewConfiguratio
com.microsoft.graph.models.AuthenticationAttributeCollectionPageViewConfiguration::|static|public|createFromDiscriminatorValue(parseNode:ParseNode):AuthenticationAttributeCollectionPageViewConfiguration
com.microsoft.graph.models.AuthenticationAttributeCollectionPageViewConfiguration~~>AdditionalDataHolder; BackedModel; Parsable
com.microsoft.graph.models.AuthenticationAttributeCollectionPage~~>AdditionalDataHolder; BackedModel; Parsable
+com.microsoft.graph.models.AuthenticationBehaviors::|protected|backingStore:BackingStore
+com.microsoft.graph.models.AuthenticationBehaviors::|public|constructor():void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getAdditionalData():Map
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getBackingStore():BackingStore
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getBlockAzureADGraphAccess():Boolean
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getFieldDeserializers():Map>
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getOdataType():String
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getRemoveUnverifiedEmailClaim():Boolean
+com.microsoft.graph.models.AuthenticationBehaviors::|public|getRequireClientServicePrincipal():Boolean
+com.microsoft.graph.models.AuthenticationBehaviors::|public|serialize(writer:SerializationWriter):Void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setAdditionalData(value?:Map):void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setBackingStore(value:BackingStore):void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setBlockAzureADGraphAccess(value?:Boolean):void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setOdataType(value?:String):void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setRemoveUnverifiedEmailClaim(value?:Boolean):void
+com.microsoft.graph.models.AuthenticationBehaviors::|public|setRequireClientServicePrincipal(value?:Boolean):void
+com.microsoft.graph.models.AuthenticationBehaviors::|static|public|createFromDiscriminatorValue(parseNode:ParseNode):AuthenticationBehaviors
+com.microsoft.graph.models.AuthenticationBehaviors~~>AdditionalDataHolder; BackedModel; Parsable
com.microsoft.graph.models.AuthenticationCombinationConfiguration-->Entity
com.microsoft.graph.models.AuthenticationCombinationConfiguration::|public|constructor():void
com.microsoft.graph.models.AuthenticationCombinationConfiguration::|public|getAppliesToCombinations():java.util.List
@@ -124434,14 +124454,15 @@ com.microsoft.graph.models.externalconnectors.PropertyType::0007-DoubleCollectio
com.microsoft.graph.models.externalconnectors.PropertyType::0008-DateTimeCollection
com.microsoft.graph.models.externalconnectors.PropertyType::0009-UnknownFutureValue
com.microsoft.graph.models.externalconnectors.Property~~>AdditionalDataHolder; BackedModel; Parsable
-com.microsoft.graph.models.externalconnectors.RuleOperation::0000-Equals
-com.microsoft.graph.models.externalconnectors.RuleOperation::0001-NotEquals
-com.microsoft.graph.models.externalconnectors.RuleOperation::0002-Contains
-com.microsoft.graph.models.externalconnectors.RuleOperation::0003-NotContains
-com.microsoft.graph.models.externalconnectors.RuleOperation::0004-LessThan
-com.microsoft.graph.models.externalconnectors.RuleOperation::0005-GreaterThan
-com.microsoft.graph.models.externalconnectors.RuleOperation::0006-StartsWith
-com.microsoft.graph.models.externalconnectors.RuleOperation::0007-UnknownFutureValue
+com.microsoft.graph.models.externalconnectors.RuleOperation::0000-Null
+com.microsoft.graph.models.externalconnectors.RuleOperation::0001-Equals
+com.microsoft.graph.models.externalconnectors.RuleOperation::0002-NotEquals
+com.microsoft.graph.models.externalconnectors.RuleOperation::0003-Contains
+com.microsoft.graph.models.externalconnectors.RuleOperation::0004-NotContains
+com.microsoft.graph.models.externalconnectors.RuleOperation::0005-LessThan
+com.microsoft.graph.models.externalconnectors.RuleOperation::0006-GreaterThan
+com.microsoft.graph.models.externalconnectors.RuleOperation::0007-StartsWith
+com.microsoft.graph.models.externalconnectors.RuleOperation::0008-UnknownFutureValue
com.microsoft.graph.models.externalconnectors.Schema-->Entity
com.microsoft.graph.models.externalconnectors.Schema::|public|constructor():void
com.microsoft.graph.models.externalconnectors.Schema::|public|getBaseType():String
diff --git a/src/main/java/com/microsoft/graph/generated/kiota-lock.json b/src/main/java/com/microsoft/graph/generated/kiota-lock.json
index 7bd83e3cc16..669d2a927f2 100644
--- a/src/main/java/com/microsoft/graph/generated/kiota-lock.json
+++ b/src/main/java/com/microsoft/graph/generated/kiota-lock.json
@@ -1,5 +1,5 @@
{
- "descriptionHash": "A0295D08B00F208AE931735CAD300D20844AF2449982425A068CCC22783FA2BA608259EFD304933574C24EA8AAD04E441D92DFA1903FCD7E8E870965A671F069",
+ "descriptionHash": "BCF39C6C0BC5CE39002F930818C2313075A8AF4281F6FD63E02D9149FADBD986210BECD2669E3552B338E5241D3EF9D3C579EBA5F5967AA03E21F8213DC6C27C",
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.24.0",
diff --git a/src/main/java/com/microsoft/graph/generated/models/Application.java b/src/main/java/com/microsoft/graph/generated/models/Application.java
index ec0f5589efb..a137d1ff052 100644
--- a/src/main/java/com/microsoft/graph/generated/models/Application.java
+++ b/src/main/java/com/microsoft/graph/generated/models/Application.java
@@ -76,6 +76,14 @@ public java.util.List getAppManagementPolicies() {
public java.util.List getAppRoles() {
return this.backingStore.get("appRoles");
}
+ /**
+ * Gets the authenticationBehaviors property value. The authenticationBehaviors property
+ * @return a {@link AuthenticationBehaviors}
+ */
+ @jakarta.annotation.Nullable
+ public AuthenticationBehaviors getAuthenticationBehaviors() {
+ return this.backingStore.get("authenticationBehaviors");
+ }
/**
* Gets the certification property value. Specifies the certification status of the application.
* @return a {@link Certification}
@@ -161,6 +169,7 @@ public Map> getFieldDeserializers
deserializerMap.put("applicationTemplateId", (n) -> { this.setApplicationTemplateId(n.getStringValue()); });
deserializerMap.put("appManagementPolicies", (n) -> { this.setAppManagementPolicies(n.getCollectionOfObjectValues(AppManagementPolicy::createFromDiscriminatorValue)); });
deserializerMap.put("appRoles", (n) -> { this.setAppRoles(n.getCollectionOfObjectValues(AppRole::createFromDiscriminatorValue)); });
+ deserializerMap.put("authenticationBehaviors", (n) -> { this.setAuthenticationBehaviors(n.getObjectValue(AuthenticationBehaviors::createFromDiscriminatorValue)); });
deserializerMap.put("certification", (n) -> { this.setCertification(n.getObjectValue(Certification::createFromDiscriminatorValue)); });
deserializerMap.put("createdDateTime", (n) -> { this.setCreatedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("createdOnBehalfOf", (n) -> { this.setCreatedOnBehalfOf(n.getObjectValue(DirectoryObject::createFromDiscriminatorValue)); });
@@ -473,6 +482,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ
writer.writeStringValue("applicationTemplateId", this.getApplicationTemplateId());
writer.writeCollectionOfObjectValues("appManagementPolicies", this.getAppManagementPolicies());
writer.writeCollectionOfObjectValues("appRoles", this.getAppRoles());
+ writer.writeObjectValue("authenticationBehaviors", this.getAuthenticationBehaviors());
writer.writeObjectValue("certification", this.getCertification());
writer.writeOffsetDateTimeValue("createdDateTime", this.getCreatedDateTime());
writer.writeObjectValue("createdOnBehalfOf", this.getCreatedOnBehalfOf());
@@ -557,6 +567,13 @@ public void setAppManagementPolicies(@jakarta.annotation.Nullable final java.uti
public void setAppRoles(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("appRoles", value);
}
+ /**
+ * Sets the authenticationBehaviors property value. The authenticationBehaviors property
+ * @param value Value to set for the authenticationBehaviors property.
+ */
+ public void setAuthenticationBehaviors(@jakarta.annotation.Nullable final AuthenticationBehaviors value) {
+ this.backingStore.set("authenticationBehaviors", value);
+ }
/**
* Sets the certification property value. Specifies the certification status of the application.
* @param value Value to set for the certification property.
diff --git a/src/main/java/com/microsoft/graph/generated/models/AuthenticationBehaviors.java b/src/main/java/com/microsoft/graph/generated/models/AuthenticationBehaviors.java
new file mode 100644
index 00000000000..09915386a3e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/generated/models/AuthenticationBehaviors.java
@@ -0,0 +1,158 @@
+package com.microsoft.graph.models;
+
+import com.microsoft.kiota.serialization.AdditionalDataHolder;
+import com.microsoft.kiota.serialization.Parsable;
+import com.microsoft.kiota.serialization.ParseNode;
+import com.microsoft.kiota.serialization.SerializationWriter;
+import com.microsoft.kiota.store.BackedModel;
+import com.microsoft.kiota.store.BackingStore;
+import com.microsoft.kiota.store.BackingStoreFactorySingleton;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+@jakarta.annotation.Generated("com.microsoft.kiota")
+public class AuthenticationBehaviors implements AdditionalDataHolder, BackedModel, Parsable {
+ /**
+ * Stores model information.
+ */
+ @jakarta.annotation.Nonnull
+ protected BackingStore backingStore;
+ /**
+ * Instantiates a new {@link AuthenticationBehaviors} and sets the default values.
+ */
+ public AuthenticationBehaviors() {
+ this.backingStore = BackingStoreFactorySingleton.instance.createBackingStore();
+ this.setAdditionalData(new HashMap<>());
+ }
+ /**
+ * Creates a new instance of the appropriate class based on discriminator value
+ * @param parseNode The parse node to use to read the discriminator value and create the object
+ * @return a {@link AuthenticationBehaviors}
+ */
+ @jakarta.annotation.Nonnull
+ public static AuthenticationBehaviors createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
+ Objects.requireNonNull(parseNode);
+ return new AuthenticationBehaviors();
+ }
+ /**
+ * Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
+ * @return a {@link Map}
+ */
+ @jakarta.annotation.Nonnull
+ public Map getAdditionalData() {
+ Map value = this.backingStore.get("additionalData");
+ if(value == null) {
+ value = new HashMap<>();
+ this.setAdditionalData(value);
+ }
+ return value;
+ }
+ /**
+ * Gets the backingStore property value. Stores model information.
+ * @return a {@link BackingStore}
+ */
+ @jakarta.annotation.Nonnull
+ public BackingStore getBackingStore() {
+ return this.backingStore;
+ }
+ /**
+ * Gets the blockAzureADGraphAccess property value. The blockAzureADGraphAccess property
+ * @return a {@link Boolean}
+ */
+ @jakarta.annotation.Nullable
+ public Boolean getBlockAzureADGraphAccess() {
+ return this.backingStore.get("blockAzureADGraphAccess");
+ }
+ /**
+ * The deserialization information for the current model
+ * @return a {@link Map>}
+ */
+ @jakarta.annotation.Nonnull
+ public Map> getFieldDeserializers() {
+ final HashMap> deserializerMap = new HashMap>(4);
+ deserializerMap.put("blockAzureADGraphAccess", (n) -> { this.setBlockAzureADGraphAccess(n.getBooleanValue()); });
+ deserializerMap.put("@odata.type", (n) -> { this.setOdataType(n.getStringValue()); });
+ deserializerMap.put("removeUnverifiedEmailClaim", (n) -> { this.setRemoveUnverifiedEmailClaim(n.getBooleanValue()); });
+ deserializerMap.put("requireClientServicePrincipal", (n) -> { this.setRequireClientServicePrincipal(n.getBooleanValue()); });
+ return deserializerMap;
+ }
+ /**
+ * Gets the @odata.type property value. The OdataType property
+ * @return a {@link String}
+ */
+ @jakarta.annotation.Nullable
+ public String getOdataType() {
+ return this.backingStore.get("odataType");
+ }
+ /**
+ * Gets the removeUnverifiedEmailClaim property value. The removeUnverifiedEmailClaim property
+ * @return a {@link Boolean}
+ */
+ @jakarta.annotation.Nullable
+ public Boolean getRemoveUnverifiedEmailClaim() {
+ return this.backingStore.get("removeUnverifiedEmailClaim");
+ }
+ /**
+ * Gets the requireClientServicePrincipal property value. The requireClientServicePrincipal property
+ * @return a {@link Boolean}
+ */
+ @jakarta.annotation.Nullable
+ public Boolean getRequireClientServicePrincipal() {
+ return this.backingStore.get("requireClientServicePrincipal");
+ }
+ /**
+ * Serializes information the current object
+ * @param writer Serialization writer to use to serialize this model
+ */
+ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
+ Objects.requireNonNull(writer);
+ writer.writeBooleanValue("blockAzureADGraphAccess", this.getBlockAzureADGraphAccess());
+ writer.writeStringValue("@odata.type", this.getOdataType());
+ writer.writeBooleanValue("removeUnverifiedEmailClaim", this.getRemoveUnverifiedEmailClaim());
+ writer.writeBooleanValue("requireClientServicePrincipal", this.getRequireClientServicePrincipal());
+ writer.writeAdditionalData(this.getAdditionalData());
+ }
+ /**
+ * Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
+ * @param value Value to set for the AdditionalData property.
+ */
+ public void setAdditionalData(@jakarta.annotation.Nullable final Map value) {
+ this.backingStore.set("additionalData", value);
+ }
+ /**
+ * Sets the backingStore property value. Stores model information.
+ * @param value Value to set for the backingStore property.
+ */
+ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value) {
+ Objects.requireNonNull(value);
+ this.backingStore = value;
+ }
+ /**
+ * Sets the blockAzureADGraphAccess property value. The blockAzureADGraphAccess property
+ * @param value Value to set for the blockAzureADGraphAccess property.
+ */
+ public void setBlockAzureADGraphAccess(@jakarta.annotation.Nullable final Boolean value) {
+ this.backingStore.set("blockAzureADGraphAccess", value);
+ }
+ /**
+ * Sets the @odata.type property value. The OdataType property
+ * @param value Value to set for the @odata.type property.
+ */
+ public void setOdataType(@jakarta.annotation.Nullable final String value) {
+ this.backingStore.set("odataType", value);
+ }
+ /**
+ * Sets the removeUnverifiedEmailClaim property value. The removeUnverifiedEmailClaim property
+ * @param value Value to set for the removeUnverifiedEmailClaim property.
+ */
+ public void setRemoveUnverifiedEmailClaim(@jakarta.annotation.Nullable final Boolean value) {
+ this.backingStore.set("removeUnverifiedEmailClaim", value);
+ }
+ /**
+ * Sets the requireClientServicePrincipal property value. The requireClientServicePrincipal property
+ * @param value Value to set for the requireClientServicePrincipal property.
+ */
+ public void setRequireClientServicePrincipal(@jakarta.annotation.Nullable final Boolean value) {
+ this.backingStore.set("requireClientServicePrincipal", value);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/generated/models/Calendar.java b/src/main/java/com/microsoft/graph/generated/models/Calendar.java
index 0291d66352d..ba56ab2e426 100644
--- a/src/main/java/com/microsoft/graph/generated/models/Calendar.java
+++ b/src/main/java/com/microsoft/graph/generated/models/Calendar.java
@@ -49,7 +49,7 @@ public java.util.List getCalendarView() {
return this.backingStore.get("calendarView");
}
/**
- * Gets the canEdit property value. true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who has been shared a calendar and granted write access.
+ * Gets the canEdit property value. true if the user can write to the calendar, false otherwise. This property is true for the user who created the calendar. This property is also true for a user who shared a calendar and granted write access.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -57,7 +57,7 @@ public Boolean getCanEdit() {
return this.backingStore.get("canEdit");
}
/**
- * Gets the canShare property value. true if the user has the permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
+ * Gets the canShare property value. true if the user has permission to share the calendar, false otherwise. Only the user who created the calendar can share it.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -65,7 +65,7 @@ public Boolean getCanShare() {
return this.backingStore.get("canShare");
}
/**
- * Gets the canViewPrivateItems property value. true if the user can read calendar items that have been marked private, false otherwise.
+ * Gets the canViewPrivateItems property value. If true, the user can read calendar items that have been marked private, false otherwise.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -243,21 +243,21 @@ public void setCalendarView(@jakarta.annotation.Nullable final java.util.List}
*/
@jakarta.annotation.Nullable
@@ -182,7 +182,7 @@ public java.util.List getInstances() {
return this.backingStore.get("instances");
}
/**
- * Gets the isAllDay property value. Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start and end time must be set to midnight and be in the same time zone.
+ * Gets the isAllDay property value. Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start, and endtime must be set to midnight and be in the same time zone.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -198,7 +198,7 @@ public Boolean getIsCancelled() {
return this.backingStore.get("isCancelled");
}
/**
- * Gets the isDraft property value. Set to true if the user has updated the meeting in Outlook but has not sent the updates to attendees. Set to false if all changes have been sent, or if the event is an appointment without any attendees.
+ * Gets the isDraft property value. Set to true if the user has updated the meeting in Outlook but hasn't sent the updates to attendees. Set to false if all changes are sent, or if the event is an appointment without any attendees.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -206,7 +206,7 @@ public Boolean getIsDraft() {
return this.backingStore.get("isDraft");
}
/**
- * Gets the isOnlineMeeting property value. True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
+ * Gets the isOnlineMeeting property value. True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently, Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -214,7 +214,7 @@ public Boolean getIsOnlineMeeting() {
return this.backingStore.get("isOnlineMeeting");
}
/**
- * Gets the isOrganizer property value. Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). This also applies if a delegate organized the event on behalf of the owner.
+ * Gets the isOrganizer property value. Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -238,7 +238,7 @@ public Location getLocation() {
return this.backingStore.get("location");
}
/**
- * Gets the locations property value. The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection would be removed and replaced by the new location value.
+ * Gets the locations property value. The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value.
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
@@ -254,7 +254,7 @@ public java.util.List getMultiValueExtendedPro
return this.backingStore.get("multiValueExtendedProperties");
}
/**
- * Gets the onlineMeeting property value. Details for an attendee to join the meeting online. Default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you cannot change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
+ * Gets the onlineMeeting property value. Details for an attendee to join the meeting online. The default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you can't change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
* @return a {@link OnlineMeetingInfo}
*/
@jakarta.annotation.Nullable
@@ -262,7 +262,7 @@ public OnlineMeetingInfo getOnlineMeeting() {
return this.backingStore.get("onlineMeeting");
}
/**
- * Gets the onlineMeetingProvider property value. Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently you cannot change onlineMeetingProvider again, and the meeting remains available online.
+ * Gets the onlineMeetingProvider property value. Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently, you can't change onlineMeetingProvider again, and the meeting remains available online.
* @return a {@link OnlineMeetingProviderType}
*/
@jakarta.annotation.Nullable
@@ -294,7 +294,7 @@ public String getOriginalEndTimeZone() {
return this.backingStore.get("originalEndTimeZone");
}
/**
- * Gets the originalStart property value. Represents the start time of an event when it is initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
+ * Gets the originalStart property value. Represents the start time of an event when it's initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
@@ -342,7 +342,7 @@ public ResponseStatus getResponseStatus() {
return this.backingStore.get("responseStatus");
}
/**
- * Gets the sensitivity property value. Possible values are: normal, personal, private, confidential.
+ * Gets the sensitivity property value. Possible values are: normal, personal, private, and confidential.
* @return a {@link Sensitivity}
*/
@jakarta.annotation.Nullable
@@ -390,7 +390,7 @@ public String getSubject() {
return this.backingStore.get("subject");
}
/**
- * Gets the transactionId property value. A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. This is useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you cannot change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
+ * Gets the transactionId property value. A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. It's useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you can't change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
@@ -406,7 +406,7 @@ public EventType getType() {
return this.backingStore.get("type");
}
/**
- * Gets the webLink property value. The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL cannot be accessed from within an iFrame.
+ * Gets the webLink property value. The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
@@ -464,7 +464,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ
writer.writeStringValue("webLink", this.getWebLink());
}
/**
- * Sets the allowNewTimeProposals property value. true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. Default is true.
+ * Sets the allowNewTimeProposals property value. true if the meeting organizer allows invitees to propose a new time when responding; otherwise, false. Optional. The default is true.
* @param value Value to set for the allowNewTimeProposals property.
*/
public void setAllowNewTimeProposals(@jakarta.annotation.Nullable final Boolean value) {
@@ -492,7 +492,7 @@ public void setBody(@jakarta.annotation.Nullable final ItemBody value) {
this.backingStore.set("body", value);
}
/**
- * Sets the bodyPreview property value. The preview of the message associated with the event. It is in text format.
+ * Sets the bodyPreview property value. The preview of the message associated with the event. It's in text format.
* @param value Value to set for the bodyPreview property.
*/
public void setBodyPreview(@jakarta.annotation.Nullable final String value) {
@@ -527,7 +527,7 @@ public void setHasAttachments(@jakarta.annotation.Nullable final Boolean value)
this.backingStore.set("hasAttachments", value);
}
/**
- * Sets the hideAttendees property value. When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. Default is false.
+ * Sets the hideAttendees property value. When set to true, each attendee only sees themselves in the meeting request and meeting Tracking list. The default is false.
* @param value Value to set for the hideAttendees property.
*/
public void setHideAttendees(@jakarta.annotation.Nullable final Boolean value) {
@@ -548,14 +548,14 @@ public void setImportance(@jakarta.annotation.Nullable final Importance value) {
this.backingStore.set("importance", value);
}
/**
- * Sets the instances property value. The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * Sets the instances property value. The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param value Value to set for the instances property.
*/
public void setInstances(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("instances", value);
}
/**
- * Sets the isAllDay property value. Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start and end time must be set to midnight and be in the same time zone.
+ * Sets the isAllDay property value. Set to true if the event lasts all day. If true, regardless of whether it's a single-day or multi-day event, start, and endtime must be set to midnight and be in the same time zone.
* @param value Value to set for the isAllDay property.
*/
public void setIsAllDay(@jakarta.annotation.Nullable final Boolean value) {
@@ -569,21 +569,21 @@ public void setIsCancelled(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isCancelled", value);
}
/**
- * Sets the isDraft property value. Set to true if the user has updated the meeting in Outlook but has not sent the updates to attendees. Set to false if all changes have been sent, or if the event is an appointment without any attendees.
+ * Sets the isDraft property value. Set to true if the user has updated the meeting in Outlook but hasn't sent the updates to attendees. Set to false if all changes are sent, or if the event is an appointment without any attendees.
* @param value Value to set for the isDraft property.
*/
public void setIsDraft(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isDraft", value);
}
/**
- * Sets the isOnlineMeeting property value. True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
+ * Sets the isOnlineMeeting property value. True if this event has online meeting information (that is, onlineMeeting points to an onlineMeetingInfo resource), false otherwise. Default is false (onlineMeeting is null). Optional. After you set isOnlineMeeting to true, Microsoft Graph initializes onlineMeeting. Subsequently, Outlook ignores any further changes to isOnlineMeeting, and the meeting remains available online.
* @param value Value to set for the isOnlineMeeting property.
*/
public void setIsOnlineMeeting(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isOnlineMeeting", value);
}
/**
- * Sets the isOrganizer property value. Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). This also applies if a delegate organized the event on behalf of the owner.
+ * Sets the isOrganizer property value. Set to true if the calendar owner (specified by the owner property of the calendar) is the organizer of the event (specified by the organizer property of the event). It also applies if a delegate organized the event on behalf of the owner.
* @param value Value to set for the isOrganizer property.
*/
public void setIsOrganizer(@jakarta.annotation.Nullable final Boolean value) {
@@ -604,7 +604,7 @@ public void setLocation(@jakarta.annotation.Nullable final Location value) {
this.backingStore.set("location", value);
}
/**
- * Sets the locations property value. The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection would be removed and replaced by the new location value.
+ * Sets the locations property value. The locations where the event is held or attended from. The location and locations properties always correspond with each other. If you update the location property, any prior locations in the locations collection are removed and replaced by the new location value.
* @param value Value to set for the locations property.
*/
public void setLocations(@jakarta.annotation.Nullable final java.util.List value) {
@@ -618,14 +618,14 @@ public void setMultiValueExtendedProperties(@jakarta.annotation.Nullable final j
this.backingStore.set("multiValueExtendedProperties", value);
}
/**
- * Sets the onlineMeeting property value. Details for an attendee to join the meeting online. Default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you cannot change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
+ * Sets the onlineMeeting property value. Details for an attendee to join the meeting online. The default is null. Read-only. After you set the isOnlineMeeting and onlineMeetingProvider properties to enable a meeting online, Microsoft Graph initializes onlineMeeting. When set, the meeting remains available online, and you can't change the isOnlineMeeting, onlineMeetingProvider, and onlneMeeting properties again.
* @param value Value to set for the onlineMeeting property.
*/
public void setOnlineMeeting(@jakarta.annotation.Nullable final OnlineMeetingInfo value) {
this.backingStore.set("onlineMeeting", value);
}
/**
- * Sets the onlineMeetingProvider property value. Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently you cannot change onlineMeetingProvider again, and the meeting remains available online.
+ * Sets the onlineMeetingProvider property value. Represents the online meeting service provider. By default, onlineMeetingProvider is unknown. The possible values are unknown, teamsForBusiness, skypeForBusiness, and skypeForConsumer. Optional. After you set onlineMeetingProvider, Microsoft Graph initializes onlineMeeting. Subsequently, you can't change onlineMeetingProvider again, and the meeting remains available online.
* @param value Value to set for the onlineMeetingProvider property.
*/
public void setOnlineMeetingProvider(@jakarta.annotation.Nullable final OnlineMeetingProviderType value) {
@@ -653,7 +653,7 @@ public void setOriginalEndTimeZone(@jakarta.annotation.Nullable final String val
this.backingStore.set("originalEndTimeZone", value);
}
/**
- * Sets the originalStart property value. Represents the start time of an event when it is initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
+ * Sets the originalStart property value. Represents the start time of an event when it's initially created as an occurrence or exception in a recurring series. This property is not returned for events that are single instances. Its date and time information is expressed in ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
* @param value Value to set for the originalStart property.
*/
public void setOriginalStart(@jakarta.annotation.Nullable final OffsetDateTime value) {
@@ -695,7 +695,7 @@ public void setResponseStatus(@jakarta.annotation.Nullable final ResponseStatus
this.backingStore.set("responseStatus", value);
}
/**
- * Sets the sensitivity property value. Possible values are: normal, personal, private, confidential.
+ * Sets the sensitivity property value. Possible values are: normal, personal, private, and confidential.
* @param value Value to set for the sensitivity property.
*/
public void setSensitivity(@jakarta.annotation.Nullable final Sensitivity value) {
@@ -737,7 +737,7 @@ public void setSubject(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("subject", value);
}
/**
- * Sets the transactionId property value. A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. This is useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you cannot change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
+ * Sets the transactionId property value. A custom identifier specified by a client app for the server to avoid redundant POST operations in case of client retries to create the same event. It's useful when low network connectivity causes the client to time out before receiving a response from the server for the client's prior create-event request. After you set transactionId when creating an event, you can't change transactionId in a subsequent update. This property is only returned in a response payload if an app has set it. Optional.
* @param value Value to set for the transactionId property.
*/
public void setTransactionId(@jakarta.annotation.Nullable final String value) {
@@ -751,7 +751,7 @@ public void setType(@jakarta.annotation.Nullable final EventType value) {
this.backingStore.set("type", value);
}
/**
- * Sets the webLink property value. The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL cannot be accessed from within an iFrame.
+ * Sets the webLink property value. The URL to open the event in Outlook on the web.Outlook on the web opens the event in the browser if you are signed in to your mailbox. Otherwise, Outlook on the web prompts you to sign in.This URL can't be accessed from within an iFrame.
* @param value Value to set for the webLink property.
*/
public void setWebLink(@jakarta.annotation.Nullable final String value) {
diff --git a/src/main/java/com/microsoft/graph/generated/models/EventMessage.java b/src/main/java/com/microsoft/graph/generated/models/EventMessage.java
index 668ec0f388e..8af864a4931 100644
--- a/src/main/java/com/microsoft/graph/generated/models/EventMessage.java
+++ b/src/main/java/com/microsoft/graph/generated/models/EventMessage.java
@@ -77,7 +77,7 @@ public Boolean getIsAllDay() {
return this.backingStore.get("isAllDay");
}
/**
- * Gets the isDelegated property value. True if this meeting request is accessible to a delegate, false otherwise. Default is false.
+ * Gets the isDelegated property value. True if this meeting request is accessible to a delegate, false otherwise. The default is false.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -172,7 +172,7 @@ public void setIsAllDay(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("isAllDay", value);
}
/**
- * Sets the isDelegated property value. True if this meeting request is accessible to a delegate, false otherwise. Default is false.
+ * Sets the isDelegated property value. True if this meeting request is accessible to a delegate, false otherwise. The default is false.
* @param value Value to set for the isDelegated property.
*/
public void setIsDelegated(@jakarta.annotation.Nullable final Boolean value) {
diff --git a/src/main/java/com/microsoft/graph/generated/models/Message.java b/src/main/java/com/microsoft/graph/generated/models/Message.java
index 09f83cea79e..70806da6626 100644
--- a/src/main/java/com/microsoft/graph/generated/models/Message.java
+++ b/src/main/java/com/microsoft/graph/generated/models/Message.java
@@ -140,7 +140,7 @@ public Map> getFieldDeserializers
return deserializerMap;
}
/**
- * Gets the flag property value. The flag value that indicates the status, start date, due date, or completion date for the message.
+ * Gets the flag property value. Indicates the status, start date, due date, or completion date for the message.
* @return a {@link FollowupFlag}
*/
@jakarta.annotation.Nullable
@@ -260,7 +260,7 @@ public java.util.List getReplyTo() {
return this.backingStore.get("replyTo");
}
/**
- * Gets the sender property value. The account that is actually used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
+ * Gets the sender property value. The account that is used to generate the message. In most cases, this value is the same as the from property. You can set this property to a different value when sending a message from a shared mailbox, for a shared calendar, or as a delegate. In any case, the value must correspond to the actual mailbox used. Find out more about setting the from and sender properties of a message.
* @return a {@link Recipient}
*/
@jakarta.annotation.Nullable
@@ -410,7 +410,7 @@ public void setExtensions(@jakarta.annotation.Nullable final java.util.List getAdditionalData() {
return value;
}
/**
- * Gets the allowAutoFilter property value. Indicates whether the worksheet protection option to allow the use of the autofilter feature is enabled.
+ * Gets the allowAutoFilter property value. Represents the worksheet protection option of allowing using auto filter feature.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -56,7 +56,7 @@ public Boolean getAllowAutoFilter() {
return this.backingStore.get("allowAutoFilter");
}
/**
- * Gets the allowDeleteColumns property value. Indicates whether the worksheet protection option to allow deleting columns is enabled.
+ * Gets the allowDeleteColumns property value. Represents the worksheet protection option of allowing deleting columns.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -64,7 +64,7 @@ public Boolean getAllowDeleteColumns() {
return this.backingStore.get("allowDeleteColumns");
}
/**
- * Gets the allowDeleteRows property value. Indicates whether the worksheet protection option to allow deleting rows is enabled.
+ * Gets the allowDeleteRows property value. Represents the worksheet protection option of allowing deleting rows.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -72,7 +72,7 @@ public Boolean getAllowDeleteRows() {
return this.backingStore.get("allowDeleteRows");
}
/**
- * Gets the allowFormatCells property value. Indicates whether the worksheet protection option to allow formatting cells is enabled.
+ * Gets the allowFormatCells property value. Represents the worksheet protection option of allowing formatting cells.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -80,7 +80,7 @@ public Boolean getAllowFormatCells() {
return this.backingStore.get("allowFormatCells");
}
/**
- * Gets the allowFormatColumns property value. Indicates whether the worksheet protection option to allow formatting columns is enabled.
+ * Gets the allowFormatColumns property value. Represents the worksheet protection option of allowing formatting columns.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -88,7 +88,7 @@ public Boolean getAllowFormatColumns() {
return this.backingStore.get("allowFormatColumns");
}
/**
- * Gets the allowFormatRows property value. Indicates whether the worksheet protection option to allow formatting rows is enabled.
+ * Gets the allowFormatRows property value. Represents the worksheet protection option of allowing formatting rows.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -96,7 +96,7 @@ public Boolean getAllowFormatRows() {
return this.backingStore.get("allowFormatRows");
}
/**
- * Gets the allowInsertColumns property value. Indicates whether the worksheet protection option to allow inserting columns is enabled.
+ * Gets the allowInsertColumns property value. Represents the worksheet protection option of allowing inserting columns.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -104,7 +104,7 @@ public Boolean getAllowInsertColumns() {
return this.backingStore.get("allowInsertColumns");
}
/**
- * Gets the allowInsertHyperlinks property value. Indicates whether the worksheet protection option to allow inserting hyperlinks is enabled.
+ * Gets the allowInsertHyperlinks property value. Represents the worksheet protection option of allowing inserting hyperlinks.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -112,7 +112,7 @@ public Boolean getAllowInsertHyperlinks() {
return this.backingStore.get("allowInsertHyperlinks");
}
/**
- * Gets the allowInsertRows property value. Indicates whether the worksheet protection option to allow inserting rows is enabled.
+ * Gets the allowInsertRows property value. Represents the worksheet protection option of allowing inserting rows.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -120,7 +120,7 @@ public Boolean getAllowInsertRows() {
return this.backingStore.get("allowInsertRows");
}
/**
- * Gets the allowPivotTables property value. Indicates whether the worksheet protection option to allow the use of the pivot table feature is enabled.
+ * Gets the allowPivotTables property value. Represents the worksheet protection option of allowing using pivot table feature.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -128,7 +128,7 @@ public Boolean getAllowPivotTables() {
return this.backingStore.get("allowPivotTables");
}
/**
- * Gets the allowSort property value. Indicates whether the worksheet protection option to allow the use of the sort feature is enabled.
+ * Gets the allowSort property value. Represents the worksheet protection option of allowing using sort feature.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
@@ -200,77 +200,77 @@ public void setAdditionalData(@jakarta.annotation.Nullable final MapFind more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public OrganizationCollectionResponse get() {
return get(null);
}
/**
- * List properties and relationships of the organization objects.
+ * Retrieve a list of organization objects. There's only one organization object in the collection.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link OrganizationCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public OrganizationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -145,7 +145,7 @@ public Organization post(@jakarta.annotation.Nonnull final Organization body, @j
return this.requestAdapter.send(requestInfo, errorMapping, Organization::createFromDiscriminatorValue);
}
/**
- * List properties and relationships of the organization objects.
+ * Retrieve a list of organization objects. There's only one organization object in the collection.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -153,7 +153,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * List properties and relationships of the organization objects.
+ * Retrieve a list of organization objects. There's only one organization object in the collection.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -199,7 +199,7 @@ public OrganizationRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri
return new OrganizationRequestBuilder(rawUrl, requestAdapter);
}
/**
- * List properties and relationships of the organization objects.
+ * Retrieve a list of organization objects. There's only one organization object in the collection.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java
index 4003c19e2a2..69457da54c4 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java
@@ -27,7 +27,7 @@ public class SubjectRightsRequestsRequestBuilder extends BaseRequestBuilder {
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -39,7 +39,7 @@ public CountRequestBuilder count() {
* @param subjectRightsRequestId The unique identifier of subjectRightsRequest
* @return a {@link SubjectRightsRequestItemRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -70,7 +70,7 @@ public SubjectRightsRequestsRequestBuilder(@jakarta.annotation.Nonnull final Str
* @return a {@link SubjectRightsRequestCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -84,7 +84,7 @@ public SubjectRightsRequestCollectionResponse get() {
* @return a {@link SubjectRightsRequestCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -101,7 +101,7 @@ public SubjectRightsRequestCollectionResponse get(@jakarta.annotation.Nullable f
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -116,7 +116,7 @@ public SubjectRightsRequest post(@jakarta.annotation.Nonnull final SubjectRights
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -132,7 +132,7 @@ public SubjectRightsRequest post(@jakarta.annotation.Nonnull final SubjectRights
* Get a list of subjectRightsRequest objects and their properties.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -144,7 +144,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -159,7 +159,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -172,7 +172,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -189,7 +189,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link SubjectRightsRequestsRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/count/CountRequestBuilder.java
index b71b1bc85a6..598422fe5ac 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java
index 5b72aebf029..1ed987f9904 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java
@@ -32,7 +32,7 @@ public class SubjectRightsRequestItemRequestBuilder extends BaseRequestBuilder {
* Provides operations to manage the approvers property of the microsoft.graph.subjectRightsRequest entity.
* @return a {@link ApproversRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -43,7 +43,7 @@ public ApproversRequestBuilder approvers() {
* Provides operations to manage the collaborators property of the microsoft.graph.subjectRightsRequest entity.
* @return a {@link CollaboratorsRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -54,7 +54,7 @@ public CollaboratorsRequestBuilder collaborators() {
* Provides operations to call the getFinalAttachment method.
* @return a {@link GetFinalAttachmentRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -65,7 +65,7 @@ public GetFinalAttachmentRequestBuilder getFinalAttachment() {
* Provides operations to call the getFinalReport method.
* @return a {@link GetFinalReportRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -76,7 +76,7 @@ public GetFinalReportRequestBuilder getFinalReport() {
* Provides operations to manage the notes property of the microsoft.graph.subjectRightsRequest entity.
* @return a {@link NotesRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -87,7 +87,7 @@ public NotesRequestBuilder notes() {
* Provides operations to manage the team property of the microsoft.graph.subjectRightsRequest entity.
* @return a {@link TeamRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -99,7 +99,7 @@ public TeamRequestBuilder team() {
* @param userPrincipalName Alternate key of user
* @return a {@link ApproversWithUserPrincipalNameRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -112,7 +112,7 @@ public ApproversWithUserPrincipalNameRequestBuilder approversWithUserPrincipalNa
* @param userPrincipalName Alternate key of user
* @return a {@link CollaboratorsWithUserPrincipalNameRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -140,7 +140,7 @@ public SubjectRightsRequestItemRequestBuilder(@jakarta.annotation.Nonnull final
* Delete navigation property subjectRightsRequests for privacy
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
public void delete() {
@@ -151,7 +151,7 @@ public void delete() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -165,7 +165,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -179,7 +179,7 @@ public SubjectRightsRequest get() {
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -196,7 +196,7 @@ public SubjectRightsRequest get(@jakarta.annotation.Nullable final java.util.fun
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -211,7 +211,7 @@ public SubjectRightsRequest patch(@jakarta.annotation.Nonnull final SubjectRight
* @return a {@link SubjectRightsRequest}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -227,7 +227,7 @@ public SubjectRightsRequest patch(@jakarta.annotation.Nonnull final SubjectRight
* Delete navigation property subjectRightsRequests for privacy
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -239,7 +239,7 @@ public RequestInformation toDeleteRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -253,7 +253,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
* Read the properties and relationships of a subjectRightsRequest object.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -265,7 +265,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -280,7 +280,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -293,7 +293,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -310,7 +310,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link SubjectRightsRequestItemRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/ApproversRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/ApproversRequestBuilder.java
index 1e531c66258..fd5d558c85c 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/ApproversRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/ApproversRequestBuilder.java
@@ -26,7 +26,7 @@ public class ApproversRequestBuilder extends BaseRequestBuilder {
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -38,7 +38,7 @@ public CountRequestBuilder count() {
* @param userId The unique identifier of user
* @return a {@link UserItemRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -69,7 +69,7 @@ public ApproversRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* @return a {@link UserCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -82,7 +82,7 @@ public UserCollectionResponse get() {
* @return a {@link UserCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -96,7 +96,7 @@ public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.f
* Collection of users who can approve the request. Currently only supported for requests of type delete.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -108,7 +108,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -123,7 +123,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link ApproversRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/count/CountRequestBuilder.java
index 2fe91ca57ab..73c2baa5dfb 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/item/UserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/item/UserItemRequestBuilder.java
index 45d23e8faf9..d705cac0bf1 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/item/UserItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/approvers/item/UserItemRequestBuilder.java
@@ -26,7 +26,7 @@ public class UserItemRequestBuilder extends BaseRequestBuilder {
* The mailboxSettings property
* @return a {@link MailboxSettingsRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -37,7 +37,7 @@ public MailboxSettingsRequestBuilder mailboxSettings() {
* The serviceProvisioningErrors property
* @return a {@link ServiceProvisioningErrorsRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -65,7 +65,7 @@ public UserItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -78,7 +78,7 @@ public User get() {
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -92,7 +92,7 @@ public User get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here
*/
@jakarta.annotation.Nullable
@@ -54,7 +54,7 @@ public InputStream get() {
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -69,7 +69,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con
* Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -81,7 +81,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -96,7 +96,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link GetFinalAttachmentRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java
index b747a48718c..d3c8d64cff4 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java
@@ -40,7 +40,7 @@ public GetFinalReportRequestBuilder(@jakarta.annotation.Nonnull final String raw
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -54,7 +54,7 @@ public InputStream get() {
* @return a {@link InputStream}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -69,7 +69,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con
* Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -81,7 +81,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -96,7 +96,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link GetFinalReportRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java
index ba5c2064ad1..3262cdf2e42 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java
@@ -27,7 +27,7 @@ public class NotesRequestBuilder extends BaseRequestBuilder {
* Provides operations to count the resources in the collection.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
@jakarta.annotation.Nonnull
@@ -39,7 +39,7 @@ public CountRequestBuilder count() {
* @param authoredNoteId The unique identifier of authoredNote
* @return a {@link AuthoredNoteItemRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -70,7 +70,7 @@ public NotesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link AuthoredNoteCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -84,7 +84,7 @@ public AuthoredNoteCollectionResponse get() {
* @return a {@link AuthoredNoteCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -101,7 +101,7 @@ public AuthoredNoteCollectionResponse get(@jakarta.annotation.Nullable final jav
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -116,7 +116,7 @@ public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body) {
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -132,7 +132,7 @@ public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body, @j
* Get the list of authored notes assoicated with a subject rights request.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -144,7 +144,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -159,7 +159,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -172,7 +172,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -189,7 +189,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link NotesRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/count/CountRequestBuilder.java
index 9cbf044762c..c651fd5086b 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/item/AuthoredNoteItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/item/AuthoredNoteItemRequestBuilder.java
index 425b1d0f5b9..85d63b28473 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/item/AuthoredNoteItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/item/AuthoredNoteItemRequestBuilder.java
@@ -40,7 +40,7 @@ public AuthoredNoteItemRequestBuilder(@jakarta.annotation.Nonnull final String r
* Delete navigation property notes for privacy
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
public void delete() {
@@ -51,7 +51,7 @@ public void delete() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@Deprecated
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -65,7 +65,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -78,7 +78,7 @@ public AuthoredNote get() {
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -94,7 +94,7 @@ public AuthoredNote get(@jakarta.annotation.Nullable final java.util.function.Co
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -108,7 +108,7 @@ public AuthoredNote patch(@jakarta.annotation.Nonnull final AuthoredNote body) {
* @return a {@link AuthoredNote}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -123,7 +123,7 @@ public AuthoredNote patch(@jakarta.annotation.Nonnull final AuthoredNote body, @
* Delete navigation property notes for privacy
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -135,7 +135,7 @@ public RequestInformation toDeleteRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -149,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
* List of notes associated with the request.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -161,7 +161,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -176,7 +176,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -189,7 +189,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -206,7 +206,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link AuthoredNoteItemRequestBuilder}
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/team/TeamRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/team/TeamRequestBuilder.java
index 535cd84e6dc..a917c5c47bd 100644
--- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/team/TeamRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/team/TeamRequestBuilder.java
@@ -41,7 +41,7 @@ public TeamRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -54,7 +54,7 @@ public Team get() {
* @return a {@link Team}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate
+ * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate on 2022-03-22 and will be removed 2025-03-20
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -68,7 +68,7 @@ public Team get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here
*/
@jakarta.annotation.Nullable
@@ -84,7 +84,7 @@ public AlertCollectionResponse get() {
* @return a {@link AlertCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -101,7 +101,7 @@ public AlertCollectionResponse get(@jakarta.annotation.Nullable final java.util.
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -115,7 +115,7 @@ public Alert post(@jakarta.annotation.Nonnull final Alert body) {
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -130,7 +130,7 @@ public Alert post(@jakarta.annotation.Nonnull final Alert body, @jakarta.annotat
* Retrieve a list of alert objects.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -142,7 +142,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -170,7 +170,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -187,7 +187,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link AlertsRequestBuilder}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts/count/CountRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts/count/CountRequestBuilder.java
index 60403bfd06b..f3694a5e91c 100644
--- a/src/main/java/com/microsoft/graph/generated/security/alerts/count/CountRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/security/alerts/count/CountRequestBuilder.java
@@ -40,7 +40,7 @@ public CountRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -53,7 +53,7 @@ public Integer get() {
* @return a {@link Integer}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nullable
@Deprecated
@@ -67,7 +67,7 @@ public Integer get(@jakarta.annotation.Nullable final java.util.function.Consume
* Get the number of the resource
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -79,7 +79,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -94,7 +94,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link CountRequestBuilder}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java
index 4c9bda64cb0..063468a3767 100644
--- a/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java
@@ -41,7 +41,7 @@ public AlertItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -55,7 +55,7 @@ public Alert get() {
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -72,7 +72,7 @@ public Alert get(@jakarta.annotation.Nullable final java.util.function.Consumer<
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -87,7 +87,7 @@ public Alert patch(@jakarta.annotation.Nonnull final Alert body) {
* @return a {@link Alert}
* @throws ODataError When receiving a 4XX or 5XX status code
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
* @see Find more info here
*/
@jakarta.annotation.Nullable
@@ -103,7 +103,7 @@ public Alert patch(@jakarta.annotation.Nonnull final Alert body, @jakarta.annota
* Retrieve the properties and relationships of an alert object.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() {
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -130,7 +130,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
* @param body The request body
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -143,7 +143,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
@@ -160,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
* @param rawUrl The raw URL to use for the request builder.
* @return a {@link AlertItemRequestBuilder}
* @deprecated
- * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation
+ * The legacy Graph Security API is deprecated and will stop returning data on January 31, 2025. Please use the new Graph Security API. as of 2024-01/Deprecation on 2024-04-10 and will be removed 2026-04-10
*/
@jakarta.annotation.Nonnull
@Deprecated
diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java
index 64edf4bfcd9..abc6014c2e0 100644
--- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java
@@ -127,21 +127,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Get a list of rich long-running operations associated with a list.
+ * Returns the metadata for a list.
* @return a {@link List}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public List get() {
return get(null);
}
/**
- * Get a list of rich long-running operations associated with a list.
+ * Returns the metadata for a list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link List}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public List get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -196,7 +196,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Get a list of rich long-running operations associated with a list.
+ * Returns the metadata for a list.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -204,7 +204,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Get a list of rich long-running operations associated with a list.
+ * Returns the metadata for a list.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -256,7 +256,7 @@ public ListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Get a list of rich long-running operations associated with a list.
+ * Returns the metadata for a list.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java
index cdeccf97c34..f02f670bb89 100644
--- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java
@@ -102,23 +102,23 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin
return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Add a conversationMember to a channel.
+ * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) {
return post(body, null);
}
/**
- * Add a conversationMember to a channel.
+ * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -149,7 +149,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Add a conversationMember to a channel.
+ * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -158,7 +158,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Add a conversationMember to a channel.
+ * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java
index 4f51ce27359..79ecc28e9da 100644
--- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java
@@ -37,18 +37,18 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St
super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl);
}
/**
- * Delete a conversationMember from a channel.
+ * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
}
/**
- * Delete a conversationMember from a channel.
+ * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -81,23 +81,23 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct
return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue);
}
/**
- * Update the role of a conversationMember in a team or channel.
+ * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) {
return patch(body, null);
}
/**
- * Update the role of a conversationMember in a team or channel.
+ * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ConversationMember}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -108,7 +108,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe
return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue);
}
/**
- * Delete a conversationMember from a channel.
+ * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -116,7 +116,7 @@ public RequestInformation toDeleteRequestInformation() {
return toDeleteRequestInformation(null);
}
/**
- * Delete a conversationMember from a channel.
+ * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -148,7 +148,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Update the role of a conversationMember in a team or channel.
+ * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -157,7 +157,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull
return toPatchRequestInformation(body, null);
}
/**
- * Update the role of a conversationMember in a team or channel.
+ * Update the role of a conversationMember in a channel. This operation is allowed only for channels with a membershipType value of private or shared.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java
index aaef76f21d0..55b49961cfd 100644
--- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java
@@ -93,23 +93,23 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java
return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue);
}
/**
- * Send a new chatMessage in the specified channel or a chat.
+ * Send a new chatMessage in the specified channel.
* @param body The request body
* @return a {@link ChatMessage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) {
return post(body, null);
}
/**
- * Send a new chatMessage in the specified channel or a chat.
+ * Send a new chatMessage in the specified channel.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link ChatMessage}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -140,7 +140,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f
return requestInfo;
}
/**
- * Send a new chatMessage in the specified channel or a chat.
+ * Send a new chatMessage in the specified channel.
* @param body The request body
* @return a {@link RequestInformation}
*/
@@ -149,7 +149,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f
return toPostRequestInformation(body, null);
}
/**
- * Send a new chatMessage in the specified channel or a chat.
+ * Send a new chatMessage in the specified channel.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
diff --git a/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java
index ae9faf8b47b..02e27cc8bad 100644
--- a/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java
@@ -96,21 +96,21 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak
super(requestAdapter, "{+baseurl}/users{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24top}", rawUrl);
}
/**
- * Retrieve a list of user objects.
+ * List properties and relationships of the user objects.
* @return a {@link UserCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public UserCollectionResponse get() {
return get(null);
}
/**
- * Retrieve a list of user objects.
+ * List properties and relationships of the user objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link UserCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -147,7 +147,7 @@ public User post(@jakarta.annotation.Nonnull final User body, @jakarta.annotatio
return this.requestAdapter.send(requestInfo, errorMapping, User::createFromDiscriminatorValue);
}
/**
- * Retrieve a list of user objects.
+ * List properties and relationships of the user objects.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -155,7 +155,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve a list of user objects.
+ * List properties and relationships of the user objects.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -201,7 +201,7 @@ public UsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU
return new UsersRequestBuilder(rawUrl, requestAdapter);
}
/**
- * Retrieve a list of user objects.
+ * List properties and relationships of the user objects.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java
index 0bfec7928a0..6da86345dbc 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java
@@ -707,7 +707,7 @@ public UserItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @
/**
* Deletes a user.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
@@ -716,7 +716,7 @@ public void delete() {
* Deletes a user.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -737,21 +737,21 @@ public ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder exportDevic
return new ExportDeviceAndAppManagementDataWithSkipWithTopRequestBuilder(pathParameters, requestAdapter, skip, top);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public User get() {
return get(null);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public User get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -820,7 +820,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -828,7 +828,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -880,7 +880,7 @@ public UserItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
index 31c6dd64df6..f9dc9fb5388 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
index f4b43e3bd69..130f5096725 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java
index 2c666cdcfb1..1594e614b30 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
index f1a3fd4d328..dfecc7cdaee 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
index ed0bde22450..556e1543e4f 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
index c99d3865f57..c867b13a1f7 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
index f9bbffbea8f..c021dfdbe1a 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
index c6376d8ea35..23967846589 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
index 46a69923553..9f7c61a9a4c 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
index e6d67728027..53b72617d94 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
index d2b44fac492..a3ac8a9dbbe 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
index 18baa9d0989..69a058d16e0 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java
index a9f2b9eee0e..85f540d8aac 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/EventItemRequestBuilder.java
index 12baa8acb42..a79a4519289 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java
index f25f3cd57f4..44770f22dd7 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java
@@ -68,7 +68,7 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/instances?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -77,7 +77,7 @@ public EventCollectionResponse get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link EventCollectionResponse}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -90,7 +90,7 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.
return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -98,7 +98,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -120,7 +120,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new InstancesRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/EventItemRequestBuilder.java
index 895e6b0e664..c0c98077842 100644
--- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/EventItemRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/EventItemRequestBuilder.java
@@ -127,7 +127,7 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl,
super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/instances/{event%2Did1}?endDateTime={endDateTime}&startDateTime={startDateTime}{&%24expand,%24select}", rawUrl);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
*/
@@ -136,7 +136,7 @@ public Event get() {
return get(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link Event}
* @throws ODataError When receiving a 4XX or 5XX status code
@@ -149,7 +149,7 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer<
return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -157,7 +157,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -179,7 +179,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String
return new EventItemRequestBuilder(rawUrl, requestAdapter);
}
/**
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions that have been modified, but does not include occurrences that have been cancelled from the series. Navigation property. Read-only. Nullable.
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {
diff --git a/src/main/java/com/microsoft/graph/generated/userswithuserprincipalname/UsersWithUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/userswithuserprincipalname/UsersWithUserPrincipalNameRequestBuilder.java
index 861d207e1db..8ee74e65a70 100644
--- a/src/main/java/com/microsoft/graph/generated/userswithuserprincipalname/UsersWithUserPrincipalNameRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/generated/userswithuserprincipalname/UsersWithUserPrincipalNameRequestBuilder.java
@@ -41,7 +41,7 @@ public UsersWithUserPrincipalNameRequestBuilder(@jakarta.annotation.Nonnull fina
/**
* Deletes a user.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete() {
delete(null);
@@ -50,7 +50,7 @@ public void delete() {
* Deletes a user.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration);
@@ -59,21 +59,21 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume
this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public User get() {
return get(null);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link User}
* @throws ODataError When receiving a 4XX or 5XX status code
- * @see Find more info here
+ * @see Find more info here
*/
@jakarta.annotation.Nullable
public User get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) {
@@ -130,7 +130,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl
return requestInfo;
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @return a {@link RequestInformation}
*/
@jakarta.annotation.Nonnull
@@ -138,7 +138,7 @@ public RequestInformation toGetRequestInformation() {
return toGetRequestInformation(null);
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @return a {@link RequestInformation}
*/
@@ -190,7 +190,7 @@ public UsersWithUserPrincipalNameRequestBuilder withUrl(@jakarta.annotation.Nonn
public class DeleteRequestConfiguration extends BaseRequestConfiguration {
}
/**
- * Retrieve the properties and relationships of user object. This operation returns by default only a subset of the more commonly used properties for each user. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation for the user and specify the properties in a $select OData query option. Because the user resource supports extensions, you can also use the GET operation to get custom properties and extension data in a user instance. Customers through Microsoft Entra ID for customers can also use this API operation to retrieve their details.
+ * Read properties and relationships of the user object.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public class GetQueryParameters implements QueryParameters {