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
- name: Create PR using the GitHub REST API via hub
36
-
shell: bash
37
55
env:
38
56
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
57
MESSAGE_TITLE: Generated beta models using Typewriter
40
58
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 [beta_metadata.xml](https://github.com/microsoftgraph/msgraph-metadata/blob/master/beta_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."
- name: Create PR using the GitHub REST API via hub
38
-
shell: bash
39
58
env:
40
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
60
MESSAGE_TITLE: Generated models using Typewriter
42
61
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."
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/AuthenticationContextClassReference.php
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ class AuthenticationContextClassReference extends Entity
26
26
{
27
27
/**
28
28
* Gets the description
29
+
* A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user facing admin experiences. For example, selection UX.
29
30
*
30
31
* @return string|null The description
31
32
*/
@@ -40,6 +41,7 @@ public function getDescription()
40
41
41
42
/**
42
43
* Sets the description
44
+
* A short explanation of the policies that are enforced by authenticationContextClassReference. This value should be used to provide secondary text to describe the authentication context class reference when building user facing admin experiences. For example, selection UX.
43
45
*
44
46
* @param string $val The description
45
47
*
@@ -53,6 +55,7 @@ public function setDescription($val)
53
55
54
56
/**
55
57
* Gets the displayName
58
+
* The display name is the friendly name of the authenticationContextClassReference. This value should be used to identify the authentication context class reference when building user facing admin experiences. For example, selection UX.
56
59
*
57
60
* @return string|null The displayName
58
61
*/
@@ -67,6 +70,7 @@ public function getDisplayName()
67
70
68
71
/**
69
72
* Sets the displayName
73
+
* The display name is the friendly name of the authenticationContextClassReference. This value should be used to identify the authentication context class reference when building user facing admin experiences. For example, selection UX.
70
74
*
71
75
* @param string $val The displayName
72
76
*
@@ -80,6 +84,7 @@ public function setDisplayName($val)
80
84
81
85
/**
82
86
* Gets the isAvailable
87
+
* Indicates whether the authenticationContextClassReference has been published by the security admin and is ready for use by apps. When it is set to false it should not be shown in admin UX experiences because the value is not currently available for selection.
83
88
*
84
89
* @return bool|null The isAvailable
85
90
*/
@@ -94,6 +99,7 @@ public function getIsAvailable()
94
99
95
100
/**
96
101
* Sets the isAvailable
102
+
* Indicates whether the authenticationContextClassReference has been published by the security admin and is ready for use by apps. When it is set to false it should not be shown in admin UX experiences because the value is not currently available for selection.
Copy file name to clipboardExpand all lines: src/Beta/Microsoft/Graph/Model/OAuth2PermissionGrant.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ public function setClientId($val)
55
55
56
56
/**
57
57
* Gets the consentType
58
-
* Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
58
+
* Indicates whether authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
59
59
*
60
60
* @return string|null The consentType
61
61
*/
@@ -70,7 +70,7 @@ public function getConsentType()
70
70
71
71
/**
72
72
* Sets the consentType
73
-
* Indicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
73
+
* Indicates whether authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
0 commit comments