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

491 lines
14 KiB
PHP

<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* DeviceCustomAttributeShellScript 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;
/**
* DeviceCustomAttributeShellScript 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 DeviceCustomAttributeShellScript extends Entity
{
/**
* Gets the createdDateTime
* The date and time the device management script was created. This property is read-only.
*
* @return \DateTime|null The createdDateTime
*/
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
}
/**
* Sets the createdDateTime
* The date and time the device management script was created. This property is read-only.
*
* @param \DateTime $val The createdDateTime
*
* @return DeviceCustomAttributeShellScript
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the customAttributeName
* The name of the custom attribute.
*
* @return string|null The customAttributeName
*/
public function getCustomAttributeName()
{
if (array_key_exists("customAttributeName", $this->_propDict)) {
return $this->_propDict["customAttributeName"];
} else {
return null;
}
}
/**
* Sets the customAttributeName
* The name of the custom attribute.
*
* @param string $val The customAttributeName
*
* @return DeviceCustomAttributeShellScript
*/
public function setCustomAttributeName($val)
{
$this->_propDict["customAttributeName"] = $val;
return $this;
}
/**
* Gets the customAttributeType
* The expected type of the custom attribute's value. Possible values are: integer, string, dateTime.
*
* @return DeviceCustomAttributeValueType|null The customAttributeType
*/
public function getCustomAttributeType()
{
if (array_key_exists("customAttributeType", $this->_propDict)) {
if (is_a($this->_propDict["customAttributeType"], "\Beta\Microsoft\Graph\Model\DeviceCustomAttributeValueType") || is_null($this->_propDict["customAttributeType"])) {
return $this->_propDict["customAttributeType"];
} else {
$this->_propDict["customAttributeType"] = new DeviceCustomAttributeValueType($this->_propDict["customAttributeType"]);
return $this->_propDict["customAttributeType"];
}
}
return null;
}
/**
* Sets the customAttributeType
* The expected type of the custom attribute's value. Possible values are: integer, string, dateTime.
*
* @param DeviceCustomAttributeValueType $val The customAttributeType
*
* @return DeviceCustomAttributeShellScript
*/
public function setCustomAttributeType($val)
{
$this->_propDict["customAttributeType"] = $val;
return $this;
}
/**
* Gets the description
* Optional description for the device management script.
*
* @return string|null The description
*/
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
}
/**
* Sets the description
* Optional description for the device management script.
*
* @param string $val The description
*
* @return DeviceCustomAttributeShellScript
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the displayName
* Name of the device management script.
*
* @return string|null The displayName
*/
public function getDisplayName()
{
if (array_key_exists("displayName", $this->_propDict)) {
return $this->_propDict["displayName"];
} else {
return null;
}
}
/**
* Sets the displayName
* Name of the device management script.
*
* @param string $val The displayName
*
* @return DeviceCustomAttributeShellScript
*/
public function setDisplayName($val)
{
$this->_propDict["displayName"] = $val;
return $this;
}
/**
* Gets the fileName
* Script file name.
*
* @return string|null The fileName
*/
public function getFileName()
{
if (array_key_exists("fileName", $this->_propDict)) {
return $this->_propDict["fileName"];
} else {
return null;
}
}
/**
* Sets the fileName
* Script file name.
*
* @param string $val The fileName
*
* @return DeviceCustomAttributeShellScript
*/
public function setFileName($val)
{
$this->_propDict["fileName"] = $val;
return $this;
}
/**
* Gets the lastModifiedDateTime
* The date and time the device management script was last modified. This property is read-only.
*
* @return \DateTime|null The lastModifiedDateTime
*/
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
}
/**
* Sets the lastModifiedDateTime
* The date and time the device management script was last modified. This property is read-only.
*
* @param \DateTime $val The lastModifiedDateTime
*
* @return DeviceCustomAttributeShellScript
*/
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
}
/**
* Gets the roleScopeTagIds
* List of Scope Tag IDs for this PowerShellScript instance.
*
* @return string|null The roleScopeTagIds
*/
public function getRoleScopeTagIds()
{
if (array_key_exists("roleScopeTagIds", $this->_propDict)) {
return $this->_propDict["roleScopeTagIds"];
} else {
return null;
}
}
/**
* Sets the roleScopeTagIds
* List of Scope Tag IDs for this PowerShellScript instance.
*
* @param string $val The roleScopeTagIds
*
* @return DeviceCustomAttributeShellScript
*/
public function setRoleScopeTagIds($val)
{
$this->_propDict["roleScopeTagIds"] = $val;
return $this;
}
/**
* Gets the runAsAccount
* Indicates the type of execution context. Possible values are: system, user.
*
* @return RunAsAccountType|null The runAsAccount
*/
public function getRunAsAccount()
{
if (array_key_exists("runAsAccount", $this->_propDict)) {
if (is_a($this->_propDict["runAsAccount"], "\Beta\Microsoft\Graph\Model\RunAsAccountType") || is_null($this->_propDict["runAsAccount"])) {
return $this->_propDict["runAsAccount"];
} else {
$this->_propDict["runAsAccount"] = new RunAsAccountType($this->_propDict["runAsAccount"]);
return $this->_propDict["runAsAccount"];
}
}
return null;
}
/**
* Sets the runAsAccount
* Indicates the type of execution context. Possible values are: system, user.
*
* @param RunAsAccountType $val The runAsAccount
*
* @return DeviceCustomAttributeShellScript
*/
public function setRunAsAccount($val)
{
$this->_propDict["runAsAccount"] = $val;
return $this;
}
/**
* Gets the scriptContent
* The script content.
*
* @return \GuzzleHttp\Psr7\Stream|null The scriptContent
*/
public function getScriptContent()
{
if (array_key_exists("scriptContent", $this->_propDict)) {
if (is_a($this->_propDict["scriptContent"], "\GuzzleHttp\Psr7\Stream") || is_null($this->_propDict["scriptContent"])) {
return $this->_propDict["scriptContent"];
} else {
$this->_propDict["scriptContent"] = \GuzzleHttp\Psr7\Utils::streamFor($this->_propDict["scriptContent"]);
return $this->_propDict["scriptContent"];
}
}
return null;
}
/**
* Sets the scriptContent
* The script content.
*
* @param \GuzzleHttp\Psr7\Stream $val The scriptContent
*
* @return DeviceCustomAttributeShellScript
*/
public function setScriptContent($val)
{
$this->_propDict["scriptContent"] = $val;
return $this;
}
/**
* Gets the assignments
* The list of group assignments for the device management script.
*
* @return array|null The assignments
*/
public function getAssignments()
{
if (array_key_exists("assignments", $this->_propDict)) {
return $this->_propDict["assignments"];
} else {
return null;
}
}
/**
* Sets the assignments
* The list of group assignments for the device management script.
*
* @param DeviceManagementScriptAssignment[] $val The assignments
*
* @return DeviceCustomAttributeShellScript
*/
public function setAssignments($val)
{
$this->_propDict["assignments"] = $val;
return $this;
}
/**
* Gets the deviceRunStates
* List of run states for this script across all devices.
*
* @return array|null The deviceRunStates
*/
public function getDeviceRunStates()
{
if (array_key_exists("deviceRunStates", $this->_propDict)) {
return $this->_propDict["deviceRunStates"];
} else {
return null;
}
}
/**
* Sets the deviceRunStates
* List of run states for this script across all devices.
*
* @param DeviceManagementScriptDeviceState[] $val The deviceRunStates
*
* @return DeviceCustomAttributeShellScript
*/
public function setDeviceRunStates($val)
{
$this->_propDict["deviceRunStates"] = $val;
return $this;
}
/**
* Gets the groupAssignments
* The list of group assignments for the device management script.
*
* @return array|null The groupAssignments
*/
public function getGroupAssignments()
{
if (array_key_exists("groupAssignments", $this->_propDict)) {
return $this->_propDict["groupAssignments"];
} else {
return null;
}
}
/**
* Sets the groupAssignments
* The list of group assignments for the device management script.
*
* @param DeviceManagementScriptGroupAssignment[] $val The groupAssignments
*
* @return DeviceCustomAttributeShellScript
*/
public function setGroupAssignments($val)
{
$this->_propDict["groupAssignments"] = $val;
return $this;
}
/**
* Gets the runSummary
* Run summary for device management script.
*
* @return DeviceManagementScriptRunSummary|null The runSummary
*/
public function getRunSummary()
{
if (array_key_exists("runSummary", $this->_propDict)) {
if (is_a($this->_propDict["runSummary"], "\Beta\Microsoft\Graph\Model\DeviceManagementScriptRunSummary") || is_null($this->_propDict["runSummary"])) {
return $this->_propDict["runSummary"];
} else {
$this->_propDict["runSummary"] = new DeviceManagementScriptRunSummary($this->_propDict["runSummary"]);
return $this->_propDict["runSummary"];
}
}
return null;
}
/**
* Sets the runSummary
* Run summary for device management script.
*
* @param DeviceManagementScriptRunSummary $val The runSummary
*
* @return DeviceCustomAttributeShellScript
*/
public function setRunSummary($val)
{
$this->_propDict["runSummary"] = $val;
return $this;
}
/**
* Gets the userRunStates
* List of run states for this script across all users.
*
* @return array|null The userRunStates
*/
public function getUserRunStates()
{
if (array_key_exists("userRunStates", $this->_propDict)) {
return $this->_propDict["userRunStates"];
} else {
return null;
}
}
/**
* Sets the userRunStates
* List of run states for this script across all users.
*
* @param DeviceManagementScriptUserState[] $val The userRunStates
*
* @return DeviceCustomAttributeShellScript
*/
public function setUserRunStates($val)
{
$this->_propDict["userRunStates"] = $val;
return $this;
}
}