Skip to content

Commit e10ccf1

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 113310
1 parent 5603ff7 commit e10ccf1

File tree

54 files changed

+2986
-37
lines changed

Some content is hidden

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

54 files changed

+2986
-37
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.54.0'
22+
implementation 'com.microsoft.graph:microsoft-graph:5.55.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.54.0</version>
39+
<version>5.55.0</version>
4040
</dependency>
4141
<dependency>
4242
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -185,5 +185,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
185185

186186

187187

188+
188189

189190

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

@@ -108,5 +108,6 @@ mavenCentralPublishingEnabled=false
108108

109109

110110

111+
111112

112113

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

2424

@@ -85,5 +85,6 @@ private Constants() {
8585

8686

8787

88+
8889

8990

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// Template Source: BaseEntity.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+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
import com.microsoft.graph.models.Entity;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Allowed Value.
24+
*/
25+
public class AllowedValue extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Is Active.
30+
*
31+
*/
32+
@SerializedName(value = "isActive", alternate = {"IsActive"})
33+
@Expose
34+
@Nullable
35+
public Boolean isActive;
36+
37+
38+
/**
39+
* Sets the raw JSON object
40+
*
41+
* @param serializer the serializer
42+
* @param json the JSON object to set this object to
43+
*/
44+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
45+
46+
}
47+
}

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. Strings added here will also appear in the tags property of any associated service principals.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) and $search.
323323
*/
324324
@SerializedName(value = "tags", alternate = {"Tags"})
325325
@Expose
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// Template Source: BaseEntity.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+
import com.microsoft.graph.serializer.ISerializer;
8+
import com.microsoft.graph.serializer.IJsonBackedObject;
9+
import com.microsoft.graph.serializer.AdditionalDataManager;
10+
import java.util.EnumSet;
11+
import com.microsoft.graph.models.Entity;
12+
13+
14+
import com.google.gson.JsonObject;
15+
import com.google.gson.annotations.SerializedName;
16+
import com.google.gson.annotations.Expose;
17+
import javax.annotation.Nullable;
18+
import javax.annotation.Nonnull;
19+
20+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
21+
22+
/**
23+
* The class for the Attribute Set.
24+
*/
25+
public class AttributeSet extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Description.
30+
*
31+
*/
32+
@SerializedName(value = "description", alternate = {"Description"})
33+
@Expose
34+
@Nullable
35+
public String description;
36+
37+
/**
38+
* The Max Attributes Per Set.
39+
*
40+
*/
41+
@SerializedName(value = "maxAttributesPerSet", alternate = {"MaxAttributesPerSet"})
42+
@Expose
43+
@Nullable
44+
public Integer maxAttributesPerSet;
45+
46+
47+
/**
48+
* Sets the raw JSON object
49+
*
50+
* @param serializer the serializer
51+
* @param json the JSON object to set this object to
52+
*/
53+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
54+
55+
}
56+
}

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

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

3030
/**
3131
* The Applies To Combinations.
32-
*
32+
* Which authentication method combinations this configuration applies to. Must be an allowedCombinations object that's defined for the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'.
3333
*/
3434
@SerializedName(value = "appliesToCombinations", alternate = {"AppliesToCombinations"})
3535
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class AuthenticationMethodModeDetail extends Entity implements IJsonBacke
2828

2929
/**
3030
* The Authentication Method.
31-
*
31+
* The authentication method that this mode modifies. The possible values are: password, voice, hardwareOath, softwareOath, sms, fido2, windowsHelloForBusiness, microsoftAuthenticator, temporaryAccessPass, email, x509Certificate, federation, unknownFutureValue.
3232
*/
3333
@SerializedName(value = "authenticationMethod", alternate = {"AuthenticationMethod"})
3434
@Expose
@@ -37,7 +37,7 @@ public class AuthenticationMethodModeDetail extends Entity implements IJsonBacke
3737

3838
/**
3939
* The Display Name.
40-
*
40+
* The display name of this mode
4141
*/
4242
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4343
@Expose

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
3232

3333
/**
3434
* The Allowed Combinations.
35-
*
35+
* A collection of authentication method modes that are required be used to satify this authentication strength.
3636
*/
3737
@SerializedName(value = "allowedCombinations", alternate = {"AllowedCombinations"})
3838
@Expose
@@ -41,7 +41,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
4141

4242
/**
4343
* The Created Date Time.
44-
*
44+
* The datetime when this policy was created.
4545
*/
4646
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
4747
@Expose
@@ -50,7 +50,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
5050

5151
/**
5252
* The Description.
53-
*
53+
* The human-readable description of this policy.
5454
*/
5555
@SerializedName(value = "description", alternate = {"Description"})
5656
@Expose
@@ -59,7 +59,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
5959

6060
/**
6161
* The Display Name.
62-
*
62+
* The human-readable display name of this policy. Supports $filter (eq, ne, not , and in).
6363
*/
6464
@SerializedName(value = "displayName", alternate = {"DisplayName"})
6565
@Expose
@@ -68,7 +68,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
6868

6969
/**
7070
* The Modified Date Time.
71-
*
71+
* The datetime when this policy was last modified.
7272
*/
7373
@SerializedName(value = "modifiedDateTime", alternate = {"ModifiedDateTime"})
7474
@Expose
@@ -77,7 +77,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
7777

7878
/**
7979
* The Policy Type.
80-
*
80+
* A descriptor of whether this policy is built into Azure AD or created by an admin for the tenant. The possible values are: builtIn, custom, unknownFutureValue. Supports $filter (eq, ne, not , and in).
8181
*/
8282
@SerializedName(value = "policyType", alternate = {"PolicyType"})
8383
@Expose
@@ -86,7 +86,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
8686

8787
/**
8888
* The Requirements Satisfied.
89-
*
89+
* A descriptor of whether this authentication strength grants the MFA claim upon successful satisfaction. The possible values are: none, mfa, unknownFutureValue.
9090
*/
9191
@SerializedName(value = "requirementsSatisfied", alternate = {"RequirementsSatisfied"})
9292
@Expose
@@ -95,7 +95,7 @@ public class AuthenticationStrengthPolicy extends Entity implements IJsonBackedO
9595

9696
/**
9797
* The Combination Configurations.
98-
*
98+
* Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods.
9999
*/
100100
@SerializedName(value = "combinationConfigurations", alternate = {"CombinationConfigurations"})
101101
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class AuthenticationStrengthRoot extends Entity implements IJsonBackedObj
4040

4141
/**
4242
* The Authentication Method Modes.
43-
*
43+
* Names and descriptions of all valid authentication method modes in the system.
4444
*/
4545
@SerializedName(value = "authenticationMethodModes", alternate = {"AuthenticationMethodModes"})
4646
@Expose
@@ -49,7 +49,7 @@ public class AuthenticationStrengthRoot extends Entity implements IJsonBackedObj
4949

5050
/**
5151
* The Policies.
52-
*
52+
* A collection of authentication strength policies that exist for this tenant, including both built-in and custom policies.
5353
*/
5454
@SerializedName(value = "policies", alternate = {"Policies"})
5555
@Expose

0 commit comments

Comments
 (0)