Skip to content

Commit fc2a354

Browse files
authored
Merge pull request #1318 from microsoftgraph/dev
Release 1.104.0
2 parents 6e325c2 + 593b19a commit fc2a354

File tree

285 files changed

+15600
-631
lines changed

Some content is hidden

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

285 files changed

+15600
-631
lines changed

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.103.0"
14+
"microsoft/microsoft-graph": "^1.104.0"
1515
}
1616
}
1717
```

src/Beta/Microsoft/Graph/CallRecords/Model/PstnCallLogRow.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ public function setUserDisplayName($val)
778778
}
779779
/**
780780
* Gets the userId
781-
* The unique identifier (GUID) of the user in Azure Active Directory. This and other user info will be null/empty for bot call types (ucap_in, ucap_out).
781+
* The unique identifier (GUID) of the user in Azure Active Directory. This and other user info will be null/empty for bot call types (ucapin, ucapout).
782782
*
783783
* @return string|null The userId
784784
*/
@@ -793,7 +793,7 @@ public function getUserId()
793793

794794
/**
795795
* Sets the userId
796-
* The unique identifier (GUID) of the user in Azure Active Directory. This and other user info will be null/empty for bot call types (ucap_in, ucap_out).
796+
* The unique identifier (GUID) of the user in Azure Active Directory. This and other user info will be null/empty for bot call types (ucapin, ucapout).
797797
*
798798
* @param string $val The value of the userId
799799
*

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,39 @@ public function setAggregationType($val)
5656
$this->_propDict["aggregationType"] = $val;
5757
return $this;
5858
}
59+
60+
/**
61+
* Gets the alertImpactDetails
62+
* The detail information of the impact. For example, if the Frontline Cloud PCs near concurrency limit alert is triggered, the details contain the impacted Frontline license SKU name, such as Windows 365 Frontline 2 vCPU/8GB/128GB, and the corresponding impacted value.
63+
*
64+
* @return \Beta\Microsoft\Graph\Model\KeyValuePair|null The alertImpactDetails
65+
*/
66+
public function getAlertImpactDetails()
67+
{
68+
if (array_key_exists("alertImpactDetails", $this->_propDict)) {
69+
if (is_a($this->_propDict["alertImpactDetails"], "\Beta\Microsoft\Graph\Model\KeyValuePair") || is_null($this->_propDict["alertImpactDetails"])) {
70+
return $this->_propDict["alertImpactDetails"];
71+
} else {
72+
$this->_propDict["alertImpactDetails"] = new \Beta\Microsoft\Graph\Model\KeyValuePair($this->_propDict["alertImpactDetails"]);
73+
return $this->_propDict["alertImpactDetails"];
74+
}
75+
}
76+
return null;
77+
}
78+
79+
/**
80+
* Sets the alertImpactDetails
81+
* The detail information of the impact. For example, if the Frontline Cloud PCs near concurrency limit alert is triggered, the details contain the impacted Frontline license SKU name, such as Windows 365 Frontline 2 vCPU/8GB/128GB, and the corresponding impacted value.
82+
*
83+
* @param \Beta\Microsoft\Graph\Model\KeyValuePair $val The value to assign to the alertImpactDetails
84+
*
85+
* @return AlertImpact The AlertImpact
86+
*/
87+
public function setAlertImpactDetails($val)
88+
{
89+
$this->_propDict["alertImpactDetails"] = $val;
90+
return $this;
91+
}
5992
/**
6093
* Gets the value
6194
* The number value of the impact. For the aggregation types of count and affectedCloudPcCount, the value indicates the number of affected instances. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. For the aggregation types of percentage and affectedCloudPcPercentage, the value indicates the percent of affected instances. For example, 12 affectedCloudPcPercentage means that 12% of Cloud PCs are affected.

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AlertRecord extends \Beta\Microsoft\Graph\Model\Entity
2626
{
2727
/**
2828
* Gets the alertImpact
29-
* The impact of the alert event. Consists of a number followed by the aggregation type. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. 12 affectedCloudPcPercentage means 12% of Cloud PCs are affected.
29+
* The impact of the alert event. Consists of a list of key-value pair and a number followed by the aggregation type. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. 12 affectedCloudPcPercentage means 12% of Cloud PCs are affected. The list of key-value pair indicates the details of the alert impact.
3030
*
3131
* @return AlertImpact|null The alertImpact
3232
*/
@@ -45,7 +45,7 @@ public function getAlertImpact()
4545

4646
/**
4747
* Sets the alertImpact
48-
* The impact of the alert event. Consists of a number followed by the aggregation type. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. 12 affectedCloudPcPercentage means 12% of Cloud PCs are affected.
48+
* The impact of the alert event. Consists of a list of key-value pair and a number followed by the aggregation type. For example, 6 affectedCloudPcCount means that 6 Cloud PCs are affected. 12 affectedCloudPcPercentage means 12% of Cloud PCs are affected. The list of key-value pair indicates the details of the alert impact.
4949
*
5050
* @param AlertImpact $val The alertImpact
5151
*
@@ -88,7 +88,7 @@ public function setAlertRuleId($val)
8888

8989
/**
9090
* Gets the alertRuleTemplate
91-
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
91+
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
9292
*
9393
* @return AlertRuleTemplate|null The alertRuleTemplate
9494
*/
@@ -107,7 +107,7 @@ public function getAlertRuleTemplate()
107107

108108
/**
109109
* Sets the alertRuleTemplate
110-
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
110+
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
111111
*
112112
* @param AlertRuleTemplate $val The alertRuleTemplate
113113
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AlertRule extends \Beta\Microsoft\Graph\Model\Entity
2626
{
2727
/**
2828
* Gets the alertRuleTemplate
29-
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
29+
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
3030
*
3131
* @return AlertRuleTemplate|null The alertRuleTemplate
3232
*/
@@ -45,7 +45,7 @@ public function getAlertRuleTemplate()
4545

4646
/**
4747
* Sets the alertRuleTemplate
48-
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
48+
* The rule template of the alert event. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
4949
*
5050
* @param AlertRuleTemplate $val The alertRuleTemplate
5151
*

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ class AlertRuleTemplate extends Enum
3434
const CLOUD_PC_ON_PREMISE_NETWORK_CONNECTION_CHECK_SCENARIO = "cloudPcOnPremiseNetworkConnectionCheckScenario";
3535
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
3636
const CLOUD_PC_IN_GRACE_PERIOD_SCENARIO = "cloudPcInGracePeriodScenario";
37+
const CLOUD_PC_FRONTLINE_INSUFFICIENT_LICENSES_SCENARIO = "cloudPcFrontlineInsufficientLicensesScenario";
3738
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public function setAlertRuleName($val)
143143

144144
/**
145145
* Gets the alertRuleTemplate
146-
* The associated alert rule template. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
146+
* The associated alert rule template. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
147147
*
148148
* @return AlertRuleTemplate|null The alertRuleTemplate
149149
*/
@@ -162,7 +162,7 @@ public function getAlertRuleTemplate()
162162

163163
/**
164164
* Sets the alertRuleTemplate
165-
* The associated alert rule template. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue.
165+
* The associated alert rule template. The possible values are: cloudPcProvisionScenario, cloudPcImageUploadScenario, cloudPcOnPremiseNetworkConnectionCheckScenario, unknownFutureValue, cloudPcInGracePeriodScenario. Note that you must use the Prefer: include-unknown-enum-members request header to get the following values from this evolvable enum: cloudPcInGracePeriodScenario.
166166
*
167167
* @param AlertRuleTemplate $val The value to assign to the alertRuleTemplate
168168
*

src/Beta/Microsoft/Graph/ExternalConnectors/Model/ComplianceSettings.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class ComplianceSettings extends \Beta\Microsoft\Graph\Model\Entity
2626

2727
/**
2828
* Gets the eDiscoveryResultTemplates
29-
* Enables the developer to define the appearance of the content and configure conditions that dictate when the template should be displayed. Maximum of two eDiscovery result templates per connection.
3029
*
3130
* @return DisplayTemplate|null The eDiscoveryResultTemplates
3231
*/
@@ -45,7 +44,6 @@ public function getEDiscoveryResultTemplates()
4544

4645
/**
4746
* Sets the eDiscoveryResultTemplates
48-
* Enables the developer to define the appearance of the content and configure conditions that dictate when the template should be displayed. Maximum of two eDiscovery result templates per connection.
4947
*
5048
* @param DisplayTemplate $val The value to assign to the eDiscoveryResultTemplates
5149
*

src/Beta/Microsoft/Graph/ExternalConnectors/Model/ExternalConnection.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ public function setActivitySettings($val)
5959

6060
/**
6161
* Gets the complianceSettings
62-
* The settings required for the connection to participate in eDiscovery, such as the display templates for eDiscovery results.
6362
*
6463
* @return ComplianceSettings|null The complianceSettings
6564
*/
@@ -78,7 +77,6 @@ public function getComplianceSettings()
7877

7978
/**
8079
* Sets the complianceSettings
81-
* The settings required for the connection to participate in eDiscovery, such as the display templates for eDiscovery results.
8280
*
8381
* @param ComplianceSettings $val The complianceSettings
8482
*
@@ -183,7 +181,7 @@ public function setDescription($val)
183181

184182
/**
185183
* Gets the enabledContentExperiences
186-
* The list of content experiences the connection will participate in. Possible values are search and compliance.
184+
* The list of content experiences the connection will participate in. Possible values are search.
187185
*
188186
* @return ContentExperienceType|null The enabledContentExperiences
189187
*/
@@ -202,7 +200,7 @@ public function getEnabledContentExperiences()
202200

203201
/**
204202
* Sets the enabledContentExperiences
205-
* The list of content experiences the connection will participate in. Possible values are search and compliance.
203+
* The list of content experiences the connection will participate in. Possible values are search.
206204
*
207205
* @param ContentExperienceType $val The enabledContentExperiences
208206
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function setAttributeDestination($val)
5858
}
5959
/**
6060
* Gets the attributeName
61-
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension_2b676109c7c74ae2b41549205f1947ed_personalTitle.
61+
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension2b676109c7c74ae2b41549205f1947edpersonalTitle.
6262
*
6363
* @return string|null The attributeName
6464
*/
@@ -73,7 +73,7 @@ public function getAttributeName()
7373

7474
/**
7575
* Sets the attributeName
76-
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension_2b676109c7c74ae2b41549205f1947ed_personalTitle.
76+
* The name of the attribute in the end system. If the destination is accessPackageUserDirectoryAttributeStore, then a user property such as jobTitle or a directory schema extension for the user object type, such as extension2b676109c7c74ae2b41549205f1947edpersonalTitle.
7777
*
7878
* @param string $val The value of the attributeName
7979
*

0 commit comments

Comments
 (0)