Skip to content

Commit dee26b1

Browse files
Merge pull request #629 from microsoftgraph/beta/pipelinebuild/120562
Generated Beta models and request builders
2 parents 748aaae + b185df6 commit dee26b1

File tree

53 files changed

+1283
-68
lines changed

Some content is hidden

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

53 files changed

+1283
-68
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [0.76.0] - 2023-07-19
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [0.75.0] - 2023-07-12
1521

1622
### 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.75.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.76.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.75.0-SNAPSHOT</version>
40+
<version>0.76.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -147,3 +147,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
147147
## 9. Third-party notices
148148

149149
[Third-party notices](THIRD%20PARTY%20NOTICES)
150+

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

@@ -110,5 +110,6 @@ mavenCentralPublishingEnabled=false
110110

111111

112112

113+
113114

114115

src/main/java/com/microsoft/graph/devicemanagementnamespace/models/AlertRuleTemplate.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ public enum AlertRuleTemplate
2828
*/
2929
UNKNOWN_FUTURE_VALUE,
3030
/**
31+
* cloud Pc In Grace Period Scenario
32+
*/
33+
CLOUD_PC_IN_GRACE_PERIOD_SCENARIO,
34+
/**
3135
* For AlertRuleTemplate values that were not expected from the service
3236
*/
3337
UNEXPECTED_VALUE

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

2424

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

8686

8787

88+
8889

8990

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

Lines changed: 10 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.CloudPcConnectionSettings;
1213
import com.microsoft.graph.models.CloudPcConnectivityResult;
1314
import com.microsoft.graph.models.CloudPcDiskEncryptionState;
1415
import com.microsoft.graph.models.CloudPcLoginResult;
@@ -47,6 +48,15 @@ public class CloudPC extends Entity implements IJsonBackedObject {
4748
@Nullable
4849
public String aadDeviceId;
4950

51+
/**
52+
* The Connection Settings.
53+
*
54+
*/
55+
@SerializedName(value = "connectionSettings", alternate = {"ConnectionSettings"})
56+
@Expose
57+
@Nullable
58+
public CloudPcConnectionSettings connectionSettings;
59+
5060
/**
5161
* The Connectivity Result.
5262
* The connectivity health check result of a Cloud PC, including the updated timestamp and whether the Cloud PC can be connected.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
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+
12+
13+
import com.google.gson.JsonObject;
14+
import com.google.gson.annotations.SerializedName;
15+
import com.google.gson.annotations.Expose;
16+
import javax.annotation.Nullable;
17+
import javax.annotation.Nonnull;
18+
19+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
20+
21+
/**
22+
* The class for the Cloud Pc Connection Settings.
23+
*/
24+
public class CloudPcConnectionSettings implements IJsonBackedObject {
25+
26+
/** the OData type of the object as returned by the service */
27+
@SerializedName("@odata.type")
28+
@Expose
29+
@Nullable
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
@Nonnull
36+
public final AdditionalDataManager additionalDataManager() {
37+
return additionalDataManager;
38+
}
39+
40+
/**
41+
* The Enable Single Sign On.
42+
*
43+
*/
44+
@SerializedName(value = "enableSingleSignOn", alternate = {"EnableSingleSignOn"})
45+
@Expose
46+
@Nullable
47+
public Boolean enableSingleSignOn;
48+
49+
50+
/**
51+
* Sets the raw JSON object
52+
*
53+
* @param serializer the serializer
54+
* @param json the JSON object to set this object to
55+
*/
56+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
57+
58+
}
59+
}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
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 Cloud Pc Front Line Service Plan.
24+
*/
25+
public class CloudPcFrontLineServicePlan extends Entity implements IJsonBackedObject {
26+
27+
28+
/**
29+
* The Display Name.
30+
*
31+
*/
32+
@SerializedName(value = "displayName", alternate = {"DisplayName"})
33+
@Expose
34+
@Nullable
35+
public String displayName;
36+
37+
/**
38+
* The Total Count.
39+
*
40+
*/
41+
@SerializedName(value = "totalCount", alternate = {"TotalCount"})
42+
@Expose
43+
@Nullable
44+
public Integer totalCount;
45+
46+
/**
47+
* The Used Count.
48+
*
49+
*/
50+
@SerializedName(value = "usedCount", alternate = {"UsedCount"})
51+
@Expose
52+
@Nullable
53+
public Integer usedCount;
54+
55+
56+
/**
57+
* Sets the raw JSON object
58+
*
59+
* @param serializer the serializer
60+
* @param json the JSON object to set this object to
61+
*/
62+
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
63+
64+
}
65+
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ public enum CloudPcOnPremisesConnectionStatus
3232
*/
3333
WARNING,
3434
/**
35+
* informational
36+
*/
37+
INFORMATIONAL,
38+
/**
3539
* unknown Future Value
3640
*/
3741
UNKNOWN_FUTURE_VALUE,

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ public enum CloudPcReportName
4040
*/
4141
NO_LICENSE_AVAILABLE_CONNECTIVITY_FAILURE_REPORT,
4242
/**
43+
* remote Connection Quality Reports
44+
*/
45+
REMOTE_CONNECTION_QUALITY_REPORTS,
46+
/**
4347
* For CloudPcReportName values that were not expected from the service
4448
*/
4549
UNEXPECTED_VALUE

0 commit comments

Comments
 (0)