Skip to content

Commit a84040a

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 114661
1 parent 192c987 commit a84040a

File tree

63 files changed

+894
-157
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

+894
-157
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.72.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.73.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.72.0-SNAPSHOT</version>
40+
<version>0.73.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -208,5 +208,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
208208

209209

210210

211+
211212

212213

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

@@ -107,5 +107,6 @@ mavenCentralPublishingEnabled=false
107107

108108

109109

110+
110111

111112

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

2424

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

8383

8484

85+
8586

8687

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

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

2828
/**
2929
* The App Id.
30-
*
30+
* The globally unique identifier of the application to which access has been granted.
3131
*/
3232
@SerializedName(value = "appId", alternate = {"AppId"})
3333
@Expose
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
// Template Source: BaseMethodParameterSet.java.tt
2+
// ------------------------------------------------------------------------------
3+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
// ------------------------------------------------------------------------------
5+
6+
package com.microsoft.graph.models;
7+
8+
9+
import com.google.gson.annotations.Expose;
10+
import com.google.gson.annotations.SerializedName;
11+
import javax.annotation.Nonnull;
12+
import javax.annotation.Nullable;
13+
import com.google.gson.JsonObject;
14+
import java.util.EnumSet;
15+
import java.util.ArrayList;
16+
17+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
18+
19+
/**
20+
* The class for the Access Review Instance Stop Apply Decisions Parameter Set.
21+
*/
22+
public class AccessReviewInstanceStopApplyDecisionsParameterSet {
23+
24+
/**
25+
* Instiaciates a new AccessReviewInstanceStopApplyDecisionsParameterSet
26+
*/
27+
public AccessReviewInstanceStopApplyDecisionsParameterSet() {}
28+
/**
29+
* Instiaciates a new AccessReviewInstanceStopApplyDecisionsParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected AccessReviewInstanceStopApplyDecisionsParameterSet(@Nonnull final AccessReviewInstanceStopApplyDecisionsParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static AccessReviewInstanceStopApplyDecisionsParameterSetBuilder newBuilder() {
40+
return new AccessReviewInstanceStopApplyDecisionsParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the AccessReviewInstanceStopApplyDecisionsParameterSet
44+
*/
45+
public static final class AccessReviewInstanceStopApplyDecisionsParameterSetBuilder {
46+
/**
47+
* Instanciates a new AccessReviewInstanceStopApplyDecisionsParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected AccessReviewInstanceStopApplyDecisionsParameterSetBuilder(){}
51+
/**
52+
* Buils the resulting body object to be passed to the request
53+
* @return the body object to pass to the request
54+
*/
55+
@Nonnull
56+
public AccessReviewInstanceStopApplyDecisionsParameterSet build() {
57+
return new AccessReviewInstanceStopApplyDecisionsParameterSet(this);
58+
}
59+
}
60+
/**
61+
* Gets the functions options from the properties that have been set
62+
* @return a list of function options for the request
63+
*/
64+
@Nonnull
65+
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() {
66+
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>();
67+
return result;
68+
}
69+
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() {
5858
@SerializedName(value = "conditionsNotSatisfied", alternate = {"ConditionsNotSatisfied"})
5959
@Expose
6060
@Nullable
61-
public EnumSet<ConditionalAccessConditions> conditionsNotSatisfied;
61+
public java.util.List<EnumSet<ConditionalAccessConditions>> conditionsNotSatisfied;
6262

6363
/**
6464
* The Conditions Satisfied.
@@ -67,7 +67,7 @@ public final AdditionalDataManager additionalDataManager() {
6767
@SerializedName(value = "conditionsSatisfied", alternate = {"ConditionsSatisfied"})
6868
@Expose
6969
@Nullable
70-
public EnumSet<ConditionalAccessConditions> conditionsSatisfied;
70+
public java.util.List<EnumSet<ConditionalAccessConditions>> conditionsSatisfied;
7171

7272
/**
7373
* The Display Name.

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,18 @@ public final AdditionalDataManager additionalDataManager() {
5555
@Nullable
5656
public String email;
5757

58+
/**
59+
* The Out Of Office Days.
60+
*
61+
*/
62+
@SerializedName(value = "outOfOfficeDays", alternate = {"OutOfOfficeDays"})
63+
@Expose
64+
@Nullable
65+
public Integer outOfOfficeDays;
66+
5867
/**
5968
* The User Id.
60-
* This is the id property value of the user resource that represents the user in the Azure Active Directory tenant.
69+
* id property value of the user resource that represents the user in the Azure Active Directory tenant.
6170
*/
6271
@SerializedName(value = "userId", alternate = {"UserId"})
6372
@Expose

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

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

4040
/**
4141
* The App Id.
42-
*
42+
* The identifier for an application corresponding to a condition which will trigger an authenticationEventListener.
4343
*/
4444
@SerializedName(value = "appId", alternate = {"AppId"})
4545
@Expose

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

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

4141
/**
4242
* The Applications.
43-
*
43+
* Applications which will trigger a custom authentication extension.
4444
*/
4545
@SerializedName(value = "applications", alternate = {"Applications"})
4646
@Expose

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

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

4242
/**
4343
* The Include All Applications.
44-
*
44+
* Whether the custom authentication extension should trigger for all applications with appIds specified in the includeApplications relationship. This property must be set to false for listener of type onTokenIssuanceStartListener.
4545
*/
4646
@SerializedName(value = "includeAllApplications", alternate = {"IncludeAllApplications"})
4747
@Expose

0 commit comments

Comments
 (0)