Skip to content

Commit ea3227a

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 112037
1 parent 80fbbc2 commit ea3227a

File tree

63 files changed

+4176
-17
lines changed

Some content is hidden

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

63 files changed

+4176
-17
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.51.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.52.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.51.0</version>
39+
<version>5.52.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -182,5 +182,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
182182

183183

184184

185+
185186

186187

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

@@ -105,5 +105,6 @@ mavenCentralPublishingEnabled=false
105105

106106

107107

108+
108109

109110

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.51.0";
21+
public static final String VERSION_NAME = "5.52.0";
2222
}
2323

2424

@@ -82,5 +82,6 @@ private Constants() {
8282

8383

8484

85+
8586

8687

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() {
5151

5252
/**
5353
* The Auto Apply Decisions Enabled.
54-
* Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false.
54+
* Indicates whether decisions are automatically applied. When set to false, an admin must apply the decisions manually once the reviewer completes the access review. When set to true, decisions are applied automatically after the access review instance duration ends, whether or not the reviewers have responded. Default value is false. CAUTION: If both autoApplyDecisionsEnabled and defaultDecisionEnabled are true, all access for the principals to the resource risks being revoked if the reviewers fail to respond.
5555
*/
5656
@SerializedName(value = "autoApplyDecisionsEnabled", alternate = {"AutoApplyDecisionsEnabled"})
5757
@Expose
@@ -78,7 +78,7 @@ public final AdditionalDataManager additionalDataManager() {
7878

7979
/**
8080
* The Default Decision Enabled.
81-
* Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false.
81+
* Indicates whether the default decision is enabled or disabled when reviewers do not respond. Default value is false. CAUTION: If both autoApplyDecisionsEnabled and defaultDecisionEnabled are true, all access for the principals to the resource risks being revoked if the reviewers fail to respond.
8282
*/
8383
@SerializedName(value = "defaultDecisionEnabled", alternate = {"DefaultDecisionEnabled"})
8484
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
319319

320320
/**
321321
* The Tags.
322-
* Custom strings that can be used to categorize and identify the application. Not nullable. Supports $filter (eq, not, ge, le, startsWith).
322+
* Custom strings that can be used to categorize and identify the application. Not nullable. Strings added here will also appear in the tags property of any associated service principals.Supports $filter (eq, not, ge, le, startsWith).
323323
*/
324324
@SerializedName(value = "tags", alternate = {"Tags"})
325325
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public final AdditionalDataManager additionalDataManager() {
7777

7878
/**
7979
* The Include Groups.
80-
* Group IDs in scope of policy unless explicitly excluded, or All.
80+
* Group IDs in scope of policy unless explicitly excluded.
8181
*/
8282
@SerializedName(value = "includeGroups", alternate = {"IncludeGroups"})
8383
@Expose
@@ -95,7 +95,7 @@ public final AdditionalDataManager additionalDataManager() {
9595

9696
/**
9797
* The Include Roles.
98-
* Role IDs in scope of policy unless explicitly excluded, or All.
98+
* Role IDs in scope of policy unless explicitly excluded.
9999
*/
100100
@SerializedName(value = "includeRoles", alternate = {"IncludeRoles"})
101101
@Expose
@@ -104,7 +104,7 @@ public final AdditionalDataManager additionalDataManager() {
104104

105105
/**
106106
* The Include Users.
107-
* User IDs in scope of policy unless explicitly excluded, or None or All or GuestsOrExternalUsers.
107+
* User IDs in scope of policy unless explicitly excluded, None, All, or GuestsOrExternalUsers.
108108
*/
109109
@SerializedName(value = "includeUsers", alternate = {"IncludeUsers"})
110110
@Expose

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ public final AdditionalDataManager additionalDataManager() {
5656
@Nullable
5757
public Boolean allowedToCreateSecurityGroups;
5858

59+
/**
60+
* The Allowed To Read Bitlocker Keys For Owned Device.
61+
*
62+
*/
63+
@SerializedName(value = "allowedToReadBitlockerKeysForOwnedDevice", alternate = {"AllowedToReadBitlockerKeysForOwnedDevice"})
64+
@Expose
65+
@Nullable
66+
public Boolean allowedToReadBitlockerKeysForOwnedDevice;
67+
5968
/**
6069
* The Allowed To Read Other Users.
6170
* Indicates whether the default user role can read other users.

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import java.util.EnumSet;
1111
import com.microsoft.graph.http.BaseCollectionPage;
1212
import com.microsoft.graph.models.Entity;
13+
import com.microsoft.graph.requests.UnifiedRbacResourceNamespaceCollectionPage;
1314
import com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionPage;
1415
import com.microsoft.graph.requests.UnifiedRoleDefinitionCollectionPage;
1516
import com.microsoft.graph.requests.UnifiedRoleAssignmentScheduleInstanceCollectionPage;
@@ -34,6 +35,15 @@
3435
public class RbacApplication extends Entity implements IJsonBackedObject {
3536

3637

38+
/**
39+
* The Resource Namespaces.
40+
*
41+
*/
42+
@SerializedName(value = "resourceNamespaces", alternate = {"ResourceNamespaces"})
43+
@Expose
44+
@Nullable
45+
public com.microsoft.graph.requests.UnifiedRbacResourceNamespaceCollectionPage resourceNamespaces;
46+
3747
/**
3848
* The Role Assignments.
3949
* Resource to grant access to users or groups.
@@ -116,6 +126,10 @@ public class RbacApplication extends Entity implements IJsonBackedObject {
116126
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
117127

118128

129+
if (json.has("resourceNamespaces")) {
130+
resourceNamespaces = serializer.deserializeObject(json.get("resourceNamespaces"), com.microsoft.graph.requests.UnifiedRbacResourceNamespaceCollectionPage.class);
131+
}
132+
119133
if (json.has("roleAssignments")) {
120134
roleAssignments = serializer.deserializeObject(json.get("roleAssignments"), com.microsoft.graph.requests.UnifiedRoleAssignmentCollectionPage.class);
121135
}

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import com.microsoft.graph.http.BaseCollectionPage;
1212
import com.microsoft.graph.security.models.CasesRoot;
1313
import com.microsoft.graph.models.AttackSimulationRoot;
14+
import com.microsoft.graph.security.models.TriggersRoot;
15+
import com.microsoft.graph.security.models.TriggerTypesRoot;
1416
import com.microsoft.graph.models.Entity;
1517
import com.microsoft.graph.security.requests.IncidentCollectionPage;
1618
import com.microsoft.graph.requests.SecureScoreControlProfileCollectionPage;
@@ -67,6 +69,24 @@ public class Security extends Entity implements IJsonBackedObject {
6769
@Nullable
6870
public AttackSimulationRoot attackSimulation;
6971

72+
/**
73+
* The Triggers.
74+
*
75+
*/
76+
@SerializedName(value = "triggers", alternate = {"Triggers"})
77+
@Expose
78+
@Nullable
79+
public TriggersRoot triggers;
80+
81+
/**
82+
* The Trigger Types.
83+
*
84+
*/
85+
@SerializedName(value = "triggerTypes", alternate = {"TriggerTypes"})
86+
@Expose
87+
@Nullable
88+
public TriggerTypesRoot triggerTypes;
89+
7090
/**
7191
* The Alerts.
7292
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
315315

316316
/**
317317
* The Tags.
318-
* Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, not, ge, le, startsWith).
318+
* Custom strings that can be used to categorize and identify the service principal. Not nullable. The value is the union of strings set here and on the associated application entity's tags property.Supports $filter (eq, not, ge, le, startsWith).
319319
*/
320320
@SerializedName(value = "tags", alternate = {"Tags"})
321321
@Expose

0 commit comments

Comments
 (0)