Skip to content

Commit 91e2b12

Browse files
authored
Merge pull request #100 from microsoftgraph/beta/pipelinebuild/49356
Generated beta models and request builders using Typewriter
2 parents 7026df8 + a3ac466 commit 91e2b12

File tree

233 files changed

+1032
-689
lines changed

Some content is hidden

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

233 files changed

+1032
-689
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
2020
dependencies {
2121
// Include the sdk as a dependency
22-
implementation 'com.microsoft.graph:microsoft-graph-beta:0.14.0-SNAPSHOT'
22+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.15.0-SNAPSHOT'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
2525
}
@@ -33,7 +33,7 @@ Add the dependency in `dependencies` in pom.xml
3333
<dependency>
3434
<groupId>com.microsoft.graph</groupId>
3535
<artifactId>microsoft-graph-beta</artifactId>
36-
<version>0.14.0-SNAPSHOT</version>
36+
<version>0.15.0-SNAPSHOT</version>
3737
</dependency>
3838
```
3939

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

146146

147147

148+

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

@@ -53,3 +53,4 @@ mavenCentralPublishingEnabled=false
5353

5454

5555

56+

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
8787

8888
/**
8989
* The Start Date Time.
90-
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
90+
* UTC time when the first user joined the call. The DatetimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
9191
*/
9292
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
9393
@Expose
@@ -105,7 +105,7 @@ public class CallRecord extends Entity implements IJsonBackedObject {
105105

106106
/**
107107
* The Version.
108-
* Monotonically increasing version of the call record. Higher version call records with the same id includes additional data compared to the lower version.
108+
* Monotonically increasing version of the call record. Higher version call records with the same ID includes additional data compared to the lower version.
109109
*/
110110
@SerializedName(value = "version", alternate = {"Version"})
111111
@Expose

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

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

7979
/**
8080
* The Start Date Time.
81-
* UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
81+
* UTC fime when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
8282
*/
8383
@SerializedName(value = "startDateTime", alternate = {"StartDateTime"})
8484
@Expose

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

2424

@@ -28,3 +28,4 @@ private Constants() {
2828

2929

3030

31+

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class AadUserConversationMember extends ConversationMember implements IJs
4646

4747
/**
4848
* The User Id.
49-
* The guid of the user.
49+
* The GUID of the user.
5050
*/
5151
@SerializedName(value = "userId", alternate = {"UserId"})
5252
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public class AccessPackageAssignmentRequest extends Entity implements IJsonBacke
123123

124124
/**
125125
* The Access Package.
126-
*
126+
* The access package associated with the accessPackageAssignmentRequest. An access package defines the collections of resource roles and the policies for how one or more users can get access to those resources. Read-only. Nullable.
127127
*/
128128
@SerializedName(value = "accessPackage", alternate = {"AccessPackage"})
129129
@Expose

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
3232

3333
/**
3434
* The Created By.
35-
*
35+
* User who created this review history definition.
3636
*/
3737
@SerializedName(value = "createdBy", alternate = {"CreatedBy"})
3838
@Expose
@@ -41,7 +41,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
4141

4242
/**
4343
* The Created Date Time.
44-
*
44+
* Timestamp when the access review definition was created.
4545
*/
4646
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
4747
@Expose
@@ -50,7 +50,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
5050

5151
/**
5252
* The Decisions.
53-
*
53+
* Determines which review decisions will be included in the fetched review history data if specified. Optional on create. All decisions will be included by default if no decisions are provided on create. Possible values are: approve, deny, dontKnow, notReviewed, and notNotified.
5454
*/
5555
@SerializedName(value = "decisions", alternate = {"Decisions"})
5656
@Expose
@@ -59,7 +59,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
5959

6060
/**
6161
* The Display Name.
62-
*
62+
* Name for the access review history data collection. Required.
6363
*/
6464
@SerializedName(value = "displayName", alternate = {"DisplayName"})
6565
@Expose
@@ -68,7 +68,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
6868

6969
/**
7070
* The Download Uri.
71-
*
71+
* Uri which can be used to retrieve review history data. This URI will be active for 24 hours after being generated.
7272
*/
7373
@SerializedName(value = "downloadUri", alternate = {"DownloadUri"})
7474
@Expose
@@ -77,7 +77,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
7777

7878
/**
7979
* The Fulfilled Date Time.
80-
*
80+
* Timestamp when all of the available data for this definition was collected. This will be set after this definition's status is set to done.
8181
*/
8282
@SerializedName(value = "fulfilledDateTime", alternate = {"FulfilledDateTime"})
8383
@Expose
@@ -86,7 +86,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
8686

8787
/**
8888
* The Review History Period End Date Time.
89-
*
89+
* Timestamp, reviews starting on or after this date will be included in the fetched history data. Required.
9090
*/
9191
@SerializedName(value = "reviewHistoryPeriodEndDateTime", alternate = {"ReviewHistoryPeriodEndDateTime"})
9292
@Expose
@@ -95,7 +95,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
9595

9696
/**
9797
* The Review History Period Start Date Time.
98-
*
98+
* Timestamp, reviews starting on or before this date will be included in the fetched history data. Required.
9999
*/
100100
@SerializedName(value = "reviewHistoryPeriodStartDateTime", alternate = {"ReviewHistoryPeriodStartDateTime"})
101101
@Expose
@@ -104,7 +104,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
104104

105105
/**
106106
* The Scopes.
107-
*
107+
* Used to scope what reviews are included in the fetched history data. Fetches reviews whose scope matches with this provided scope. See accessreviewqueryscope. Required.
108108
*/
109109
@SerializedName(value = "scopes", alternate = {"Scopes"})
110110
@Expose
@@ -113,7 +113,7 @@ public class AccessReviewHistoryDefinition extends Entity implements IJsonBacked
113113

114114
/**
115115
* The Status.
116-
*
116+
* Represents the status of the review history data collection. Possible values are: done, inprogress, error, requested.
117117
*/
118118
@SerializedName(value = "status", alternate = {"Status"})
119119
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class AccessReviewReviewerScope extends AccessReviewScope implements IJso
3636

3737
/**
3838
* The Query Root.
39-
* The type of query. Examples include MicrosoftGraph and ARM.
39+
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.
4040
*/
4141
@SerializedName(value = "queryRoot", alternate = {"QueryRoot"})
4242
@Expose
@@ -45,7 +45,7 @@ public class AccessReviewReviewerScope extends AccessReviewScope implements IJso
4545

4646
/**
4747
* The Query Type.
48-
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query (i.e., ./manager) is specified.
48+
* The type of query. Examples include MicrosoftGraph and ARM.
4949
*/
5050
@SerializedName(value = "queryType", alternate = {"QueryType"})
5151
@Expose

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class AdminConsentRequestPolicy extends Entity implements IJsonBackedObje
6565

6666
/**
6767
* The Reviewers.
68-
* The list of reviewers for the admin consent. Required.
68+
* Required.
6969
*/
7070
@SerializedName(value = "reviewers", alternate = {"Reviewers"})
7171
@Expose

0 commit comments

Comments
 (0)