Skip to content

Commit 17c4d30

Browse files
authored
Merge pull request #1336 from microsoftgraph/beta/pipelinebuild/124351
Generated beta models and request builders
2 parents 2a00618 + 3069503 commit 17c4d30

40 files changed

+774
-62
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
/**
3+
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
4+
*
5+
* AzureAttestationSettingStatus File
6+
* PHP version 7
7+
*
8+
* @category Library
9+
* @package Microsoft.Graph
10+
* @copyright (c) Microsoft Corporation. All rights reserved.
11+
* @license https://opensource.org/licenses/MIT MIT License
12+
* @link https://graph.microsoft.com
13+
*/
14+
namespace Beta\Microsoft\Graph\Model;
15+
16+
use Microsoft\Graph\Core\Enum;
17+
18+
/**
19+
* AzureAttestationSettingStatus class
20+
*
21+
* @category Model
22+
* @package Microsoft.Graph
23+
* @copyright (c) Microsoft Corporation. All rights reserved.
24+
* @license https://opensource.org/licenses/MIT MIT License
25+
* @link https://graph.microsoft.com
26+
*/
27+
class AzureAttestationSettingStatus extends Enum
28+
{
29+
/**
30+
* The Enum AzureAttestationSettingStatus
31+
*/
32+
const NOT_APPLICABLE = "notApplicable";
33+
const ENABLED = "enabled";
34+
const DISABLED = "disabled";
35+
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
36+
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function setFormat($val)
179179

180180
/**
181181
* Gets the reportName
182-
* The report name. The possible values are: remoteConnectionHistoricalReports, dailyAggregatedRemoteConnectionReports, totalAggregatedRemoteConnectionReports, sharedUseLicenseUsageReport, sharedUseLicenseUsageRealTimeReport, unknownFutureValue, noLicenseAvailableConnectivityFailureReport. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: noLicenseAvailableConnectivityFailureReport.
182+
* The report name. The possible values are: remoteConnectionHistoricalReports, dailyAggregatedRemoteConnectionReports, totalAggregatedRemoteConnectionReports, sharedUseLicenseUsageReport, sharedUseLicenseUsageRealTimeReport, unknownFutureValue, noLicenseAvailableConnectivityFailureReport, inaccessibleCloudPcReports. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: noLicenseAvailableConnectivityFailureReport, inaccessibleCloudPcReports.
183183
*
184184
* @return CloudPcReportName|null The reportName
185185
*/
@@ -198,7 +198,7 @@ public function getReportName()
198198

199199
/**
200200
* Sets the reportName
201-
* The report name. The possible values are: remoteConnectionHistoricalReports, dailyAggregatedRemoteConnectionReports, totalAggregatedRemoteConnectionReports, sharedUseLicenseUsageReport, sharedUseLicenseUsageRealTimeReport, unknownFutureValue, noLicenseAvailableConnectivityFailureReport. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: noLicenseAvailableConnectivityFailureReport.
201+
* The report name. The possible values are: remoteConnectionHistoricalReports, dailyAggregatedRemoteConnectionReports, totalAggregatedRemoteConnectionReports, sharedUseLicenseUsageReport, sharedUseLicenseUsageRealTimeReport, unknownFutureValue, noLicenseAvailableConnectivityFailureReport, inaccessibleCloudPcReports. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: noLicenseAvailableConnectivityFailureReport, inaccessibleCloudPcReports.
202202
*
203203
* @param CloudPcReportName $val The reportName
204204
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function setIsThirdPartyPartner($val)
8787

8888
/**
8989
* Gets the partnerAgentName
90-
* Indicates the name of a partner agent and includes first-party and third-party. Currently, Citrix is the only third-party value. Read-Only.
90+
* The name of the partner agent, whether first party or third party. Possible values for third-party partners are Citrix and VMware. Read-Only.
9191
*
9292
* @return CloudPcPartnerAgentName|null The partnerAgentName
9393
*/
@@ -106,7 +106,7 @@ public function getPartnerAgentName()
106106

107107
/**
108108
* Sets the partnerAgentName
109-
* Indicates the name of a partner agent and includes first-party and third-party. Currently, Citrix is the only third-party value. Read-Only.
109+
* The name of the partner agent, whether first party or third party. Possible values for third-party partners are Citrix and VMware. Read-Only.
110110
*
111111
* @param CloudPcPartnerAgentName $val The value to assign to the partnerAgentName
112112
*

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,4 +633,33 @@ public function setTouchIdDisabled($val)
633633
return $this;
634634
}
635635

636+
/**
637+
* Gets the waitForDeviceConfiguredConfirmation
638+
* Indicates if the device will need to wait for configured confirmation
639+
*
640+
* @return bool|null The waitForDeviceConfiguredConfirmation
641+
*/
642+
public function getWaitForDeviceConfiguredConfirmation()
643+
{
644+
if (array_key_exists("waitForDeviceConfiguredConfirmation", $this->_propDict)) {
645+
return $this->_propDict["waitForDeviceConfiguredConfirmation"];
646+
} else {
647+
return null;
648+
}
649+
}
650+
651+
/**
652+
* Sets the waitForDeviceConfiguredConfirmation
653+
* Indicates if the device will need to wait for configured confirmation
654+
*
655+
* @param bool $val The waitForDeviceConfiguredConfirmation
656+
*
657+
* @return DepEnrollmentBaseProfile
658+
*/
659+
public function setWaitForDeviceConfiguredConfirmation($val)
660+
{
661+
$this->_propDict["waitForDeviceConfiguredConfirmation"] = boolval($val);
662+
return $this;
663+
}
664+
636665
}

0 commit comments

Comments
 (0)