Skip to content

Commit f4c5648

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 103115
1 parent cf46ea4 commit f4c5648

File tree

339 files changed

+17710
-1817
lines changed

Some content is hidden

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

339 files changed

+17710
-1817
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.61.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.62.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.61.0-SNAPSHOT</version>
40+
<version>0.62.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -197,5 +197,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
197197

198198

199199

200+
200201

201202

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 = 61
29+
mavenMinorVersion = 62
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232

@@ -96,5 +96,6 @@ mavenCentralPublishingEnabled=false
9696

9797

9898

99+
99100

100101

src/main/java/com/microsoft/graph/devicemanagementnamespace/models/AlertImpact.java

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

5050
/**
5151
* The Value.
52-
* The number value of the impact.
52+
* The number value of the impact. For the aggregation types of count and affectedCloudPcCount, the value indicates the number of affected instances. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. For the aggregation types of percentage and affectedCloudPcPercentage, the value indicates the percent of affected instances. For example, 12 affectedCloudPcPercentage means that 12% of Cloud PCs are affected.
5353
*/
5454
@SerializedName(value = "value", alternate = {"Value"})
5555
@Expose

src/main/java/com/microsoft/graph/devicemanagementnamespace/models/AlertRecord.java

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

3232
/**
3333
* The Alert Impact.
34-
* The impact of the alert event. Consists of a number followed by the aggregation type. For example, 6 Count and 12 AffectedCloudPcPercentage.
34+
* The impact of the alert event. Consists of a number followed by the aggregation type. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. 12 affectedCloudPcPercentage means 12% of Cloud PCs are affected.
3535
*/
3636
@SerializedName(value = "alertImpact", alternate = {"AlertImpact"})
3737
@Expose

src/main/java/com/microsoft/graph/devicemanagementnamespace/models/AlertRule.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class AlertRule extends Entity implements IJsonBackedObject {
6868

6969
/**
7070
* The Is System Rule.
71-
* Indicates whether the rule is a system rule. If true, the rule is a system rule; otherwise, the rule is a custom defined rule and can be edited. System rules are built-in and only
71+
* Indicates whether the rule is a system rule. If true, the rule is a system rule; otherwise, the rule is a custom defined rule and can be edited. System rules are built-in and only a few properties can be edited.
7272
*/
7373
@SerializedName(value = "isSystemRule", alternate = {"IsSystemRule"})
7474
@Expose
@@ -77,7 +77,7 @@ public class AlertRule extends Entity implements IJsonBackedObject {
7777

7878
/**
7979
* The Notification Channels.
80-
*
80+
* The notification channels of the rule selected by the user.
8181
*/
8282
@SerializedName(value = "notificationChannels", alternate = {"NotificationChannels"})
8383
@Expose
@@ -86,7 +86,7 @@ public class AlertRule extends Entity implements IJsonBackedObject {
8686

8787
/**
8888
* The Severity.
89-
*
89+
* The severity of the rule. The possible values are: unknown, informational, warning, critical, unknownFutureValue.
9090
*/
9191
@SerializedName(value = "severity", alternate = {"Severity"})
9292
@Expose
@@ -95,7 +95,7 @@ public class AlertRule extends Entity implements IJsonBackedObject {
9595

9696
/**
9797
* The Threshold.
98-
*
98+
* The conditions to send alerts. For example, send alert when provisioning has failed for greater than or equal to 6 Cloud PCs.
9999
*/
100100
@SerializedName(value = "threshold", alternate = {"Threshold"})
101101
@Expose

src/main/java/com/microsoft/graph/devicemanagementnamespace/models/PortalNotification.java

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

9797
/**
9898
* The Is Portal Notification Sent.
99-
* If true, the portal notification has already been sent for the user; otherwise, the portal notification hasn't been sent yet.
99+
* true if the portal notification has already been sent to the user; false otherwise.
100100
*/
101101
@SerializedName(value = "isPortalNotificationSent", alternate = {"IsPortalNotificationSent"})
102102
@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.61.0";
21+
public static final String VERSION_NAME = "0.62.0";
2222
}
2323

2424

@@ -71,5 +71,6 @@ private Constants() {
7171

7272

7373

74+
7475

7576

0 commit comments

Comments
 (0)