Skip to content

Commit 5cf1b38

Browse files
authored
Merge pull request #528 from microsoftgraph/beta/pipelinebuild/108413
Generated Beta models and request builders
2 parents b20ceae + 38d52cd commit 5cf1b38

File tree

505 files changed

+21138
-2285
lines changed

Some content is hidden

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

505 files changed

+21138
-2285
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.63.0] - 2023-03-08
15+
16+
### Changed
17+
18+
- Weekly generation.
19+
1420
## [0.62.0] - 2023-01-24
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.62.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.63.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.62.0-SNAPSHOT</version>
40+
<version>0.63.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -198,5 +198,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
198198

199199

200200

201+
201202

202203

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

@@ -97,5 +97,6 @@ mavenCentralPublishingEnabled=false
9797

9898

9999

100+
100101

101102

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public final AdditionalDataManager additionalDataManager() {
112112

113113
/**
114114
* The Currency.
115-
* Type of currency used to calculate the cost of the call (ISO 4217).
115+
* Type of currency used to calculate the cost of the call. For details, see ISO 4217.
116116
*/
117117
@SerializedName(value = "currency", alternate = {"Currency"})
118118
@Expose
@@ -202,7 +202,7 @@ public final AdditionalDataManager additionalDataManager() {
202202

203203
/**
204204
* The Tenant Country Code.
205-
* Country code of the tenant, ISO 3166-1 alpha-2.
205+
* Country code of the tenant. For details, see ISO 3166-1 alpha-2.
206206
*/
207207
@SerializedName(value = "tenantCountryCode", alternate = {"TenantCountryCode"})
208208
@Expose
@@ -211,7 +211,7 @@ public final AdditionalDataManager additionalDataManager() {
211211

212212
/**
213213
* The Usage Country Code.
214-
* Country code of the user, ISO 3166-1 alpha-2.
214+
* Country code of the user. For details, see ISO 3166-1 alpha-2.
215215
*/
216216
@SerializedName(value = "usageCountryCode", alternate = {"UsageCountryCode"})
217217
@Expose
@@ -238,7 +238,7 @@ public final AdditionalDataManager additionalDataManager() {
238238

239239
/**
240240
* The User Principal Name.
241-
* UserPrincipalName (sign-in name) in Azure Active Directory. This is usually the same as user's SIP Address, and can be same as user's e-mail address.
241+
* The user principal name (sign-in name) in Azure Active Directory. This is usually the same as the user's SIP address, and can be same as the user's e-mail address.
242242
*/
243243
@SerializedName(value = "userPrincipalName", alternate = {"UserPrincipalName"})
244244
@Expose

src/main/java/com/microsoft/graph/ediscovery/models/ExportOptions.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ public enum ExportOptions
2525
PDF_REPLACEMENT,
2626
/**
2727
* file Info
28+
* @deprecated The fileInfo will be deprecated on April 30, 2023.
2829
*/
30+
@Deprecated
2931
FILE_INFO,
3032
/**
3133
* tags

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

2424

@@ -72,5 +72,6 @@ private Constants() {
7272

7373

7474

75+
7576

7677

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final AdditionalDataManager additionalDataManager() {
4040

4141
/**
4242
* The Action Url.
43-
*
43+
* A link to the documentation or Azure portal page that is associated with the action step.
4444
*/
4545
@SerializedName(value = "actionUrl", alternate = {"ActionUrl"})
4646
@Expose
@@ -49,7 +49,7 @@ public final AdditionalDataManager additionalDataManager() {
4949

5050
/**
5151
* The Step Number.
52-
*
52+
* Indicates the position for this action in the order of the collection of actions to be taken.
5353
*/
5454
@SerializedName(value = "stepNumber", alternate = {"StepNumber"})
5555
@Expose
@@ -58,7 +58,7 @@ public final AdditionalDataManager additionalDataManager() {
5858

5959
/**
6060
* The Text.
61-
*
61+
* Friendly description of the action to take.
6262
*/
6363
@SerializedName(value = "text", alternate = {"Text"})
6464
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final AdditionalDataManager additionalDataManager() {
3939

4040
/**
4141
* The Display Name.
42-
*
42+
* Brief title for the page that the links directs to.
4343
*/
4444
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Url.
51-
*
51+
* The URL to the documentation or Azure portal page.
5252
*/
5353
@SerializedName(value = "url", alternate = {"Url"})
5454
@Expose

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import com.microsoft.graph.tenantadmin.models.Sharepoint;
1313
import com.microsoft.graph.models.ServiceAnnouncement;
1414
import com.microsoft.graph.models.AdminReportSettings;
15-
import com.microsoft.graph.windowsupdates.models.Windows;
15+
import com.microsoft.graph.models.AdminWindows;
1616

1717

1818
import com.google.gson.JsonObject;
@@ -80,12 +80,12 @@ public final AdditionalDataManager additionalDataManager() {
8080

8181
/**
8282
* The Windows.
83-
* A container for all Windows Update for Business deployment service functionality. Read-only.
83+
* A container for all Windows administrator functionalities. Read-only.
8484
*/
8585
@SerializedName(value = "windows", alternate = {"Windows"})
8686
@Expose
8787
@Nullable
88-
public Windows windows;
88+
public AdminWindows windows;
8989

9090

9191
/**

src/main/java/com/microsoft/graph/windowsupdates/models/Windows.java renamed to src/main/java/com/microsoft/graph/models/AdminWindows.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
44
// ------------------------------------------------------------------------------
55

6-
package com.microsoft.graph.windowsupdates.models;
6+
package com.microsoft.graph.models;
77
import com.microsoft.graph.serializer.ISerializer;
88
import com.microsoft.graph.serializer.IJsonBackedObject;
99
import com.microsoft.graph.serializer.AdditionalDataManager;
1010
import java.util.EnumSet;
11-
import com.microsoft.graph.windowsupdates.models.Updates;
11+
import com.microsoft.graph.models.AdminWindowsUpdates;
1212
import com.microsoft.graph.models.Entity;
1313

1414

@@ -21,19 +21,19 @@
2121
// **NOTE** This file was generated by a tool and any changes will be overwritten.
2222

2323
/**
24-
* The class for the Windows.
24+
* The class for the Admin Windows.
2525
*/
26-
public class Windows extends Entity implements IJsonBackedObject {
26+
public class AdminWindows extends Entity implements IJsonBackedObject {
2727

2828

2929
/**
3030
* The Updates.
31-
* Entity that acts as a container for the functionality of the Windows Update for Business deployment service. Read-only.
31+
* Entity that acts as a container for all Windows Update for Business deployment service functionalities. Read-only.
3232
*/
3333
@SerializedName(value = "updates", alternate = {"Updates"})
3434
@Expose
3535
@Nullable
36-
public Updates updates;
36+
public AdminWindowsUpdates updates;
3737

3838

3939
/**

0 commit comments

Comments
 (0)