diff --git a/README.md b/README.md
index 2a834d491c7..c2422676080 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ repositories {
dependencies {
// Include the sdk as a dependency
- implementation 'com.microsoft.graph:microsoft-graph:3.1.0'
+ implementation 'com.microsoft.graph:microsoft-graph:3.2.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:29.0-android'
}
@@ -33,7 +33,7 @@ Add the dependency in `dependencies` in pom.xml
com.microsoft.graph
microsoft-graph
- 3.1.0
+ 3.2.0
```
@@ -127,3 +127,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
[Third-party notices](THIRD%20PARTY%20NOTICES)
+
diff --git a/gradle.properties b/gradle.properties
index 0bee9fa992b..a61f3ccf922 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -26,7 +26,7 @@ org.gradle.caching=true
mavenGroupId = com.microsoft.graph
mavenArtifactId = microsoft-graph
mavenMajorVersion = 3
-mavenMinorVersion = 1
+mavenMinorVersion = 2
mavenPatchVersion = 0
mavenArtifactSuffix =
@@ -45,3 +45,4 @@ mavenCentralPublishingEnabled=false
+
diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java
index aec280e0e8c..c7a88b1fd9a 100644
--- a/src/main/java/com/microsoft/graph/info/Constants.java
+++ b/src/main/java/com/microsoft/graph/info/Constants.java
@@ -18,7 +18,8 @@ private Constants() {
/** The client secret to use for unit testing */
public static final String CLIENTSECRET = "clientsecret";
/** The SDK version */
- public static final String VERSION_NAME = "3.1.0";
+ public static final String VERSION_NAME = "3.2.0";
}
+
diff --git a/src/main/java/com/microsoft/graph/models/AadUserNotificationRecipient.java b/src/main/java/com/microsoft/graph/models/AadUserNotificationRecipient.java
new file mode 100644
index 00000000000..406cd89efa3
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/AadUserNotificationRecipient.java
@@ -0,0 +1,47 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Aad User Notification Recipient.
+ */
+public class AadUserNotificationRecipient extends TeamworkNotificationRecipient implements IJsonBackedObject {
+
+
+ /**
+ * The User Id.
+ * Azure AD user identifier. Use the List users method to get this ID.
+ */
+ @SerializedName(value = "userId", alternate = {"UserId"})
+ @Expose
+ @Nullable
+ public String userId;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/AccessReviewReviewerScope.java b/src/main/java/com/microsoft/graph/models/AccessReviewReviewerScope.java
index 286adb392c9..69128e58d06 100644
--- a/src/main/java/com/microsoft/graph/models/AccessReviewReviewerScope.java
+++ b/src/main/java/com/microsoft/graph/models/AccessReviewReviewerScope.java
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
/**
* The Query Root.
- * In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.
+ * The type of query. Examples include MicrosoftGraph and ARM.
*/
@SerializedName(value = "queryRoot", alternate = {"QueryRoot"})
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
/**
* The Query Type.
- * The type of query. Examples include MicrosoftGraph and ARM.
+ * In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.
*/
@SerializedName(value = "queryType", alternate = {"QueryType"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/AdminConsentRequestPolicy.java b/src/main/java/com/microsoft/graph/models/AdminConsentRequestPolicy.java
index f6d991474f0..514c4c3bf42 100644
--- a/src/main/java/com/microsoft/graph/models/AdminConsentRequestPolicy.java
+++ b/src/main/java/com/microsoft/graph/models/AdminConsentRequestPolicy.java
@@ -65,7 +65,7 @@ public class AdminConsentRequestPolicy extends Entity implements IJsonBackedObje
/**
* The Reviewers.
- * Required.
+ * The list of reviewers for the admin consent. Required.
*/
@SerializedName(value = "reviewers", alternate = {"Reviewers"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/AppRoleAssignment.java b/src/main/java/com/microsoft/graph/models/AppRoleAssignment.java
index ad97ed78376..3cc74d16599 100644
--- a/src/main/java/com/microsoft/graph/models/AppRoleAssignment.java
+++ b/src/main/java/com/microsoft/graph/models/AppRoleAssignment.java
@@ -36,7 +36,7 @@ public class AppRoleAssignment extends DirectoryObject implements IJsonBackedObj
/**
* The Created Date Time.
- *
+ * The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
*/
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/AppScope.java b/src/main/java/com/microsoft/graph/models/AppScope.java
new file mode 100644
index 00000000000..e4e57419588
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/AppScope.java
@@ -0,0 +1,56 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.Entity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the App Scope.
+ */
+public class AppScope extends Entity implements IJsonBackedObject {
+
+
+ /**
+ * The Display Name.
+ * Provides the display name of the app-specific resource represented by the app scope. Provided for display purposes since appScopeId is often an immutable, non-human-readable id. This property is read only.
+ */
+ @SerializedName(value = "displayName", alternate = {"DisplayName"})
+ @Expose
+ @Nullable
+ public String displayName;
+
+ /**
+ * The Type.
+ * Describes the type of app-specific resource represented by the app scope. Provided for display purposes, so a user interface can convey to the user the kind of app specific resource represented by the app scope. This property is read only.
+ */
+ @SerializedName(value = "type", alternate = {"Type"})
+ @Expose
+ @Nullable
+ public String type;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/Approval.java b/src/main/java/com/microsoft/graph/models/Approval.java
index 89a5a5218c4..ebb88a1cade 100644
--- a/src/main/java/com/microsoft/graph/models/Approval.java
+++ b/src/main/java/com/microsoft/graph/models/Approval.java
@@ -30,7 +30,7 @@ public class Approval extends Entity implements IJsonBackedObject {
/**
* The Stages.
- * Used for the approvalStages property of approval settings in the requestApprovalSettings property of an access package assignment policy. Specifies the primary, fallback, and escalation approvers of each stage.
+ * A collection of stages in the approval decision.
*/
@SerializedName(value = "stages", alternate = {"Stages"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/ApprovalStage.java b/src/main/java/com/microsoft/graph/models/ApprovalStage.java
index aa6ba895ff3..d506566c957 100644
--- a/src/main/java/com/microsoft/graph/models/ApprovalStage.java
+++ b/src/main/java/com/microsoft/graph/models/ApprovalStage.java
@@ -28,7 +28,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Assigned To Me.
- *
+ * Indicates whether the stage is assigned to the calling user to review. Read-only.
*/
@SerializedName(value = "assignedToMe", alternate = {"AssignedToMe"})
@Expose
@@ -37,7 +37,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Display Name.
- *
+ * The label provided by the policy creator to identify an approval stage. Read-only.
*/
@SerializedName(value = "displayName", alternate = {"DisplayName"})
@Expose
@@ -46,7 +46,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Justification.
- *
+ * The justification associated with the approval stage decision.
*/
@SerializedName(value = "justification", alternate = {"Justification"})
@Expose
@@ -55,7 +55,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Reviewed By.
- *
+ * The identifier of the reviewer. Read-only.
*/
@SerializedName(value = "reviewedBy", alternate = {"ReviewedBy"})
@Expose
@@ -64,7 +64,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Reviewed Date Time.
- *
+ * The date and time when a decision was recorded. The date and time information uses ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
*/
@SerializedName(value = "reviewedDateTime", alternate = {"ReviewedDateTime"})
@Expose
@@ -73,7 +73,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Review Result.
- *
+ * The result of this approval record. Possible values include: NotReviewed, Approved, Denied.
*/
@SerializedName(value = "reviewResult", alternate = {"ReviewResult"})
@Expose
@@ -82,7 +82,7 @@ public class ApprovalStage extends Entity implements IJsonBackedObject {
/**
* The Status.
- *
+ * The stage status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.
*/
@SerializedName(value = "status", alternate = {"Status"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/AuditLogRoot.java b/src/main/java/com/microsoft/graph/models/AuditLogRoot.java
index 76355a178a0..224616fc5d7 100644
--- a/src/main/java/com/microsoft/graph/models/AuditLogRoot.java
+++ b/src/main/java/com/microsoft/graph/models/AuditLogRoot.java
@@ -10,10 +10,12 @@
import java.util.EnumSet;
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.DirectoryAudit;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
import com.microsoft.graph.models.RestrictedSignIn;
import com.microsoft.graph.models.SignIn;
import com.microsoft.graph.models.Entity;
import com.microsoft.graph.requests.DirectoryAuditCollectionPage;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionPage;
import com.microsoft.graph.requests.RestrictedSignInCollectionPage;
import com.microsoft.graph.requests.SignInCollectionPage;
@@ -41,6 +43,15 @@ public class AuditLogRoot extends Entity implements IJsonBackedObject {
@Nullable
public DirectoryAuditCollectionPage directoryAudits;
+ /**
+ * The Provisioning.
+ *
+ */
+ @SerializedName(value = "provisioning", alternate = {"Provisioning"})
+ @Expose
+ @Nullable
+ public ProvisioningObjectSummaryCollectionPage provisioning;
+
/**
* The Restricted Sign Ins.
*
@@ -73,6 +84,10 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
directoryAudits = serializer.deserializeObject(json.get("directoryAudits"), DirectoryAuditCollectionPage.class);
}
+ if (json.has("provisioning")) {
+ provisioning = serializer.deserializeObject(json.get("provisioning"), ProvisioningObjectSummaryCollectionPage.class);
+ }
+
if (json.has("restrictedSignIns")) {
restrictedSignIns = serializer.deserializeObject(json.get("restrictedSignIns"), RestrictedSignInCollectionPage.class);
}
diff --git a/src/main/java/com/microsoft/graph/models/ChannelIdentity.java b/src/main/java/com/microsoft/graph/models/ChannelIdentity.java
new file mode 100644
index 00000000000..88b62757cd5
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ChannelIdentity.java
@@ -0,0 +1,68 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Channel Identity.
+ */
+public class ChannelIdentity implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Channel Id.
+ * The identity of the channel in which the message was posted.
+ */
+ @SerializedName(value = "channelId", alternate = {"ChannelId"})
+ @Expose
+ @Nullable
+ public String channelId;
+
+ /**
+ * The Team Id.
+ * The identity of the team in which the message was posted.
+ */
+ @SerializedName(value = "teamId", alternate = {"TeamId"})
+ @Expose
+ @Nullable
+ public String teamId;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/Chat.java b/src/main/java/com/microsoft/graph/models/Chat.java
index 014082d6383..47e929f0f46 100644
--- a/src/main/java/com/microsoft/graph/models/Chat.java
+++ b/src/main/java/com/microsoft/graph/models/Chat.java
@@ -12,10 +12,12 @@
import com.microsoft.graph.models.ChatType;
import com.microsoft.graph.models.TeamsAppInstallation;
import com.microsoft.graph.models.ConversationMember;
+import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.models.TeamsTab;
import com.microsoft.graph.models.Entity;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionPage;
import com.microsoft.graph.requests.ConversationMemberCollectionPage;
+import com.microsoft.graph.requests.ChatMessageCollectionPage;
import com.microsoft.graph.requests.TeamsTabCollectionPage;
@@ -87,6 +89,15 @@ public class Chat extends Entity implements IJsonBackedObject {
@Nullable
public ConversationMemberCollectionPage members;
+ /**
+ * The Messages.
+ * A collection of all the messages in the chat. Nullable.
+ */
+ @SerializedName(value = "messages", alternate = {"Messages"})
+ @Expose
+ @Nullable
+ public ChatMessageCollectionPage messages;
+
/**
* The Tabs.
*
@@ -114,6 +125,10 @@ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final J
members = serializer.deserializeObject(json.get("members"), ConversationMemberCollectionPage.class);
}
+ if (json.has("messages")) {
+ messages = serializer.deserializeObject(json.get("messages"), ChatMessageCollectionPage.class);
+ }
+
if (json.has("tabs")) {
tabs = serializer.deserializeObject(json.get("tabs"), TeamsTabCollectionPage.class);
}
diff --git a/src/main/java/com/microsoft/graph/models/ChatMessage.java b/src/main/java/com/microsoft/graph/models/ChatMessage.java
index 34d5ca99292..fdddffa11e9 100644
--- a/src/main/java/com/microsoft/graph/models/ChatMessage.java
+++ b/src/main/java/com/microsoft/graph/models/ChatMessage.java
@@ -11,6 +11,7 @@
import com.microsoft.graph.http.BaseCollectionPage;
import com.microsoft.graph.models.ChatMessageAttachment;
import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.ChannelIdentity;
import com.microsoft.graph.models.IdentitySet;
import com.microsoft.graph.models.ChatMessageImportance;
import com.microsoft.graph.models.ChatMessageMention;
@@ -56,6 +57,24 @@ public class ChatMessage extends Entity implements IJsonBackedObject {
@Nullable
public ItemBody body;
+ /**
+ * The Channel Identity.
+ * The identity of the channel in which the message was posted.
+ */
+ @SerializedName(value = "channelIdentity", alternate = {"ChannelIdentity"})
+ @Expose
+ @Nullable
+ public ChannelIdentity channelIdentity;
+
+ /**
+ * The Chat Id.
+ * The identity of the chat in which the message was posted.
+ */
+ @SerializedName(value = "chatId", alternate = {"ChatId"})
+ @Expose
+ @Nullable
+ public String chatId;
+
/**
* The Created Date Time.
* Read only. Timestamp of when the chat message was created.
diff --git a/src/main/java/com/microsoft/graph/models/ChatSendActivityNotificationParameterSet.java b/src/main/java/com/microsoft/graph/models/ChatSendActivityNotificationParameterSet.java
new file mode 100644
index 00000000000..a570d9bf15d
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ChatSendActivityNotificationParameterSet.java
@@ -0,0 +1,240 @@
+// Template Source: BaseMethodParameterSet.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+import com.google.gson.JsonObject;
+import java.util.EnumSet;
+import java.util.ArrayList;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Chat Send Activity Notification Parameter Set.
+ */
+public class ChatSendActivityNotificationParameterSet {
+ /**
+ * The topic.
+ *
+ */
+ @SerializedName(value = "topic", alternate = {"Topic"})
+ @Expose
+ @Nullable
+ public TeamworkActivityTopic topic;
+
+ /**
+ * The activity Type.
+ *
+ */
+ @SerializedName(value = "activityType", alternate = {"ActivityType"})
+ @Expose
+ @Nullable
+ public String activityType;
+
+ /**
+ * The chain Id.
+ *
+ */
+ @SerializedName(value = "chainId", alternate = {"ChainId"})
+ @Expose
+ @Nullable
+ public Long chainId;
+
+ /**
+ * The preview Text.
+ *
+ */
+ @SerializedName(value = "previewText", alternate = {"PreviewText"})
+ @Expose
+ @Nullable
+ public ItemBody previewText;
+
+ /**
+ * The template Parameters.
+ *
+ */
+ @SerializedName(value = "templateParameters", alternate = {"TemplateParameters"})
+ @Expose
+ @Nullable
+ public java.util.List templateParameters;
+
+ /**
+ * The recipient.
+ *
+ */
+ @SerializedName(value = "recipient", alternate = {"Recipient"})
+ @Expose
+ @Nullable
+ public TeamworkNotificationRecipient recipient;
+
+
+ /**
+ * Instiaciates a new ChatSendActivityNotificationParameterSet
+ */
+ public ChatSendActivityNotificationParameterSet() {}
+ /**
+ * Instiaciates a new ChatSendActivityNotificationParameterSet
+ * @param builder builder bearing the parameters to initialize from
+ */
+ protected ChatSendActivityNotificationParameterSet(@Nonnull final ChatSendActivityNotificationParameterSetBuilder builder) {
+ this.topic = builder.topic;
+ this.activityType = builder.activityType;
+ this.chainId = builder.chainId;
+ this.previewText = builder.previewText;
+ this.templateParameters = builder.templateParameters;
+ this.recipient = builder.recipient;
+ }
+ /**
+ * Gets a new builder for the body
+ * @return a new builder
+ */
+ @Nonnull
+ public static ChatSendActivityNotificationParameterSetBuilder newBuilder() {
+ return new ChatSendActivityNotificationParameterSetBuilder();
+ }
+ /**
+ * Fluent builder for the ChatSendActivityNotificationParameterSet
+ */
+ public static final class ChatSendActivityNotificationParameterSetBuilder {
+ /**
+ * The topic parameter value
+ */
+ @Nullable
+ protected TeamworkActivityTopic topic;
+ /**
+ * Sets the Topic
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withTopic(@Nullable final TeamworkActivityTopic val) {
+ this.topic = val;
+ return this;
+ }
+ /**
+ * The activityType parameter value
+ */
+ @Nullable
+ protected String activityType;
+ /**
+ * Sets the ActivityType
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withActivityType(@Nullable final String val) {
+ this.activityType = val;
+ return this;
+ }
+ /**
+ * The chainId parameter value
+ */
+ @Nullable
+ protected Long chainId;
+ /**
+ * Sets the ChainId
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withChainId(@Nullable final Long val) {
+ this.chainId = val;
+ return this;
+ }
+ /**
+ * The previewText parameter value
+ */
+ @Nullable
+ protected ItemBody previewText;
+ /**
+ * Sets the PreviewText
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withPreviewText(@Nullable final ItemBody val) {
+ this.previewText = val;
+ return this;
+ }
+ /**
+ * The templateParameters parameter value
+ */
+ @Nullable
+ protected java.util.List templateParameters;
+ /**
+ * Sets the TemplateParameters
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withTemplateParameters(@Nullable final java.util.List val) {
+ this.templateParameters = val;
+ return this;
+ }
+ /**
+ * The recipient parameter value
+ */
+ @Nullable
+ protected TeamworkNotificationRecipient recipient;
+ /**
+ * Sets the Recipient
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSetBuilder withRecipient(@Nullable final TeamworkNotificationRecipient val) {
+ this.recipient = val;
+ return this;
+ }
+ /**
+ * Instanciates a new ChatSendActivityNotificationParameterSetBuilder
+ */
+ @Nullable
+ protected ChatSendActivityNotificationParameterSetBuilder(){}
+ /**
+ * Buils the resulting body object to be passed to the request
+ * @return the body object to pass to the request
+ */
+ @Nonnull
+ public ChatSendActivityNotificationParameterSet build() {
+ return new ChatSendActivityNotificationParameterSet(this);
+ }
+ }
+ /**
+ * Gets the functions options from the properties that have been set
+ * @return a list of function options for the request
+ */
+ @Nonnull
+ public java.util.List getFunctionOptions() {
+ final ArrayList result = new ArrayList<>();
+ if(this.topic != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("topic", topic));
+ }
+ if(this.activityType != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("activityType", activityType));
+ }
+ if(this.chainId != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("chainId", chainId));
+ }
+ if(this.previewText != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("previewText", previewText));
+ }
+ if(this.templateParameters != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("templateParameters", templateParameters));
+ }
+ if(this.recipient != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("recipient", recipient));
+ }
+ return result;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/DetailsInfo.java b/src/main/java/com/microsoft/graph/models/DetailsInfo.java
new file mode 100644
index 00000000000..85a7c6efb2e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/DetailsInfo.java
@@ -0,0 +1,51 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import java.util.HashMap;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Details Info.
+ */
+public class DetailsInfo implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/Group.java b/src/main/java/com/microsoft/graph/models/Group.java
index d9ae6118ab9..71e15da595f 100644
--- a/src/main/java/com/microsoft/graph/models/Group.java
+++ b/src/main/java/com/microsoft/graph/models/Group.java
@@ -329,7 +329,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Allow External Senders.
- * Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select.
+ * Indicates if people external to the organization can send messages to the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "allowExternalSenders", alternate = {"AllowExternalSenders"})
@Expose
@@ -338,7 +338,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Auto Subscribe New Members.
- * Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select.
+ * Indicates if new members added to the group will be auto-subscribed to receive email notifications. You can set this property in a PATCH request for the group; do not set it in the initial POST request that creates the group. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "autoSubscribeNewMembers", alternate = {"AutoSubscribeNewMembers"})
@Expose
@@ -347,7 +347,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Hide From Address Lists.
- * True if the group is not displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID})
+ * True if the group is not displayed in certain parts of the Outlook UI: the Address Book, address lists for selecting message recipients, and the Browse Groups dialog for searching groups; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "hideFromAddressLists", alternate = {"HideFromAddressLists"})
@Expose
@@ -356,7 +356,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Hide From Outlook Clients.
- * True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID})
+ * True if the group is not displayed in Outlook clients, such as Outlook for Windows and Outlook on the web; otherwise, false. Default value is false. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "hideFromOutlookClients", alternate = {"HideFromOutlookClients"})
@Expose
@@ -365,7 +365,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Is Subscribed By Mail.
- * Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select.
+ * Indicates whether the signed-in user is subscribed to receive email conversations. Default value is true. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "isSubscribedByMail", alternate = {"IsSubscribedByMail"})
@Expose
@@ -374,7 +374,7 @@ public class Group extends DirectoryObject implements IJsonBackedObject {
/**
* The Unseen Count.
- * Count of conversations that have received new posts since the signed-in user last visited the group. Returned only on $select.
+ * Count of conversations that have received new posts since the signed-in user last visited the group. Returned only on $select. Supported only on the Get group API (GET /groups/{ID}).
*/
@SerializedName(value = "unseenCount", alternate = {"UnseenCount"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/Initiator.java b/src/main/java/com/microsoft/graph/models/Initiator.java
new file mode 100644
index 00000000000..4a206924bfa
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/Initiator.java
@@ -0,0 +1,48 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.InitiatorType;
+import com.microsoft.graph.models.Identity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Initiator.
+ */
+public class Initiator extends Identity implements IJsonBackedObject {
+
+
+ /**
+ * The Initiator Type.
+ * Type of initiator. Possible values are: user, app, system, unknownFutureValue.
+ */
+ @SerializedName(value = "initiatorType", alternate = {"InitiatorType"})
+ @Expose
+ @Nullable
+ public InitiatorType initiatorType;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/InitiatorType.java b/src/main/java/com/microsoft/graph/models/InitiatorType.java
new file mode 100644
index 00000000000..a62b1db5bae
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/InitiatorType.java
@@ -0,0 +1,34 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Initiator Type.
+*/
+public enum InitiatorType
+{
+ /**
+ * user
+ */
+ USER,
+ /**
+ * application
+ */
+ APPLICATION,
+ /**
+ * system
+ */
+ SYSTEM,
+ /**
+ * unknown Future Value
+ */
+ UNKNOWN_FUTURE_VALUE,
+ /**
+ * For InitiatorType values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisionedIdentity.java b/src/main/java/com/microsoft/graph/models/ProvisionedIdentity.java
new file mode 100644
index 00000000000..05dfe3ce5f4
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisionedIdentity.java
@@ -0,0 +1,57 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.DetailsInfo;
+import com.microsoft.graph.models.Identity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioned Identity.
+ */
+public class ProvisionedIdentity extends Identity implements IJsonBackedObject {
+
+
+ /**
+ * The Details.
+ * Details of the identity.
+ */
+ @SerializedName(value = "details", alternate = {"Details"})
+ @Expose
+ @Nullable
+ public DetailsInfo details;
+
+ /**
+ * The Identity Type.
+ * Type of identity that has been provisioned, such as 'user' or 'group'.
+ */
+ @SerializedName(value = "identityType", alternate = {"IdentityType"})
+ @Expose
+ @Nullable
+ public String identityType;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningAction.java b/src/main/java/com/microsoft/graph/models/ProvisioningAction.java
new file mode 100644
index 00000000000..929976a8918
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningAction.java
@@ -0,0 +1,46 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Provisioning Action.
+*/
+public enum ProvisioningAction
+{
+ /**
+ * other
+ */
+ OTHER,
+ /**
+ * create
+ */
+ CREATE,
+ /**
+ * delete
+ */
+ DELETE,
+ /**
+ * disable
+ */
+ DISABLE,
+ /**
+ * update
+ */
+ UPDATE,
+ /**
+ * staged Delete
+ */
+ STAGED_DELETE,
+ /**
+ * unknown Future Value
+ */
+ UNKNOWN_FUTURE_VALUE,
+ /**
+ * For ProvisioningAction values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningErrorInfo.java b/src/main/java/com/microsoft/graph/models/ProvisioningErrorInfo.java
new file mode 100644
index 00000000000..fa164e93656
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningErrorInfo.java
@@ -0,0 +1,96 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.ProvisioningStatusErrorCategory;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Error Info.
+ */
+public class ProvisioningErrorInfo implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Additional Details.
+ *
+ */
+ @SerializedName(value = "additionalDetails", alternate = {"AdditionalDetails"})
+ @Expose
+ @Nullable
+ public String additionalDetails;
+
+ /**
+ * The Error Category.
+ *
+ */
+ @SerializedName(value = "errorCategory", alternate = {"ErrorCategory"})
+ @Expose
+ @Nullable
+ public ProvisioningStatusErrorCategory errorCategory;
+
+ /**
+ * The Error Code.
+ *
+ */
+ @SerializedName(value = "errorCode", alternate = {"ErrorCode"})
+ @Expose
+ @Nullable
+ public String errorCode;
+
+ /**
+ * The Reason.
+ *
+ */
+ @SerializedName(value = "reason", alternate = {"Reason"})
+ @Expose
+ @Nullable
+ public String reason;
+
+ /**
+ * The Recommended Action.
+ *
+ */
+ @SerializedName(value = "recommendedAction", alternate = {"RecommendedAction"})
+ @Expose
+ @Nullable
+ public String recommendedAction;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningObjectSummary.java b/src/main/java/com/microsoft/graph/models/ProvisioningObjectSummary.java
new file mode 100644
index 00000000000..ee3c3ab3ee5
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningObjectSummary.java
@@ -0,0 +1,191 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.http.BaseCollectionPage;
+import com.microsoft.graph.models.Initiator;
+import com.microsoft.graph.models.ModifiedProperty;
+import com.microsoft.graph.models.ProvisioningAction;
+import com.microsoft.graph.models.ProvisioningStatusInfo;
+import com.microsoft.graph.models.ProvisioningStep;
+import com.microsoft.graph.models.ProvisioningServicePrincipal;
+import com.microsoft.graph.models.ProvisionedIdentity;
+import com.microsoft.graph.models.ProvisioningSystem;
+import com.microsoft.graph.models.Entity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary.
+ */
+public class ProvisioningObjectSummary extends Entity implements IJsonBackedObject {
+
+
+ /**
+ * The Activity Date Time.
+ * The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
+ */
+ @SerializedName(value = "activityDateTime", alternate = {"ActivityDateTime"})
+ @Expose
+ @Nullable
+ public java.time.OffsetDateTime activityDateTime;
+
+ /**
+ * The Change Id.
+ * Unique ID of this change in this cycle.
+ */
+ @SerializedName(value = "changeId", alternate = {"ChangeId"})
+ @Expose
+ @Nullable
+ public String changeId;
+
+ /**
+ * The Cycle Id.
+ * Unique ID per job iteration.
+ */
+ @SerializedName(value = "cycleId", alternate = {"CycleId"})
+ @Expose
+ @Nullable
+ public String cycleId;
+
+ /**
+ * The Duration In Milliseconds.
+ * Indicates how long this provisioning action took to finish. Measured in milliseconds.
+ */
+ @SerializedName(value = "durationInMilliseconds", alternate = {"DurationInMilliseconds"})
+ @Expose
+ @Nullable
+ public Integer durationInMilliseconds;
+
+ /**
+ * The Initiated By.
+ * Details of who initiated this provisioning.
+ */
+ @SerializedName(value = "initiatedBy", alternate = {"InitiatedBy"})
+ @Expose
+ @Nullable
+ public Initiator initiatedBy;
+
+ /**
+ * The Job Id.
+ * The unique ID for the whole provisioning job.
+ */
+ @SerializedName(value = "jobId", alternate = {"JobId"})
+ @Expose
+ @Nullable
+ public String jobId;
+
+ /**
+ * The Modified Properties.
+ * Details of each property that was modified in this provisioning action on this object.
+ */
+ @SerializedName(value = "modifiedProperties", alternate = {"ModifiedProperties"})
+ @Expose
+ @Nullable
+ public java.util.List modifiedProperties;
+
+ /**
+ * The Provisioning Action.
+ *
+ */
+ @SerializedName(value = "provisioningAction", alternate = {"ProvisioningAction"})
+ @Expose
+ @Nullable
+ public ProvisioningAction provisioningAction;
+
+ /**
+ * The Provisioning Status Info.
+ *
+ */
+ @SerializedName(value = "provisioningStatusInfo", alternate = {"ProvisioningStatusInfo"})
+ @Expose
+ @Nullable
+ public ProvisioningStatusInfo provisioningStatusInfo;
+
+ /**
+ * The Provisioning Steps.
+ * Details of each step in provisioning.
+ */
+ @SerializedName(value = "provisioningSteps", alternate = {"ProvisioningSteps"})
+ @Expose
+ @Nullable
+ public java.util.List provisioningSteps;
+
+ /**
+ * The Service Principal.
+ * Represents the service principal used for provisioning.
+ */
+ @SerializedName(value = "servicePrincipal", alternate = {"ServicePrincipal"})
+ @Expose
+ @Nullable
+ public ProvisioningServicePrincipal servicePrincipal;
+
+ /**
+ * The Source Identity.
+ * Details of source object being provisioned.
+ */
+ @SerializedName(value = "sourceIdentity", alternate = {"SourceIdentity"})
+ @Expose
+ @Nullable
+ public ProvisionedIdentity sourceIdentity;
+
+ /**
+ * The Source System.
+ * Details of source system of the object being provisioned.
+ */
+ @SerializedName(value = "sourceSystem", alternate = {"SourceSystem"})
+ @Expose
+ @Nullable
+ public ProvisioningSystem sourceSystem;
+
+ /**
+ * The Target Identity.
+ * Details of target object being provisioned.
+ */
+ @SerializedName(value = "targetIdentity", alternate = {"TargetIdentity"})
+ @Expose
+ @Nullable
+ public ProvisionedIdentity targetIdentity;
+
+ /**
+ * The Target System.
+ * Details of target system of the object being provisioned.
+ */
+ @SerializedName(value = "targetSystem", alternate = {"TargetSystem"})
+ @Expose
+ @Nullable
+ public ProvisioningSystem targetSystem;
+
+ /**
+ * The Tenant Id.
+ * Unique Azure AD tenant ID.
+ */
+ @SerializedName(value = "tenantId", alternate = {"TenantId"})
+ @Expose
+ @Nullable
+ public String tenantId;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningResult.java b/src/main/java/com/microsoft/graph/models/ProvisioningResult.java
new file mode 100644
index 00000000000..a74591ec726
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningResult.java
@@ -0,0 +1,38 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Provisioning Result.
+*/
+public enum ProvisioningResult
+{
+ /**
+ * success
+ */
+ SUCCESS,
+ /**
+ * failure
+ */
+ FAILURE,
+ /**
+ * skipped
+ */
+ SKIPPED,
+ /**
+ * warning
+ */
+ WARNING,
+ /**
+ * unknown Future Value
+ */
+ UNKNOWN_FUTURE_VALUE,
+ /**
+ * For ProvisioningResult values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningServicePrincipal.java b/src/main/java/com/microsoft/graph/models/ProvisioningServicePrincipal.java
new file mode 100644
index 00000000000..f08835b016f
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningServicePrincipal.java
@@ -0,0 +1,39 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.Identity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import java.util.HashMap;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Service Principal.
+ */
+public class ProvisioningServicePrincipal extends Identity implements IJsonBackedObject {
+
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningStatusErrorCategory.java b/src/main/java/com/microsoft/graph/models/ProvisioningStatusErrorCategory.java
new file mode 100644
index 00000000000..05f6da1a6e8
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningStatusErrorCategory.java
@@ -0,0 +1,34 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Provisioning Status Error Category.
+*/
+public enum ProvisioningStatusErrorCategory
+{
+ /**
+ * failure
+ */
+ FAILURE,
+ /**
+ * non Service Failure
+ */
+ NON_SERVICE_FAILURE,
+ /**
+ * success
+ */
+ SUCCESS,
+ /**
+ * unknown Future Value
+ */
+ UNKNOWN_FUTURE_VALUE,
+ /**
+ * For ProvisioningStatusErrorCategory values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java b/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java
new file mode 100644
index 00000000000..ab20505450b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningStatusInfo.java
@@ -0,0 +1,70 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.ProvisioningErrorInfo;
+import com.microsoft.graph.models.ProvisioningResult;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Status Info.
+ */
+public class ProvisioningStatusInfo implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Error Information.
+ *
+ */
+ @SerializedName(value = "errorInformation", alternate = {"ErrorInformation"})
+ @Expose
+ @Nullable
+ public ProvisioningErrorInfo errorInformation;
+
+ /**
+ * The Status.
+ *
+ */
+ @SerializedName(value = "status", alternate = {"Status"})
+ @Expose
+ @Nullable
+ public ProvisioningResult status;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningStep.java b/src/main/java/com/microsoft/graph/models/ProvisioningStep.java
new file mode 100644
index 00000000000..63a0de99ce7
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningStep.java
@@ -0,0 +1,98 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.DetailsInfo;
+import com.microsoft.graph.models.ProvisioningStepType;
+import com.microsoft.graph.models.ProvisioningResult;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Step.
+ */
+public class ProvisioningStep implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Description.
+ * Summary of what occurred during the step.
+ */
+ @SerializedName(value = "description", alternate = {"Description"})
+ @Expose
+ @Nullable
+ public String description;
+
+ /**
+ * The Details.
+ * Details of what occurred during the step.
+ */
+ @SerializedName(value = "details", alternate = {"Details"})
+ @Expose
+ @Nullable
+ public DetailsInfo details;
+
+ /**
+ * The Name.
+ * Name of the step.
+ */
+ @SerializedName(value = "name", alternate = {"Name"})
+ @Expose
+ @Nullable
+ public String name;
+
+ /**
+ * The Provisioning Step Type.
+ * Type of step. Possible values are: import, scoping, matching, processing, referenceResolution, export, unknownFutureValue.
+ */
+ @SerializedName(value = "provisioningStepType", alternate = {"ProvisioningStepType"})
+ @Expose
+ @Nullable
+ public ProvisioningStepType provisioningStepType;
+
+ /**
+ * The Status.
+ * Status of the step. Possible values are: success, warning, failure, skipped, unknownFutureValue.
+ */
+ @SerializedName(value = "status", alternate = {"Status"})
+ @Expose
+ @Nullable
+ public ProvisioningResult status;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningStepType.java b/src/main/java/com/microsoft/graph/models/ProvisioningStepType.java
new file mode 100644
index 00000000000..f7cbe0741cc
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningStepType.java
@@ -0,0 +1,46 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Provisioning Step Type.
+*/
+public enum ProvisioningStepType
+{
+ /**
+ * import
+ */
+ IMPORT,
+ /**
+ * scoping
+ */
+ SCOPING,
+ /**
+ * matching
+ */
+ MATCHING,
+ /**
+ * processing
+ */
+ PROCESSING,
+ /**
+ * reference Resolution
+ */
+ REFERENCE_RESOLUTION,
+ /**
+ * export
+ */
+ EXPORT,
+ /**
+ * unknown Future Value
+ */
+ UNKNOWN_FUTURE_VALUE,
+ /**
+ * For ProvisioningStepType values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/ProvisioningSystem.java b/src/main/java/com/microsoft/graph/models/ProvisioningSystem.java
new file mode 100644
index 00000000000..7993d67c08d
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/ProvisioningSystem.java
@@ -0,0 +1,48 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.DetailsInfo;
+import com.microsoft.graph.models.Identity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning System.
+ */
+public class ProvisioningSystem extends Identity implements IJsonBackedObject {
+
+
+ /**
+ * The Details.
+ *
+ */
+ @SerializedName(value = "details", alternate = {"Details"})
+ @Expose
+ @Nullable
+ public DetailsInfo details;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/RbacApplication.java b/src/main/java/com/microsoft/graph/models/RbacApplication.java
new file mode 100644
index 00000000000..40bfea34b47
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/RbacApplication.java
@@ -0,0 +1,69 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.http.BaseCollectionPage;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.models.Entity;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionPage;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Rbac Application.
+ */
+public class RbacApplication extends Entity implements IJsonBackedObject {
+
+
+ /**
+ * The Role Assignments.
+ *
+ */
+ @SerializedName(value = "roleAssignments", alternate = {"RoleAssignments"})
+ @Expose
+ @Nullable
+ public UnifiedRoleAssignmentCollectionPage roleAssignments;
+
+ /**
+ * The Role Definitions.
+ *
+ */
+ @SerializedName(value = "roleDefinitions", alternate = {"RoleDefinitions"})
+ @Expose
+ @Nullable
+ public UnifiedRoleDefinitionCollectionPage roleDefinitions;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+
+ if (json.has("roleAssignments")) {
+ roleAssignments = serializer.deserializeObject(json.get("roleAssignments"), UnifiedRoleAssignmentCollectionPage.class);
+ }
+
+ if (json.has("roleDefinitions")) {
+ roleDefinitions = serializer.deserializeObject(json.get("roleDefinitions"), UnifiedRoleDefinitionCollectionPage.class);
+ }
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/RoleManagement.java b/src/main/java/com/microsoft/graph/models/RoleManagement.java
new file mode 100644
index 00000000000..c177e38f050
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/RoleManagement.java
@@ -0,0 +1,50 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Role Management.
+ */
+public class RoleManagement implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/Team.java b/src/main/java/com/microsoft/graph/models/Team.java
index 5295c9f72b9..684ae902650 100644
--- a/src/main/java/com/microsoft/graph/models/Team.java
+++ b/src/main/java/com/microsoft/graph/models/Team.java
@@ -54,7 +54,7 @@ public class Team extends Entity implements IJsonBackedObject {
/**
* The Created Date Time.
- * Read only. Timestamp at which the team was created.
+ * Timestamp at which the team was created.
*/
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
@Expose
diff --git a/src/main/java/com/microsoft/graph/models/TeamSendActivityNotificationParameterSet.java b/src/main/java/com/microsoft/graph/models/TeamSendActivityNotificationParameterSet.java
new file mode 100644
index 00000000000..56b71aecee2
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/TeamSendActivityNotificationParameterSet.java
@@ -0,0 +1,240 @@
+// Template Source: BaseMethodParameterSet.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+import com.google.gson.JsonObject;
+import java.util.EnumSet;
+import java.util.ArrayList;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Team Send Activity Notification Parameter Set.
+ */
+public class TeamSendActivityNotificationParameterSet {
+ /**
+ * The topic.
+ *
+ */
+ @SerializedName(value = "topic", alternate = {"Topic"})
+ @Expose
+ @Nullable
+ public TeamworkActivityTopic topic;
+
+ /**
+ * The activity Type.
+ *
+ */
+ @SerializedName(value = "activityType", alternate = {"ActivityType"})
+ @Expose
+ @Nullable
+ public String activityType;
+
+ /**
+ * The chain Id.
+ *
+ */
+ @SerializedName(value = "chainId", alternate = {"ChainId"})
+ @Expose
+ @Nullable
+ public Long chainId;
+
+ /**
+ * The preview Text.
+ *
+ */
+ @SerializedName(value = "previewText", alternate = {"PreviewText"})
+ @Expose
+ @Nullable
+ public ItemBody previewText;
+
+ /**
+ * The template Parameters.
+ *
+ */
+ @SerializedName(value = "templateParameters", alternate = {"TemplateParameters"})
+ @Expose
+ @Nullable
+ public java.util.List templateParameters;
+
+ /**
+ * The recipient.
+ *
+ */
+ @SerializedName(value = "recipient", alternate = {"Recipient"})
+ @Expose
+ @Nullable
+ public TeamworkNotificationRecipient recipient;
+
+
+ /**
+ * Instiaciates a new TeamSendActivityNotificationParameterSet
+ */
+ public TeamSendActivityNotificationParameterSet() {}
+ /**
+ * Instiaciates a new TeamSendActivityNotificationParameterSet
+ * @param builder builder bearing the parameters to initialize from
+ */
+ protected TeamSendActivityNotificationParameterSet(@Nonnull final TeamSendActivityNotificationParameterSetBuilder builder) {
+ this.topic = builder.topic;
+ this.activityType = builder.activityType;
+ this.chainId = builder.chainId;
+ this.previewText = builder.previewText;
+ this.templateParameters = builder.templateParameters;
+ this.recipient = builder.recipient;
+ }
+ /**
+ * Gets a new builder for the body
+ * @return a new builder
+ */
+ @Nonnull
+ public static TeamSendActivityNotificationParameterSetBuilder newBuilder() {
+ return new TeamSendActivityNotificationParameterSetBuilder();
+ }
+ /**
+ * Fluent builder for the TeamSendActivityNotificationParameterSet
+ */
+ public static final class TeamSendActivityNotificationParameterSetBuilder {
+ /**
+ * The topic parameter value
+ */
+ @Nullable
+ protected TeamworkActivityTopic topic;
+ /**
+ * Sets the Topic
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withTopic(@Nullable final TeamworkActivityTopic val) {
+ this.topic = val;
+ return this;
+ }
+ /**
+ * The activityType parameter value
+ */
+ @Nullable
+ protected String activityType;
+ /**
+ * Sets the ActivityType
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withActivityType(@Nullable final String val) {
+ this.activityType = val;
+ return this;
+ }
+ /**
+ * The chainId parameter value
+ */
+ @Nullable
+ protected Long chainId;
+ /**
+ * Sets the ChainId
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withChainId(@Nullable final Long val) {
+ this.chainId = val;
+ return this;
+ }
+ /**
+ * The previewText parameter value
+ */
+ @Nullable
+ protected ItemBody previewText;
+ /**
+ * Sets the PreviewText
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withPreviewText(@Nullable final ItemBody val) {
+ this.previewText = val;
+ return this;
+ }
+ /**
+ * The templateParameters parameter value
+ */
+ @Nullable
+ protected java.util.List templateParameters;
+ /**
+ * Sets the TemplateParameters
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withTemplateParameters(@Nullable final java.util.List val) {
+ this.templateParameters = val;
+ return this;
+ }
+ /**
+ * The recipient parameter value
+ */
+ @Nullable
+ protected TeamworkNotificationRecipient recipient;
+ /**
+ * Sets the Recipient
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSetBuilder withRecipient(@Nullable final TeamworkNotificationRecipient val) {
+ this.recipient = val;
+ return this;
+ }
+ /**
+ * Instanciates a new TeamSendActivityNotificationParameterSetBuilder
+ */
+ @Nullable
+ protected TeamSendActivityNotificationParameterSetBuilder(){}
+ /**
+ * Buils the resulting body object to be passed to the request
+ * @return the body object to pass to the request
+ */
+ @Nonnull
+ public TeamSendActivityNotificationParameterSet build() {
+ return new TeamSendActivityNotificationParameterSet(this);
+ }
+ }
+ /**
+ * Gets the functions options from the properties that have been set
+ * @return a list of function options for the request
+ */
+ @Nonnull
+ public java.util.List getFunctionOptions() {
+ final ArrayList result = new ArrayList<>();
+ if(this.topic != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("topic", topic));
+ }
+ if(this.activityType != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("activityType", activityType));
+ }
+ if(this.chainId != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("chainId", chainId));
+ }
+ if(this.previewText != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("previewText", previewText));
+ }
+ if(this.templateParameters != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("templateParameters", templateParameters));
+ }
+ if(this.recipient != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("recipient", recipient));
+ }
+ return result;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/TeamworkActivityTopic.java b/src/main/java/com/microsoft/graph/models/TeamworkActivityTopic.java
new file mode 100644
index 00000000000..1751787845f
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/TeamworkActivityTopic.java
@@ -0,0 +1,78 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkActivityTopicSource;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Teamwork Activity Topic.
+ */
+public class TeamworkActivityTopic implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Source.
+ * Type of source. Possible values are: entityUrl, text. For supported Microsoft Graph URLs, use entityUrl. For custom text, use text.
+ */
+ @SerializedName(value = "source", alternate = {"Source"})
+ @Expose
+ @Nullable
+ public TeamworkActivityTopicSource source;
+
+ /**
+ * The Value.
+ * The topic value. If the value of the source property is entityUrl, this must be a Microsoft Graph URL. If the vaule is text, this must be a plain text value.
+ */
+ @SerializedName(value = "value", alternate = {"Value"})
+ @Expose
+ @Nullable
+ public String value;
+
+ /**
+ * The Web Url.
+ * The link the user clicks when they select the notification. Optional when source is entityUrl; required when source is text.
+ */
+ @SerializedName(value = "webUrl", alternate = {"WebUrl"})
+ @Expose
+ @Nullable
+ public String webUrl;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/TeamworkActivityTopicSource.java b/src/main/java/com/microsoft/graph/models/TeamworkActivityTopicSource.java
new file mode 100644
index 00000000000..37cb8d7a1e4
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/TeamworkActivityTopicSource.java
@@ -0,0 +1,26 @@
+// Template Source: Enum.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+
+/**
+ * The Enum Teamwork Activity Topic Source.
+*/
+public enum TeamworkActivityTopicSource
+{
+ /**
+ * entity Url
+ */
+ ENTITY_URL,
+ /**
+ * text
+ */
+ TEXT,
+ /**
+ * For TeamworkActivityTopicSource values that were not expected from the service
+ */
+ UNEXPECTED_VALUE
+}
diff --git a/src/main/java/com/microsoft/graph/models/TeamworkNotificationRecipient.java b/src/main/java/com/microsoft/graph/models/TeamworkNotificationRecipient.java
new file mode 100644
index 00000000000..971a5cc597d
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/TeamworkNotificationRecipient.java
@@ -0,0 +1,50 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Teamwork Notification Recipient.
+ */
+public class TeamworkNotificationRecipient implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/UnifiedRoleAssignment.java b/src/main/java/com/microsoft/graph/models/UnifiedRoleAssignment.java
new file mode 100644
index 00000000000..a54bcd9b906
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/UnifiedRoleAssignment.java
@@ -0,0 +1,122 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.models.AppScope;
+import com.microsoft.graph.models.DirectoryObject;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.models.Entity;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment.
+ */
+public class UnifiedRoleAssignment extends Entity implements IJsonBackedObject {
+
+
+ /**
+ * The App Scope Id.
+ * Id of the app specific scope when the assignment scope is app specific. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use '/' for tenant-wide scope. App scopes are scopes that are defined and understood by this application only.
+ */
+ @SerializedName(value = "appScopeId", alternate = {"AppScopeId"})
+ @Expose
+ @Nullable
+ public String appScopeId;
+
+ /**
+ * The Condition.
+ *
+ */
+ @SerializedName(value = "condition", alternate = {"Condition"})
+ @Expose
+ @Nullable
+ public String condition;
+
+ /**
+ * The Directory Scope Id.
+ * Id of the directory object representing the scope of the assignment. The scope of an assignment determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. App scopes are scopes that are defined and understood by this application only.
+ */
+ @SerializedName(value = "directoryScopeId", alternate = {"DirectoryScopeId"})
+ @Expose
+ @Nullable
+ public String directoryScopeId;
+
+ /**
+ * The Principal Id.
+ * Objectid of the principal to which the assignment is granted.
+ */
+ @SerializedName(value = "principalId", alternate = {"PrincipalId"})
+ @Expose
+ @Nullable
+ public String principalId;
+
+ /**
+ * The Role Definition Id.
+ * ID of the unifiedRoleDefinition the assignment is for. Read only.
+ */
+ @SerializedName(value = "roleDefinitionId", alternate = {"RoleDefinitionId"})
+ @Expose
+ @Nullable
+ public String roleDefinitionId;
+
+ /**
+ * The App Scope.
+ *
+ */
+ @SerializedName(value = "appScope", alternate = {"AppScope"})
+ @Expose
+ @Nullable
+ public AppScope appScope;
+
+ /**
+ * The Directory Scope.
+ *
+ */
+ @SerializedName(value = "directoryScope", alternate = {"DirectoryScope"})
+ @Expose
+ @Nullable
+ public DirectoryObject directoryScope;
+
+ /**
+ * The Principal.
+ *
+ */
+ @SerializedName(value = "principal", alternate = {"Principal"})
+ @Expose
+ @Nullable
+ public DirectoryObject principal;
+
+ /**
+ * The Role Definition.
+ *
+ */
+ @SerializedName(value = "roleDefinition", alternate = {"RoleDefinition"})
+ @Expose
+ @Nullable
+ public UnifiedRoleDefinition roleDefinition;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/UnifiedRoleDefinition.java b/src/main/java/com/microsoft/graph/models/UnifiedRoleDefinition.java
new file mode 100644
index 00000000000..0f30658d812
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/UnifiedRoleDefinition.java
@@ -0,0 +1,127 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.http.BaseCollectionPage;
+import com.microsoft.graph.models.UnifiedRolePermission;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.models.Entity;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition.
+ */
+public class UnifiedRoleDefinition extends Entity implements IJsonBackedObject {
+
+
+ /**
+ * The Description.
+ * The description for the unifiedRoleDefinition. Read-only when isBuiltIn is true.
+ */
+ @SerializedName(value = "description", alternate = {"Description"})
+ @Expose
+ @Nullable
+ public String description;
+
+ /**
+ * The Display Name.
+ * The display name for the unifiedRoleDefinition. Read-only when isBuiltIn is true. Required.
+ */
+ @SerializedName(value = "displayName", alternate = {"DisplayName"})
+ @Expose
+ @Nullable
+ public String displayName;
+
+ /**
+ * The Is Built In.
+ * Flag indicating if the unifiedRoleDefinition is part of the default set included with the product or custom. Read-only.
+ */
+ @SerializedName(value = "isBuiltIn", alternate = {"IsBuiltIn"})
+ @Expose
+ @Nullable
+ public Boolean isBuiltIn;
+
+ /**
+ * The Is Enabled.
+ * Flag indicating if the role is enabled for assignment. If false the role is not available for assignment. Read-only when isBuiltIn is true.
+ */
+ @SerializedName(value = "isEnabled", alternate = {"IsEnabled"})
+ @Expose
+ @Nullable
+ public Boolean isEnabled;
+
+ /**
+ * The Resource Scopes.
+ * List of scopes permissions granted by the role definition apply to. Currently only '/' is supported. Read-only when isBuiltIn is true. DO NOT USE. This is going to be deprecated soon. Attach scope to role assignment
+ */
+ @SerializedName(value = "resourceScopes", alternate = {"ResourceScopes"})
+ @Expose
+ @Nullable
+ public java.util.List resourceScopes;
+
+ /**
+ * The Role Permissions.
+ * List of permissions included in the role. Read-only when isBuiltIn is true. Required.
+ */
+ @SerializedName(value = "rolePermissions", alternate = {"RolePermissions"})
+ @Expose
+ @Nullable
+ public java.util.List rolePermissions;
+
+ /**
+ * The Template Id.
+ * Custom template identifier that can be set when isBuiltIn is false. This identifier is typically used if one needs an identifier to be the same across different directories. Read-only when isBuiltIn is true.
+ */
+ @SerializedName(value = "templateId", alternate = {"TemplateId"})
+ @Expose
+ @Nullable
+ public String templateId;
+
+ /**
+ * The Version.
+ * Indicates version of the unifiedRoleDefinition. Read-only when isBuiltIn is true.
+ */
+ @SerializedName(value = "version", alternate = {"Version"})
+ @Expose
+ @Nullable
+ public String version;
+
+ /**
+ * The Inherits Permissions From.
+ *
+ */
+ @SerializedName(value = "inheritsPermissionsFrom", alternate = {"InheritsPermissionsFrom"})
+ @Expose
+ @Nullable
+ public UnifiedRoleDefinitionCollectionPage inheritsPermissionsFrom;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+
+ if (json.has("inheritsPermissionsFrom")) {
+ inheritsPermissionsFrom = serializer.deserializeObject(json.get("inheritsPermissionsFrom"), UnifiedRoleDefinitionCollectionPage.class);
+ }
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/UnifiedRolePermission.java b/src/main/java/com/microsoft/graph/models/UnifiedRolePermission.java
new file mode 100644
index 00000000000..552d66985d6
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/UnifiedRolePermission.java
@@ -0,0 +1,78 @@
+// Template Source: BaseEntity.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+import com.microsoft.graph.serializer.ISerializer;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+import com.microsoft.graph.serializer.AdditionalDataManager;
+import java.util.EnumSet;
+import com.microsoft.graph.http.BaseCollectionPage;
+
+
+import com.google.gson.JsonObject;
+import com.google.gson.annotations.SerializedName;
+import com.google.gson.annotations.Expose;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Permission.
+ */
+public class UnifiedRolePermission implements IJsonBackedObject {
+
+ /** the OData type of the object as returned by the service */
+ @SerializedName("@odata.type")
+ @Expose
+ @Nullable
+ public String oDataType;
+
+ private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
+
+ @Override
+ @Nonnull
+ public final AdditionalDataManager additionalDataManager() {
+ return additionalDataManager;
+ }
+
+ /**
+ * The Allowed Resource Actions.
+ * Set of tasks that can be performed on a resource.
+ */
+ @SerializedName(value = "allowedResourceActions", alternate = {"AllowedResourceActions"})
+ @Expose
+ @Nullable
+ public java.util.List allowedResourceActions;
+
+ /**
+ * The Condition.
+ * Optional constraints that must be met for the permission to be effective.
+ */
+ @SerializedName(value = "condition", alternate = {"Condition"})
+ @Expose
+ @Nullable
+ public String condition;
+
+ /**
+ * The Excluded Resource Actions.
+ *
+ */
+ @SerializedName(value = "excludedResourceActions", alternate = {"ExcludedResourceActions"})
+ @Expose
+ @Nullable
+ public java.util.List excludedResourceActions;
+
+
+ /**
+ * Sets the raw JSON object
+ *
+ * @param serializer the serializer
+ * @param json the JSON object to set this object to
+ */
+ public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
+
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/models/UserTeamworkSendActivityNotificationParameterSet.java b/src/main/java/com/microsoft/graph/models/UserTeamworkSendActivityNotificationParameterSet.java
new file mode 100644
index 00000000000..8cf7a8d3be8
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/models/UserTeamworkSendActivityNotificationParameterSet.java
@@ -0,0 +1,211 @@
+// Template Source: BaseMethodParameterSet.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.models;
+
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+import javax.annotation.Nonnull;
+import javax.annotation.Nullable;
+import com.google.gson.JsonObject;
+import java.util.EnumSet;
+import java.util.ArrayList;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the User Teamwork Send Activity Notification Parameter Set.
+ */
+public class UserTeamworkSendActivityNotificationParameterSet {
+ /**
+ * The topic.
+ *
+ */
+ @SerializedName(value = "topic", alternate = {"Topic"})
+ @Expose
+ @Nullable
+ public TeamworkActivityTopic topic;
+
+ /**
+ * The activity Type.
+ *
+ */
+ @SerializedName(value = "activityType", alternate = {"ActivityType"})
+ @Expose
+ @Nullable
+ public String activityType;
+
+ /**
+ * The chain Id.
+ *
+ */
+ @SerializedName(value = "chainId", alternate = {"ChainId"})
+ @Expose
+ @Nullable
+ public Long chainId;
+
+ /**
+ * The preview Text.
+ *
+ */
+ @SerializedName(value = "previewText", alternate = {"PreviewText"})
+ @Expose
+ @Nullable
+ public ItemBody previewText;
+
+ /**
+ * The template Parameters.
+ *
+ */
+ @SerializedName(value = "templateParameters", alternate = {"TemplateParameters"})
+ @Expose
+ @Nullable
+ public java.util.List templateParameters;
+
+
+ /**
+ * Instiaciates a new UserTeamworkSendActivityNotificationParameterSet
+ */
+ public UserTeamworkSendActivityNotificationParameterSet() {}
+ /**
+ * Instiaciates a new UserTeamworkSendActivityNotificationParameterSet
+ * @param builder builder bearing the parameters to initialize from
+ */
+ protected UserTeamworkSendActivityNotificationParameterSet(@Nonnull final UserTeamworkSendActivityNotificationParameterSetBuilder builder) {
+ this.topic = builder.topic;
+ this.activityType = builder.activityType;
+ this.chainId = builder.chainId;
+ this.previewText = builder.previewText;
+ this.templateParameters = builder.templateParameters;
+ }
+ /**
+ * Gets a new builder for the body
+ * @return a new builder
+ */
+ @Nonnull
+ public static UserTeamworkSendActivityNotificationParameterSetBuilder newBuilder() {
+ return new UserTeamworkSendActivityNotificationParameterSetBuilder();
+ }
+ /**
+ * Fluent builder for the UserTeamworkSendActivityNotificationParameterSet
+ */
+ public static final class UserTeamworkSendActivityNotificationParameterSetBuilder {
+ /**
+ * The topic parameter value
+ */
+ @Nullable
+ protected TeamworkActivityTopic topic;
+ /**
+ * Sets the Topic
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSetBuilder withTopic(@Nullable final TeamworkActivityTopic val) {
+ this.topic = val;
+ return this;
+ }
+ /**
+ * The activityType parameter value
+ */
+ @Nullable
+ protected String activityType;
+ /**
+ * Sets the ActivityType
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSetBuilder withActivityType(@Nullable final String val) {
+ this.activityType = val;
+ return this;
+ }
+ /**
+ * The chainId parameter value
+ */
+ @Nullable
+ protected Long chainId;
+ /**
+ * Sets the ChainId
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSetBuilder withChainId(@Nullable final Long val) {
+ this.chainId = val;
+ return this;
+ }
+ /**
+ * The previewText parameter value
+ */
+ @Nullable
+ protected ItemBody previewText;
+ /**
+ * Sets the PreviewText
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSetBuilder withPreviewText(@Nullable final ItemBody val) {
+ this.previewText = val;
+ return this;
+ }
+ /**
+ * The templateParameters parameter value
+ */
+ @Nullable
+ protected java.util.List templateParameters;
+ /**
+ * Sets the TemplateParameters
+ * @param val the value to set it to
+ * @return the current builder object
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSetBuilder withTemplateParameters(@Nullable final java.util.List val) {
+ this.templateParameters = val;
+ return this;
+ }
+ /**
+ * Instanciates a new UserTeamworkSendActivityNotificationParameterSetBuilder
+ */
+ @Nullable
+ protected UserTeamworkSendActivityNotificationParameterSetBuilder(){}
+ /**
+ * Buils the resulting body object to be passed to the request
+ * @return the body object to pass to the request
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationParameterSet build() {
+ return new UserTeamworkSendActivityNotificationParameterSet(this);
+ }
+ }
+ /**
+ * Gets the functions options from the properties that have been set
+ * @return a list of function options for the request
+ */
+ @Nonnull
+ public java.util.List getFunctionOptions() {
+ final ArrayList result = new ArrayList<>();
+ if(this.topic != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("topic", topic));
+ }
+ if(this.activityType != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("activityType", activityType));
+ }
+ if(this.chainId != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("chainId", chainId));
+ }
+ if(this.previewText != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("previewText", previewText));
+ }
+ if(this.templateParameters != null) {
+ result.add(new com.microsoft.graph.options.FunctionOption("templateParameters", templateParameters));
+ }
+ return result;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/AppScopeRequest.java b/src/main/java/com/microsoft/graph/requests/AppScopeRequest.java
new file mode 100644
index 00000000000..9ae00e41dd3
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/AppScopeRequest.java
@@ -0,0 +1,173 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.AppScope;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the App Scope Request.
+ */
+public class AppScopeRequest extends BaseRequest {
+
+ /**
+ * The request for the AppScope
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public AppScopeRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, AppScope.class);
+ }
+
+ /**
+ * Gets the AppScope from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the AppScope from the service
+ *
+ * @return the AppScope from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public AppScope get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public AppScope delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this AppScope with a source
+ *
+ * @param sourceAppScope the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final AppScope sourceAppScope) {
+ return sendAsync(HttpMethod.PATCH, sourceAppScope);
+ }
+
+ /**
+ * Patches this AppScope with a source
+ *
+ * @param sourceAppScope the source object with updates
+ * @return the updated AppScope
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public AppScope patch(@Nonnull final AppScope sourceAppScope) throws ClientException {
+ return send(HttpMethod.PATCH, sourceAppScope);
+ }
+
+ /**
+ * Creates a AppScope with a new object
+ *
+ * @param newAppScope the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final AppScope newAppScope) {
+ return sendAsync(HttpMethod.POST, newAppScope);
+ }
+
+ /**
+ * Creates a AppScope with a new object
+ *
+ * @param newAppScope the new object to create
+ * @return the created AppScope
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public AppScope post(@Nonnull final AppScope newAppScope) throws ClientException {
+ return send(HttpMethod.POST, newAppScope);
+ }
+
+ /**
+ * Creates a AppScope with a new object
+ *
+ * @param newAppScope the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final AppScope newAppScope) {
+ return sendAsync(HttpMethod.PUT, newAppScope);
+ }
+
+ /**
+ * Creates a AppScope with a new object
+ *
+ * @param newAppScope the object to create/update
+ * @return the created AppScope
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public AppScope put(@Nonnull final AppScope newAppScope) throws ClientException {
+ return send(HttpMethod.PUT, newAppScope);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public AppScopeRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public AppScopeRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/AppScopeRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/AppScopeRequestBuilder.java
new file mode 100644
index 00000000000..efce685ed7b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/AppScopeRequestBuilder.java
@@ -0,0 +1,59 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.AppScope;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the App Scope Request Builder.
+ */
+public class AppScopeRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the AppScope
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public AppScopeRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the AppScopeRequest instance
+ */
+ @Nonnull
+ public AppScopeRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the AppScopeRequest instance
+ */
+ @Nonnull
+ public AppScopeRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.AppScopeRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/AuditLogRootRequest.java b/src/main/java/com/microsoft/graph/requests/AuditLogRootRequest.java
index 3adbdf7a0d3..ec79a755687 100644
--- a/src/main/java/com/microsoft/graph/requests/AuditLogRootRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/AuditLogRootRequest.java
@@ -10,6 +10,8 @@
import com.microsoft.graph.models.AuditLogRoot;
import com.microsoft.graph.requests.DirectoryAuditCollectionRequestBuilder;
import com.microsoft.graph.requests.DirectoryAuditRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryRequestBuilder;
import com.microsoft.graph.requests.RestrictedSignInCollectionRequestBuilder;
import com.microsoft.graph.requests.RestrictedSignInRequestBuilder;
import com.microsoft.graph.requests.SignInCollectionRequestBuilder;
diff --git a/src/main/java/com/microsoft/graph/requests/AuditLogRootRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/AuditLogRootRequestBuilder.java
index e1ec5a19ee9..b0d83203b45 100644
--- a/src/main/java/com/microsoft/graph/requests/AuditLogRootRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/AuditLogRootRequestBuilder.java
@@ -10,6 +10,8 @@
import com.microsoft.graph.models.AuditLogRoot;
import com.microsoft.graph.requests.DirectoryAuditCollectionRequestBuilder;
import com.microsoft.graph.requests.DirectoryAuditRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryRequestBuilder;
import com.microsoft.graph.requests.RestrictedSignInCollectionRequestBuilder;
import com.microsoft.graph.requests.RestrictedSignInRequestBuilder;
import com.microsoft.graph.requests.SignInCollectionRequestBuilder;
@@ -82,6 +84,26 @@ public DirectoryAuditCollectionRequestBuilder directoryAudits() {
public DirectoryAuditRequestBuilder directoryAudits(@Nonnull final String id) {
return new DirectoryAuditRequestBuilder(getRequestUrlWithAdditionalSegment("directoryAudits") + "/" + id, getClient(), null);
}
+ /**
+ * Gets a request builder for the ProvisioningObjectSummary collection
+ *
+ * @return the collection request builder
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequestBuilder provisioning() {
+ return new ProvisioningObjectSummaryCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("provisioning"), getClient(), null);
+ }
+
+ /**
+ * Gets a request builder for the ProvisioningObjectSummary item
+ *
+ * @return the request builder
+ * @param id the item identifier
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryRequestBuilder provisioning(@Nonnull final String id) {
+ return new ProvisioningObjectSummaryRequestBuilder(getRequestUrlWithAdditionalSegment("provisioning") + "/" + id, getClient(), null);
+ }
/**
* Gets a request builder for the RestrictedSignIn collection
*
diff --git a/src/main/java/com/microsoft/graph/requests/ChatCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/ChatCollectionRequest.java
index 9fc598ec6d9..8a96fd094e8 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatCollectionRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatCollectionRequest.java
@@ -8,6 +8,10 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatCollectionRequestBuilder.java
index 47dff7a7586..2682a91cdfc 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatCollectionRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatCollectionRequestBuilder.java
@@ -8,6 +8,10 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
@@ -21,6 +25,7 @@
import com.microsoft.graph.http.BaseCollectionRequestBuilder;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.PrimitiveRequestBuilder;
+import com.microsoft.graph.models.ChatSendActivityNotificationParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
diff --git a/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequest.java
index f051afd88fb..c4359d78459 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequest.java
@@ -7,6 +7,7 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.Chat;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequestBuilder.java
index 6cd43bbecc9..18fa4eaff40 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatMessageCollectionRequestBuilder.java
@@ -7,6 +7,7 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.Chat;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
@@ -28,7 +29,7 @@
public class ChatMessageCollectionRequestBuilder extends BaseCollectionRequestBuilder {
/**
- * The request builder for this collection of ChatMessage
+ * The request builder for this collection of Chat
*
* @param requestUrl the request URL
* @param client the service client
diff --git a/src/main/java/com/microsoft/graph/requests/ChatReferenceRequest.java b/src/main/java/com/microsoft/graph/requests/ChatReferenceRequest.java
index 45fc247e228..8f0a954c02e 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatReferenceRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatReferenceRequest.java
@@ -8,11 +8,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatReferenceRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatReferenceRequestBuilder.java
index d689404d136..606bd107628 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatReferenceRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatReferenceRequestBuilder.java
@@ -9,11 +9,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatRequest.java b/src/main/java/com/microsoft/graph/requests/ChatRequest.java
index 73d84e6e5c8..9edc4c3cde0 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatRequest.java
@@ -8,11 +8,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatRequestBuilder.java
index edd3818161b..214ef1cf7e5 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatRequestBuilder.java
@@ -8,11 +8,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
@@ -21,6 +27,7 @@
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;
+import com.microsoft.graph.models.ChatSendActivityNotificationParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
@@ -103,6 +110,26 @@ public ConversationMemberCollectionRequestBuilder members() {
public ConversationMemberRequestBuilder members(@Nonnull final String id) {
return new ConversationMemberRequestBuilder(getRequestUrlWithAdditionalSegment("members") + "/" + id, getClient(), null);
}
+ /**
+ * Gets a request builder for the ChatMessage collection
+ *
+ * @return the collection request builder
+ */
+ @Nonnull
+ public ChatMessageCollectionRequestBuilder messages() {
+ return new ChatMessageCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("messages"), getClient(), null);
+ }
+
+ /**
+ * Gets a request builder for the ChatMessage item
+ *
+ * @return the request builder
+ * @param id the item identifier
+ */
+ @Nonnull
+ public ChatMessageRequestBuilder messages(@Nonnull final String id) {
+ return new ChatMessageRequestBuilder(getRequestUrlWithAdditionalSegment("messages") + "/" + id, getClient(), null);
+ }
/**
* Gets a request builder for the TeamsTab collection
*
@@ -123,4 +150,14 @@ public TeamsTabCollectionRequestBuilder tabs() {
public TeamsTabRequestBuilder tabs(@Nonnull final String id) {
return new TeamsTabRequestBuilder(getRequestUrlWithAdditionalSegment("tabs") + "/" + id, getClient(), null);
}
+
+ /**
+ * Gets a builder to execute the method
+ * @return the request builder
+ * @param parameters the parameters for the service method
+ */
+ @Nonnull
+ public ChatSendActivityNotificationRequestBuilder sendActivityNotification(@Nonnull final ChatSendActivityNotificationParameterSet parameters) {
+ return new ChatSendActivityNotificationRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.sendActivityNotification"), getClient(), null, parameters);
+ }
}
diff --git a/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequest.java b/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequest.java
new file mode 100644
index 00000000000..5e0f5fcd37f
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequest.java
@@ -0,0 +1,56 @@
+// Template Source: BaseMethodRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.requests.ChatSendActivityNotificationRequest;
+
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.models.ChatSendActivityNotificationParameterSet;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Chat Send Activity Notification Request.
+ */
+public class ChatSendActivityNotificationRequest extends BaseRequest {
+ /**
+ * The request for this ChatSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ChatSendActivityNotificationRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, Void.class);
+ }
+
+ /** The body for the method */
+ @Nullable
+ public ChatSendActivityNotificationParameterSet body;
+ /**
+ * Creates the ChatSendActivityNotification
+ *
+ * @return a future for the operation
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync() {
+ return this.sendAsync(HttpMethod.POST, body);
+ }
+
+ /**
+ * Creates the ChatSendActivityNotification
+ *
+ * @throws ClientException an exception occurs if there was an error while the request was sent
+ */
+ public void post() throws ClientException {
+ this.send(HttpMethod.POST, body);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequestBuilder.java
new file mode 100644
index 00000000000..5ce4663a276
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ChatSendActivityNotificationRequestBuilder.java
@@ -0,0 +1,77 @@
+// Template Source: BaseMethodRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.requests.ChatSendActivityNotificationRequest;
+import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
+import com.microsoft.graph.http.BaseActionRequestBuilder;
+import com.microsoft.graph.models.ChatSendActivityNotificationParameterSet;
+import com.microsoft.graph.core.IBaseClient;
+import com.google.gson.JsonElement;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Chat Send Activity Notification Request Builder.
+ */
+public class ChatSendActivityNotificationRequestBuilder extends BaseActionRequestBuilder {
+
+ /**
+ * The request builder for this ChatSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ChatSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+ private ChatSendActivityNotificationParameterSet body;
+ /**
+ * The request builder for this ChatSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ * @param parameters the parameters for the service method
+ */
+ public ChatSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions, @Nonnull final ChatSendActivityNotificationParameterSet parameters) {
+ super(requestUrl, client, requestOptions);
+ this.body = parameters;
+ }
+
+ /**
+ * Creates the ChatSendActivityNotificationRequest
+ *
+ * @param requestOptions the options for the request
+ * @return the ChatSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public ChatSendActivityNotificationRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the ChatSendActivityNotificationRequest with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for the request
+ * @return the ChatSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public ChatSendActivityNotificationRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ final ChatSendActivityNotificationRequest request = new ChatSendActivityNotificationRequest(
+ getRequestUrl(),
+ getClient(),
+ requestOptions);
+ request.body = this.body;
+ return request;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequest.java b/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequest.java
index abfa6909496..98fc0431af7 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequest.java
@@ -8,11 +8,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequestBuilder.java
index 4208bcc2295..69e9a4b232b 100644
--- a/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/ChatWithReferenceRequestBuilder.java
@@ -8,11 +8,17 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Chat;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.TeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsAppInstallationRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder;
import com.microsoft.graph.requests.ConversationMemberRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder;
+import com.microsoft.graph.requests.ChatMessageRequestBuilder;
import com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder;
import com.microsoft.graph.requests.TeamsTabRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/GraphServiceClient.java b/src/main/java/com/microsoft/graph/requests/GraphServiceClient.java
index 68a501e16b1..aca5cd09603 100644
--- a/src/main/java/com/microsoft/graph/requests/GraphServiceClient.java
+++ b/src/main/java/com/microsoft/graph/requests/GraphServiceClient.java
@@ -92,6 +92,7 @@
import com.microsoft.graph.requests.DirectoryRequestBuilder;
import com.microsoft.graph.requests.PolicyRootRequestBuilder;
import com.microsoft.graph.requests.EducationRootRequestBuilder;
+import com.microsoft.graph.requests.RoleManagementRequestBuilder;
import com.microsoft.graph.requests.CloudCommunicationsRequestBuilder;
import com.microsoft.graph.requests.IdentityGovernanceRequestBuilder;
import com.microsoft.graph.requests.DeviceAppManagementRequestBuilder;
@@ -1149,6 +1150,16 @@ public EducationRootRequestBuilder education() {
return new EducationRootRequestBuilder(getServiceRoot() + "/education", this, null);
}
+ /**
+ * Gets the GraphServiceRequestBuilder
+ *
+ * @return the RoleManagement
+ */
+ @Nonnull
+ public RoleManagementRequestBuilder roleManagement() {
+ return new RoleManagementRequestBuilder(getServiceRoot() + "/roleManagement", this, null);
+ }
+
/**
* Gets the GraphServiceRequestBuilder
*
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionPage.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionPage.java
new file mode 100644
index 00000000000..7b2a9222f72
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionPage.java
@@ -0,0 +1,40 @@
+// Template Source: BaseEntityCollectionPage.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionResponse;
+import com.microsoft.graph.http.BaseCollectionPage;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Collection Page.
+ */
+public class ProvisioningObjectSummaryCollectionPage extends BaseCollectionPage {
+
+ /**
+ * A collection page for ProvisioningObjectSummary
+ *
+ * @param response the serialized ProvisioningObjectSummaryCollectionResponse from the service
+ * @param builder the request builder for the next collection page
+ */
+ public ProvisioningObjectSummaryCollectionPage(@Nonnull final ProvisioningObjectSummaryCollectionResponse response, @Nonnull final ProvisioningObjectSummaryCollectionRequestBuilder builder) {
+ super(response, builder);
+ }
+
+ /**
+ * Creates the collection page for ProvisioningObjectSummary
+ *
+ * @param pageContents the contents of this page
+ * @param nextRequestBuilder the request builder for the next page
+ */
+ public ProvisioningObjectSummaryCollectionPage(@Nonnull final java.util.List pageContents, @Nullable final ProvisioningObjectSummaryCollectionRequestBuilder nextRequestBuilder) {
+ super(pageContents, nextRequestBuilder);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequest.java
new file mode 100644
index 00000000000..41e09bd07d5
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequest.java
@@ -0,0 +1,173 @@
+// Template Source: BaseEntityCollectionRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.AuditLogRoot;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.options.QueryOption;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseEntityCollectionRequest;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionResponse;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Collection Request.
+ */
+public class ProvisioningObjectSummaryCollectionRequest extends BaseEntityCollectionRequest {
+
+ /**
+ * The request builder for this collection of ProvisioningObjectSummary
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ProvisioningObjectSummaryCollectionRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, ProvisioningObjectSummaryCollectionResponse.class, ProvisioningObjectSummaryCollectionPage.class, ProvisioningObjectSummaryCollectionRequestBuilder.class);
+ }
+
+ /**
+ * Creates a new ProvisioningObjectSummary
+ * @param newProvisioningObjectSummary the ProvisioningObjectSummary to create
+ * @return a future with the created object
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new ProvisioningObjectSummaryRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .postAsync(newProvisioningObjectSummary);
+ }
+
+ /**
+ * Creates a new ProvisioningObjectSummary
+ * @param newProvisioningObjectSummary the ProvisioningObjectSummary to create
+ * @return the newly created object
+ */
+ @Nonnull
+ public ProvisioningObjectSummary post(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) throws ClientException {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new ProvisioningObjectSummaryRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .post(newProvisioningObjectSummary);
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the filter clause for the request
+ *
+ * @param value the filter clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest filter(@Nonnull final String value) {
+ addFilterOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the order by clause for the request
+ *
+ * @param value the order by clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest orderBy(@Nonnull final String value) {
+ addOrderByOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the top value for the request
+ *
+ * @param value the max number of items to return
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest top(final int value) {
+ addTopOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the count value for the request
+ *
+ * @param value whether or not to return the count of objects with the request
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest count(final boolean value) {
+ addCountOption(value);
+ return this;
+ }
+ /**
+ * Sets the count value to true for the request
+ *
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest count() {
+ addCountOption(true);
+ return this;
+ }
+ /**
+ * Sets the skip value for the request
+ *
+ * @param value of the number of items to skip
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest skip(final int value) {
+ addSkipOption(value);
+ return this;
+ }
+
+
+ /**
+ * Add Skip token for pagination
+ * @param skipToken - Token for pagination
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryCollectionRequest skipToken(@Nonnull final String skipToken) {
+ addSkipTokenOption(skipToken);
+ return this;
+ }
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequestBuilder.java
new file mode 100644
index 00000000000..8c4c07e829e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionRequestBuilder.java
@@ -0,0 +1,51 @@
+// Template Source: BaseEntityCollectionRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.AuditLogRoot;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryRequestBuilder;
+import com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest;
+import com.microsoft.graph.http.BaseCollectionRequestBuilder;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.PrimitiveRequestBuilder;
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Collection Request Builder.
+ */
+public class ProvisioningObjectSummaryCollectionRequestBuilder extends BaseCollectionRequestBuilder {
+
+ /**
+ * The request builder for this collection of AuditLogRoot
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ProvisioningObjectSummaryCollectionRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, ProvisioningObjectSummaryRequestBuilder.class, ProvisioningObjectSummaryCollectionRequest.class);
+ }
+
+
+
+ /**
+ * Gets the raw count request for the collection
+ * @return The raw count request for the collection
+ */
+ @Nonnull
+ public PrimitiveRequestBuilder count() {
+ return new PrimitiveRequestBuilder(getRequestUrlWithAdditionalSegment("$count"), getClient(), null, Long.class);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionResponse.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionResponse.java
new file mode 100644
index 00000000000..f84d473d82e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryCollectionResponse.java
@@ -0,0 +1,18 @@
+// Template Source: BaseEntityCollectionResponse.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+
+import com.microsoft.graph.http.BaseCollectionResponse;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Collection Response.
+ */
+public class ProvisioningObjectSummaryCollectionResponse extends BaseCollectionResponse {
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequest.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequest.java
new file mode 100644
index 00000000000..392c93820ea
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequest.java
@@ -0,0 +1,173 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Request.
+ */
+public class ProvisioningObjectSummaryRequest extends BaseRequest {
+
+ /**
+ * The request for the ProvisioningObjectSummary
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ProvisioningObjectSummaryRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, ProvisioningObjectSummary.class);
+ }
+
+ /**
+ * Gets the ProvisioningObjectSummary from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the ProvisioningObjectSummary from the service
+ *
+ * @return the ProvisioningObjectSummary from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public ProvisioningObjectSummary get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public ProvisioningObjectSummary delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this ProvisioningObjectSummary with a source
+ *
+ * @param sourceProvisioningObjectSummary the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final ProvisioningObjectSummary sourceProvisioningObjectSummary) {
+ return sendAsync(HttpMethod.PATCH, sourceProvisioningObjectSummary);
+ }
+
+ /**
+ * Patches this ProvisioningObjectSummary with a source
+ *
+ * @param sourceProvisioningObjectSummary the source object with updates
+ * @return the updated ProvisioningObjectSummary
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public ProvisioningObjectSummary patch(@Nonnull final ProvisioningObjectSummary sourceProvisioningObjectSummary) throws ClientException {
+ return send(HttpMethod.PATCH, sourceProvisioningObjectSummary);
+ }
+
+ /**
+ * Creates a ProvisioningObjectSummary with a new object
+ *
+ * @param newProvisioningObjectSummary the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) {
+ return sendAsync(HttpMethod.POST, newProvisioningObjectSummary);
+ }
+
+ /**
+ * Creates a ProvisioningObjectSummary with a new object
+ *
+ * @param newProvisioningObjectSummary the new object to create
+ * @return the created ProvisioningObjectSummary
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public ProvisioningObjectSummary post(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) throws ClientException {
+ return send(HttpMethod.POST, newProvisioningObjectSummary);
+ }
+
+ /**
+ * Creates a ProvisioningObjectSummary with a new object
+ *
+ * @param newProvisioningObjectSummary the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) {
+ return sendAsync(HttpMethod.PUT, newProvisioningObjectSummary);
+ }
+
+ /**
+ * Creates a ProvisioningObjectSummary with a new object
+ *
+ * @param newProvisioningObjectSummary the object to create/update
+ * @return the created ProvisioningObjectSummary
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public ProvisioningObjectSummary put(@Nonnull final ProvisioningObjectSummary newProvisioningObjectSummary) throws ClientException {
+ return send(HttpMethod.PUT, newProvisioningObjectSummary);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequestBuilder.java
new file mode 100644
index 00000000000..47ec9aab2b9
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/ProvisioningObjectSummaryRequestBuilder.java
@@ -0,0 +1,59 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.ProvisioningObjectSummary;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Provisioning Object Summary Request Builder.
+ */
+public class ProvisioningObjectSummaryRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the ProvisioningObjectSummary
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public ProvisioningObjectSummaryRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the ProvisioningObjectSummaryRequest instance
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the ProvisioningObjectSummaryRequest instance
+ */
+ @Nonnull
+ public ProvisioningObjectSummaryRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.ProvisioningObjectSummaryRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/RbacApplicationRequest.java b/src/main/java/com/microsoft/graph/requests/RbacApplicationRequest.java
new file mode 100644
index 00000000000..26d87b2c6c0
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/RbacApplicationRequest.java
@@ -0,0 +1,177 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RbacApplication;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Rbac Application Request.
+ */
+public class RbacApplicationRequest extends BaseRequest {
+
+ /**
+ * The request for the RbacApplication
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public RbacApplicationRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, RbacApplication.class);
+ }
+
+ /**
+ * Gets the RbacApplication from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the RbacApplication from the service
+ *
+ * @return the RbacApplication from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RbacApplication get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public RbacApplication delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this RbacApplication with a source
+ *
+ * @param sourceRbacApplication the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final RbacApplication sourceRbacApplication) {
+ return sendAsync(HttpMethod.PATCH, sourceRbacApplication);
+ }
+
+ /**
+ * Patches this RbacApplication with a source
+ *
+ * @param sourceRbacApplication the source object with updates
+ * @return the updated RbacApplication
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RbacApplication patch(@Nonnull final RbacApplication sourceRbacApplication) throws ClientException {
+ return send(HttpMethod.PATCH, sourceRbacApplication);
+ }
+
+ /**
+ * Creates a RbacApplication with a new object
+ *
+ * @param newRbacApplication the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final RbacApplication newRbacApplication) {
+ return sendAsync(HttpMethod.POST, newRbacApplication);
+ }
+
+ /**
+ * Creates a RbacApplication with a new object
+ *
+ * @param newRbacApplication the new object to create
+ * @return the created RbacApplication
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RbacApplication post(@Nonnull final RbacApplication newRbacApplication) throws ClientException {
+ return send(HttpMethod.POST, newRbacApplication);
+ }
+
+ /**
+ * Creates a RbacApplication with a new object
+ *
+ * @param newRbacApplication the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final RbacApplication newRbacApplication) {
+ return sendAsync(HttpMethod.PUT, newRbacApplication);
+ }
+
+ /**
+ * Creates a RbacApplication with a new object
+ *
+ * @param newRbacApplication the object to create/update
+ * @return the created RbacApplication
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RbacApplication put(@Nonnull final RbacApplication newRbacApplication) throws ClientException {
+ return send(HttpMethod.PUT, newRbacApplication);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public RbacApplicationRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public RbacApplicationRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/RbacApplicationRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/RbacApplicationRequestBuilder.java
new file mode 100644
index 00000000000..5fa46da1e3c
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/RbacApplicationRequestBuilder.java
@@ -0,0 +1,103 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RbacApplication;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Rbac Application Request Builder.
+ */
+public class RbacApplicationRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the RbacApplication
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public RbacApplicationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the RbacApplicationRequest instance
+ */
+ @Nonnull
+ public RbacApplicationRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the RbacApplicationRequest instance
+ */
+ @Nonnull
+ public RbacApplicationRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.RbacApplicationRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+ /**
+ * Gets a request builder for the UnifiedRoleAssignment collection
+ *
+ * @return the collection request builder
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequestBuilder roleAssignments() {
+ return new UnifiedRoleAssignmentCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("roleAssignments"), getClient(), null);
+ }
+
+ /**
+ * Gets a request builder for the UnifiedRoleAssignment item
+ *
+ * @return the request builder
+ * @param id the item identifier
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentRequestBuilder roleAssignments(@Nonnull final String id) {
+ return new UnifiedRoleAssignmentRequestBuilder(getRequestUrlWithAdditionalSegment("roleAssignments") + "/" + id, getClient(), null);
+ }
+ /**
+ * Gets a request builder for the UnifiedRoleDefinition collection
+ *
+ * @return the collection request builder
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequestBuilder roleDefinitions() {
+ return new UnifiedRoleDefinitionCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("roleDefinitions"), getClient(), null);
+ }
+
+ /**
+ * Gets a request builder for the UnifiedRoleDefinition item
+ *
+ * @return the request builder
+ * @param id the item identifier
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequestBuilder roleDefinitions(@Nonnull final String id) {
+ return new UnifiedRoleDefinitionRequestBuilder(getRequestUrlWithAdditionalSegment("roleDefinitions") + "/" + id, getClient(), null);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/RoleManagementRequest.java b/src/main/java/com/microsoft/graph/requests/RoleManagementRequest.java
new file mode 100644
index 00000000000..7c32533f02a
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/RoleManagementRequest.java
@@ -0,0 +1,173 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RoleManagement;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Role Management Request.
+ */
+public class RoleManagementRequest extends BaseRequest {
+
+ /**
+ * The request for the RoleManagement
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public RoleManagementRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, RoleManagement.class);
+ }
+
+ /**
+ * Gets the RoleManagement from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the RoleManagement from the service
+ *
+ * @return the RoleManagement from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RoleManagement get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public RoleManagement delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this RoleManagement with a source
+ *
+ * @param sourceRoleManagement the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final RoleManagement sourceRoleManagement) {
+ return sendAsync(HttpMethod.PATCH, sourceRoleManagement);
+ }
+
+ /**
+ * Patches this RoleManagement with a source
+ *
+ * @param sourceRoleManagement the source object with updates
+ * @return the updated RoleManagement
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RoleManagement patch(@Nonnull final RoleManagement sourceRoleManagement) throws ClientException {
+ return send(HttpMethod.PATCH, sourceRoleManagement);
+ }
+
+ /**
+ * Creates a RoleManagement with a new object
+ *
+ * @param newRoleManagement the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final RoleManagement newRoleManagement) {
+ return sendAsync(HttpMethod.POST, newRoleManagement);
+ }
+
+ /**
+ * Creates a RoleManagement with a new object
+ *
+ * @param newRoleManagement the new object to create
+ * @return the created RoleManagement
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RoleManagement post(@Nonnull final RoleManagement newRoleManagement) throws ClientException {
+ return send(HttpMethod.POST, newRoleManagement);
+ }
+
+ /**
+ * Creates a RoleManagement with a new object
+ *
+ * @param newRoleManagement the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final RoleManagement newRoleManagement) {
+ return sendAsync(HttpMethod.PUT, newRoleManagement);
+ }
+
+ /**
+ * Creates a RoleManagement with a new object
+ *
+ * @param newRoleManagement the object to create/update
+ * @return the created RoleManagement
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public RoleManagement put(@Nonnull final RoleManagement newRoleManagement) throws ClientException {
+ return send(HttpMethod.PUT, newRoleManagement);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public RoleManagementRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public RoleManagementRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/RoleManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/RoleManagementRequestBuilder.java
new file mode 100644
index 00000000000..6d6e5fefd18
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/RoleManagementRequestBuilder.java
@@ -0,0 +1,59 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RoleManagement;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Role Management Request Builder.
+ */
+public class RoleManagementRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the RoleManagement
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public RoleManagementRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the RoleManagementRequest instance
+ */
+ @Nonnull
+ public RoleManagementRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the RoleManagementRequest instance
+ */
+ @Nonnull
+ public RoleManagementRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.RoleManagementRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/TeamCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/TeamCollectionRequest.java
index ece4de9b263..89078a2217d 100644
--- a/src/main/java/com/microsoft/graph/requests/TeamCollectionRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/TeamCollectionRequest.java
@@ -11,6 +11,10 @@
import com.microsoft.graph.models.TeamVisibilityType;
import com.microsoft.graph.models.ClonableTeamParts;
import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
diff --git a/src/main/java/com/microsoft/graph/requests/TeamCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/TeamCollectionRequestBuilder.java
index ca29c9e895f..dfc0f825480 100644
--- a/src/main/java/com/microsoft/graph/requests/TeamCollectionRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/TeamCollectionRequestBuilder.java
@@ -11,6 +11,10 @@
import com.microsoft.graph.models.TeamVisibilityType;
import com.microsoft.graph.models.ClonableTeamParts;
import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
@@ -26,6 +30,7 @@
import com.microsoft.graph.http.PrimitiveRequestBuilder;
import com.microsoft.graph.models.TeamArchiveParameterSet;
import com.microsoft.graph.models.TeamCloneParameterSet;
+import com.microsoft.graph.models.TeamSendActivityNotificationParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
diff --git a/src/main/java/com/microsoft/graph/requests/TeamRequest.java b/src/main/java/com/microsoft/graph/requests/TeamRequest.java
index 2f9a8f2a0e3..544b8aad221 100644
--- a/src/main/java/com/microsoft/graph/requests/TeamRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/TeamRequest.java
@@ -11,6 +11,10 @@
import com.microsoft.graph.models.TeamVisibilityType;
import com.microsoft.graph.models.ClonableTeamParts;
import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.ScheduleRequestBuilder;
import com.microsoft.graph.requests.ChannelCollectionRequestBuilder;
diff --git a/src/main/java/com/microsoft/graph/requests/TeamRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/TeamRequestBuilder.java
index aabdcbf78b3..10b0f50c55c 100644
--- a/src/main/java/com/microsoft/graph/requests/TeamRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/TeamRequestBuilder.java
@@ -11,6 +11,10 @@
import com.microsoft.graph.models.TeamVisibilityType;
import com.microsoft.graph.models.ClonableTeamParts;
import java.util.EnumSet;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
import com.microsoft.graph.models.ChatMessage;
import com.microsoft.graph.requests.ScheduleRequestBuilder;
import com.microsoft.graph.requests.ChannelCollectionRequestBuilder;
@@ -31,6 +35,7 @@
import com.microsoft.graph.http.BaseRequestBuilder;
import com.microsoft.graph.models.TeamArchiveParameterSet;
import com.microsoft.graph.models.TeamCloneParameterSet;
+import com.microsoft.graph.models.TeamSendActivityNotificationParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
@@ -223,6 +228,16 @@ public TeamCompleteMigrationRequestBuilder completeMigration() {
return new TeamCompleteMigrationRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.completeMigration"), getClient(), null);
}
+ /**
+ * Gets a builder to execute the method
+ * @return the request builder
+ * @param parameters the parameters for the service method
+ */
+ @Nonnull
+ public TeamSendActivityNotificationRequestBuilder sendActivityNotification(@Nonnull final TeamSendActivityNotificationParameterSet parameters) {
+ return new TeamSendActivityNotificationRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.sendActivityNotification"), getClient(), null, parameters);
+ }
+
/**
* Gets a builder to execute the method
* @return the request builder
diff --git a/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequest.java b/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequest.java
new file mode 100644
index 00000000000..c977e2f69e8
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequest.java
@@ -0,0 +1,56 @@
+// Template Source: BaseMethodRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.Team;
+import com.microsoft.graph.requests.TeamSendActivityNotificationRequest;
+
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.models.TeamSendActivityNotificationParameterSet;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Team Send Activity Notification Request.
+ */
+public class TeamSendActivityNotificationRequest extends BaseRequest {
+ /**
+ * The request for this TeamSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public TeamSendActivityNotificationRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, Void.class);
+ }
+
+ /** The body for the method */
+ @Nullable
+ public TeamSendActivityNotificationParameterSet body;
+ /**
+ * Creates the TeamSendActivityNotification
+ *
+ * @return a future for the operation
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync() {
+ return this.sendAsync(HttpMethod.POST, body);
+ }
+
+ /**
+ * Creates the TeamSendActivityNotification
+ *
+ * @throws ClientException an exception occurs if there was an error while the request was sent
+ */
+ public void post() throws ClientException {
+ this.send(HttpMethod.POST, body);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequestBuilder.java
new file mode 100644
index 00000000000..1d4273b133e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/TeamSendActivityNotificationRequestBuilder.java
@@ -0,0 +1,77 @@
+// Template Source: BaseMethodRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.requests.TeamSendActivityNotificationRequest;
+import com.microsoft.graph.models.Team;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.models.TeamworkNotificationRecipient;
+import com.microsoft.graph.http.BaseActionRequestBuilder;
+import com.microsoft.graph.models.TeamSendActivityNotificationParameterSet;
+import com.microsoft.graph.core.IBaseClient;
+import com.google.gson.JsonElement;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Team Send Activity Notification Request Builder.
+ */
+public class TeamSendActivityNotificationRequestBuilder extends BaseActionRequestBuilder {
+
+ /**
+ * The request builder for this TeamSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public TeamSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+ private TeamSendActivityNotificationParameterSet body;
+ /**
+ * The request builder for this TeamSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ * @param parameters the parameters for the service method
+ */
+ public TeamSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions, @Nonnull final TeamSendActivityNotificationParameterSet parameters) {
+ super(requestUrl, client, requestOptions);
+ this.body = parameters;
+ }
+
+ /**
+ * Creates the TeamSendActivityNotificationRequest
+ *
+ * @param requestOptions the options for the request
+ * @return the TeamSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public TeamSendActivityNotificationRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the TeamSendActivityNotificationRequest with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for the request
+ * @return the TeamSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public TeamSendActivityNotificationRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ final TeamSendActivityNotificationRequest request = new TeamSendActivityNotificationRequest(
+ getRequestUrl(),
+ getClient(),
+ requestOptions);
+ request.body = this.body;
+ return request;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionPage.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionPage.java
new file mode 100644
index 00000000000..8e97d4c9126
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionPage.java
@@ -0,0 +1,40 @@
+// Template Source: BaseEntityCollectionPage.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionResponse;
+import com.microsoft.graph.http.BaseCollectionPage;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Collection Page.
+ */
+public class UnifiedRoleAssignmentCollectionPage extends BaseCollectionPage {
+
+ /**
+ * A collection page for UnifiedRoleAssignment
+ *
+ * @param response the serialized UnifiedRoleAssignmentCollectionResponse from the service
+ * @param builder the request builder for the next collection page
+ */
+ public UnifiedRoleAssignmentCollectionPage(@Nonnull final UnifiedRoleAssignmentCollectionResponse response, @Nonnull final UnifiedRoleAssignmentCollectionRequestBuilder builder) {
+ super(response, builder);
+ }
+
+ /**
+ * Creates the collection page for UnifiedRoleAssignment
+ *
+ * @param pageContents the contents of this page
+ * @param nextRequestBuilder the request builder for the next page
+ */
+ public UnifiedRoleAssignmentCollectionPage(@Nonnull final java.util.List pageContents, @Nullable final UnifiedRoleAssignmentCollectionRequestBuilder nextRequestBuilder) {
+ super(pageContents, nextRequestBuilder);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequest.java
new file mode 100644
index 00000000000..98ce46688b7
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequest.java
@@ -0,0 +1,173 @@
+// Template Source: BaseEntityCollectionRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RbacApplication;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.options.QueryOption;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseEntityCollectionRequest;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionResponse;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Collection Request.
+ */
+public class UnifiedRoleAssignmentCollectionRequest extends BaseEntityCollectionRequest {
+
+ /**
+ * The request builder for this collection of UnifiedRoleAssignment
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleAssignmentCollectionRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleAssignmentCollectionResponse.class, UnifiedRoleAssignmentCollectionPage.class, UnifiedRoleAssignmentCollectionRequestBuilder.class);
+ }
+
+ /**
+ * Creates a new UnifiedRoleAssignment
+ * @param newUnifiedRoleAssignment the UnifiedRoleAssignment to create
+ * @return a future with the created object
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new UnifiedRoleAssignmentRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .postAsync(newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Creates a new UnifiedRoleAssignment
+ * @param newUnifiedRoleAssignment the UnifiedRoleAssignment to create
+ * @return the newly created object
+ */
+ @Nonnull
+ public UnifiedRoleAssignment post(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) throws ClientException {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new UnifiedRoleAssignmentRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .post(newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the filter clause for the request
+ *
+ * @param value the filter clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest filter(@Nonnull final String value) {
+ addFilterOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the order by clause for the request
+ *
+ * @param value the order by clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest orderBy(@Nonnull final String value) {
+ addOrderByOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the top value for the request
+ *
+ * @param value the max number of items to return
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest top(final int value) {
+ addTopOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the count value for the request
+ *
+ * @param value whether or not to return the count of objects with the request
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest count(final boolean value) {
+ addCountOption(value);
+ return this;
+ }
+ /**
+ * Sets the count value to true for the request
+ *
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest count() {
+ addCountOption(true);
+ return this;
+ }
+ /**
+ * Sets the skip value for the request
+ *
+ * @param value of the number of items to skip
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest skip(final int value) {
+ addSkipOption(value);
+ return this;
+ }
+
+
+ /**
+ * Add Skip token for pagination
+ * @param skipToken - Token for pagination
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentCollectionRequest skipToken(@Nonnull final String skipToken) {
+ addSkipTokenOption(skipToken);
+ return this;
+ }
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequestBuilder.java
new file mode 100644
index 00000000000..0b2b3120edd
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionRequestBuilder.java
@@ -0,0 +1,51 @@
+// Template Source: BaseEntityCollectionRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.RbacApplication;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest;
+import com.microsoft.graph.http.BaseCollectionRequestBuilder;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.PrimitiveRequestBuilder;
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Collection Request Builder.
+ */
+public class UnifiedRoleAssignmentCollectionRequestBuilder extends BaseCollectionRequestBuilder {
+
+ /**
+ * The request builder for this collection of RbacApplication
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleAssignmentCollectionRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleAssignmentRequestBuilder.class, UnifiedRoleAssignmentCollectionRequest.class);
+ }
+
+
+
+ /**
+ * Gets the raw count request for the collection
+ * @return The raw count request for the collection
+ */
+ @Nonnull
+ public PrimitiveRequestBuilder count() {
+ return new PrimitiveRequestBuilder(getRequestUrlWithAdditionalSegment("$count"), getClient(), null, Long.class);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionResponse.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionResponse.java
new file mode 100644
index 00000000000..cf145567a61
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentCollectionResponse.java
@@ -0,0 +1,18 @@
+// Template Source: BaseEntityCollectionResponse.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+
+import com.microsoft.graph.http.BaseCollectionResponse;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Collection Response.
+ */
+public class UnifiedRoleAssignmentCollectionResponse extends BaseCollectionResponse {
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequest.java
new file mode 100644
index 00000000000..6fac71fd682
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequest.java
@@ -0,0 +1,176 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import com.microsoft.graph.requests.AppScopeRequestBuilder;
+import com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Request.
+ */
+public class UnifiedRoleAssignmentRequest extends BaseRequest {
+
+ /**
+ * The request for the UnifiedRoleAssignment
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleAssignmentRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleAssignment.class);
+ }
+
+ /**
+ * Gets the UnifiedRoleAssignment from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the UnifiedRoleAssignment from the service
+ *
+ * @return the UnifiedRoleAssignment from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleAssignment get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public UnifiedRoleAssignment delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this UnifiedRoleAssignment with a source
+ *
+ * @param sourceUnifiedRoleAssignment the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final UnifiedRoleAssignment sourceUnifiedRoleAssignment) {
+ return sendAsync(HttpMethod.PATCH, sourceUnifiedRoleAssignment);
+ }
+
+ /**
+ * Patches this UnifiedRoleAssignment with a source
+ *
+ * @param sourceUnifiedRoleAssignment the source object with updates
+ * @return the updated UnifiedRoleAssignment
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleAssignment patch(@Nonnull final UnifiedRoleAssignment sourceUnifiedRoleAssignment) throws ClientException {
+ return send(HttpMethod.PATCH, sourceUnifiedRoleAssignment);
+ }
+
+ /**
+ * Creates a UnifiedRoleAssignment with a new object
+ *
+ * @param newUnifiedRoleAssignment the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) {
+ return sendAsync(HttpMethod.POST, newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Creates a UnifiedRoleAssignment with a new object
+ *
+ * @param newUnifiedRoleAssignment the new object to create
+ * @return the created UnifiedRoleAssignment
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleAssignment post(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) throws ClientException {
+ return send(HttpMethod.POST, newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Creates a UnifiedRoleAssignment with a new object
+ *
+ * @param newUnifiedRoleAssignment the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) {
+ return sendAsync(HttpMethod.PUT, newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Creates a UnifiedRoleAssignment with a new object
+ *
+ * @param newUnifiedRoleAssignment the object to create/update
+ * @return the created UnifiedRoleAssignment
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleAssignment put(@Nonnull final UnifiedRoleAssignment newUnifiedRoleAssignment) throws ClientException {
+ return send(HttpMethod.PUT, newUnifiedRoleAssignment);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequestBuilder.java
new file mode 100644
index 00000000000..8ff36f9ae7b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleAssignmentRequestBuilder.java
@@ -0,0 +1,102 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleAssignment;
+import com.microsoft.graph.requests.AppScopeRequestBuilder;
+import com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Assignment Request Builder.
+ */
+public class UnifiedRoleAssignmentRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the UnifiedRoleAssignment
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleAssignmentRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the UnifiedRoleAssignmentRequest instance
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the UnifiedRoleAssignmentRequest instance
+ */
+ @Nonnull
+ public UnifiedRoleAssignmentRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.UnifiedRoleAssignmentRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+
+ /**
+ * Gets the request builder for AppScope
+ *
+ * @return the AppScopeRequestBuilder instance
+ */
+ @Nonnull
+ public AppScopeRequestBuilder appScope() {
+ return new AppScopeRequestBuilder(getRequestUrlWithAdditionalSegment("appScope"), getClient(), null);
+ }
+
+ /**
+ * Gets the request builder for DirectoryObject
+ *
+ * @return the DirectoryObjectWithReferenceRequestBuilder instance
+ */
+ @Nonnull
+ public DirectoryObjectWithReferenceRequestBuilder directoryScope() {
+ return new DirectoryObjectWithReferenceRequestBuilder(getRequestUrlWithAdditionalSegment("directoryScope"), getClient(), null);
+ }
+
+ /**
+ * Gets the request builder for DirectoryObject
+ *
+ * @return the DirectoryObjectWithReferenceRequestBuilder instance
+ */
+ @Nonnull
+ public DirectoryObjectWithReferenceRequestBuilder principal() {
+ return new DirectoryObjectWithReferenceRequestBuilder(getRequestUrlWithAdditionalSegment("principal"), getClient(), null);
+ }
+
+ /**
+ * Gets the request builder for UnifiedRoleDefinition
+ *
+ * @return the UnifiedRoleDefinitionWithReferenceRequestBuilder instance
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionWithReferenceRequestBuilder roleDefinition() {
+ return new UnifiedRoleDefinitionWithReferenceRequestBuilder(getRequestUrlWithAdditionalSegment("roleDefinition"), getClient(), null);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionPage.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionPage.java
new file mode 100644
index 00000000000..0330edc991b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionPage.java
@@ -0,0 +1,40 @@
+// Template Source: BaseEntityCollectionPage.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionResponse;
+import com.microsoft.graph.http.BaseCollectionPage;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Collection Page.
+ */
+public class UnifiedRoleDefinitionCollectionPage extends BaseCollectionPage {
+
+ /**
+ * A collection page for UnifiedRoleDefinition
+ *
+ * @param response the serialized UnifiedRoleDefinitionCollectionResponse from the service
+ * @param builder the request builder for the next collection page
+ */
+ public UnifiedRoleDefinitionCollectionPage(@Nonnull final UnifiedRoleDefinitionCollectionResponse response, @Nonnull final UnifiedRoleDefinitionCollectionRequestBuilder builder) {
+ super(response, builder);
+ }
+
+ /**
+ * Creates the collection page for UnifiedRoleDefinition
+ *
+ * @param pageContents the contents of this page
+ * @param nextRequestBuilder the request builder for the next page
+ */
+ public UnifiedRoleDefinitionCollectionPage(@Nonnull final java.util.List pageContents, @Nullable final UnifiedRoleDefinitionCollectionRequestBuilder nextRequestBuilder) {
+ super(pageContents, nextRequestBuilder);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequest.java
new file mode 100644
index 00000000000..325bc6d093b
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequest.java
@@ -0,0 +1,172 @@
+// Template Source: BaseEntityCollectionRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.options.QueryOption;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseEntityCollectionRequest;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionResponse;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Collection Request.
+ */
+public class UnifiedRoleDefinitionCollectionRequest extends BaseEntityCollectionRequest {
+
+ /**
+ * The request builder for this collection of UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionCollectionRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinitionCollectionResponse.class, UnifiedRoleDefinitionCollectionPage.class, UnifiedRoleDefinitionCollectionRequestBuilder.class);
+ }
+
+ /**
+ * Creates a new UnifiedRoleDefinition
+ * @param newUnifiedRoleDefinition the UnifiedRoleDefinition to create
+ * @return a future with the created object
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new UnifiedRoleDefinitionRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .postAsync(newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Creates a new UnifiedRoleDefinition
+ * @param newUnifiedRoleDefinition the UnifiedRoleDefinition to create
+ * @return the newly created object
+ */
+ @Nonnull
+ public UnifiedRoleDefinition post(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) throws ClientException {
+ final String requestUrl = getBaseRequest().getRequestUrl().toString();
+ return new UnifiedRoleDefinitionRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
+ .buildRequest(getBaseRequest().getHeaders())
+ .post(newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the filter clause for the request
+ *
+ * @param value the filter clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest filter(@Nonnull final String value) {
+ addFilterOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the order by clause for the request
+ *
+ * @param value the order by clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest orderBy(@Nonnull final String value) {
+ addOrderByOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the top value for the request
+ *
+ * @param value the max number of items to return
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest top(final int value) {
+ addTopOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the count value for the request
+ *
+ * @param value whether or not to return the count of objects with the request
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest count(final boolean value) {
+ addCountOption(value);
+ return this;
+ }
+ /**
+ * Sets the count value to true for the request
+ *
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest count() {
+ addCountOption(true);
+ return this;
+ }
+ /**
+ * Sets the skip value for the request
+ *
+ * @param value of the number of items to skip
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest skip(final int value) {
+ addSkipOption(value);
+ return this;
+ }
+
+
+ /**
+ * Add Skip token for pagination
+ * @param skipToken - Token for pagination
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequest skipToken(@Nonnull final String skipToken) {
+ addSkipTokenOption(skipToken);
+ return this;
+ }
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequestBuilder.java
new file mode 100644
index 00000000000..dc56ddfaa96
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionRequestBuilder.java
@@ -0,0 +1,50 @@
+// Template Source: BaseEntityCollectionRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest;
+import com.microsoft.graph.http.BaseCollectionRequestBuilder;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.PrimitiveRequestBuilder;
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Collection Request Builder.
+ */
+public class UnifiedRoleDefinitionCollectionRequestBuilder extends BaseCollectionRequestBuilder {
+
+ /**
+ * The request builder for this collection of UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionCollectionRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinitionRequestBuilder.class, UnifiedRoleDefinitionCollectionRequest.class);
+ }
+
+
+
+ /**
+ * Gets the raw count request for the collection
+ * @return The raw count request for the collection
+ */
+ @Nonnull
+ public PrimitiveRequestBuilder count() {
+ return new PrimitiveRequestBuilder(getRequestUrlWithAdditionalSegment("$count"), getClient(), null, Long.class);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionResponse.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionResponse.java
new file mode 100644
index 00000000000..e153fed3f1e
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionCollectionResponse.java
@@ -0,0 +1,18 @@
+// Template Source: BaseEntityCollectionResponse.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+
+import com.microsoft.graph.http.BaseCollectionResponse;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Collection Response.
+ */
+public class UnifiedRoleDefinitionCollectionResponse extends BaseCollectionResponse {
+
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequest.java
new file mode 100644
index 00000000000..ec55f84c2dc
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequest.java
@@ -0,0 +1,66 @@
+// Template Source: BaseEntityReferenceRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.options.QueryOption;
+import com.microsoft.graph.http.BaseReferenceRequest;
+import com.microsoft.graph.http.HttpMethod;
+import com.microsoft.graph.core.IBaseClient;
+import com.google.gson.JsonPrimitive;
+import com.google.gson.JsonObject;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Reference Request.
+ */
+public class UnifiedRoleDefinitionReferenceRequest extends BaseReferenceRequest {
+
+ /**
+ * The request for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionReferenceRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinition.class);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionReferenceRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionReferenceRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequestBuilder.java
new file mode 100644
index 00000000000..c715c8ef884
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionReferenceRequestBuilder.java
@@ -0,0 +1,39 @@
+
+// Template Source: BaseEntityReferenceRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.http.BaseReferenceRequestBuilder;
+import com.microsoft.graph.core.IBaseClient;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Reference Request Builder.
+ */
+public class UnifiedRoleDefinitionReferenceRequestBuilder extends BaseReferenceRequestBuilder {
+
+ /**
+ * The request builder for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionReferenceRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinitionReferenceRequest.class);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequest.java
new file mode 100644
index 00000000000..5922efdf1c8
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequest.java
@@ -0,0 +1,175 @@
+// Template Source: BaseEntityRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Request.
+ */
+public class UnifiedRoleDefinitionRequest extends BaseRequest {
+
+ /**
+ * The request for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinition.class);
+ }
+
+ /**
+ * Gets the UnifiedRoleDefinition from the service
+ *
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture getAsync() {
+ return sendAsync(HttpMethod.GET, null);
+ }
+
+ /**
+ * Gets the UnifiedRoleDefinition from the service
+ *
+ * @return the UnifiedRoleDefinition from the request
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleDefinition get() throws ClientException {
+ return send(HttpMethod.GET, null);
+ }
+
+ /**
+ * Delete this item from the service
+ *
+ * @return a future with the deletion result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture deleteAsync() {
+ return sendAsync(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Delete this item from the service
+ * @return the resulting response if the service returns anything on deletion
+ *
+ * @throws ClientException if there was an exception during the delete operation
+ */
+ @Nullable
+ public UnifiedRoleDefinition delete() throws ClientException {
+ return send(HttpMethod.DELETE, null);
+ }
+
+ /**
+ * Patches this UnifiedRoleDefinition with a source
+ *
+ * @param sourceUnifiedRoleDefinition the source object with updates
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture patchAsync(@Nonnull final UnifiedRoleDefinition sourceUnifiedRoleDefinition) {
+ return sendAsync(HttpMethod.PATCH, sourceUnifiedRoleDefinition);
+ }
+
+ /**
+ * Patches this UnifiedRoleDefinition with a source
+ *
+ * @param sourceUnifiedRoleDefinition the source object with updates
+ * @return the updated UnifiedRoleDefinition
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleDefinition patch(@Nonnull final UnifiedRoleDefinition sourceUnifiedRoleDefinition) throws ClientException {
+ return send(HttpMethod.PATCH, sourceUnifiedRoleDefinition);
+ }
+
+ /**
+ * Creates a UnifiedRoleDefinition with a new object
+ *
+ * @param newUnifiedRoleDefinition the new object to create
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) {
+ return sendAsync(HttpMethod.POST, newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Creates a UnifiedRoleDefinition with a new object
+ *
+ * @param newUnifiedRoleDefinition the new object to create
+ * @return the created UnifiedRoleDefinition
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleDefinition post(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) throws ClientException {
+ return send(HttpMethod.POST, newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Creates a UnifiedRoleDefinition with a new object
+ *
+ * @param newUnifiedRoleDefinition the object to create/update
+ * @return a future with the result
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture putAsync(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) {
+ return sendAsync(HttpMethod.PUT, newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Creates a UnifiedRoleDefinition with a new object
+ *
+ * @param newUnifiedRoleDefinition the object to create/update
+ * @return the created UnifiedRoleDefinition
+ * @throws ClientException this exception occurs if the request was unable to complete for any reason
+ */
+ @Nullable
+ public UnifiedRoleDefinition put(@Nonnull final UnifiedRoleDefinition newUnifiedRoleDefinition) throws ClientException {
+ return send(HttpMethod.PUT, newUnifiedRoleDefinition);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+
+}
+
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequestBuilder.java
new file mode 100644
index 00000000000..9ee064f6963
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionRequestBuilder.java
@@ -0,0 +1,81 @@
+// Template Source: BaseEntityRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.http.BaseRequestBuilder;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition Request Builder.
+ */
+public class UnifiedRoleDefinitionRequestBuilder extends BaseRequestBuilder {
+
+ /**
+ * The request builder for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+
+ /**
+ * Creates the request
+ *
+ * @param requestOptions the options for this request
+ * @return the UnifiedRoleDefinitionRequest instance
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the request with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for this request
+ * @return the UnifiedRoleDefinitionRequest instance
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ return new com.microsoft.graph.requests.UnifiedRoleDefinitionRequest(getRequestUrl(), getClient(), requestOptions);
+ }
+
+
+ /**
+ * Gets a request builder for the UnifiedRoleDefinition collection
+ *
+ * @return the collection request builder
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionCollectionRequestBuilder inheritsPermissionsFrom() {
+ return new UnifiedRoleDefinitionCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("inheritsPermissionsFrom"), getClient(), null);
+ }
+
+ /**
+ * Gets a request builder for the UnifiedRoleDefinition item
+ *
+ * @return the request builder
+ * @param id the item identifier
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionRequestBuilder inheritsPermissionsFrom(@Nonnull final String id) {
+ return new UnifiedRoleDefinitionRequestBuilder(getRequestUrlWithAdditionalSegment("inheritsPermissionsFrom") + "/" + id, getClient(), null);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequest.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequest.java
new file mode 100644
index 00000000000..71e09be0912
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequest.java
@@ -0,0 +1,65 @@
+// Template Source: BaseEntityWithReferenceRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.options.QueryOption;
+import com.microsoft.graph.http.BaseWithReferenceRequest;
+import com.microsoft.graph.http.HttpMethod;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.serializer.IJsonBackedObject;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition With Reference Request.
+ */
+public class UnifiedRoleDefinitionWithReferenceRequest extends BaseWithReferenceRequest {
+
+ /**
+ * The request for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionWithReferenceRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinition.class);
+ }
+
+ /**
+ * Sets the select clause for the request
+ *
+ * @param value the select clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionWithReferenceRequest select(@Nonnull final String value) {
+ addSelectOption(value);
+ return this;
+ }
+
+ /**
+ * Sets the expand clause for the request
+ *
+ * @param value the expand clause
+ * @return the updated request
+ */
+ @Nonnull
+ public UnifiedRoleDefinitionWithReferenceRequest expand(@Nonnull final String value) {
+ addExpandOption(value);
+ return this;
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequestBuilder.java
new file mode 100644
index 00000000000..db561cc0ff8
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UnifiedRoleDefinitionWithReferenceRequestBuilder.java
@@ -0,0 +1,38 @@
+// Template Source: BaseEntityWithReferenceRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+
+import com.microsoft.graph.http.IRequestBuilder;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.models.UnifiedRoleDefinition;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder;
+import com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder;
+import java.util.Arrays;
+import java.util.EnumSet;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+import com.microsoft.graph.http.BaseWithReferenceRequestBuilder;
+import com.microsoft.graph.core.IBaseClient;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the Unified Role Definition With Reference Request Builder.
+ */
+public class UnifiedRoleDefinitionWithReferenceRequestBuilder extends BaseWithReferenceRequestBuilder {
+
+ /**
+ * The request builder for the UnifiedRoleDefinition
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UnifiedRoleDefinitionWithReferenceRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, UnifiedRoleDefinitionWithReferenceRequest.class, UnifiedRoleDefinitionReferenceRequestBuilder.class);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UserTeamworkRequest.java b/src/main/java/com/microsoft/graph/requests/UserTeamworkRequest.java
index 4d921f04c29..f2e9edc389c 100644
--- a/src/main/java/com/microsoft/graph/requests/UserTeamworkRequest.java
+++ b/src/main/java/com/microsoft/graph/requests/UserTeamworkRequest.java
@@ -8,6 +8,9 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.UserTeamwork;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
import com.microsoft.graph.requests.UserScopeTeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.UserScopeTeamsAppInstallationRequestBuilder;
import java.util.Arrays;
diff --git a/src/main/java/com/microsoft/graph/requests/UserTeamworkRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UserTeamworkRequestBuilder.java
index 264bf57293e..892f2fb7aea 100644
--- a/src/main/java/com/microsoft/graph/requests/UserTeamworkRequestBuilder.java
+++ b/src/main/java/com/microsoft/graph/requests/UserTeamworkRequestBuilder.java
@@ -8,6 +8,9 @@
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.UserTeamwork;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
import com.microsoft.graph.requests.UserScopeTeamsAppInstallationCollectionRequestBuilder;
import com.microsoft.graph.requests.UserScopeTeamsAppInstallationRequestBuilder;
import java.util.Arrays;
@@ -16,6 +19,7 @@
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;
+import com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
@@ -78,4 +82,14 @@ public UserScopeTeamsAppInstallationCollectionRequestBuilder installedApps() {
public UserScopeTeamsAppInstallationRequestBuilder installedApps(@Nonnull final String id) {
return new UserScopeTeamsAppInstallationRequestBuilder(getRequestUrlWithAdditionalSegment("installedApps") + "/" + id, getClient(), null);
}
+
+ /**
+ * Gets a builder to execute the method
+ * @return the request builder
+ * @param parameters the parameters for the service method
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationRequestBuilder sendActivityNotification(@Nonnull final UserTeamworkSendActivityNotificationParameterSet parameters) {
+ return new UserTeamworkSendActivityNotificationRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.sendActivityNotification"), getClient(), null, parameters);
+ }
}
diff --git a/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequest.java b/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequest.java
new file mode 100644
index 00000000000..db2b7cd490d
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequest.java
@@ -0,0 +1,56 @@
+// Template Source: BaseMethodRequest.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.models.UserTeamwork;
+import com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequest;
+
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+import com.microsoft.graph.http.BaseRequest;
+import com.microsoft.graph.http.HttpMethod;
+import com.microsoft.graph.core.ClientException;
+import com.microsoft.graph.core.IBaseClient;
+import com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the User Teamwork Send Activity Notification Request.
+ */
+public class UserTeamworkSendActivityNotificationRequest extends BaseRequest {
+ /**
+ * The request for this UserTeamworkSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UserTeamworkSendActivityNotificationRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions, Void.class);
+ }
+
+ /** The body for the method */
+ @Nullable
+ public UserTeamworkSendActivityNotificationParameterSet body;
+ /**
+ * Creates the UserTeamworkSendActivityNotification
+ *
+ * @return a future for the operation
+ */
+ @Nonnull
+ public java.util.concurrent.CompletableFuture postAsync() {
+ return this.sendAsync(HttpMethod.POST, body);
+ }
+
+ /**
+ * Creates the UserTeamworkSendActivityNotification
+ *
+ * @throws ClientException an exception occurs if there was an error while the request was sent
+ */
+ public void post() throws ClientException {
+ this.send(HttpMethod.POST, body);
+ }
+}
diff --git a/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequestBuilder.java b/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequestBuilder.java
new file mode 100644
index 00000000000..2c02f4b809a
--- /dev/null
+++ b/src/main/java/com/microsoft/graph/requests/UserTeamworkSendActivityNotificationRequestBuilder.java
@@ -0,0 +1,76 @@
+// Template Source: BaseMethodRequestBuilder.java.tt
+// ------------------------------------------------------------------------------
+// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
+// ------------------------------------------------------------------------------
+
+package com.microsoft.graph.requests;
+import com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequest;
+import com.microsoft.graph.models.UserTeamwork;
+import com.microsoft.graph.models.TeamworkActivityTopic;
+import com.microsoft.graph.models.ItemBody;
+import com.microsoft.graph.models.KeyValuePair;
+import com.microsoft.graph.http.BaseActionRequestBuilder;
+import com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet;
+import com.microsoft.graph.core.IBaseClient;
+import com.google.gson.JsonElement;
+import javax.annotation.Nullable;
+import javax.annotation.Nonnull;
+
+// **NOTE** This file was generated by a tool and any changes will be overwritten.
+
+/**
+ * The class for the User Teamwork Send Activity Notification Request Builder.
+ */
+public class UserTeamworkSendActivityNotificationRequestBuilder extends BaseActionRequestBuilder {
+
+ /**
+ * The request builder for this UserTeamworkSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ */
+ public UserTeamworkSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ super(requestUrl, client, requestOptions);
+ }
+ private UserTeamworkSendActivityNotificationParameterSet body;
+ /**
+ * The request builder for this UserTeamworkSendActivityNotification
+ *
+ * @param requestUrl the request URL
+ * @param client the service client
+ * @param requestOptions the options for this request
+ * @param parameters the parameters for the service method
+ */
+ public UserTeamworkSendActivityNotificationRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions, @Nonnull final UserTeamworkSendActivityNotificationParameterSet parameters) {
+ super(requestUrl, client, requestOptions);
+ this.body = parameters;
+ }
+
+ /**
+ * Creates the UserTeamworkSendActivityNotificationRequest
+ *
+ * @param requestOptions the options for the request
+ * @return the UserTeamworkSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
+ return buildRequest(getOptions(requestOptions));
+ }
+
+ /**
+ * Creates the UserTeamworkSendActivityNotificationRequest with specific requestOptions instead of the existing requestOptions
+ *
+ * @param requestOptions the options for the request
+ * @return the UserTeamworkSendActivityNotificationRequest instance
+ */
+ @Nonnull
+ public UserTeamworkSendActivityNotificationRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
+ final UserTeamworkSendActivityNotificationRequest request = new UserTeamworkSendActivityNotificationRequest(
+ getRequestUrl(),
+ getClient(),
+ requestOptions);
+ request.body = this.body;
+ return request;
+ }
+}
diff --git a/typeSummary.txt b/typeSummary.txt
index 7ca5ec2e6b1..598c32d9ab2 100644
--- a/typeSummary.txt
+++ b/typeSummary.txt
@@ -907,6 +907,12 @@
FOCUSED
OTHER
UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.InitiatorType
+ USER
+ APPLICATION
+ SYSTEM
+ UNKNOWN_FUTURE_VALUE
+ UNEXPECTED_VALUE
enum com.microsoft.graph.models.InstallIntent
AVAILABLE
REQUIRED
@@ -1492,6 +1498,37 @@
SYSTEM
UNKNOWN_FUTURE_VALUE
UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.ProvisioningAction
+ OTHER
+ CREATE
+ DELETE
+ DISABLE
+ UPDATE
+ STAGED_DELETE
+ UNKNOWN_FUTURE_VALUE
+ UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.ProvisioningResult
+ SUCCESS
+ FAILURE
+ SKIPPED
+ WARNING
+ UNKNOWN_FUTURE_VALUE
+ UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.ProvisioningStatusErrorCategory
+ FAILURE
+ NON_SERVICE_FAILURE
+ SUCCESS
+ UNKNOWN_FUTURE_VALUE
+ UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.ProvisioningStepType
+ IMPORT
+ SCOPING
+ MATCHING
+ PROCESSING
+ REFERENCE_RESOLUTION
+ EXPORT
+ UNKNOWN_FUTURE_VALUE
+ UNEXPECTED_VALUE
enum com.microsoft.graph.models.RatingAppsType
ALL_ALLOWED
ALL_BLOCKED
@@ -1972,6 +2009,10 @@
CREATE_TEAM
UNKNOWN_FUTURE_VALUE
UNEXPECTED_VALUE
+ enum com.microsoft.graph.models.TeamworkActivityTopicSource
+ ENTITY_URL
+ TEXT
+ UNEXPECTED_VALUE
enum com.microsoft.graph.models.ThreatAssessmentContentType
MAIL
URL
@@ -5205,6 +5246,15 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.AadUserNotificationRecipient : com.microsoft.graph.models.TeamworkNotificationRecipient
+ property oDataType : java.lang.String
+ property userId : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.AccessAction
property oDataType : java.lang.String
method additionalDataManager
@@ -6076,6 +6126,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.AppScope : com.microsoft.graph.models.Entity
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property oDataType : java.lang.String
+ property type : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase : com.microsoft.graph.models.DeviceConfiguration
property assignments : com.microsoft.graph.requests.DeviceConfigurationAssignmentCollectionPage
property createdDateTime : java.time.OffsetDateTime
@@ -6435,6 +6496,7 @@
property directoryAudits : com.microsoft.graph.requests.DirectoryAuditCollectionPage
property id : java.lang.String
property oDataType : java.lang.String
+ property provisioning : com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionPage
property restrictedSignIns : com.microsoft.graph.requests.RestrictedSignInCollectionPage
property signIns : com.microsoft.graph.requests.SignInCollectionPage
method additionalDataManager
@@ -7039,6 +7101,16 @@
return type java.util.List
method newBuilder
return type com.microsoft.graph.models.ChannelCompleteMigrationParameterSet$ChannelCompleteMigrationParameterSetBuilder
+ class com.microsoft.graph.models.ChannelIdentity
+ property channelId : java.lang.String
+ property oDataType : java.lang.String
+ property teamId : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.Chat : com.microsoft.graph.models.Entity
property chatType : com.microsoft.graph.models.ChatType
property createdDateTime : java.time.OffsetDateTime
@@ -7046,6 +7118,7 @@
property installedApps : com.microsoft.graph.requests.TeamsAppInstallationCollectionPage
property lastUpdatedDateTime : java.time.OffsetDateTime
property members : com.microsoft.graph.requests.ConversationMemberCollectionPage
+ property messages : com.microsoft.graph.requests.ChatMessageCollectionPage
property oDataType : java.lang.String
property tabs : com.microsoft.graph.requests.TeamsTabCollectionPage
property topic : java.lang.String
@@ -7074,6 +7147,8 @@
class com.microsoft.graph.models.ChatMessage : com.microsoft.graph.models.Entity
property attachments : java.util.List
property body : com.microsoft.graph.models.ItemBody
+ property channelIdentity : com.microsoft.graph.models.ChannelIdentity
+ property chatId : java.lang.String
property createdDateTime : java.time.OffsetDateTime
property deletedDateTime : java.time.OffsetDateTime
property etag : java.lang.String
@@ -7176,6 +7251,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ChatSendActivityNotificationParameterSet
+ property activityType : java.lang.String
+ property chainId : java.lang.Long
+ property previewText : com.microsoft.graph.models.ItemBody
+ property recipient : com.microsoft.graph.models.TeamworkNotificationRecipient
+ property templateParameters : java.util.List
+ property topic : com.microsoft.graph.models.TeamworkActivityTopic
+ method getFunctionOptions
+ return type java.util.List
+ method newBuilder
+ return type com.microsoft.graph.models.ChatSendActivityNotificationParameterSet$ChatSendActivityNotificationParameterSetBuilder
class com.microsoft.graph.models.ChoiceColumn
property allowTextEntry : java.lang.Boolean
property choices : java.util.List
@@ -7922,6 +8008,14 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.DetailsInfo
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.DetectedApp : com.microsoft.graph.models.Entity
property deviceCount : java.lang.Integer
property displayName : java.lang.String
@@ -10647,6 +10741,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.Initiator : com.microsoft.graph.models.Identity
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property initiatorType : com.microsoft.graph.models.InitiatorType
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.InsightIdentity
property address : java.lang.String
property displayName : java.lang.String
@@ -15925,6 +16030,18 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisionedIdentity : com.microsoft.graph.models.Identity
+ property details : com.microsoft.graph.models.DetailsInfo
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property identityType : java.lang.String
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.ProvisionedPlan
property capabilityStatus : java.lang.String
property oDataType : java.lang.String
@@ -15936,6 +16053,88 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningErrorInfo
+ property additionalDetails : java.lang.String
+ property errorCategory : com.microsoft.graph.models.ProvisioningStatusErrorCategory
+ property errorCode : java.lang.String
+ property oDataType : java.lang.String
+ property reason : java.lang.String
+ property recommendedAction : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningObjectSummary : com.microsoft.graph.models.Entity
+ property activityDateTime : java.time.OffsetDateTime
+ property changeId : java.lang.String
+ property cycleId : java.lang.String
+ property durationInMilliseconds : java.lang.Integer
+ property id : java.lang.String
+ property initiatedBy : com.microsoft.graph.models.Initiator
+ property jobId : java.lang.String
+ property modifiedProperties : java.util.List
+ property oDataType : java.lang.String
+ property provisioningAction : com.microsoft.graph.models.ProvisioningAction
+ property provisioningStatusInfo : com.microsoft.graph.models.ProvisioningStatusInfo
+ property provisioningSteps : java.util.List
+ property servicePrincipal : com.microsoft.graph.models.ProvisioningServicePrincipal
+ property sourceIdentity : com.microsoft.graph.models.ProvisionedIdentity
+ property sourceSystem : com.microsoft.graph.models.ProvisioningSystem
+ property targetIdentity : com.microsoft.graph.models.ProvisionedIdentity
+ property targetSystem : com.microsoft.graph.models.ProvisioningSystem
+ property tenantId : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningServicePrincipal : com.microsoft.graph.models.Identity
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningStatusInfo
+ property errorInformation : com.microsoft.graph.models.ProvisioningErrorInfo
+ property oDataType : java.lang.String
+ property status : com.microsoft.graph.models.ProvisioningResult
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningStep
+ property description : java.lang.String
+ property details : com.microsoft.graph.models.DetailsInfo
+ property name : java.lang.String
+ property oDataType : java.lang.String
+ property provisioningStepType : com.microsoft.graph.models.ProvisioningStepType
+ property status : com.microsoft.graph.models.ProvisioningResult
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.ProvisioningSystem : com.microsoft.graph.models.Identity
+ property details : com.microsoft.graph.models.DetailsInfo
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.ProxiedDomain
property ipAddressOrFQDN : java.lang.String
property oDataType : java.lang.String
@@ -16015,6 +16214,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.RbacApplication : com.microsoft.graph.models.Entity
+ property id : java.lang.String
+ property oDataType : java.lang.String
+ property roleAssignments : com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionPage
+ property roleDefinitions : com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.RecentNotebook
property displayName : java.lang.String
property lastAccessedTime : java.time.OffsetDateTime
@@ -16921,6 +17131,14 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.RoleManagement
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.RolePermission
property oDataType : java.lang.String
property resourceActions : java.util.List
@@ -18272,6 +18490,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.TeamSendActivityNotificationParameterSet
+ property activityType : java.lang.String
+ property chainId : java.lang.Long
+ property previewText : com.microsoft.graph.models.ItemBody
+ property recipient : com.microsoft.graph.models.TeamworkNotificationRecipient
+ property templateParameters : java.util.List
+ property topic : com.microsoft.graph.models.TeamworkActivityTopic
+ method getFunctionOptions
+ return type java.util.List
+ method newBuilder
+ return type com.microsoft.graph.models.TeamSendActivityNotificationParameterSet$TeamSendActivityNotificationParameterSetBuilder
class com.microsoft.graph.models.TeamUnarchiveParameterSet
method getFunctionOptions
return type java.util.List
@@ -18385,6 +18614,17 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.TeamworkActivityTopic
+ property oDataType : java.lang.String
+ property source : com.microsoft.graph.models.TeamworkActivityTopicSource
+ property value : java.lang.String
+ property webUrl : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.TeamworkBot : com.microsoft.graph.models.Entity
property id : java.lang.String
property oDataType : java.lang.String
@@ -18405,6 +18645,14 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.TeamworkNotificationRecipient
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.TelecomExpenseManagementPartner : com.microsoft.graph.models.Entity
property appAuthorized : java.lang.Boolean
property displayName : java.lang.String
@@ -18927,6 +19175,53 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.UnifiedRoleAssignment : com.microsoft.graph.models.Entity
+ property appScope : com.microsoft.graph.models.AppScope
+ property appScopeId : java.lang.String
+ property condition : java.lang.String
+ property directoryScope : com.microsoft.graph.models.DirectoryObject
+ property directoryScopeId : java.lang.String
+ property id : java.lang.String
+ property oDataType : java.lang.String
+ property principal : com.microsoft.graph.models.DirectoryObject
+ property principalId : java.lang.String
+ property roleDefinition : com.microsoft.graph.models.UnifiedRoleDefinition
+ property roleDefinitionId : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.UnifiedRoleDefinition : com.microsoft.graph.models.Entity
+ property description : java.lang.String
+ property displayName : java.lang.String
+ property id : java.lang.String
+ property inheritsPermissionsFrom : com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage
+ property isBuiltIn : java.lang.Boolean
+ property isEnabled : java.lang.Boolean
+ property oDataType : java.lang.String
+ property resourceScopes : java.util.List
+ property rolePermissions : java.util.List
+ property templateId : java.lang.String
+ property version : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.UnifiedRolePermission
+ property allowedResourceActions : java.util.List
+ property condition : java.lang.String
+ property excludedResourceActions : java.util.List
+ property oDataType : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
class com.microsoft.graph.models.UnmuteParticipantOperation : com.microsoft.graph.models.CommsOperation
property clientContext : java.lang.String
property id : java.lang.String
@@ -19376,6 +19671,16 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet
+ property activityType : java.lang.String
+ property chainId : java.lang.Long
+ property previewText : com.microsoft.graph.models.ItemBody
+ property templateParameters : java.util.List
+ property topic : com.microsoft.graph.models.TeamworkActivityTopic
+ method getFunctionOptions
+ return type java.util.List
+ method newBuilder
+ return type com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet$UserTeamworkSendActivityNotificationParameterSetBuilder
class com.microsoft.graph.models.UserTranslateExchangeIdsParameterSet
property inputIds : java.util.List
property sourceIdType : com.microsoft.graph.models.ExchangeIdFormat
@@ -30980,7 +31285,7 @@
param arg0 : java.lang.String
method restore
return type com.microsoft.graph.requests.DirectoryObjectRestoreRequestBuilder
- class com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.AppScopeRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -30993,14 +31298,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ return type com.microsoft.graph.models.AppScope
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
+ return type com.microsoft.graph.requests.AppScopeRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ return type com.microsoft.graph.models.AppScope
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -31038,24 +31343,24 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppScope
method patch
- return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ return type com.microsoft.graph.models.AppScope
+ param arg0 : com.microsoft.graph.models.AppScope
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppScope
method post
- return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ return type com.microsoft.graph.models.AppScope
+ param arg0 : com.microsoft.graph.models.AppScope
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppScope
method put
- return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
- param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ return type com.microsoft.graph.models.AppScope
+ param arg0 : com.microsoft.graph.models.AppScope
method select
- return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
+ return type com.microsoft.graph.requests.AppScopeRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -31081,33 +31386,13 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
- method assign
- return type com.microsoft.graph.requests.DeviceConfigurationAssignCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DeviceConfigurationAssignParameterSet
- method assignments
- return type com.microsoft.graph.requests.DeviceConfigurationAssignmentCollectionRequestBuilder
- method assignments
- return type com.microsoft.graph.requests.DeviceConfigurationAssignmentRequestBuilder
- param arg0 : java.lang.String
+ class com.microsoft.graph.requests.AppScopeRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
+ return type com.microsoft.graph.requests.AppScopeRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
+ return type com.microsoft.graph.requests.AppScopeRequest
param arg0 : java.util.List
- method deviceSettingStateSummaries
- return type com.microsoft.graph.requests.SettingStateDeviceSummaryCollectionRequestBuilder
- method deviceSettingStateSummaries
- return type com.microsoft.graph.requests.SettingStateDeviceSummaryRequestBuilder
- param arg0 : java.lang.String
- method deviceStatusOverview
- return type com.microsoft.graph.requests.DeviceConfigurationDeviceOverviewRequestBuilder
- method deviceStatuses
- return type com.microsoft.graph.requests.DeviceConfigurationDeviceStatusCollectionRequestBuilder
- method deviceStatuses
- return type com.microsoft.graph.requests.DeviceConfigurationDeviceStatusRequestBuilder
- param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -31121,14 +31406,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method userStatusOverview
- return type com.microsoft.graph.requests.DeviceConfigurationUserOverviewRequestBuilder
- method userStatuses
- return type com.microsoft.graph.requests.DeviceConfigurationUserStatusCollectionRequestBuilder
- method userStatuses
- return type com.microsoft.graph.requests.DeviceConfigurationUserStatusRequestBuilder
- param arg0 : java.lang.String
- class com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -31140,11 +31418,15 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
+ return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
param arg0 : java.lang.String
method get
- return type java.lang.String
+ return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -31180,8 +31462,26 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method patch
+ return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method post
+ return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ method put
+ return type com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
+ param arg0 : com.microsoft.graph.models.AppleDeviceFeaturesConfigurationBase
method select
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
+ return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -31207,13 +31507,33 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method assign
+ return type com.microsoft.graph.requests.DeviceConfigurationAssignCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DeviceConfigurationAssignParameterSet
+ method assignments
+ return type com.microsoft.graph.requests.DeviceConfigurationAssignmentCollectionRequestBuilder
+ method assignments
+ return type com.microsoft.graph.requests.DeviceConfigurationAssignmentRequestBuilder
+ param arg0 : java.lang.String
method buildRequest
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
+ return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
+ return type com.microsoft.graph.requests.AppleDeviceFeaturesConfigurationBaseRequest
param arg0 : java.util.List
+ method deviceSettingStateSummaries
+ return type com.microsoft.graph.requests.SettingStateDeviceSummaryCollectionRequestBuilder
+ method deviceSettingStateSummaries
+ return type com.microsoft.graph.requests.SettingStateDeviceSummaryRequestBuilder
+ param arg0 : java.lang.String
+ method deviceStatusOverview
+ return type com.microsoft.graph.requests.DeviceConfigurationDeviceOverviewRequestBuilder
+ method deviceStatuses
+ return type com.microsoft.graph.requests.DeviceConfigurationDeviceStatusCollectionRequestBuilder
+ method deviceStatuses
+ return type com.microsoft.graph.requests.DeviceConfigurationDeviceStatusRequestBuilder
+ param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -31227,7 +31547,14 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ApplePushNotificationCertificateRequest : com.microsoft.graph.http.BaseRequest
+ method userStatusOverview
+ return type com.microsoft.graph.requests.DeviceConfigurationUserOverviewRequestBuilder
+ method userStatuses
+ return type com.microsoft.graph.requests.DeviceConfigurationUserStatusCollectionRequestBuilder
+ method userStatuses
+ return type com.microsoft.graph.requests.DeviceConfigurationUserStatusRequestBuilder
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -31239,15 +31566,11 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method delete
- return type com.microsoft.graph.models.ApplePushNotificationCertificate
- method deleteAsync
- return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ return type java.lang.String
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -31283,26 +31606,8 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method patchAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
- method patch
- return type com.microsoft.graph.models.ApplePushNotificationCertificate
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
- method post
- return type com.microsoft.graph.models.ApplePushNotificationCertificate
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
- method putAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
- method put
- return type com.microsoft.graph.models.ApplePushNotificationCertificate
- param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
method select
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -31328,15 +31633,13 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ApplePushNotificationCertificateRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequest
param arg0 : java.util.List
- method downloadApplePushNotificationCertificateSigningRequest
- return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -31350,9 +31653,8 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ApplicationAddKeyRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ApplePushNotificationCertificateRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
- property body : com.microsoft.graph.models.ApplicationAddKeyParameterSet
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -31363,9 +31665,17 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.ApplicationAddKeyRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -31399,12 +31709,26 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method post
- return type com.microsoft.graph.models.KeyCredential
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
+ method patch
+ return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
method postAsync
return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
+ method post
+ return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
+ method put
+ return type com.microsoft.graph.models.ApplePushNotificationCertificate
+ param arg0 : com.microsoft.graph.models.ApplePushNotificationCertificate
method select
- return type com.microsoft.graph.requests.ApplicationAddKeyRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -31430,13 +31754,15 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ApplicationAddKeyRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ class com.microsoft.graph.requests.ApplePushNotificationCertificateRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ApplicationAddKeyRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ApplicationAddKeyRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateRequest
param arg0 : java.util.List
+ method downloadApplePushNotificationCertificateSigningRequest
+ return type com.microsoft.graph.requests.ApplePushNotificationCertificateDownloadApplePushNotificationCertificateSigningRequestRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -31450,9 +31776,9 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ApplicationAddPasswordRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ApplicationAddKeyRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
- property body : com.microsoft.graph.models.ApplicationAddPasswordParameterSet
+ property body : com.microsoft.graph.models.ApplicationAddKeyParameterSet
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -31464,7 +31790,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
+ return type com.microsoft.graph.requests.ApplicationAddKeyRequest
param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -31500,11 +31826,11 @@
method getUseCaches
return type boolean
method post
- return type com.microsoft.graph.models.PasswordCredential
+ return type com.microsoft.graph.models.KeyCredential
method postAsync
return type java.util.concurrent.CompletableFuture
method select
- return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
+ return type com.microsoft.graph.requests.ApplicationAddKeyRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -31530,12 +31856,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ApplicationAddPasswordRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ class com.microsoft.graph.requests.ApplicationAddKeyRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
+ return type com.microsoft.graph.requests.ApplicationAddKeyRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
+ return type com.microsoft.graph.requests.ApplicationAddKeyRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -31550,20 +31876,9 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ApplicationCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.ApplicationCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ class com.microsoft.graph.requests.ApplicationAddPasswordRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ property body : com.microsoft.graph.models.ApplicationAddPasswordParameterSet
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -31574,30 +31889,15 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- method count
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.http.BaseCollectionPage
- method getAsync
- return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
+ method getFunctionOptions
+ return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -31613,29 +31913,31 @@
return type int
method getOptions
return type java.util.List
+ method getQueryOptions
+ return type java.util.List
method getRequestUrl
return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method orderBy
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : java.lang.String
+ method post
+ return type com.microsoft.graph.models.PasswordCredential
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.Application
- method post
- return type com.microsoft.graph.models.Application
- param arg0 : com.microsoft.graph.models.Application
method select
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -31651,38 +31953,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.ApplicationCollectionRequest
- param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ApplicationCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.ApplicationAddPasswordRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationAddPasswordRequest
param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method delta
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequestBuilder
- method getAvailableExtensionProperties
- return type com.microsoft.graph.requests.DirectoryObjectGetAvailableExtensionPropertiesCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetAvailableExtensionPropertiesParameterSet
- method getByIds
- return type com.microsoft.graph.requests.DirectoryObjectGetByIdsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetByIdsParameterSet
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -31696,28 +31976,9 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method validateProperties
- return type com.microsoft.graph.requests.DirectoryObjectValidatePropertiesRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectValidatePropertiesParameterSet
- class com.microsoft.graph.requests.ApplicationCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.ApplicationDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
- property deltaLink : java.lang.String
+ class com.microsoft.graph.requests.ApplicationCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
- method deltaLink
- return type java.lang.String
method getCount
return type java.lang.Long
method getCurrentPage
@@ -31728,7 +31989,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.ApplicationDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ class com.microsoft.graph.requests.ApplicationCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -31743,21 +32004,186 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
method count
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
param arg0 : boolean
- method deltaLink
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
- param arg0 : java.lang.String
- method deltaToken
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
- param arg0 : java.lang.String
method expand
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.Application
+ method post
+ return type com.microsoft.graph.models.Application
+ param arg0 : com.microsoft.graph.models.Application
+ method select
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.ApplicationCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.ApplicationCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method delta
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequestBuilder
+ method getAvailableExtensionProperties
+ return type com.microsoft.graph.requests.DirectoryObjectGetAvailableExtensionPropertiesCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetAvailableExtensionPropertiesParameterSet
+ method getByIds
+ return type com.microsoft.graph.requests.DirectoryObjectGetByIdsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetByIdsParameterSet
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method validateProperties
+ return type com.microsoft.graph.requests.DirectoryObjectValidatePropertiesRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectValidatePropertiesParameterSet
+ class com.microsoft.graph.requests.ApplicationCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.ApplicationDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
+ property deltaLink : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method deltaLink
+ return type java.lang.String
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.ApplicationDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ param arg0 : boolean
+ method deltaLink
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method deltaToken
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method expand
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.ApplicationDeltaCollectionRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -33824,6 +34250,11 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
+ method provisioning
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder
+ method provisioning
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryRequestBuilder
+ param arg0 : java.lang.String
method restrictedSignIns
return type com.microsoft.graph.requests.RestrictedSignInCollectionRequestBuilder
method restrictedSignIns
@@ -41147,11 +41578,113 @@
method members
return type com.microsoft.graph.requests.ConversationMemberRequestBuilder
param arg0 : java.lang.String
+ method messages
+ return type com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder
+ method messages
+ return type com.microsoft.graph.requests.ChatMessageRequestBuilder
+ param arg0 : java.lang.String
+ method sendActivityNotification
+ return type com.microsoft.graph.requests.ChatSendActivityNotificationRequestBuilder
+ param arg0 : com.microsoft.graph.models.ChatSendActivityNotificationParameterSet
method tabs
return type com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder
method tabs
return type com.microsoft.graph.requests.TeamsTabRequestBuilder
param arg0 : java.lang.String
+ class com.microsoft.graph.requests.ChatSendActivityNotificationRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ property body : com.microsoft.graph.models.ChatSendActivityNotificationParameterSet
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method post
+ return type void
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.ChatSendActivityNotificationRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.ChatSendActivityNotificationRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.ChatSendActivityNotificationRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
class com.microsoft.graph.requests.ChatWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
@@ -72153,6 +72686,8 @@
return type com.microsoft.graph.requests.PrintRequestBuilder
method reports
return type com.microsoft.graph.requests.ReportRootRequestBuilder
+ method roleManagement
+ return type com.microsoft.graph.requests.RoleManagementRequestBuilder
method schemaExtensions
return type com.microsoft.graph.requests.SchemaExtensionCollectionRequestBuilder
method schemaExtensions
@@ -120173,8 +120708,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.RecordOperationRequest : com.microsoft.graph.http.BaseRequest
- property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -120185,23 +120732,30 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method delete
- return type com.microsoft.graph.models.RecordOperation
- method deleteAsync
- return type java.util.concurrent.CompletableFuture
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.RecordOperationRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.RecordOperation
+ return type com.microsoft.graph.http.BaseCollectionPage
method getAsync
return type java.util.concurrent.CompletableFuture
- method getClient
- return type com.microsoft.graph.core.IBaseClient
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
method getDelay
return type long
- method getFunctionOptions
- return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -120217,45 +120771,29 @@
return type int
method getOptions
return type java.util.List
- method getQueryOptions
- return type java.util.List
method getRequestUrl
return type java.net.URL
- method getResponseType
- return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method patchAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RecordOperation
- method patch
- return type com.microsoft.graph.models.RecordOperation
- param arg0 : com.microsoft.graph.models.RecordOperation
+ method orderBy
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : java.lang.String
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RecordOperation
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method post
- return type com.microsoft.graph.models.RecordOperation
- param arg0 : com.microsoft.graph.models.RecordOperation
- method putAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RecordOperation
- method put
- return type com.microsoft.graph.models.RecordOperation
- param arg0 : com.microsoft.graph.models.RecordOperation
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method select
- return type com.microsoft.graph.requests.RecordOperationRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
- method setHttpMethod
- return type void
- param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -120271,16 +120809,30 @@
method setUseCaches
return type void
param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequest
+ param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.RecordOperationRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.RecordOperationRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.RecordOperationRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -120294,7 +120846,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReferenceAttachmentRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -120307,14 +120872,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.ReferenceAttachment
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.ReferenceAttachment
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -120352,24 +120917,24 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method patch
- return type com.microsoft.graph.models.ReferenceAttachment
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method post
- return type com.microsoft.graph.models.ReferenceAttachment
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method put
- return type com.microsoft.graph.models.ReferenceAttachment
- param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ return type com.microsoft.graph.models.ProvisioningObjectSummary
+ param arg0 : com.microsoft.graph.models.ProvisioningObjectSummary
method select
- return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -120395,12 +120960,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReferenceAttachmentRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.ProvisioningObjectSummaryRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ return type com.microsoft.graph.requests.ProvisioningObjectSummaryRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -120415,7 +120980,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.RbacApplicationRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -120427,6 +120992,17 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.RbacApplication
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.RbacApplicationRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.RbacApplication
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -120460,10 +121036,27 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method post
- return type void
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RbacApplication
+ method patch
+ return type com.microsoft.graph.models.RbacApplication
+ param arg0 : com.microsoft.graph.models.RbacApplication
method postAsync
return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RbacApplication
+ method post
+ return type com.microsoft.graph.models.RbacApplication
+ param arg0 : com.microsoft.graph.models.RbacApplication
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RbacApplication
+ method put
+ return type com.microsoft.graph.models.RbacApplication
+ param arg0 : com.microsoft.graph.models.RbacApplication
+ method select
+ return type com.microsoft.graph.requests.RbacApplicationRequest
+ param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
@@ -120488,12 +121081,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ class com.microsoft.graph.requests.RbacApplicationRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest
+ return type com.microsoft.graph.requests.RbacApplicationRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest
+ return type com.microsoft.graph.requests.RbacApplicationRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -120508,20 +121101,18 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method roleAssignments
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder
+ method roleAssignments
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentRequestBuilder
+ param arg0 : java.lang.String
+ method roleDefinitions
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder
+ method roleDefinitions
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.RecordOperationRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -120532,30 +121123,23 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- method count
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : boolean
+ method delete
+ return type com.microsoft.graph.models.RecordOperation
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ return type com.microsoft.graph.requests.RecordOperationRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.http.BaseCollectionPage
+ return type com.microsoft.graph.models.RecordOperation
method getAsync
return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
+ method getFunctionOptions
+ return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -120571,29 +121155,45 @@
return type int
method getOptions
return type java.util.List
+ method getQueryOptions
+ return type java.util.List
method getRequestUrl
return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method orderBy
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : java.lang.String
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RecordOperation
+ method patch
+ return type com.microsoft.graph.models.RecordOperation
+ param arg0 : com.microsoft.graph.models.RecordOperation
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ param arg0 : com.microsoft.graph.models.RecordOperation
method post
- return type com.microsoft.graph.models.RemoteAssistancePartner
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ return type com.microsoft.graph.models.RecordOperation
+ param arg0 : com.microsoft.graph.models.RecordOperation
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RecordOperation
+ method put
+ return type com.microsoft.graph.models.RecordOperation
+ param arg0 : com.microsoft.graph.models.RecordOperation
method select
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ return type com.microsoft.graph.requests.RecordOperationRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -120609,30 +121209,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
- param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.RecordOperationRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.RecordOperationRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.RecordOperationRequest
param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -120646,20 +121232,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReferenceAttachmentRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -120671,6 +121244,17 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.ReferenceAttachment
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.ReferenceAttachment
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -120704,10 +121288,27 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method post
- return type void
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ method patch
+ return type com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
method postAsync
return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ method post
+ return type com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ method put
+ return type com.microsoft.graph.models.ReferenceAttachment
+ param arg0 : com.microsoft.graph.models.ReferenceAttachment
+ method select
+ return type com.microsoft.graph.requests.ReferenceAttachmentRequest
+ param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
@@ -120732,12 +121333,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ class com.microsoft.graph.requests.ReferenceAttachmentRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest
+ return type com.microsoft.graph.requests.ReferenceAttachmentRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest
+ return type com.microsoft.graph.requests.ReferenceAttachmentRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -120752,7 +121353,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.RemoteAssistancePartnerRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -120764,17 +121365,6 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method delete
- return type com.microsoft.graph.models.RemoteAssistancePartner
- method deleteAsync
- return type java.util.concurrent.CompletableFuture
- method expand
- return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
- param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.models.RemoteAssistancePartner
- method getAsync
- return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -120808,27 +121398,10 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method patchAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
- method patch
- return type com.microsoft.graph.models.RemoteAssistancePartner
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
method post
- return type com.microsoft.graph.models.RemoteAssistancePartner
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
- method putAsync
+ return type void
+ method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
- method put
- return type com.microsoft.graph.models.RemoteAssistancePartner
- param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
- method select
- return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
- param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
@@ -120853,17 +121426,13 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.RemoteAssistancePartnerRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
- method beginOnboarding
- return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequestBuilder
+ class com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequest
param arg0 : java.util.List
- method disconnect
- return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -120877,15 +121446,52 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportContentStreamRequest : com.microsoft.graph.http.BaseStreamRequest
+ class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
method addHeader
return type void
param arg0 : java.lang.String
param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : java.lang.String
method get
- return type java.io.InputStream
+ return type com.microsoft.graph.http.BaseCollectionPage
method getAsync
return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
method getDelay
return type long
method getHeaders
@@ -120911,12 +121517,18 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method putAsync
+ method orderBy
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : [B
- method put
- return type com.microsoft.graph.models.Report
- param arg0 : [B
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method post
+ return type com.microsoft.graph.models.RemoteAssistancePartner
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method select
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
@@ -120935,16 +121547,30 @@
method setUseCaches
return type void
param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequest
+ param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportContentStreamRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportContentStreamRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportContentStreamRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -120958,7 +121584,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.RemoteAssistancePartnerCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -120970,13 +121609,6 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method expand
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
- param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.models.Report
- method getAsync
- return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -121010,9 +121642,10 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method select
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
- param arg0 : java.lang.String
+ method post
+ return type void
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
method setDelay
return type void
param arg0 : long
@@ -121037,12 +121670,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121057,7 +121690,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.RemoteAssistancePartnerRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121069,11 +121702,15 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.RemoteAssistancePartner
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.Report
+ return type com.microsoft.graph.models.RemoteAssistancePartner
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -121109,8 +121746,26 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method patch
+ return type com.microsoft.graph.models.RemoteAssistancePartner
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method post
+ return type com.microsoft.graph.models.RemoteAssistancePartner
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
+ method put
+ return type com.microsoft.graph.models.RemoteAssistancePartner
+ param arg0 : com.microsoft.graph.models.RemoteAssistancePartner
method select
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121136,13 +121791,17 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.RemoteAssistancePartnerRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method beginOnboarding
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerBeginOnboardingRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerRequest
param arg0 : java.util.List
+ method disconnect
+ return type com.microsoft.graph.requests.RemoteAssistancePartnerDisconnectRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -121156,31 +121815,17 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest : com.microsoft.graph.http.BaseRequest
- property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
- method addFunctionOption
- return type void
- param arg0 : com.microsoft.graph.options.FunctionOption
+ class com.microsoft.graph.requests.ReportContentStreamRequest : com.microsoft.graph.http.BaseStreamRequest
method addHeader
return type void
param arg0 : java.lang.String
param arg1 : java.lang.String
- method addQueryOption
- return type void
- param arg0 : com.microsoft.graph.options.QueryOption
- method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
- param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.Report
+ return type java.io.InputStream
method getAsync
return type java.util.concurrent.CompletableFuture
- method getClient
- return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
- method getFunctionOptions
- return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -121196,27 +121841,23 @@
return type int
method getOptions
return type java.util.List
- method getQueryOptions
- return type java.util.List
method getRequestUrl
return type java.net.URL
- method getResponseType
- return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method select
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
- param arg0 : java.lang.String
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : [B
+ method put
+ return type com.microsoft.graph.models.Report
+ param arg0 : [B
method setDelay
return type void
param arg0 : long
- method setHttpMethod
- return type void
- param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -121235,12 +121876,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportContentStreamRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
+ return type com.microsoft.graph.requests.ReportContentStreamRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
+ return type com.microsoft.graph.requests.ReportContentStreamRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121255,7 +121896,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121268,7 +121909,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121308,7 +121949,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121334,12 +121975,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationDeviceActivityRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121354,7 +121995,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121367,7 +122008,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121407,7 +122048,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121433,12 +122074,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootDeviceConfigurationUserActivityRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121453,7 +122094,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121466,7 +122107,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121506,7 +122147,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121532,12 +122173,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityCountsRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121552,7 +122193,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121565,7 +122206,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121605,7 +122246,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121631,12 +122272,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserCountsRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121651,7 +122292,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121664,7 +122305,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121704,7 +122345,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121730,12 +122371,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailActivityUserDetailRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121750,7 +122391,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -121763,7 +122404,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -121803,7 +122444,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -121829,12 +122470,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageAppsUserCountsRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -121849,20 +122490,8 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest : com.microsoft.graph.http.BaseFunctionCollectionRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -121873,30 +122502,19 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- method count
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.http.BaseCollectionPage
+ return type com.microsoft.graph.models.Report
method getAsync
return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
+ method getFunctionOptions
+ return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -121912,23 +122530,27 @@
return type int
method getOptions
return type java.util.List
+ method getQueryOptions
+ return type java.util.List
method getRequestUrl
return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method orderBy
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : java.lang.String
method select
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -121944,31 +122566,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
- param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : java.util.List
- method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserCountsRequest
param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -121982,20 +122589,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -122008,7 +122602,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -122048,7 +122642,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -122074,12 +122668,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageUserDetailRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -122094,7 +122688,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -122107,7 +122701,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -122147,7 +122741,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -122173,12 +122767,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetEmailAppUsageVersionsUserCountsRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -122193,8 +122787,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest : com.microsoft.graph.http.BaseRequest
- property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest : com.microsoft.graph.http.BaseFunctionCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -122205,19 +122811,30 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.Report
+ return type com.microsoft.graph.http.BaseCollectionPage
method getAsync
return type java.util.concurrent.CompletableFuture
- method getClient
- return type com.microsoft.graph.core.IBaseClient
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
method getDelay
return type long
- method getFunctionOptions
- return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -122233,27 +122850,23 @@
return type int
method getOptions
return type java.util.List
- method getQueryOptions
- return type java.util.List
method getRequestUrl
return type java.net.URL
- method getResponseType
- return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : java.lang.String
method select
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
- method setHttpMethod
- return type void
- param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -122269,16 +122882,31 @@
method setUseCaches
return type void
param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
+ param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionRequest
param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -122292,7 +122920,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetGroupArchivedPrintJobsCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -122305,7 +122946,7 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -122345,7 +122986,7 @@
method getUseCaches
return type boolean
method select
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -122371,12 +123012,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageDetailRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -122391,7 +123032,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.ReportRootGetOffice365ActivationCountsRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -122404,7 +123045,304 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method expand
- return type com.microsoft.graph.requests.ReportRootGetOffice365ActivationCountsRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.Report
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method select
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageMailboxCountsRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method expand
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.Report
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method select
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageQuotaStatusMailboxCountsRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method expand
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.Report
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method select
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequestBuilder : com.microsoft.graph.http.BaseFunctionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.ReportRootGetMailboxUsageStorageRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.ReportRootGetOffice365ActivationCountsRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method expand
+ return type com.microsoft.graph.requests.ReportRootGetOffice365ActivationCountsRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.models.Report
@@ -130618,6 +131556,127 @@
param arg0 : java.lang.String
method reference
return type com.microsoft.graph.http.BaseReferenceRequestBuilder
+ class com.microsoft.graph.requests.RoleManagementRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.RoleManagement
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.RoleManagementRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.RoleManagement
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method patch
+ return type com.microsoft.graph.models.RoleManagement
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method post
+ return type com.microsoft.graph.models.RoleManagement
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method put
+ return type com.microsoft.graph.models.RoleManagement
+ param arg0 : com.microsoft.graph.models.RoleManagement
+ method select
+ return type com.microsoft.graph.requests.RoleManagementRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.RoleManagementRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.RoleManagementRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.RoleManagementRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
class com.microsoft.graph.requests.RoomCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
@@ -141338,12 +142397,16 @@
return type com.microsoft.graph.requests.ChannelRequestBuilder
method schedule
return type com.microsoft.graph.requests.ScheduleRequestBuilder
+ method sendActivityNotification
+ return type com.microsoft.graph.requests.TeamSendActivityNotificationRequestBuilder
+ param arg0 : com.microsoft.graph.models.TeamSendActivityNotificationParameterSet
method template
return type com.microsoft.graph.requests.TeamsTemplateWithReferenceRequestBuilder
method unarchive
return type com.microsoft.graph.requests.TeamUnarchiveRequestBuilder
- class com.microsoft.graph.requests.TeamUnarchiveRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.TeamSendActivityNotificationRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ property body : com.microsoft.graph.models.TeamSendActivityNotificationParameterSet
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -141415,12 +142478,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TeamUnarchiveRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ class com.microsoft.graph.requests.TeamSendActivityNotificationRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.TeamUnarchiveRequest
+ return type com.microsoft.graph.requests.TeamSendActivityNotificationRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TeamUnarchiveRequest
+ return type com.microsoft.graph.requests.TeamSendActivityNotificationRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -141435,309 +142498,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TeamsAppCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TeamsAppCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
- method addFunctionOption
- return type void
- param arg0 : com.microsoft.graph.options.FunctionOption
- method addHeader
- return type void
- param arg0 : java.lang.String
- param arg1 : java.lang.String
- method addQueryOption
- return type void
- param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- method count
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : boolean
- method expand
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.http.BaseCollectionPage
- method getAsync
- return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
- method getDelay
- return type long
- method getHeaders
- return type java.util.List
- method getHttpMethod
- return type com.microsoft.graph.http.HttpMethod
- method getHttpRequest
- return type java.lang.Object
- method getHttpRequest
- return type java.lang.Object
- param arg0 : java.lang.Object
- method getMaxRedirects
- return type int
- method getMaxRetries
- return type int
- method getOptions
- return type java.util.List
- method getRequestUrl
- return type java.net.URL
- method getShouldRedirect
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method getShouldRetry
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method getUseCaches
- return type boolean
- method orderBy
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : java.lang.String
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TeamsApp
- method post
- return type com.microsoft.graph.models.TeamsApp
- param arg0 : com.microsoft.graph.models.TeamsApp
- method select
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : java.lang.String
- method setDelay
- return type void
- param arg0 : long
- method setMaxRedirects
- return type void
- param arg0 : int
- method setMaxRetries
- return type void
- param arg0 : int
- method setShouldRedirect
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method setShouldRetry
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method setUseCaches
- return type void
- param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.TeamsAppCollectionRequest
- param arg0 : int
- method withHttpMethod
- return type com.microsoft.graph.http.IHttpRequest
- param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TeamsAppCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method getClient
- return type com.microsoft.graph.core.IBaseClient
- method getOptions
- return type java.util.List
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method getRequestUrl
- return type java.lang.String
- method getRequestUrlWithAdditionalParameter
- return type java.lang.String
- param arg0 : java.lang.String
- method getRequestUrlWithAdditionalSegment
- return type java.lang.String
- param arg0 : java.lang.String
- class com.microsoft.graph.requests.TeamsAppCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TeamsAppDefinitionCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
- method addFunctionOption
- return type void
- param arg0 : com.microsoft.graph.options.FunctionOption
- method addHeader
- return type void
- param arg0 : java.lang.String
- param arg1 : java.lang.String
- method addQueryOption
- return type void
- param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- method count
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : boolean
- method expand
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.http.BaseCollectionPage
- method getAsync
- return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
- method getDelay
- return type long
- method getHeaders
- return type java.util.List
- method getHttpMethod
- return type com.microsoft.graph.http.HttpMethod
- method getHttpRequest
- return type java.lang.Object
- method getHttpRequest
- return type java.lang.Object
- param arg0 : java.lang.Object
- method getMaxRedirects
- return type int
- method getMaxRetries
- return type int
- method getOptions
- return type java.util.List
- method getRequestUrl
- return type java.net.URL
- method getShouldRedirect
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method getShouldRetry
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method getUseCaches
- return type boolean
- method orderBy
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : java.lang.String
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TeamsAppDefinition
- method post
- return type com.microsoft.graph.models.TeamsAppDefinition
- param arg0 : com.microsoft.graph.models.TeamsAppDefinition
- method select
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : java.lang.String
- method setDelay
- return type void
- param arg0 : long
- method setMaxRedirects
- return type void
- param arg0 : int
- method setMaxRetries
- return type void
- param arg0 : int
- method setShouldRedirect
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method setShouldRetry
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method setUseCaches
- return type void
- param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
- param arg0 : int
- method withHttpMethod
- return type com.microsoft.graph.http.IHttpRequest
- param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method getClient
- return type com.microsoft.graph.core.IBaseClient
- method getOptions
- return type java.util.List
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method getRequestUrl
- return type java.lang.String
- method getRequestUrlWithAdditionalParameter
- return type java.lang.String
- param arg0 : java.lang.String
- method getRequestUrlWithAdditionalSegment
- return type java.lang.String
- param arg0 : java.lang.String
- class com.microsoft.graph.requests.TeamsAppDefinitionCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TeamsAppDefinitionReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
+ class com.microsoft.graph.requests.TeamUnarchiveRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -141749,13 +142510,408 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method delete
- return type java.lang.Object
- method deleteAsync
- return type java.util.concurrent.CompletableFuture
- method expand
- return type com.microsoft.graph.requests.TeamsAppDefinitionReferenceRequest
- param arg0 : java.lang.String
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method post
+ return type void
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TeamUnarchiveRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.TeamUnarchiveRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.TeamUnarchiveRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TeamsAppCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TeamsAppCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TeamsApp
+ method post
+ return type com.microsoft.graph.models.TeamsApp
+ param arg0 : com.microsoft.graph.models.TeamsApp
+ method select
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TeamsAppCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TeamsAppCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TeamsAppCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TeamsAppDefinitionCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TeamsAppDefinition
+ method post
+ return type com.microsoft.graph.models.TeamsAppDefinition
+ param arg0 : com.microsoft.graph.models.TeamsAppDefinition
+ method select
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TeamsAppDefinitionCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TeamsAppDefinitionCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TeamsAppDefinitionReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type java.lang.Object
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.TeamsAppDefinitionReferenceRequest
+ param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -147680,13 +148836,760 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.TodoRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.TodoRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.TodoRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method lists
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequestBuilder
+ method lists
+ return type com.microsoft.graph.requests.TodoTaskListRequestBuilder
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TodoTaskCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TodoTaskCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTask
+ method post
+ return type com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TodoTask
+ method select
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TodoTaskCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method delta
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequestBuilder
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TodoTaskCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TodoTaskDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
+ property deltaLink : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method deltaLink
+ return type java.lang.String
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : boolean
+ method deltaLink
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method deltaToken
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method expand
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method select
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TodoTaskDeltaCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ param arg0 : java.util.List
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TodoTaskDeltaCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TodoTaskListCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TodoTaskListCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method post
+ return type com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method select
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TodoTaskListCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method delta
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequestBuilder
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TodoTaskListCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TodoTaskListDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
+ property deltaLink : java.lang.String
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method deltaLink
+ return type java.lang.String
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : boolean
+ method deltaLink
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method deltaToken
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method expand
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method select
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ param arg0 : java.util.List
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TodoTaskListDeltaCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TodoTaskListRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type com.microsoft.graph.models.TodoTaskList
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.TodoTaskListRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.TodoTaskList
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method patch
+ return type com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method post
+ return type com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method put
+ return type com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TodoTaskList
+ method select
+ return type com.microsoft.graph.requests.TodoTaskListRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TodoTaskListRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.TodoRequest
+ return type com.microsoft.graph.requests.TodoTaskListRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TodoRequest
+ return type com.microsoft.graph.requests.TodoTaskListRequest
param arg0 : java.util.List
+ method extensions
+ return type com.microsoft.graph.requests.ExtensionCollectionRequestBuilder
+ method extensions
+ return type com.microsoft.graph.requests.ExtensionRequestBuilder
+ param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -147700,25 +149603,13 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method lists
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequestBuilder
- method lists
- return type com.microsoft.graph.requests.TodoTaskListRequestBuilder
+ method tasks
+ return type com.microsoft.graph.requests.TodoTaskCollectionRequestBuilder
+ method tasks
+ return type com.microsoft.graph.requests.TodoTaskRequestBuilder
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TodoTaskCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ class com.microsoft.graph.requests.TodoTaskRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -147729,30 +149620,23 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- method count
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : boolean
+ method delete
+ return type com.microsoft.graph.models.TodoTask
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ return type com.microsoft.graph.requests.TodoTaskRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.http.BaseCollectionPage
+ return type com.microsoft.graph.models.TodoTask
method getAsync
return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
+ method getFunctionOptions
+ return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -147768,29 +149652,45 @@
return type int
method getOptions
return type java.util.List
+ method getQueryOptions
+ return type java.util.List
method getRequestUrl
return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method orderBy
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : java.lang.String
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTask
+ method patch
+ return type com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TodoTask
method postAsync
return type java.util.concurrent.CompletableFuture
param arg0 : com.microsoft.graph.models.TodoTask
method post
return type com.microsoft.graph.models.TodoTask
param arg0 : com.microsoft.graph.models.TodoTask
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TodoTask
+ method put
+ return type com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TodoTask
method select
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
+ return type com.microsoft.graph.requests.TodoTaskRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -147806,32 +149706,21 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.TodoTaskCollectionRequest
- param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.TodoTaskRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.TodoTaskRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.TodoTaskRequest
param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
+ method extensions
+ return type com.microsoft.graph.requests.ExtensionCollectionRequestBuilder
+ method extensions
+ return type com.microsoft.graph.requests.ExtensionRequestBuilder
param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method delta
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -147845,25 +149734,14 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TodoTaskDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
- property deltaLink : java.lang.String
+ method linkedResources
+ return type com.microsoft.graph.requests.LinkedResourceCollectionRequestBuilder
+ method linkedResources
+ return type com.microsoft.graph.requests.LinkedResourceRequestBuilder
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
- method deltaLink
- return type java.lang.String
method getCount
return type java.lang.Long
method getCurrentPage
@@ -147874,7 +149752,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -147889,21 +149767,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
method count
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : boolean
- method deltaLink
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
- param arg0 : java.lang.String
- method deltaToken
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
- param arg0 : java.lang.String
method expand
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -147939,10 +149811,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ method post
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method select
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -147962,25 +149840,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
- param arg0 : int
method top
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskDeltaCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequestBuilder : com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
- method buildRequest
- return type com.microsoft.graph.requests.TodoTaskDeltaCollectionRequest
- param arg0 : java.util.List
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : java.util.List
@@ -148000,33 +149869,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskDeltaCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TodoTaskListCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TodoTaskListCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -148041,15 +149884,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
method count
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -148085,16 +149928,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : java.lang.String
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method post
- return type com.microsoft.graph.models.TodoTaskList
- param arg0 : com.microsoft.graph.models.TodoTaskList
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method select
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148115,18 +149958,18 @@
return type void
param arg0 : boolean
method skipToken
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : java.lang.String
method skip
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : int
method top
- return type com.microsoft.graph.requests.TodoTaskListCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskListCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -148138,8 +149981,12 @@
param arg0 : java.lang.String
method count
return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method delta
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequestBuilder
+ method getAvailableExtensionProperties
+ return type com.microsoft.graph.requests.DirectoryObjectGetAvailableExtensionPropertiesCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetAvailableExtensionPropertiesParameterSet
+ method getByIds
+ return type com.microsoft.graph.requests.DirectoryObjectGetByIdsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetByIdsParameterSet
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -148153,7 +150000,10 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskListCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ method validateProperties
+ return type com.microsoft.graph.requests.DirectoryObjectValidatePropertiesRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectValidatePropertiesParameterSet
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
property nextLink : java.lang.String
property value : java.util.List
method additionalDataManager
@@ -148166,12 +150016,9 @@
param arg1 : com.google.gson.JsonObject
method values
return type java.util.List
- class com.microsoft.graph.requests.TodoTaskListDeltaCollectionPage : com.microsoft.graph.http.DeltaCollectionPage
- property deltaLink : java.lang.String
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
- method deltaLink
- return type java.lang.String
method getCount
return type java.lang.Long
method getCurrentPage
@@ -148182,7 +150029,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest : com.microsoft.graph.http.BaseDeltaCollectionRequest
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -148197,21 +150044,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
method count
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : boolean
- method deltaLink
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
- param arg0 : java.lang.String
- method deltaToken
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
- param arg0 : java.lang.String
method expand
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -148247,10 +150088,10 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method select
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148270,25 +150111,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
- param arg0 : int
method top
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequestBuilder : com.microsoft.graph.http.BaseFunctionCollectionRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequestBuilder : com.microsoft.graph.http.BaseCollectionWithReferencesRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
- method buildRequest
- return type com.microsoft.graph.requests.TodoTaskListDeltaCollectionRequest
- param arg0 : java.util.List
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : java.util.List
@@ -148308,20 +150140,9 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskListDeltaCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TodoTaskListRequest : com.microsoft.graph.http.BaseRequest
+ method references
+ return type com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -148334,16 +150155,12 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.TodoTaskList
+ return type java.lang.Object
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TodoTaskListRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest
param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.models.TodoTaskList
- method getAsync
- return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -148377,26 +150194,14 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method patchAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTaskList
- method patch
- return type com.microsoft.graph.models.TodoTaskList
- param arg0 : com.microsoft.graph.models.TodoTaskList
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTaskList
- method post
- return type com.microsoft.graph.models.TodoTaskList
- param arg0 : com.microsoft.graph.models.TodoTaskList
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTaskList
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method put
- return type com.microsoft.graph.models.TodoTaskList
- param arg0 : com.microsoft.graph.models.TodoTaskList
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method select
- return type com.microsoft.graph.requests.TodoTaskListRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148422,18 +150227,13 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskListRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequestBuilder : com.microsoft.graph.http.BaseReferenceRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.TodoTaskListRequest
+ return type com.microsoft.graph.http.BaseReferenceRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TodoTaskListRequest
+ return type com.microsoft.graph.http.BaseReferenceRequest
param arg0 : java.util.List
- method extensions
- return type com.microsoft.graph.requests.ExtensionCollectionRequestBuilder
- method extensions
- return type com.microsoft.graph.requests.ExtensionRequestBuilder
- param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -148447,12 +150247,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method tasks
- return type com.microsoft.graph.requests.TodoTaskCollectionRequestBuilder
- method tasks
- return type com.microsoft.graph.requests.TodoTaskRequestBuilder
- param arg0 : java.lang.String
- class com.microsoft.graph.requests.TodoTaskRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.TokenIssuancePolicyRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -148465,14 +150260,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.TodoTask
+ return type com.microsoft.graph.models.TokenIssuancePolicy
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TodoTaskRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.TodoTask
+ return type com.microsoft.graph.models.TokenIssuancePolicy
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -148510,24 +150305,24 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method patch
- return type com.microsoft.graph.models.TodoTask
- param arg0 : com.microsoft.graph.models.TodoTask
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method post
- return type com.microsoft.graph.models.TodoTask
- param arg0 : com.microsoft.graph.models.TodoTask
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TodoTask
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method put
- return type com.microsoft.graph.models.TodoTask
- param arg0 : com.microsoft.graph.models.TodoTask
+ return type com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
method select
- return type com.microsoft.graph.requests.TodoTaskRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148553,20 +150348,32 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TodoTaskRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method appliesTo
+ return type com.microsoft.graph.requests.DirectoryObjectCollectionWithReferencesRequestBuilder
+ method appliesTo
+ return type com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder
+ param arg0 : java.lang.String
method buildRequest
- return type com.microsoft.graph.requests.TodoTaskRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TodoTaskRequest
+ return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
param arg0 : java.util.List
- method extensions
- return type com.microsoft.graph.requests.ExtensionCollectionRequestBuilder
- method extensions
- return type com.microsoft.graph.requests.ExtensionRequestBuilder
- param arg0 : java.lang.String
+ method checkMemberGroups
+ return type com.microsoft.graph.requests.DirectoryObjectCheckMemberGroupsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectCheckMemberGroupsParameterSet
+ method checkMemberObjects
+ return type com.microsoft.graph.requests.DirectoryObjectCheckMemberObjectsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectCheckMemberObjectsParameterSet
method getClient
return type com.microsoft.graph.core.IBaseClient
+ method getMemberGroups
+ return type com.microsoft.graph.requests.DirectoryObjectGetMemberGroupsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetMemberGroupsParameterSet
+ method getMemberObjects
+ return type com.microsoft.graph.requests.DirectoryObjectGetMemberObjectsCollectionRequestBuilder
+ param arg0 : com.microsoft.graph.models.DirectoryObjectGetMemberObjectsParameterSet
method getOptions
return type java.util.List
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -148578,12 +150385,128 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method linkedResources
- return type com.microsoft.graph.requests.LinkedResourceCollectionRequestBuilder
- method linkedResources
- return type com.microsoft.graph.requests.LinkedResourceRequestBuilder
+ method restore
+ return type com.microsoft.graph.requests.DirectoryObjectRestoreRequestBuilder
+ class com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method delete
+ return type void
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
+ method expand
+ return type com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest
+ param arg0 : java.lang.String
+ method get
+ return type java.lang.Object
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : java.lang.Object
+ method patch
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : java.lang.Object
+ param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
+ method post
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
+ method select
+ return type com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequestBuilder : com.microsoft.graph.http.BaseWithReferenceRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseWithReferenceRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseWithReferenceRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method reference
+ return type com.microsoft.graph.http.BaseReferenceRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
method getCount
@@ -148596,7 +150519,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -148611,15 +150534,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -148655,16 +150578,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method post
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148685,12 +150608,12 @@
return type void
param arg0 : boolean
method top
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionReferenceRequestBuilder : com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequestBuilder : com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -148713,7 +150636,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -148728,15 +150651,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -148772,16 +150695,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : java.lang.String
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method post
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148802,18 +150725,18 @@
return type void
param arg0 : boolean
method skipToken
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : java.lang.String
method skip
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : int
method top
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -148847,7 +150770,7 @@
method validateProperties
return type com.microsoft.graph.requests.DirectoryObjectValidatePropertiesRequestBuilder
param arg0 : com.microsoft.graph.models.DirectoryObjectValidatePropertiesParameterSet
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
property nextLink : java.lang.String
property value : java.util.List
method additionalDataManager
@@ -148860,7 +150783,7 @@
param arg1 : com.google.gson.JsonObject
method values
return type java.util.List
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesPage : com.microsoft.graph.http.BaseCollectionPage
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
method getCount
@@ -148873,7 +150796,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -148888,15 +150811,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
method count
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -148932,10 +150855,10 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -148956,12 +150879,12 @@
return type void
param arg0 : boolean
method top
- return type com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyCollectionWithReferencesRequestBuilder : com.microsoft.graph.http.BaseCollectionWithReferencesRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequestBuilder : com.microsoft.graph.http.BaseCollectionWithReferencesRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -148986,7 +150909,7 @@
param arg0 : java.lang.String
method references
return type com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
- class com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -149003,7 +150926,7 @@
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest
param arg0 : java.lang.String
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -149040,12 +150963,12 @@
return type boolean
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method put
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149071,7 +150994,7 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyReferenceRequestBuilder : com.microsoft.graph.http.BaseReferenceRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequestBuilder : com.microsoft.graph.http.BaseReferenceRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseReferenceRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -149091,7 +151014,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TokenIssuancePolicyRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -149104,14 +151027,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -149149,24 +151072,24 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method patch
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method post
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method put
- return type com.microsoft.graph.models.TokenIssuancePolicy
- param arg0 : com.microsoft.graph.models.TokenIssuancePolicy
+ return type com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149192,17 +151115,17 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method appliesTo
return type com.microsoft.graph.requests.DirectoryObjectCollectionWithReferencesRequestBuilder
method appliesTo
return type com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder
param arg0 : java.lang.String
method buildRequest
- return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TokenIssuancePolicyRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
param arg0 : java.util.List
method checkMemberGroups
return type com.microsoft.graph.requests.DirectoryObjectCheckMemberGroupsCollectionRequestBuilder
@@ -149231,7 +151154,7 @@
param arg0 : java.lang.String
method restore
return type com.microsoft.graph.requests.DirectoryObjectRestoreRequestBuilder
- class com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
+ class com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -149248,7 +151171,7 @@
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest
param arg0 : java.lang.String
method get
return type java.lang.Object
@@ -149302,7 +151225,7 @@
param arg0 : java.lang.Object
param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
method select
- return type com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequest
+ return type com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149328,7 +151251,7 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenIssuancePolicyWithReferenceRequestBuilder : com.microsoft.graph.http.BaseWithReferenceRequestBuilder
+ class com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequestBuilder : com.microsoft.graph.http.BaseWithReferenceRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseWithReferenceRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -149350,7 +151273,7 @@
param arg0 : java.lang.String
method reference
return type com.microsoft.graph.http.BaseReferenceRequestBuilder
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ class com.microsoft.graph.requests.TrendingCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
method getCount
@@ -149363,7 +151286,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
+ class com.microsoft.graph.requests.TrendingCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -149378,15 +151301,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -149422,16 +151345,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : java.lang.String
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.Trending
method post
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ return type com.microsoft.graph.models.Trending
+ param arg0 : com.microsoft.graph.models.Trending
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149451,13 +151374,19 @@
method setUseCaches
return type void
param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
+ param arg0 : int
method top
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequest
+ return type com.microsoft.graph.requests.TrendingCollectionRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionReferenceRequestBuilder : com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
+ class com.microsoft.graph.requests.TrendingCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -149467,6 +151396,8 @@
method byId
return type com.microsoft.graph.http.BaseRequestBuilder
param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -149480,7 +151411,21 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ class com.microsoft.graph.requests.TrendingCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.TrendingRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -149491,30 +151436,23 @@
method addQueryOption
return type void
param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : boolean
+ method delete
+ return type com.microsoft.graph.models.Trending
+ method deleteAsync
+ return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TrendingRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.http.BaseCollectionPage
+ return type com.microsoft.graph.models.Trending
method getAsync
return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
method getDelay
return type long
+ method getFunctionOptions
+ return type java.util.List
method getHeaders
return type java.util.List
method getHttpMethod
@@ -149530,29 +151468,45 @@
return type int
method getOptions
return type java.util.List
+ method getQueryOptions
+ return type java.util.List
method getRequestUrl
return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
method getShouldRedirect
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
method getShouldRetry
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method orderBy
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : java.lang.String
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.Trending
+ method patch
+ return type com.microsoft.graph.models.Trending
+ param arg0 : com.microsoft.graph.models.Trending
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.Trending
method post
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ return type com.microsoft.graph.models.Trending
+ param arg0 : com.microsoft.graph.models.Trending
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.Trending
+ method put
+ return type com.microsoft.graph.models.Trending
+ param arg0 : com.microsoft.graph.models.Trending
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
+ return type com.microsoft.graph.requests.TrendingRequest
param arg0 : java.lang.String
method setDelay
return type void
param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
method setMaxRedirects
return type void
param arg0 : int
@@ -149568,36 +151522,16 @@
method setUseCaches
return type void
param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequest
- param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ class com.microsoft.graph.requests.TrendingRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.TrendingRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
+ return type com.microsoft.graph.requests.TrendingRequest
param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method getAvailableExtensionProperties
- return type com.microsoft.graph.requests.DirectoryObjectGetAvailableExtensionPropertiesCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetAvailableExtensionPropertiesParameterSet
- method getByIds
- return type com.microsoft.graph.requests.DirectoryObjectGetByIdsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetByIdsParameterSet
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -149611,23 +151545,9 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method validateProperties
- return type com.microsoft.graph.requests.DirectoryObjectValidatePropertiesRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectValidatePropertiesParameterSet
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesPage : com.microsoft.graph.http.BaseCollectionPage
+ method resource
+ return type com.microsoft.graph.requests.EntityWithReferenceRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager
method getCount
@@ -149640,7 +151560,7 @@
return type void
param arg0 : com.microsoft.graph.serializer.ISerializer
param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest : com.microsoft.graph.http.BaseCollectionWithReferencesRequest
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
method addFunctionOption
return type void
param arg0 : com.microsoft.graph.options.FunctionOption
@@ -149655,15 +151575,15 @@
return type com.microsoft.graph.http.BaseCollectionPage
param arg0 : com.microsoft.graph.http.ICollectionResponse
method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
method count
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : boolean
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : java.lang.String
method filter
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : java.lang.String
method get
return type com.microsoft.graph.http.BaseCollectionPage
@@ -149699,10 +151619,16 @@
method getUseCaches
return type boolean
method orderBy
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
+ method post
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149722,13 +151648,19 @@
method setUseCaches
return type void
param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
+ param arg0 : int
method top
- return type com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequest
param arg0 : int
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyCollectionWithReferencesRequestBuilder : com.microsoft.graph.http.BaseCollectionWithReferencesRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
method buildRequest
return type com.microsoft.graph.http.BaseCollectionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -149738,6 +151670,8 @@
method byId
return type com.microsoft.graph.http.BaseRequestBuilder
param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -149751,9 +151685,20 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method references
- return type com.microsoft.graph.http.BaseCollectionReferenceRequestBuilder
- class com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -149766,12 +151711,16 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type java.lang.Object
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentRequest
param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -149805,14 +151754,26 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
+ method patchAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
+ method patch
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
+ method post
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
method putAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
method put
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
+ return type com.microsoft.graph.models.UnifiedRoleAssignment
+ param arg0 : com.microsoft.graph.models.UnifiedRoleAssignment
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149838,13 +151799,17 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyReferenceRequestBuilder : com.microsoft.graph.http.BaseReferenceRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleAssignmentRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ method appScope
+ return type com.microsoft.graph.requests.AppScopeRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleAssignmentRequest
param arg0 : java.util.List
+ method directoryScope
+ return type com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder
method getClient
return type com.microsoft.graph.core.IBaseClient
method getOptions
@@ -149858,7 +151823,162 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TokenLifetimePolicyRequest : com.microsoft.graph.http.BaseRequest
+ method principal
+ return type com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder
+ method roleDefinition
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage : com.microsoft.graph.http.BaseCollectionPage
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method getCount
+ return type java.lang.Long
+ method getCurrentPage
+ return type java.util.List
+ method getNextPage
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method buildFromResponse
+ return type com.microsoft.graph.http.BaseCollectionPage
+ param arg0 : com.microsoft.graph.http.ICollectionResponse
+ method count
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ method count
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : boolean
+ method expand
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method filter
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method get
+ return type com.microsoft.graph.http.BaseCollectionPage
+ method getAsync
+ return type java.util.concurrent.CompletableFuture
+ method getBaseRequest
+ return type com.microsoft.graph.http.BaseRequest
+ method getCollectionPageClass
+ return type java.lang.Class
+ method getDelay
+ return type long
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method orderBy
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
+ method post
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
+ method select
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method setDelay
+ return type void
+ param arg0 : long
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method skipToken
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : java.lang.String
+ method skip
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : int
+ method top
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequest
+ param arg0 : int
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.http.BaseCollectionRequest
+ param arg0 : java.util.List
+ method byId
+ return type com.microsoft.graph.http.BaseRequestBuilder
+ param arg0 : java.lang.String
+ method count
+ return type com.microsoft.graph.http.PrimitiveRequestBuilder
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
+ property nextLink : java.lang.String
+ property value : java.util.List
+ method additionalDataManager
+ return type com.microsoft.graph.serializer.AdditionalDataManager
+ method nextLink
+ return type java.lang.String
+ method setRawObject
+ return type void
+ param arg0 : com.microsoft.graph.serializer.ISerializer
+ param arg1 : com.google.gson.JsonObject
+ method values
+ return type java.util.List
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionReferenceRequest : com.microsoft.graph.http.BaseReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -149871,16 +151991,12 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.TokenLifetimePolicy
+ return type java.lang.Object
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionReferenceRequest
param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.models.TokenLifetimePolicy
- method getAsync
- return type java.util.concurrent.CompletableFuture
method getClient
return type com.microsoft.graph.core.IBaseClient
method getDelay
@@ -149914,26 +152030,8 @@
return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
method getUseCaches
return type boolean
- method patchAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
- method patch
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
- method post
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
- method putAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
- method put
- return type com.microsoft.graph.models.TokenLifetimePolicy
- param arg0 : com.microsoft.graph.models.TokenLifetimePolicy
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -149959,32 +152057,15 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
- method appliesTo
- return type com.microsoft.graph.requests.DirectoryObjectCollectionWithReferencesRequestBuilder
- method appliesTo
- return type com.microsoft.graph.requests.DirectoryObjectWithReferenceRequestBuilder
- param arg0 : java.lang.String
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionReferenceRequestBuilder : com.microsoft.graph.http.BaseReferenceRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
+ return type com.microsoft.graph.http.BaseReferenceRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TokenLifetimePolicyRequest
+ return type com.microsoft.graph.http.BaseReferenceRequest
param arg0 : java.util.List
- method checkMemberGroups
- return type com.microsoft.graph.requests.DirectoryObjectCheckMemberGroupsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectCheckMemberGroupsParameterSet
- method checkMemberObjects
- return type com.microsoft.graph.requests.DirectoryObjectCheckMemberObjectsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectCheckMemberObjectsParameterSet
method getClient
return type com.microsoft.graph.core.IBaseClient
- method getMemberGroups
- return type com.microsoft.graph.requests.DirectoryObjectGetMemberGroupsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetMemberGroupsParameterSet
- method getMemberObjects
- return type com.microsoft.graph.requests.DirectoryObjectGetMemberObjectsCollectionRequestBuilder
- param arg0 : com.microsoft.graph.models.DirectoryObjectGetMemberObjectsParameterSet
method getOptions
return type java.util.List
param arg0 : [Lcom.microsoft.graph.options.Option;
@@ -149996,9 +152077,7 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method restore
- return type com.microsoft.graph.requests.DirectoryObjectRestoreRequestBuilder
- class com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -150011,14 +152090,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type void
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequest
param arg0 : java.lang.String
method get
- return type java.lang.Object
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -150056,20 +152135,24 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : java.lang.Object
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
method patch
- return type java.lang.Object
- param arg0 : java.lang.Object
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : java.lang.Object
- param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
method post
- return type java.lang.Object
- param arg0 : java.lang.Object
- param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
+ method putAsync
+ return type java.util.concurrent.CompletableFuture
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
+ method put
+ return type com.microsoft.graph.models.UnifiedRoleDefinition
+ param arg0 : com.microsoft.graph.models.UnifiedRoleDefinition
method select
- return type com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -150095,12 +152178,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TokenLifetimePolicyWithReferenceRequestBuilder : com.microsoft.graph.http.BaseWithReferenceRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
method buildRequest
- return type com.microsoft.graph.http.BaseWithReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.http.BaseWithReferenceRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -150115,160 +152198,12 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method reference
- return type com.microsoft.graph.http.BaseReferenceRequestBuilder
- class com.microsoft.graph.requests.TrendingCollectionPage : com.microsoft.graph.http.BaseCollectionPage
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method getCount
- return type java.lang.Long
- method getCurrentPage
- return type java.util.List
- method getNextPage
- return type com.microsoft.graph.http.BaseRequestBuilder
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- class com.microsoft.graph.requests.TrendingCollectionRequest : com.microsoft.graph.http.BaseEntityCollectionRequest
- method addFunctionOption
- return type void
- param arg0 : com.microsoft.graph.options.FunctionOption
- method addHeader
- return type void
- param arg0 : java.lang.String
- param arg1 : java.lang.String
- method addQueryOption
- return type void
- param arg0 : com.microsoft.graph.options.QueryOption
- method buildFromResponse
- return type com.microsoft.graph.http.BaseCollectionPage
- param arg0 : com.microsoft.graph.http.ICollectionResponse
- method count
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- method count
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : boolean
- method expand
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : java.lang.String
- method filter
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : java.lang.String
- method get
- return type com.microsoft.graph.http.BaseCollectionPage
- method getAsync
- return type java.util.concurrent.CompletableFuture
- method getBaseRequest
- return type com.microsoft.graph.http.BaseRequest
- method getCollectionPageClass
- return type java.lang.Class
- method getDelay
- return type long
- method getHeaders
- return type java.util.List
- method getHttpMethod
- return type com.microsoft.graph.http.HttpMethod
- method getHttpRequest
- return type java.lang.Object
- method getHttpRequest
- return type java.lang.Object
- param arg0 : java.lang.Object
- method getMaxRedirects
- return type int
- method getMaxRetries
- return type int
- method getOptions
- return type java.util.List
- method getRequestUrl
- return type java.net.URL
- method getShouldRedirect
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method getShouldRetry
- return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method getUseCaches
- return type boolean
- method orderBy
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : java.lang.String
- method postAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.Trending
- method post
- return type com.microsoft.graph.models.Trending
- param arg0 : com.microsoft.graph.models.Trending
- method select
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : java.lang.String
- method setDelay
- return type void
- param arg0 : long
- method setMaxRedirects
- return type void
- param arg0 : int
- method setMaxRetries
- return type void
- param arg0 : int
- method setShouldRedirect
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
- method setShouldRetry
- return type void
- param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
- method setUseCaches
- return type void
- param arg0 : boolean
- method skipToken
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : java.lang.String
- method skip
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : int
- method top
- return type com.microsoft.graph.requests.TrendingCollectionRequest
- param arg0 : int
- method withHttpMethod
- return type com.microsoft.graph.http.IHttpRequest
- param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TrendingCollectionRequestBuilder : com.microsoft.graph.http.BaseCollectionRequestBuilder
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method buildRequest
- return type com.microsoft.graph.http.BaseCollectionRequest
- param arg0 : java.util.List
- method byId
- return type com.microsoft.graph.http.BaseRequestBuilder
- param arg0 : java.lang.String
- method count
- return type com.microsoft.graph.http.PrimitiveRequestBuilder
- method getClient
- return type com.microsoft.graph.core.IBaseClient
- method getOptions
- return type java.util.List
- param arg0 : [Lcom.microsoft.graph.options.Option;
- method getRequestUrl
- return type java.lang.String
- method getRequestUrlWithAdditionalParameter
- return type java.lang.String
- param arg0 : java.lang.String
- method getRequestUrlWithAdditionalSegment
- return type java.lang.String
+ method inheritsPermissionsFrom
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionRequestBuilder
+ method inheritsPermissionsFrom
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionRequestBuilder
param arg0 : java.lang.String
- class com.microsoft.graph.requests.TrendingCollectionResponse : com.microsoft.graph.http.BaseCollectionResponse
- property nextLink : java.lang.String
- property value : java.util.List
- method additionalDataManager
- return type com.microsoft.graph.serializer.AdditionalDataManager
- method nextLink
- return type java.lang.String
- method setRawObject
- return type void
- param arg0 : com.microsoft.graph.serializer.ISerializer
- param arg1 : com.google.gson.JsonObject
- method values
- return type java.util.List
- class com.microsoft.graph.requests.TrendingRequest : com.microsoft.graph.http.BaseRequest
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequest : com.microsoft.graph.http.BaseWithReferenceRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
return type void
@@ -150281,14 +152216,14 @@
return type void
param arg0 : com.microsoft.graph.options.QueryOption
method delete
- return type com.microsoft.graph.models.Trending
+ return type void
method deleteAsync
return type java.util.concurrent.CompletableFuture
method expand
- return type com.microsoft.graph.requests.TrendingRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequest
param arg0 : java.lang.String
method get
- return type com.microsoft.graph.models.Trending
+ return type java.lang.Object
method getAsync
return type java.util.concurrent.CompletableFuture
method getClient
@@ -150326,24 +152261,20 @@
return type boolean
method patchAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.Trending
+ param arg0 : java.lang.Object
method patch
- return type com.microsoft.graph.models.Trending
- param arg0 : com.microsoft.graph.models.Trending
+ return type java.lang.Object
+ param arg0 : java.lang.Object
method postAsync
return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.Trending
+ param arg0 : java.lang.Object
+ param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
method post
- return type com.microsoft.graph.models.Trending
- param arg0 : com.microsoft.graph.models.Trending
- method putAsync
- return type java.util.concurrent.CompletableFuture
- param arg0 : com.microsoft.graph.models.Trending
- method put
- return type com.microsoft.graph.models.Trending
- param arg0 : com.microsoft.graph.models.Trending
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ param arg1 : com.microsoft.graph.serializer.IJsonBackedObject
method select
- return type com.microsoft.graph.requests.TrendingRequest
+ return type com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequest
param arg0 : java.lang.String
method setDelay
return type void
@@ -150369,12 +152300,12 @@
method withHttpMethod
return type com.microsoft.graph.http.IHttpRequest
param arg0 : com.microsoft.graph.http.HttpMethod
- class com.microsoft.graph.requests.TrendingRequestBuilder : com.microsoft.graph.http.BaseRequestBuilder
+ class com.microsoft.graph.requests.UnifiedRoleDefinitionWithReferenceRequestBuilder : com.microsoft.graph.http.BaseWithReferenceRequestBuilder
method buildRequest
- return type com.microsoft.graph.requests.TrendingRequest
+ return type com.microsoft.graph.http.BaseWithReferenceRequest
param arg0 : [Lcom.microsoft.graph.options.Option;
method buildRequest
- return type com.microsoft.graph.requests.TrendingRequest
+ return type com.microsoft.graph.http.BaseWithReferenceRequest
param arg0 : java.util.List
method getClient
return type com.microsoft.graph.core.IBaseClient
@@ -150389,8 +152320,8 @@
method getRequestUrlWithAdditionalSegment
return type java.lang.String
param arg0 : java.lang.String
- method resource
- return type com.microsoft.graph.requests.EntityWithReferenceRequestBuilder
+ method reference
+ return type com.microsoft.graph.http.BaseReferenceRequestBuilder
class com.microsoft.graph.requests.UnmuteParticipantOperationRequest : com.microsoft.graph.http.BaseRequest
property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
method addFunctionOption
@@ -155403,6 +157334,103 @@
method installedApps
return type com.microsoft.graph.requests.UserScopeTeamsAppInstallationRequestBuilder
param arg0 : java.lang.String
+ method sendActivityNotification
+ return type com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequestBuilder
+ param arg0 : com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet
+ class com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequest : com.microsoft.graph.http.BaseRequest
+ property REQUEST_STATS_HEADER_VALUE_FORMAT_STRING : java.lang.String
+ property body : com.microsoft.graph.models.UserTeamworkSendActivityNotificationParameterSet
+ method addFunctionOption
+ return type void
+ param arg0 : com.microsoft.graph.options.FunctionOption
+ method addHeader
+ return type void
+ param arg0 : java.lang.String
+ param arg1 : java.lang.String
+ method addQueryOption
+ return type void
+ param arg0 : com.microsoft.graph.options.QueryOption
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getDelay
+ return type long
+ method getFunctionOptions
+ return type java.util.List
+ method getHeaders
+ return type java.util.List
+ method getHttpMethod
+ return type com.microsoft.graph.http.HttpMethod
+ method getHttpRequest
+ return type java.lang.Object
+ method getHttpRequest
+ return type java.lang.Object
+ param arg0 : java.lang.Object
+ method getMaxRedirects
+ return type int
+ method getMaxRetries
+ return type int
+ method getOptions
+ return type java.util.List
+ method getQueryOptions
+ return type java.util.List
+ method getRequestUrl
+ return type java.net.URL
+ method getResponseType
+ return type java.lang.Class
+ method getShouldRedirect
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method getShouldRetry
+ return type com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method getUseCaches
+ return type boolean
+ method post
+ return type void
+ method postAsync
+ return type java.util.concurrent.CompletableFuture
+ method setDelay
+ return type void
+ param arg0 : long
+ method setHttpMethod
+ return type void
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ method setMaxRedirects
+ return type void
+ param arg0 : int
+ method setMaxRetries
+ return type void
+ param arg0 : int
+ method setShouldRedirect
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRedirect
+ method setShouldRetry
+ return type void
+ param arg0 : com.microsoft.graph.httpcore.middlewareoption.IShouldRetry
+ method setUseCaches
+ return type void
+ param arg0 : boolean
+ method withHttpMethod
+ return type com.microsoft.graph.http.IHttpRequest
+ param arg0 : com.microsoft.graph.http.HttpMethod
+ class com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequestBuilder : com.microsoft.graph.http.BaseActionRequestBuilder
+ method buildRequest
+ return type com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequest
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method buildRequest
+ return type com.microsoft.graph.requests.UserTeamworkSendActivityNotificationRequest
+ param arg0 : java.util.List
+ method getClient
+ return type com.microsoft.graph.core.IBaseClient
+ method getOptions
+ return type java.util.List
+ param arg0 : [Lcom.microsoft.graph.options.Option;
+ method getRequestUrl
+ return type java.lang.String
+ method getRequestUrlWithAdditionalParameter
+ return type java.lang.String
+ param arg0 : java.lang.String
+ method getRequestUrlWithAdditionalSegment
+ return type java.lang.String
+ param arg0 : java.lang.String
class com.microsoft.graph.requests.UserTranslateExchangeIdsCollectionPage : com.microsoft.graph.http.BaseCollectionPage
method additionalDataManager
return type com.microsoft.graph.serializer.AdditionalDataManager