Skip to content

Commit 6e325c2

Browse files
authored
Merge pull request #1296 from microsoftgraph/dev
Release 1.103.0
2 parents 4b450b0 + ecf34b6 commit 6e325c2

File tree

204 files changed

+4820
-1330
lines changed

Some content is hidden

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

204 files changed

+4820
-1330
lines changed

.github/fabricbot.json

Lines changed: 0 additions & 1068 deletions
This file was deleted.
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
id:
2+
name: GitOps.PullRequestIssueManagement
3+
description: GitOps.PullRequestIssueManagement primitive
4+
owner:
5+
resource: repository
6+
disabled: false
7+
where:
8+
configuration:
9+
resourceManagementConfiguration:
10+
scheduledSearches:
11+
- description:
12+
frequencies:
13+
- hourly:
14+
hour: 1
15+
filters:
16+
- isIssue
17+
- isOpen
18+
- hasLabel:
19+
label: 'Needs: Author Feedback'
20+
- hasLabel:
21+
label: no-recent-activity
22+
- noActivitySince:
23+
days: 3
24+
- isNotLabeledWith:
25+
label: service bug
26+
actions:
27+
- closeIssue
28+
- description:
29+
frequencies:
30+
- hourly:
31+
hour: 1
32+
filters:
33+
- isIssue
34+
- isOpen
35+
- hasLabel:
36+
label: 'Needs: Author Feedback'
37+
- noActivitySince:
38+
days: 4
39+
- isNotLabeledWith:
40+
label: no-recent-activity
41+
actions:
42+
- addLabel:
43+
label: no-recent-activity
44+
- addReply:
45+
reply: This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **4 days**. It will be closed if no further activity occurs **within 3 days of this comment**.
46+
- description:
47+
frequencies:
48+
- hourly:
49+
hour: 1
50+
filters:
51+
- isIssue
52+
- isOpen
53+
- hasLabel:
54+
label: duplicate
55+
- noActivitySince:
56+
days: 1
57+
actions:
58+
- addReply:
59+
reply: This issue has been marked as duplicate and has not had any activity for **1 day**. It will be closed for housekeeping purposes.
60+
- closeIssue
61+
eventResponderTasks:
62+
- if:
63+
- payloadType: Issue_Comment
64+
- isAction:
65+
action: Created
66+
- isActivitySender:
67+
issueAuthor: True
68+
- hasLabel:
69+
label: 'Needs: Author Feedback'
70+
then:
71+
- addLabel:
72+
label: 'Needs: Attention :wave:'
73+
- removeLabel:
74+
label: 'Needs: Author Feedback'
75+
description:
76+
- if:
77+
- payloadType: Issues
78+
- not:
79+
isAction:
80+
action: Closed
81+
- hasLabel:
82+
label: no-recent-activity
83+
then:
84+
- removeLabel:
85+
label: no-recent-activity
86+
description:
87+
- if:
88+
- payloadType: Issues
89+
- labelAdded:
90+
label: service bug
91+
then: []
92+
description:
93+
- if:
94+
- payloadType: Pull_Request
95+
- isAction:
96+
action: Opened
97+
then:
98+
- addCodeFlowLink
99+
description:
100+
onFailure:
101+
onSuccess:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof
1111
```
1212
{
1313
"require": {
14-
"microsoft/microsoft-graph": "^1.102.0"
14+
"microsoft/microsoft-graph": "^1.103.0"
1515
}
1616
}
1717
```

src/Beta/Microsoft/Graph/DeviceManagementNamespace/Model/AlertRuleTemplate.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,5 @@ class AlertRuleTemplate extends Enum
3333
const CLOUD_PC_IMAGE_UPLOAD_SCENARIO = "cloudPcImageUploadScenario";
3434
const CLOUD_PC_ON_PREMISE_NETWORK_CONNECTION_CHECK_SCENARIO = "cloudPcOnPremiseNetworkConnectionCheckScenario";
3535
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
36+
const CLOUD_PC_IN_GRACE_PERIOD_SCENARIO = "cloudPcInGracePeriodScenario";
3637
}

src/Beta/Microsoft/Graph/Model/AccessReviewNotificationRecipientQueryScope.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AccessReviewNotificationRecipientQueryScope extends AccessReviewNotificati
2525
{
2626
/**
2727
* Gets the query
28-
* This represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
28+
* Represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
2929
*
3030
* @return string|null The query
3131
*/
@@ -40,7 +40,7 @@ public function getQuery()
4040

4141
/**
4242
* Sets the query
43-
* This represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
43+
* Represents the query for who the recipients are. For example, /groups/{group id}/members for group members and /users/{user id} for a specific user.
4444
*
4545
* @param string $val The value of the query
4646
*
@@ -53,7 +53,7 @@ public function setQuery($val)
5353
}
5454
/**
5555
* Gets the queryRoot
56-
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query that is, ./manager) is specified.
56+
* In the scenario where reviewers need to be specified dynamically, indicates the relative source of the query. This property is only required if a relative query (that is, ./manager) is specified.
5757
*
5858
* @return string|null The queryRoot
5959
*/
@@ -68,7 +68,7 @@ public function getQueryRoot()
6868

6969
/**
7070
* Sets the queryRoot
71-
* In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query that is, ./manager) is specified.
71+
* In the scenario where reviewers need to be specified dynamically, indicates the relative source of the query. This property is only required if a relative query (that is, ./manager) is specified.
7272
*
7373
* @param string $val The value of the queryRoot
7474
*

src/Beta/Microsoft/Graph/Model/Admin.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,37 @@ public function setTodo($val)
309309
return $this;
310310
}
311311

312+
/**
313+
* Gets the people
314+
*
315+
* @return PeopleAdminSettings|null The people
316+
*/
317+
public function getPeople()
318+
{
319+
if (array_key_exists("people", $this->_propDict)) {
320+
if (is_a($this->_propDict["people"], "\Beta\Microsoft\Graph\Model\PeopleAdminSettings") || is_null($this->_propDict["people"])) {
321+
return $this->_propDict["people"];
322+
} else {
323+
$this->_propDict["people"] = new PeopleAdminSettings($this->_propDict["people"]);
324+
return $this->_propDict["people"];
325+
}
326+
}
327+
return null;
328+
}
329+
330+
/**
331+
* Sets the people
332+
*
333+
* @param PeopleAdminSettings $val The people
334+
*
335+
* @return Admin
336+
*/
337+
public function setPeople($val)
338+
{
339+
$this->_propDict["people"] = $val;
340+
return $this;
341+
}
342+
312343
/**
313344
* Gets the windows
314345
* A container for all Windows administrator functionalities. Read-only.

src/Beta/Microsoft/Graph/Model/AdminAppsAndServices.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AdminAppsAndServices extends Entity
2626
{
2727
/**
2828
* Gets the settings
29+
* Company-wide settings for apps and services.
2930
*
3031
* @return AppsAndServicesSettings|null The settings
3132
*/
@@ -44,6 +45,7 @@ public function getSettings()
4445

4546
/**
4647
* Sets the settings
48+
* Company-wide settings for apps and services.
4749
*
4850
* @param AppsAndServicesSettings $val The settings
4951
*

src/Beta/Microsoft/Graph/Model/AdminDynamics.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AdminDynamics extends Entity
2626
{
2727
/**
2828
* Gets the customerVoice
29+
* Company-wide settings for Microsoft Dynamics 365 Customer Voice.
2930
*
3031
* @return CustomerVoiceSettings|null The customerVoice
3132
*/
@@ -44,6 +45,7 @@ public function getCustomerVoice()
4445

4546
/**
4647
* Sets the customerVoice
48+
* Company-wide settings for Microsoft Dynamics 365 Customer Voice.
4749
*
4850
* @param CustomerVoiceSettings $val The customerVoice
4951
*

src/Beta/Microsoft/Graph/Model/AdminForms.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AdminForms extends Entity
2626
{
2727
/**
2828
* Gets the settings
29+
* Company-wide settings for Microsoft Forms.
2930
*
3031
* @return FormsSettings|null The settings
3132
*/
@@ -44,6 +45,7 @@ public function getSettings()
4445

4546
/**
4647
* Sets the settings
48+
* Company-wide settings for Microsoft Forms.
4749
*
4850
* @param FormsSettings $val The settings
4951
*

src/Beta/Microsoft/Graph/Model/AdminTodo.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AdminTodo extends Entity
2626
{
2727
/**
2828
* Gets the settings
29+
* Company-wide settings for Microsoft Todo.
2930
*
3031
* @return TodoSettings|null The settings
3132
*/
@@ -44,6 +45,7 @@ public function getSettings()
4445

4546
/**
4647
* Sets the settings
48+
* Company-wide settings for Microsoft Todo.
4749
*
4850
* @param TodoSettings $val The settings
4951
*

0 commit comments

Comments
 (0)