Skip to content

Commit d59d09a

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 127164
1 parent 2f8c277 commit d59d09a

File tree

101 files changed

+1618
-213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1618
-213
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph:5.74.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.75.0'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -36,7 +36,7 @@ Add the dependency in `dependencies` in pom.xml
3636
<!-- Include the sdk as a dependency -->
3737
<groupId>com.microsoft.graph</groupId>
3838
<artifactId>microsoft-graph</artifactId>
39-
<version>5.74.0</version>
39+
<version>5.75.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCredentialAuthProvider -->
@@ -205,5 +205,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
205205

206206

207207

208+
208209

209210

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ org.gradle.caching=true
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 5
29-
mavenMinorVersion = 74
29+
mavenMinorVersion = 75
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -128,5 +128,6 @@ mavenCentralPublishingEnabled=false
128128

129129

130130

131+
131132

132133

src/main/java/com/microsoft/graph/externalconnectors/models/Property.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public final AdditionalDataManager additionalDataManager() {
8787

8888
/**
8989
* The Labels.
90-
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (for example, better relevance). The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, iconUrl, unknownFutureValue. Optional.
90+
* Specifies one or more well-known tags added against a property. Labels help Microsoft Search understand the semantics of the data in the connection. Adding appropriate labels would result in an enhanced search experience (for example, better relevance). Optional.The possible values are: title, url, createdBy, lastModifiedBy, authors, createdDateTime, lastModifiedDateTime, fileName, fileExtension, unknownFutureValue, iconUrl. You must use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: iconUrl.
9191
*/
9292
@SerializedName(value = "labels", alternate = {"Labels"})
9393
@Expose

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/TaskProcessingResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class TaskProcessingResult extends Entity implements IJsonBackedObject {
7575

7676
/**
7777
* The Subject.
78-
* The unique identifier of the Azure AD user targeted for the task execution.Supports $filter(eq, ne) and $expand.
78+
* The unique identifier of the Microsoft Entra user targeted for the task execution.Supports $filter(eq, ne) and $expand.
7979
*/
8080
@SerializedName(value = "subject", alternate = {"Subject"})
8181
@Expose

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/Workflow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class Workflow extends WorkflowBase implements IJsonBackedObject {
6767

6868
/**
6969
* The Execution Scope.
70-
* The unique identifier of the Azure AD identity that last modified the workflow object.
70+
* The unique identifier of the Microsoft Entra identity that last modified the workflow object.
7171
*/
7272
@Nullable
7373
public com.microsoft.graph.identitygovernance.requests.UserProcessingResultCollectionPage executionScope;

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/WorkflowBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public final AdditionalDataManager additionalDataManager() {
125125

126126
/**
127127
* The Last Modified By.
128-
* The unique identifier of the Azure Active Directory identity that last modified the workflow.
128+
* The unique identifier of the Microsoft Entra identity that last modified the workflow.
129129
*/
130130
@SerializedName(value = "lastModifiedBy", alternate = {"LastModifiedBy"})
131131
@Expose

src/main/java/com/microsoft/graph/info/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ private Constants() {
1818
/** The client secret to use for unit testing */
1919
public static final String CLIENTSECRET = "clientsecret";
2020
/** The SDK version */
21-
public static final String VERSION_NAME = "5.74.0";
21+
public static final String VERSION_NAME = "5.75.0";
2222
}
2323

2424

@@ -105,5 +105,6 @@ private Constants() {
105105

106106

107107

108+
108109

109110

src/main/java/com/microsoft/graph/models/AccessPackageTextInputQuestion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AccessPackageTextInputQuestion extends AccessPackageQuestion implem
2727

2828
/**
2929
* The Is Single Line Question.
30-
* Indicates whether the answer will be in single or multiple line format.
30+
* Indicates whether the answer is in single or multiple line format.
3131
*/
3232
@SerializedName(value = "isSingleLineQuestion", alternate = {"IsSingleLineQuestion"})
3333
@Expose

src/main/java/com/microsoft/graph/models/AccessReviewScheduleSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public final AdditionalDataManager additionalDataManager() {
124124

125125
/**
126126
* The Recommendation Look Back Duration.
127-
* Optional field. Indicates the period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look-back duration. For reviews of groups and Azure AD roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationLookBackDuration setting will be used instead of the value of this property.
127+
* Optional field. Indicates the period of inactivity (with respect to the start date of the review instance) that recommendations will be configured from. The recommendation will be to deny if the user is inactive during the look-back duration. For reviews of groups and Microsoft Entra roles, any duration is accepted. For reviews of applications, 30 days is the maximum duration. If not specified, the duration is 30 days. NOTE: If the stageSettings of the accessReviewScheduleDefinition object is defined, its recommendationLookBackDuration setting will be used instead of the value of this property.
128128
*/
129129
@SerializedName(value = "recommendationLookBackDuration", alternate = {"RecommendationLookBackDuration"})
130130
@Expose

src/main/java/com/microsoft/graph/models/AccessReviewStageSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public final AdditionalDataManager additionalDataManager() {
6969

7070
/**
7171
* The Fallback Reviewers.
72-
* If provided, the fallback reviewers are asked to complete a review if the primary reviewers don't exist. For example, if managers are selected as reviewers and a principal under review doesn't have a manager in Azure AD, the fallback reviewers are asked to review that principal. NOTE: The value of this property overrides the corresponding setting on the accessReviewScheduleDefinition object.
72+
* If provided, the fallback reviewers are asked to complete a review if the primary reviewers don't exist. For example, if managers are selected as reviewers and a principal under review doesn't have a manager in Microsoft Entra ID, the fallback reviewers are asked to review that principal. NOTE: The value of this property overrides the corresponding setting on the accessReviewScheduleDefinition object.
7373
*/
7474
@SerializedName(value = "fallbackReviewers", alternate = {"FallbackReviewers"})
7575
@Expose

0 commit comments

Comments
 (0)