Skip to content

Commit 6923236

Browse files
Merge pull request #325 from microsoftgraph/beta/pipelinebuild/77306
Generated beta models and request builders using Typewriter
2 parents f1ba800 + 9cdb733 commit 6923236

File tree

88 files changed

+994
-614
lines changed

Some content is hidden

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

88 files changed

+994
-614
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
## [0.50.0] - 2022-06-15
15+
16+
### Added
17+
18+
- TeamsAppSettings model and requests.
19+
20+
### Changed
21+
22+
- Updated beta models and request builders generated using Typewriter, based on latest Beta-Metadata.
23+
- Models and requests with Attachment_v2 prefix changed to use AttachmentBase prefix.
24+
- Models and requests with FileAttachment_v2 prefix changed to use TaskFileAttachment prefix.
25+
1426
## [0.49.0] - 2022-06-07
1527

1628
### Added

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.49.0-SNAPSHOT'
23+
implementation 'com.microsoft.graph:microsoft-graph-beta:0.50.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.49.0-SNAPSHOT</version>
40+
<version>0.50.0-SNAPSHOT</version>
4141
</dependency>
4242
<dependency>
4343
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
@@ -186,5 +186,6 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI
186186

187187

188188

189+
189190

190191

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

@@ -85,5 +85,6 @@ mavenCentralPublishingEnabled=false
8585

8686

8787

88+
8889

8990

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

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

5959
/**
6060
* The Queries.
61-
* Read-only. Nullable.
61+
*
6262
*/
6363
@SerializedName(value = "queries", alternate = {"Queries"})
6464
@Expose

src/main/java/com/microsoft/graph/externalconnectors/models/ExternalConnection.java

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

103103
/**
104104
* The Groups.
105-
* Read-only. Nullable.
105+
*
106106
*/
107107
@SerializedName(value = "groups", alternate = {"Groups"})
108108
@Expose
@@ -111,7 +111,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
111111

112112
/**
113113
* The Items.
114-
* Read-only. Nullable.
114+
*
115115
*/
116116
@SerializedName(value = "items", alternate = {"Items"})
117117
@Expose
@@ -120,7 +120,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
120120

121121
/**
122122
* The Operations.
123-
* Read-only. Nullable.
123+
*
124124
*/
125125
@SerializedName(value = "operations", alternate = {"Operations"})
126126
@Expose
@@ -129,7 +129,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
129129

130130
/**
131131
* The Quota.
132-
* Read-only. Nullable.
132+
*
133133
*/
134134
@SerializedName(value = "quota", alternate = {"Quota"})
135135
@Expose
@@ -138,7 +138,7 @@ public class ExternalConnection extends Entity implements IJsonBackedObject {
138138

139139
/**
140140
* The Schema.
141-
* Read-only. Nullable.
141+
*
142142
*/
143143
@SerializedName(value = "schema", alternate = {"Schema"})
144144
@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.49.0";
21+
public static final String VERSION_NAME = "0.50.0";
2222
}
2323

2424

@@ -60,5 +60,6 @@ private Constants() {
6060

6161

6262

63+
6364

6465

src/main/java/com/microsoft/graph/managedtenants/models/ManagedTenant.java

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

232232
/**
233233
* The My Roles.
234-
*
234+
* The collection of role assignments to a signed-in user for a managed tenant.
235235
*/
236236
@SerializedName(value = "myRoles", alternate = {"MyRoles"})
237237
@Expose

src/main/java/com/microsoft/graph/managedtenants/models/MyRole.java

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

4242
/**
4343
* The Assignments.
44-
*
44+
* A collection of role assignments for the managed tenant.
4545
*/
4646
@SerializedName(value = "assignments", alternate = {"Assignments"})
4747
@Expose
@@ -50,7 +50,7 @@ public final AdditionalDataManager additionalDataManager() {
5050

5151
/**
5252
* The Tenant Id.
53-
*
53+
* The Azure Active Directory tenant identifier for the managed tenant. Optional. Read-only.
5454
*/
5555
@SerializedName(value = "tenantId", alternate = {"TenantId"})
5656
@Expose

src/main/java/com/microsoft/graph/managedtenants/models/RoleAssignment.java

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

4343
/**
4444
* The Assignment Type.
45-
*
45+
* The type of the admin relationship(s) associated with the role assignment. Possible values are: none, delegatedAdminPrivileges, unknownFutureValue, granularDelegatedAdminPrivileges, delegatedAndGranularDelegetedAdminPrivileges. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: granularDelegatedAdminPrivileges , delegatedAndGranularDelegetedAdminPrivileges.
4646
*/
4747
@SerializedName(value = "assignmentType", alternate = {"AssignmentType"})
4848
@Expose
@@ -51,7 +51,7 @@ public final AdditionalDataManager additionalDataManager() {
5151

5252
/**
5353
* The Roles.
54-
*
54+
* The collection of roles assigned.
5555
*/
5656
@SerializedName(value = "roles", alternate = {"Roles"})
5757
@Expose

src/main/java/com/microsoft/graph/managedtenants/models/RoleDefinition.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 Description.
42-
*
42+
* The description for the role.
4343
*/
4444
@SerializedName(value = "description", alternate = {"Description"})
4545
@Expose
@@ -48,7 +48,7 @@ public final AdditionalDataManager additionalDataManager() {
4848

4949
/**
5050
* The Display Name.
51-
*
51+
* The display name for the role assignment.
5252
*/
5353
@SerializedName(value = "displayName", alternate = {"DisplayName"})
5454
@Expose
@@ -57,7 +57,7 @@ public final AdditionalDataManager additionalDataManager() {
5757

5858
/**
5959
* The Template Id.
60-
*
60+
* The unique identifier for the template.
6161
*/
6262
@SerializedName(value = "templateId", alternate = {"TemplateId"})
6363
@Expose

0 commit comments

Comments
 (0)