Skip to content

Commit 8735f29

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Update generated files with build 36432 [skip ci]
1 parent 92f806b commit 8735f29

File tree

988 files changed

+8498
-3385
lines changed

Some content is hidden

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

988 files changed

+8498
-3385
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
2323
dependencies {
2424
// Include the sdk as a dependency
25-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.2.0-SNAPSHOT'
25+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.3.0-SNAPSHOT'
2626
}
2727
```
2828

@@ -34,7 +34,7 @@ Add the dependency in `dependencies` in pom.xml
3434
<dependency>
3535
<groupId>com.microsoft.graph</groupId>
3636
<artifactId>microsoft-graph-beta</artifactId>
37-
<version>0.2.0-SNAPSHOT</version>
37+
<version>0.3.0-SNAPSHOT</version>
3838
</dependency>
3939
```
4040

@@ -135,3 +135,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
135135

136136
[Third-party notices](THIRD%20PARTY%20NOTICES)
137137

138+

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 = 2
29+
mavenMinorVersion = 3
3030
mavenPatchVersion = 0
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
@@ -43,3 +43,4 @@ Password="PASSWORD"
4343
mavenCentralSnapshotArtifactSuffix = -SNAPSHOT
4444
mavenCentralPublishingEnabled=false
4545

46+

src/main/java/com/microsoft/graph/callrecords/models/extensions/CallRecord.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
9494

9595
/**
9696
* The Version.
97-
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
97+
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
9898
*/
9999
@SerializedName(value = "version", alternate = {"Version"})
100100
@Expose

src/main/java/com/microsoft/graph/core/Constants.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ private Constants() {
3030
public static final String PASSWORD = "password";
3131
public static final String TENANTID = "tenantid";
3232
public static final String CLIENTSECRET = "clientsecret";
33-
public static final String VERSION_NAME = "0.2.0";
33+
public static final String VERSION_NAME = "0.3.0";
3434
}
3535

36+

src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMember.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,17 @@ public class AadUserConversationMember extends ConversationMember implements IJs
3232
@Expose
3333
public String email;
3434

35+
/**
36+
* The Tenant Id.
37+
* TenantId which the Azure AD user belongs to.
38+
*/
39+
@SerializedName(value = "tenantId", alternate = {"TenantId"})
40+
@Expose
41+
public String tenantId;
42+
3543
/**
3644
* The User Id.
37-
* The guid of the user.
45+
* The GUID of the user.
3846
*/
3947
@SerializedName(value = "userId", alternate = {"UserId"})
4048
@Expose

src/main/java/com/microsoft/graph/models/extensions/AadUserConversationMemberResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class AadUserConversationMemberResult extends ActionResultPart implements
2525

2626
/**
2727
* The User Id.
28-
*
28+
* The user object ID of the Azure AD user that was being added as part of the bulk operation.
2929
*/
3030
@SerializedName(value = "userId", alternate = {"UserId"})
3131
@Expose

src/main/java/com/microsoft/graph/models/extensions/AadUserNotificationRecipient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class AadUserNotificationRecipient extends TeamworkNotificationRecipient
2525

2626
/**
2727
* The User Id.
28-
*
28+
* Azure AD user identifier. Use the List users method to get this ID.
2929
*/
3030
@SerializedName(value = "userId", alternate = {"UserId"})
3131
@Expose

src/main/java/com/microsoft/graph/models/extensions/AccessPackage.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,95 +30,95 @@ public class AccessPackage extends Entity implements IJsonBackedObject {
3030

3131
/**
3232
* The Catalog Id.
33-
*
33+
* ID of the access package catalog referencing this access package. Read-only.
3434
*/
3535
@SerializedName(value = "catalogId", alternate = {"CatalogId"})
3636
@Expose
3737
public String catalogId;
3838

3939
/**
4040
* The Created By.
41-
*
41+
* UPN of the user or identity of the subject who created this resource. Read-only.
4242
*/
4343
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
4444
@Expose
4545
public String createdBy;
4646

4747
/**
4848
* The Created Date Time.
49-
*
49+
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only.
5050
*/
5151
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
5252
@Expose
5353
public java.util.Calendar createdDateTime;
5454

5555
/**
5656
* The Description.
57-
*
57+
* The description of the access package.
5858
*/
5959
@SerializedName(value = "description", alternate = {"Description"})
6060
@Expose
6161
public String description;
6262

6363
/**
6464
* The Display Name.
65-
*
65+
* The display name of the access package.
6666
*/
6767
@SerializedName(value = "displayName", alternate = {"DisplayName"})
6868
@Expose
6969
public String displayName;
7070

7171
/**
7272
* The Is Hidden.
73-
*
73+
* Whether the access package is hidden from the requestor.
7474
*/
7575
@SerializedName(value = "isHidden", alternate = {"IsHidden"})
7676
@Expose
7777
public Boolean isHidden;
7878

7979
/**
8080
* The Is Role Scopes Visible.
81-
*
81+
* Indicates whether role scopes are visible.
8282
*/
8383
@SerializedName(value = "isRoleScopesVisible", alternate = {"IsRoleScopesVisible"})
8484
@Expose
8585
public Boolean isRoleScopesVisible;
8686

8787
/**
8888
* The Modified By.
89-
*
89+
* The UPN of the user who last modified this resource. Read-only.
9090
*/
9191
@SerializedName(value = "modifiedBy", alternate = {"ModifiedBy"})
9292
@Expose
9393
public String modifiedBy;
9494

9595
/**
9696
* The Modified Date Time.
97-
*
97+
* The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Read-only.
9898
*/
9999
@SerializedName(value = "modifiedDateTime", alternate = {"ModifiedDateTime"})
100100
@Expose
101101
public java.util.Calendar modifiedDateTime;
102102

103103
/**
104104
* The Access Package Assignment Policies.
105-
*
105+
* Read-only. Nullable.
106106
*/
107107
@SerializedName(value = "accessPackageAssignmentPolicies", alternate = {"AccessPackageAssignmentPolicies"})
108108
@Expose
109109
public AccessPackageAssignmentPolicyCollectionPage accessPackageAssignmentPolicies;
110110

111111
/**
112112
* The Access Package Catalog.
113-
*
113+
* Read-only. Nullable.
114114
*/
115115
@SerializedName(value = "accessPackageCatalog", alternate = {"AccessPackageCatalog"})
116116
@Expose
117117
public AccessPackageCatalog accessPackageCatalog;
118118

119119
/**
120120
* The Access Package Resource Role Scopes.
121-
*
121+
* Nullable.
122122
*/
123123
@SerializedName(value = "accessPackageResourceRoleScopes", alternate = {"AccessPackageResourceRoleScopes"})
124124
@Expose

src/main/java/com/microsoft/graph/models/extensions/AccessPackageAnswer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public final AdditionalDataManager additionalDataManager() {
3535

3636
/**
3737
* The Answered Question.
38-
*
38+
* The question the answer is for. Required and Read-only.
3939
*/
4040
@SerializedName(value = "answeredQuestion", alternate = {"AnsweredQuestion"})
4141
@Expose
4242
public AccessPackageQuestion answeredQuestion;
4343

4444
/**
4545
* The Display Value.
46-
*
46+
* The display value of the answer. Required.
4747
*/
4848
@SerializedName(value = "displayValue", alternate = {"DisplayValue"})
4949
@Expose

src/main/java/com/microsoft/graph/models/extensions/AccessPackageAnswerChoice.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ public final AdditionalDataManager additionalDataManager() {
3535

3636
/**
3737
* The Actual Value.
38-
*
38+
* The actual value of the selected choice. This is typically a string value which is understandable by applications. Required.
3939
*/
4040
@SerializedName(value = "actualValue", alternate = {"ActualValue"})
4141
@Expose
4242
public String actualValue;
4343

4444
/**
4545
* The Display Value.
46-
*
46+
* The localized display values shown to the requestor and approvers. Required.
4747
*/
4848
@SerializedName(value = "displayValue", alternate = {"DisplayValue"})
4949
@Expose

0 commit comments

Comments
 (0)