Skip to content

Commit 35ec435

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 114201
1 parent 90d4f06 commit 35ec435

File tree

88 files changed

+1673
-219
lines changed

Some content is hidden

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

88 files changed

+1673
-219
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories {
2020
2121
dependencies {
2222
// Include the sdk as a dependency
23-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.71.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.72.0-SNAPSHOT'
2424
// Uncomment the line below if you are building an android application
2525
//implementation 'com.google.guava:guava:30.1.1-android'
2626
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
@@ -37,7 +37,7 @@ Add the dependency in `dependencies` in pom.xml
3737
<!-- Include the sdk as a dependency -->
3838
<groupId>com.microsoft.graph</groupId>
3939
<artifactId>microsoft-graph-beta</artifactId>
40-
<version>0.71.0-SNAPSHOT</version>
40+
<version>0.72.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -207,5 +207,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
207207

208208

209209

210+
210211

211212

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-beta
2828
mavenMajorVersion = 0
29-
mavenMinorVersion = 71
29+
mavenMinorVersion = 72
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -106,5 +106,6 @@ mavenCentralPublishingEnabled=false
106106

107107

108108

109+
109110

110111

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

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

3030
/**
3131
* The Start Date Time.
32-
* When the particular activity occurred.
32+
* The date and time when the particular activity occurred. The DateTimeOffset 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.
3333
*/
3434
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
3535
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class ExternalActivityResult extends ExternalActivity implements IJsonBac
2828

2929
/**
3030
* The Error.
31-
* Error information explaining failure to process external activity.
31+
* Error information that explains the failure to process an external activity.
3232
*/
3333
@SerializedName(value = "error", alternate = {"Error"})
3434
@Expose

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

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

6060
/**
6161
* The Activities.
62-
* Write-only property. Returns results.
62+
* Returns a list of activities performed on the item. Write-only.
6363
*/
6464
@SerializedName(value = "activities", alternate = {"Activities"})
6565
@Expose

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

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

2929
/**
3030
* The Type.
31-
*
31+
* The type of identity. Possible values are: user or group for Azure AD identities and externalgroup for groups in an external system.
3232
*/
3333
@SerializedName(value = "type", alternate = {"Type"})
3434
@Expose

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

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

4343
/**
4444
* The Operation.
45-
* Specifies the operations to be performed during evaluation of a single propertyRule, where property and a string from the values collection are the respective operands. Possible values are: null, equals, notEquals, contains, notContains, lessThan, greaterThan, startsWith, unknownFutureValue. Required.
45+
* Specifies the operations to be performed during evaluation of a single propertyRule, where property and a string from the values collection are the respective operands. Possible values are: null, equals, notEquals, contains, notContains, lessThan, greaterThan, startsWith. Required.
4646
*/
4747
@SerializedName(value = "operation", alternate = {"Operation"})
4848
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class TimeBasedAttributeTrigger extends WorkflowExecutionTrigger implemen
2828

2929
/**
3030
* The Offset In Days.
31-
* How many days before or after the time-based attribute specified the workflow should trigger. For example, if the attribute is employeeHireDate and offsetInDays is -1, then the workflow should trigger one day before the employee hire date. The value can range between -60 and 60 days.
31+
* How many days before or after the time-based attribute specified the workflow should trigger. For example, if the attribute is employeeHireDate and offsetInDays is -1, then the workflow should trigger one day before the employee hire date. The value can range between -180 and 180 days.
3232
*/
3333
@SerializedName(value = "offsetInDays", alternate = {"OffsetInDays"})
3434
@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 = "0.71.0";
21+
public static final String VERSION_NAME = "0.72.0";
2222
}
2323

2424

@@ -81,5 +81,6 @@ private Constants() {
8181

8282

8383

84+
8485

8586

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,7 @@ public class AccessPackageCatalog extends Entity implements IJsonBackedObject {
152152
/**
153153
* The Access Packages.
154154
* The access packages in this catalog. Read-only. Nullable. Supports $expand.
155-
*/
156-
@SerializedName(value = "accessPackages", alternate = {"AccessPackages"})
157-
@Expose
155+
*/
158156
@Nullable
159157
public com.microsoft.graph.requests.AccessPackageCollectionPage accessPackages;
160158

0 commit comments

Comments
 (0)