Skip to content

Commit fe0fb23

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 84225
1 parent fad67a3 commit fe0fb23

22 files changed

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

165165

166166

167+
167168

168169

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

@@ -87,5 +87,6 @@ mavenCentralPublishingEnabled=false
8787

8888

8989

90+
9091

9192

src/main/java/com/microsoft/graph/callrecords/models/ClientUserAgent.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,24 @@
2727
public class ClientUserAgent extends UserAgent implements IJsonBackedObject {
2828

2929

30+
/**
31+
* The Azure ADApp Id.
32+
* The unique identifier of the Azure AD application used by this endpoint.
33+
*/
34+
@SerializedName(value = "azureADAppId", alternate = {"AzureADAppId"})
35+
@Expose
36+
@Nullable
37+
public String azureADAppId;
38+
39+
/**
40+
* The Communication Service Id.
41+
* Immutable resource identifier of the Azure Communication Service associated with this endpoint based on Communication Services APIs.
42+
*/
43+
@SerializedName(value = "communicationServiceId", alternate = {"CommunicationServiceId"})
44+
@Expose
45+
@Nullable
46+
public String communicationServiceId;
47+
3048
/**
3149
* The Platform.
3250
* Identifies the platform used by this endpoint. Possible values are: unknown, windows, macOS, iOS, android, web, ipPhone, roomSystem, surfaceHub, holoLens, unknownFutureValue.

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

2424

@@ -64,5 +64,6 @@ private Constants() {
6464

6565

6666

67+
6768

6869

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Template Source: Enum.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+
/**
10+
* The Enum Auto Restart Notification Dismissal Method.
11+
*/
12+
public enum AutoRestartNotificationDismissalMethod
13+
{
14+
/**
15+
* not Configured
16+
*/
17+
NOT_CONFIGURED,
18+
/**
19+
* automatic
20+
*/
21+
AUTOMATIC,
22+
/**
23+
* user
24+
*/
25+
USER,
26+
/**
27+
* unknown Future Value
28+
*/
29+
UNKNOWN_FUTURE_VALUE,
30+
/**
31+
* For AutoRestartNotificationDismissalMethod values that were not expected from the service
32+
*/
33+
UNEXPECTED_VALUE
34+
}

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
1111
import com.microsoft.graph.http.BaseCollectionPage;
12+
import com.microsoft.graph.models.DetectedAppPlatformType;
1213
import com.microsoft.graph.models.Entity;
1314
import com.microsoft.graph.requests.ManagedDeviceCollectionPage;
1415

@@ -45,6 +46,24 @@ public class DetectedApp extends Entity implements IJsonBackedObject {
4546
@Nullable
4647
public String displayName;
4748

49+
/**
50+
* The Platform.
51+
* Indicates the operating system / platform of the discovered application. Some possible values are Windows, iOS, macOS. The default value is unknown (0).
52+
*/
53+
@SerializedName(value = "platform", alternate = {"Platform"})
54+
@Expose
55+
@Nullable
56+
public DetectedAppPlatformType platform;
57+
58+
/**
59+
* The Publisher.
60+
* Indicates the publisher of the discovered application. For example: 'Microsoft'. The default value is an empty string.
61+
*/
62+
@SerializedName(value = "publisher", alternate = {"Publisher"})
63+
@Expose
64+
@Nullable
65+
public String publisher;
66+
4867
/**
4968
* The Size In Byte.
5069
* Discovered application size in bytes. Read-only
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
// Template Source: Enum.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+
/**
10+
* The Enum Detected App Platform Type.
11+
*/
12+
public enum DetectedAppPlatformType
13+
{
14+
/**
15+
* unknown
16+
*/
17+
UNKNOWN,
18+
/**
19+
* windows
20+
*/
21+
WINDOWS,
22+
/**
23+
* windows Mobile
24+
*/
25+
WINDOWS_MOBILE,
26+
/**
27+
* windows Holographic
28+
*/
29+
WINDOWS_HOLOGRAPHIC,
30+
/**
31+
* ios
32+
*/
33+
IOS,
34+
/**
35+
* mac OS
36+
*/
37+
MAC_OS,
38+
/**
39+
* chrome OS
40+
*/
41+
CHROME_OS,
42+
/**
43+
* android OSP
44+
*/
45+
ANDROID_OSP,
46+
/**
47+
* android Device Administrator
48+
*/
49+
ANDROID_DEVICE_ADMINISTRATOR,
50+
/**
51+
* android Work Profile
52+
*/
53+
ANDROID_WORK_PROFILE,
54+
/**
55+
* android Dedicated And Fully Managed
56+
*/
57+
ANDROID_DEDICATED_AND_FULLY_MANAGED,
58+
/**
59+
* For DetectedAppPlatformType values that were not expected from the service
60+
*/
61+
UNEXPECTED_VALUE
62+
}

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ public enum DeviceManagementReportFileFormat
2020
*/
2121
PDF,
2222
/**
23+
* json
24+
*/
25+
JSON,
26+
/**
27+
* unknown Future Value
28+
*/
29+
UNKNOWN_FUTURE_VALUE,
30+
/**
2331
* For DeviceManagementReportFileFormat values that were not expected from the service
2432
*/
2533
UNEXPECTED_VALUE
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 Presence Clear User Preferred Presence Parameter Set.
21+
*/
22+
public class PresenceClearUserPreferredPresenceParameterSet {
23+
24+
/**
25+
* Instiaciates a new PresenceClearUserPreferredPresenceParameterSet
26+
*/
27+
public PresenceClearUserPreferredPresenceParameterSet() {}
28+
/**
29+
* Instiaciates a new PresenceClearUserPreferredPresenceParameterSet
30+
* @param builder builder bearing the parameters to initialize from
31+
*/
32+
protected PresenceClearUserPreferredPresenceParameterSet(@Nonnull final PresenceClearUserPreferredPresenceParameterSetBuilder builder) {
33+
}
34+
/**
35+
* Gets a new builder for the body
36+
* @return a new builder
37+
*/
38+
@Nonnull
39+
public static PresenceClearUserPreferredPresenceParameterSetBuilder newBuilder() {
40+
return new PresenceClearUserPreferredPresenceParameterSetBuilder();
41+
}
42+
/**
43+
* Fluent builder for the PresenceClearUserPreferredPresenceParameterSet
44+
*/
45+
public static final class PresenceClearUserPreferredPresenceParameterSetBuilder {
46+
/**
47+
* Instanciates a new PresenceClearUserPreferredPresenceParameterSetBuilder
48+
*/
49+
@Nullable
50+
protected PresenceClearUserPreferredPresenceParameterSetBuilder(){}
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 PresenceClearUserPreferredPresenceParameterSet build() {
57+
return new PresenceClearUserPreferredPresenceParameterSet(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+
}

0 commit comments

Comments
 (0)