1
0
Fork 0
m365-php/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ResultantAppStateDetail.php

69 lines
3.3 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ResultantAppStateDetail 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;
/**
* ResultantAppStateDetail 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 ResultantAppStateDetail extends Enum
{
/**
* The Enum ResultantAppStateDetail
*/
const PROCESSOR_ARCHITECTURE_NOT_APPLICABLE = "processorArchitectureNotApplicable";
const MINIMUM_DISK_SPACE_NOT_MET = "minimumDiskSpaceNotMet";
const MINIMUM_OS_VERSION_NOT_MET = "minimumOsVersionNotMet";
const MINIMUM_PHYSICAL_MEMORY_NOT_MET = "minimumPhysicalMemoryNotMet";
const MINIMUM_LOGICAL_PROCESSOR_COUNT_NOT_MET = "minimumLogicalProcessorCountNotMet";
const MINIMUM_CPU_SPEED_NOT_MET = "minimumCpuSpeedNotMet";
const PLATFORM_NOT_APPLICABLE = "platformNotApplicable";
const FILE_SYSTEM_REQUIREMENT_NOT_MET = "fileSystemRequirementNotMet";
const REGISTRY_REQUIREMENT_NOT_MET = "registryRequirementNotMet";
const POWER_SHELL_SCRIPT_REQUIREMENT_NOT_MET = "powerShellScriptRequirementNotMet";
const SUPERSEDING_APPS_NOT_APPLICABLE = "supersedingAppsNotApplicable";
const NO_ADDITIONAL_DETAILS = "noAdditionalDetails";
const DEPENDENCY_FAILED_TO_INSTALL = "dependencyFailedToInstall";
const DEPENDENCY_WITH_REQUIREMENTS_NOT_MET = "dependencyWithRequirementsNotMet";
const DEPENDENCY_PENDING_REBOOT = "dependencyPendingReboot";
const DEPENDENCY_WITH_AUTO_INSTALL_DISABLED = "dependencyWithAutoInstallDisabled";
const SUPERSEDED_APP_UNINSTALL_FAILED = "supersededAppUninstallFailed";
const SUPERSEDED_APP_UNINSTALL_PENDING_REBOOT = "supersededAppUninstallPendingReboot";
const REMOVING_SUPERSEDED_APPS = "removingSupersededApps";
const IOS_APP_STORE_UPDATE_FAILED_TO_INSTALL = "iosAppStoreUpdateFailedToInstall";
const VPP_APP_HAS_UPDATE_AVAILABLE = "vppAppHasUpdateAvailable";
const USER_REJECTED_UPDATE = "userRejectedUpdate";
const UNINSTALL_PENDING_REBOOT = "uninstallPendingReboot";
const SUPERSEDING_APPS_DETECTED = "supersedingAppsDetected";
const SUPERSEDED_APPS_DETECTED = "supersededAppsDetected";
const SEE_INSTALL_ERROR_CODE = "seeInstallErrorCode";
const AUTO_INSTALL_DISABLED = "autoInstallDisabled";
const MANAGED_APP_NO_LONGER_PRESENT = "managedAppNoLongerPresent";
const USER_REJECTED_INSTALL = "userRejectedInstall";
const USER_IS_NOT_LOGGED_INTO_APP_STORE = "userIsNotLoggedIntoAppStore";
const UNTARGETED_SUPERSEDING_APPS_DETECTED = "untargetedSupersedingAppsDetected";
const APP_REMOVED_BY_SUPERSEDENCE = "appRemovedBySupersedence";
const SEE_UNINSTALL_ERROR_CODE = "seeUninstallErrorCode";
const PENDING_REBOOT = "pendingReboot";
const INSTALLING_DEPENDENCIES = "installingDependencies";
const CONTENT_DOWNLOADED = "contentDownloaded";
}