Skip to content

Commit e73bf19

Browse files
authored
Merge pull request #544 from microsoftgraph/beta/pipelinebuild/111491
Generated Beta models and request builders
2 parents e4e88b3 + bd9625c commit e73bf19

File tree

246 files changed

+18071
-51
lines changed

Some content is hidden

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

246 files changed

+18071
-51
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
## [0.66.0] - 2023-03-28
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [0.65.0] - 2023-03-23
1521

1622
### Changed
1723

1824
- Weekly generation.
19-
-
25+
2026
## [0.64.0] - 2023-03-14
2127

2228
### 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+
}

0 commit comments

Comments
 (0)