Skip to content

Commit 8670a63

Browse files
authored
Merge pull request #413 from microsoftgraph/v1.0/pipelinebuild/3496759
Generated v1.0 models and request builders using Typewriter
2 parents 094d748 + 4c9f8d1 commit 8670a63

File tree

5 files changed

+45
-5
lines changed

5 files changed

+45
-5
lines changed

.github/workflows/create-v1.0-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939
MESSAGE_TITLE: Generated v1.0 models and request builders using Typewriter
40-
MESSAGE_BODY: "This pull request was automatically created by the GitHub Action, **${{github.workflow}}**. \n\n The commit hash is _${{github.sha}}_. \n\n **Important** Check for unexpected deletions or changes in this PR. \n\n - [ ] update version in gradle.properties and Constants.java. \n\n cc: @darrelmiller"
41-
REVIEWERS: peombwa,ddyett,zengin,nikithauc,ramsessanchez
42-
ASSIGNEDTO: MIchaelMainer
40+
MESSAGE_BODY: "This pull request was automatically created by the GitHub Action, **${{github.workflow}}**. \n\n The commit hash is _${{github.sha}}_. \n\n **Important** Check for unexpected deletions or changes in this PR. \n\n - [ ] update version in gradle.properties and Constants.java. \n\n - [ ] update version in readme.md\n\n- [ ] create tag and release\n\n cc: @darrelmiller"
41+
REVIEWERS: peombwa,ddyett,zengin,nikithauc,baywet
42+
ASSIGNEDTO: baywet
4343
LABELS: generated
4444
BASE: dev
4545
run: |

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,14 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
116116
@Expose
117117
public java.util.Calendar createdDateTime;
118118

119+
/**
120+
* The Description.
121+
*
122+
*/
123+
@SerializedName("description")
124+
@Expose
125+
public String description;
126+
119127
/**
120128
* The Public Client.
121129
* Specifies settings for installed clients such as desktop or mobile devices.
@@ -164,6 +172,14 @@ public class Application extends DirectoryObject implements IJsonBackedObject {
164172
@Expose
165173
public java.util.List<KeyCredential> keyCredentials;
166174

175+
/**
176+
* The Notes.
177+
*
178+
*/
179+
@SerializedName("notes")
180+
@Expose
181+
public String notes;
182+
167183
/**
168184
* The Oauth2Require Post Response.
169185
*

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,14 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
8989
@Expose
9090
public String appDisplayName;
9191

92+
/**
93+
* The App Description.
94+
*
95+
*/
96+
@SerializedName("appDescription")
97+
@Expose
98+
public String appDescription;
99+
92100
/**
93101
* The App Id.
94102
* The unique identifier for the associated application (its appId property).
@@ -129,6 +137,14 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
129137
@Expose
130138
public java.util.List<AppRole> appRoles;
131139

140+
/**
141+
* The Description.
142+
*
143+
*/
144+
@SerializedName("description")
145+
@Expose
146+
public String description;
147+
132148
/**
133149
* The Display Name.
134150
* The display name for the service principal.
@@ -177,6 +193,14 @@ public class ServicePrincipal extends DirectoryObject implements IJsonBackedObje
177193
@Expose
178194
public String logoutUrl;
179195

196+
/**
197+
* The Notes.
198+
*
199+
*/
200+
@SerializedName("notes")
201+
@Expose
202+
public String notes;
203+
180204
/**
181205
* The Notification Email Addresses.
182206
* Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications.

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

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

5050
/**
5151
* The Distribution Method.
52-
* The method of distribution for the app.
52+
* The method of distribution for the app. Read-only.
5353
*/
5454
@SerializedName("distributionMethod")
5555
@Expose

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

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

3030
/**
3131
* The Teams App Id.
32-
* The id from the Teams App manifest.
32+
* The ID from the Teams app manifest.
3333
*/
3434
@SerializedName("teamsAppId")
3535
@Expose

0 commit comments

Comments
 (0)