Skip to content

Commit

Permalink
Merge pull request #1336 from microsoftgraph/beta/pipelinebuild/124351
Browse files Browse the repository at this point in the history
Generated beta models and request builders
  • Loading branch information
Ndiritu authored Sep 5, 2023
2 parents 2a00618 + 3069503 commit 17c4d30
Show file tree
Hide file tree
Showing 40 changed files with 774 additions and 62 deletions.
36 changes: 36 additions & 0 deletions src/Beta/Microsoft/Graph/Model/AzureAttestationSettingStatus.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* AzureAttestationSettingStatus File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Beta\Microsoft\Graph\Model;

use Microsoft\Graph\Core\Enum;

/**
* AzureAttestationSettingStatus class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class AzureAttestationSettingStatus extends Enum
{
/**
* The Enum AzureAttestationSettingStatus
*/
const NOT_APPLICABLE = "notApplicable";
const ENABLED = "enabled";
const DISABLED = "disabled";
const UNKNOWN_FUTURE_VALUE = "unknownFutureValue";
}
4 changes: 2 additions & 2 deletions src/Beta/Microsoft/Graph/Model/CloudPcExportJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public function setFormat($val)

/**
* Gets the reportName
* 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.
* 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.
*
* @return CloudPcReportName|null The reportName
*/
Expand All @@ -198,7 +198,7 @@ public function getReportName()

/**
* Sets the reportName
* 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.
* 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.
*
* @param CloudPcReportName $val The reportName
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function setIsThirdPartyPartner($val)

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

/**
* Sets the partnerAgentName
* Indicates the name of a partner agent and includes first-party and third-party. Currently, Citrix is the only third-party value. Read-Only.
* The name of the partner agent, whether first party or third party. Possible values for third-party partners are Citrix and VMware. Read-Only.
*
* @param CloudPcPartnerAgentName $val The value to assign to the partnerAgentName
*
Expand Down
29 changes: 29 additions & 0 deletions src/Beta/Microsoft/Graph/Model/DepEnrollmentBaseProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -633,4 +633,33 @@ public function setTouchIdDisabled($val)
return $this;
}

/**
* Gets the waitForDeviceConfiguredConfirmation
* Indicates if the device will need to wait for configured confirmation
*
* @return bool|null The waitForDeviceConfiguredConfirmation
*/
public function getWaitForDeviceConfiguredConfirmation()
{
if (array_key_exists("waitForDeviceConfiguredConfirmation", $this->_propDict)) {
return $this->_propDict["waitForDeviceConfiguredConfirmation"];
} else {
return null;
}
}

/**
* Sets the waitForDeviceConfiguredConfirmation
* Indicates if the device will need to wait for configured confirmation
*
* @param bool $val The waitForDeviceConfiguredConfirmation
*
* @return DepEnrollmentBaseProfile
*/
public function setWaitForDeviceConfiguredConfirmation($val)
{
$this->_propDict["waitForDeviceConfiguredConfirmation"] = boolval($val);
return $this;
}

}
Loading

0 comments on commit 17c4d30

Please sign in to comment.