Skip to content

Commit 70fca8e

Browse files
authored
Merge pull request #99 from microsoftgraph/beta/pipelinebuild/48985
Generated beta models and request builders using Typewriter
2 parents 8c8fa56 + b095edc commit 70fca8e

File tree

134 files changed

+2594
-298
lines changed

Some content is hidden

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

134 files changed

+2594
-298
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.13.0-SNAPSHOT'
22+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.14.0-SNAPSHOT'
2323
}
2424
```
2525

@@ -31,7 +31,7 @@ Add the dependency in `dependencies` in pom.xml
3131
<dependency>
3232
<groupId>com.microsoft.graph</groupId>
3333
<artifactId>microsoft-graph-beta</artifactId>
34-
<version>0.13.0-SNAPSHOT</version>
34+
<version>0.14.0-SNAPSHOT</version>
3535
</dependency>
3636
```
3737

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

143143

144144

145+

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

@@ -52,3 +52,4 @@ mavenCentralPublishingEnabled=false
5252

5353

5454

55+

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public class Case extends Entity implements IJsonBackedObject {
126126

127127
/**
128128
* The Custodians.
129-
*
129+
* Returns a list of case custodian objects for this case. Nullable.
130130
*/
131131
@SerializedName(value = "custodians", alternate = {"Custodians"})
132132
@Expose
@@ -135,7 +135,7 @@ public class Case extends Entity implements IJsonBackedObject {
135135

136136
/**
137137
* The Legal Holds.
138-
*
138+
* Returns a list of case legalHold objects for this case. Nullable.
139139
*/
140140
@SerializedName(value = "legalHolds", alternate = {"LegalHolds"})
141141
@Expose
@@ -144,7 +144,7 @@ public class Case extends Entity implements IJsonBackedObject {
144144

145145
/**
146146
* The Noncustodial Data Sources.
147-
*
147+
* Returns a list of case noncustodialDataSource objects for this case. Nullable.
148148
*/
149149
@SerializedName(value = "noncustodialDataSources", alternate = {"NoncustodialDataSources"})
150150
@Expose
@@ -153,7 +153,7 @@ public class Case extends Entity implements IJsonBackedObject {
153153

154154
/**
155155
* The Operations.
156-
*
156+
* Returns a list of case operation objects for this case. Nullable.
157157
*/
158158
@SerializedName(value = "operations", alternate = {"Operations"})
159159
@Expose
@@ -162,7 +162,7 @@ public class Case extends Entity implements IJsonBackedObject {
162162

163163
/**
164164
* The Review Sets.
165-
*
165+
* Returns a list of reviewSet objects in the case. Read-only. Nullable.
166166
*/
167167
@SerializedName(value = "reviewSets", alternate = {"ReviewSets"})
168168
@Expose

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class DataSourceContainer extends Entity implements IJsonBackedObject {
2929

3030
/**
3131
* The Created Date Time.
32-
*
32+
* Created date and time of the dataSourceContainer entity.
3333
*/
3434
@SerializedName(value = "createdDateTime", alternate = {"CreatedDateTime"})
3535
@Expose
@@ -38,7 +38,7 @@ public class DataSourceContainer extends Entity implements IJsonBackedObject {
3838

3939
/**
4040
* The Display Name.
41-
*
41+
* Display name of the dataSourceContainer entity.
4242
*/
4343
@SerializedName(value = "displayName", alternate = {"DisplayName"})
4444
@Expose
@@ -47,7 +47,7 @@ public class DataSourceContainer extends Entity implements IJsonBackedObject {
4747

4848
/**
4949
* The Last Modified Date Time.
50-
*
50+
* Last modified date and time of the dataSourceContainer.
5151
*/
5252
@SerializedName(value = "lastModifiedDateTime", alternate = {"LastModifiedDateTime"})
5353
@Expose
@@ -56,7 +56,7 @@ public class DataSourceContainer extends Entity implements IJsonBackedObject {
5656

5757
/**
5858
* The Released Date Time.
59-
*
59+
* Date and time that the dataSourceContainer was released from the case.
6060
*/
6161
@SerializedName(value = "releasedDateTime", alternate = {"ReleasedDateTime"})
6262
@Expose
@@ -65,7 +65,7 @@ public class DataSourceContainer extends Entity implements IJsonBackedObject {
6565

6666
/**
6767
* The Status.
68-
*
68+
* Latest status of the dataSourceContainer. Possible values are: Active, Released.
6969
*/
7070
@SerializedName(value = "status", alternate = {"Status"})
7171
@Expose

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class NoncustodialDataSource extends DataSourceContainer implements IJson
2828

2929
/**
3030
* The Apply Hold To Source.
31-
*
31+
* Indicates if hold is applied to non-custodial data source (such as mailbox or site).
3232
*/
3333
@SerializedName(value = "applyHoldToSource", alternate = {"ApplyHoldToSource"})
3434
@Expose
@@ -37,7 +37,7 @@ public class NoncustodialDataSource extends DataSourceContainer implements IJson
3737

3838
/**
3939
* The Data Source.
40-
*
40+
* User source or SharePoint site data source as non-custodial data source.
4141
*/
4242
@SerializedName(value = "dataSource", alternate = {"DataSource"})
4343
@Expose

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

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

4040
/**
4141
* The Is Enabled.
42-
*
42+
* Indicates whether or not OCR is enabled for the case.
4343
*/
4444
@SerializedName(value = "isEnabled", alternate = {"IsEnabled"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Max Image Size.
51-
*
51+
* Maximum image size that will be processed in KB).
5252
*/
5353
@SerializedName(value = "maxImageSize", alternate = {"MaxImageSize"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Timeout.
60-
*
60+
* The timeout duration for the OCR engine. A longer timeout may increase success of OCR, but may add to the total processing time.
6161
*/
6262
@SerializedName(value = "timeout", alternate = {"Timeout"})
6363
@Expose

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

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

4040
/**
4141
* The Is Enabled.
42-
*
42+
* Indicates whether email threading and near duplicate detection are enabled.
4343
*/
4444
@SerializedName(value = "isEnabled", alternate = {"IsEnabled"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Max Words.
51-
*
51+
* See Minimum/maximum number of words to learn more.
5252
*/
5353
@SerializedName(value = "maxWords", alternate = {"MaxWords"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Min Words.
60-
*
60+
* See Minimum/maximum number of words to learn more.
6161
*/
6262
@SerializedName(value = "minWords", alternate = {"MinWords"})
6363
@Expose
@@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() {
6666

6767
/**
6868
* The Similarity Threshold.
69-
*
69+
* See Document and email similarity threshold to learn more.
7070
*/
7171
@SerializedName(value = "similarityThreshold", alternate = {"SimilarityThreshold"})
7272
@Expose

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

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

3131
/**
3232
* The Ocr.
33-
*
33+
* The OCR (Optical Character Recognition) settings for the case.
3434
*/
3535
@SerializedName(value = "ocr", alternate = {"Ocr"})
3636
@Expose
@@ -39,7 +39,7 @@ public class Settings extends Entity implements IJsonBackedObject {
3939

4040
/**
4141
* The Redundancy Detection.
42-
*
42+
* The redundancy (near duplicate and email threading) detection settings for the case.
4343
*/
4444
@SerializedName(value = "redundancyDetection", alternate = {"RedundancyDetection"})
4545
@Expose
@@ -48,7 +48,7 @@ public class Settings extends Entity implements IJsonBackedObject {
4848

4949
/**
5050
* The Topic Modeling.
51-
*
51+
* The Topic Modeling (Themes) settings for the case.
5252
*/
5353
@SerializedName(value = "topicModeling", alternate = {"TopicModeling"})
5454
@Expose

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

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

6464
/**
6565
* The Data Source Scopes.
66-
*
66+
* When specified, the collection will span across a service for an entire workload. Possible values are: none,allTenantMailboxes,allTenantSites,allCaseCustodians,allCaseNoncustodialDataSources.
6767
*/
6868
@SerializedName(value = "dataSourceScopes", alternate = {"DataSourceScopes"})
6969
@Expose
@@ -142,7 +142,7 @@ public class SourceCollection extends Entity implements IJsonBackedObject {
142142

143143
/**
144144
* The Noncustodial Sources.
145-
*
145+
* noncustodialDataSource sources that are included in the sourceCollection
146146
*/
147147
@Nullable
148148
public NoncustodialDataSourceCollectionPage noncustodialSources;

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

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

4040
/**
4141
* The Dynamically Adjust Topic Count.
42-
*
42+
* To learn more, see Adjust maximum number of themes dynamically.
4343
*/
4444
@SerializedName(value = "dynamicallyAdjustTopicCount", alternate = {"DynamicallyAdjustTopicCount"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Ignore Numbers.
51-
*
51+
* To learn more, see Include numbers in themes.
5252
*/
5353
@SerializedName(value = "ignoreNumbers", alternate = {"IgnoreNumbers"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Is Enabled.
60-
*
60+
* Indicates whether themes is enabled for the case.
6161
*/
6262
@SerializedName(value = "isEnabled", alternate = {"IsEnabled"})
6363
@Expose
@@ -66,7 +66,7 @@ public final AdditionalDataManager additionalDataManager() {
6666

6767
/**
6868
* The Topic Count.
69-
*
69+
* To learn more, see Maximum number of themes.
7070
*/
7171
@SerializedName(value = "topicCount", alternate = {"TopicCount"})
7272
@Expose

0 commit comments

Comments
 (0)