Skip to content

Commit 89b2a04

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 111491
1 parent e4e88b3 commit 89b2a04

File tree

245 files changed

+18064
-50
lines changed

Some content is hidden

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

245 files changed

+18064
-50
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.65.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.66.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.65.0-SNAPSHOT</version>
40+
<version>0.66.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -201,5 +201,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
201201

202202

203203

204+
204205

205206

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

@@ -100,5 +100,6 @@ mavenCentralPublishingEnabled=false
100100

101101

102102

103+
103104

104105

src/main/java/com/microsoft/graph/identitygovernancenamespace/models/LifecycleManagementSettings.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11+
import com.microsoft.graph.models.EmailSettings;
1112
import com.microsoft.graph.models.Entity;
1213

1314

@@ -25,6 +26,15 @@
2526
public class LifecycleManagementSettings extends Entity implements IJsonBackedObject {
2627

2728

29+
/**
30+
* The Email Settings.
31+
* Defines the settings for emails sent out from email-specific tasks within workflows. Accepts 2 parameterssenderDomain- Defines the domain of who is sending the email. useCompanyBranding- A boolean value that defines if company branding is to be used with the email.
32+
*/
33+
@SerializedName(value = "emailSettings", alternate = {"EmailSettings"})
34+
@Expose
35+
@Nullable
36+
public EmailSettings emailSettings;
37+
2838
/**
2939
* The Workflow Schedule Interval In Hours.
3040
* The interval in hours at which all workflows running in the tenant should be scheduled for execution. This interval has a minimum value of 1 and a maximum value of 24. The default value is 3 hours.

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

2424

@@ -75,5 +75,6 @@ private Constants() {
7575

7676

7777

78+
7879

7980

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
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.managedtenants.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 App Performance.
24+
*/
25+
public class AppPerformance extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The App Friendly Name.
30+
*
31+
*/
32+
@SerializedName(value = "appFriendlyName", alternate = {"AppFriendlyName"})
33+
@Expose
34+
@Nullable
35+
public String appFriendlyName;
36+
37+
/**
38+
* The App Name.
39+
*
40+
*/
41+
@SerializedName(value = "appName", alternate = {"AppName"})
42+
@Expose
43+
@Nullable
44+
public String appName;
45+
46+
/**
47+
* The App Publisher.
48+
*
49+
*/
50+
@SerializedName(value = "appPublisher", alternate = {"AppPublisher"})
51+
@Expose
52+
@Nullable
53+
public String appPublisher;
54+
55+
/**
56+
* The Last Updated Date Time.
57+
*
58+
*/
59+
@SerializedName(value = "lastUpdatedDateTime", alternate = {"LastUpdatedDateTime"})
60+
@Expose
61+
@Nullable
62+
public java.time.OffsetDateTime lastUpdatedDateTime;
63+
64+
/**
65+
* The Mean Time To Failure In Minutes.
66+
*
67+
*/
68+
@SerializedName(value = "meanTimeToFailureInMinutes", alternate = {"MeanTimeToFailureInMinutes"})
69+
@Expose
70+
@Nullable
71+
public Integer meanTimeToFailureInMinutes;
72+
73+
/**
74+
* The Tenant Display Name.
75+
*
76+
*/
77+
@SerializedName(value = "tenantDisplayName", alternate = {"TenantDisplayName"})
78+
@Expose
79+
@Nullable
80+
public String tenantDisplayName;
81+
82+
/**
83+
* The Tenant Id.
84+
*
85+
*/
86+
@SerializedName(value = "tenantId", alternate = {"TenantId"})
87+
@Expose
88+
@Nullable
89+
public String tenantId;
90+
91+
/**
92+
* The Total Active Device Count.
93+
*
94+
*/
95+
@SerializedName(value = "totalActiveDeviceCount", alternate = {"TotalActiveDeviceCount"})
96+
@Expose
97+
@Nullable
98+
public Integer totalActiveDeviceCount;
99+
100+
/**
101+
* The Total App Crash Count.
102+
*
103+
*/
104+
@SerializedName(value = "totalAppCrashCount", alternate = {"TotalAppCrashCount"})
105+
@Expose
106+
@Nullable
107+
public Integer totalAppCrashCount;
108+
109+
/**
110+
* The Total App Freeze Count.
111+
*
112+
*/
113+
@SerializedName(value = "totalAppFreezeCount", alternate = {"TotalAppFreezeCount"})
114+
@Expose
115+
@Nullable
116+
public Integer totalAppFreezeCount;
117+
118+
119+
/**
120+
* Sets the raw JSON object
121+
*
122+
* @param serializer the serializer
123+
* @param json the JSON object to set this object to
124+
*/
125+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
126+
127+
}
128+
}
Lines changed: 182 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,182 @@
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.managedtenants.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 Device App Performance.
24+
*/
25+
public class DeviceAppPerformance extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The App Friendly Name.
30+
*
31+
*/
32+
@SerializedName(value = "appFriendlyName", alternate = {"AppFriendlyName"})
33+
@Expose
34+
@Nullable
35+
public String appFriendlyName;
36+
37+
/**
38+
* The App Name.
39+
*
40+
*/
41+
@SerializedName(value = "appName", alternate = {"AppName"})
42+
@Expose
43+
@Nullable
44+
public String appName;
45+
46+
/**
47+
* The App Publisher.
48+
*
49+
*/
50+
@SerializedName(value = "appPublisher", alternate = {"AppPublisher"})
51+
@Expose
52+
@Nullable
53+
public String appPublisher;
54+
55+
/**
56+
* The App Version.
57+
*
58+
*/
59+
@SerializedName(value = "appVersion", alternate = {"AppVersion"})
60+
@Expose
61+
@Nullable
62+
public String appVersion;
63+
64+
/**
65+
* The Device Id.
66+
*
67+
*/
68+
@SerializedName(value = "deviceId", alternate = {"DeviceId"})
69+
@Expose
70+
@Nullable
71+
public String deviceId;
72+
73+
/**
74+
* The Device Manufacturer.
75+
*
76+
*/
77+
@SerializedName(value = "deviceManufacturer", alternate = {"DeviceManufacturer"})
78+
@Expose
79+
@Nullable
80+
public String deviceManufacturer;
81+
82+
/**
83+
* The Device Model.
84+
*
85+
*/
86+
@SerializedName(value = "deviceModel", alternate = {"DeviceModel"})
87+
@Expose
88+
@Nullable
89+
public String deviceModel;
90+
91+
/**
92+
* The Device Name.
93+
*
94+
*/
95+
@SerializedName(value = "deviceName", alternate = {"DeviceName"})
96+
@Expose
97+
@Nullable
98+
public String deviceName;
99+
100+
/**
101+
* The Health Status.
102+
*
103+
*/
104+
@SerializedName(value = "healthStatus", alternate = {"HealthStatus"})
105+
@Expose
106+
@Nullable
107+
public String healthStatus;
108+
109+
/**
110+
* The Is Latest Used Version.
111+
*
112+
*/
113+
@SerializedName(value = "isLatestUsedVersion", alternate = {"IsLatestUsedVersion"})
114+
@Expose
115+
@Nullable
116+
public Integer isLatestUsedVersion;
117+
118+
/**
119+
* The Is Most Used Version.
120+
*
121+
*/
122+
@SerializedName(value = "isMostUsedVersion", alternate = {"IsMostUsedVersion"})
123+
@Expose
124+
@Nullable
125+
public Integer isMostUsedVersion;
126+
127+
/**
128+
* The Last Updated Date Time.
129+
*
130+
*/
131+
@SerializedName(value = "lastUpdatedDateTime", alternate = {"LastUpdatedDateTime"})
132+
@Expose
133+
@Nullable
134+
public java.time.OffsetDateTime lastUpdatedDateTime;
135+
136+
/**
137+
* The Tenant Display Name.
138+
*
139+
*/
140+
@SerializedName(value = "tenantDisplayName", alternate = {"TenantDisplayName"})
141+
@Expose
142+
@Nullable
143+
public String tenantDisplayName;
144+
145+
/**
146+
* The Tenant Id.
147+
*
148+
*/
149+
@SerializedName(value = "tenantId", alternate = {"TenantId"})
150+
@Expose
151+
@Nullable
152+
public String tenantId;
153+
154+
/**
155+
* The Total App Crash Count.
156+
*
157+
*/
158+
@SerializedName(value = "totalAppCrashCount", alternate = {"TotalAppCrashCount"})
159+
@Expose
160+
@Nullable
161+
public Integer totalAppCrashCount;
162+
163+
/**
164+
* The Total App Freeze Count.
165+
*
166+
*/
167+
@SerializedName(value = "totalAppFreezeCount", alternate = {"TotalAppFreezeCount"})
168+
@Expose
169+
@Nullable
170+
public Integer totalAppFreezeCount;
171+
172+
173+
/**
174+
* Sets the raw JSON object
175+
*
176+
* @param serializer the serializer
177+
* @param json the JSON object to set this object to
178+
*/
179+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
180+
181+
}
182+
}

0 commit comments

Comments
 (0)