You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/create-v1.0-pull-request.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ jobs:
40
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
41
MESSAGE_TITLE: Generated models and request builders using Typewriter
42
42
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. See [v1.0_metadata.xml](https://github.com/microsoftgraph/msgraph-metadata/blob/master/v1.0_metadata.xml) for metadata changes. \n\n Make sure the version number is incremented in /src/Core/GraphConstants.php. Compare the version against the latest release on [packagist.org](https://packagist.org/packages/microsoft/microsoft-graph) and update the version in src/Core/GraphConstants. \n\n cc: @darrelmiller"
Copy file name to clipboardExpand all lines: src/Model/ServicePrincipal.php
+81Lines changed: 81 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,33 @@ public function setAppDisplayName($val)
141
141
return$this;
142
142
}
143
143
144
+
/**
145
+
* Gets the appDescription
146
+
*
147
+
* @return string The appDescription
148
+
*/
149
+
publicfunctiongetAppDescription()
150
+
{
151
+
if (array_key_exists("appDescription", $this->_propDict)) {
152
+
return$this->_propDict["appDescription"];
153
+
} else {
154
+
returnnull;
155
+
}
156
+
}
157
+
158
+
/**
159
+
* Sets the appDescription
160
+
*
161
+
* @param string $val The appDescription
162
+
*
163
+
* @return ServicePrincipal
164
+
*/
165
+
publicfunctionsetAppDescription($val)
166
+
{
167
+
$this->_propDict["appDescription"] = $val;
168
+
return$this;
169
+
}
170
+
144
171
/**
145
172
* Gets the appId
146
173
* The unique identifier for the associated application (its appId property).
@@ -287,6 +314,33 @@ public function setAppRoles($val)
287
314
return$this;
288
315
}
289
316
317
+
/**
318
+
* Gets the description
319
+
*
320
+
* @return string The description
321
+
*/
322
+
publicfunctiongetDescription()
323
+
{
324
+
if (array_key_exists("description", $this->_propDict)) {
325
+
return$this->_propDict["description"];
326
+
} else {
327
+
returnnull;
328
+
}
329
+
}
330
+
331
+
/**
332
+
* Sets the description
333
+
*
334
+
* @param string $val The description
335
+
*
336
+
* @return ServicePrincipal
337
+
*/
338
+
publicfunctionsetDescription($val)
339
+
{
340
+
$this->_propDict["description"] = $val;
341
+
return$this;
342
+
}
343
+
290
344
/**
291
345
* Gets the displayName
292
346
* The display name for the service principal.
@@ -466,6 +520,33 @@ public function setLogoutUrl($val)
466
520
return$this;
467
521
}
468
522
523
+
/**
524
+
* Gets the notes
525
+
*
526
+
* @return string The notes
527
+
*/
528
+
publicfunctiongetNotes()
529
+
{
530
+
if (array_key_exists("notes", $this->_propDict)) {
531
+
return$this->_propDict["notes"];
532
+
} else {
533
+
returnnull;
534
+
}
535
+
}
536
+
537
+
/**
538
+
* Sets the notes
539
+
*
540
+
* @param string $val The notes
541
+
*
542
+
* @return ServicePrincipal
543
+
*/
544
+
publicfunctionsetNotes($val)
545
+
{
546
+
$this->_propDict["notes"] = $val;
547
+
return$this;
548
+
}
549
+
469
550
/**
470
551
* Gets the notificationEmailAddresses
471
552
* 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.
0 commit comments