ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PrivilegedAccessGroupEligibilitySchedule 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 Microsoft\Graph\Model; /** * PrivilegedAccessGroupEligibilitySchedule 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 PrivilegedAccessGroupEligibilitySchedule extends PrivilegedAccessSchedule { /** * Gets the accessId * The identifier of the membership or ownership eligibility to the group that is governed by PIM. Required. The possible values are: owner, member. Supports $filter (eq). * * @return PrivilegedAccessGroupRelationships|null The accessId */ public function getAccessId() { if (array_key_exists("accessId", $this->_propDict)) { if (is_a($this->_propDict["accessId"], "\Microsoft\Graph\Model\PrivilegedAccessGroupRelationships") || is_null($this->_propDict["accessId"])) { return $this->_propDict["accessId"]; } else { $this->_propDict["accessId"] = new PrivilegedAccessGroupRelationships($this->_propDict["accessId"]); return $this->_propDict["accessId"]; } } return null; } /** * Sets the accessId * The identifier of the membership or ownership eligibility to the group that is governed by PIM. Required. The possible values are: owner, member. Supports $filter (eq). * * @param PrivilegedAccessGroupRelationships $val The accessId * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setAccessId($val) { $this->_propDict["accessId"] = $val; return $this; } /** * Gets the groupId * The identifier of the group representing the scope of the membership or ownership eligibility through PIM for groups. Required. Supports $filter (eq). * * @return string|null The groupId */ public function getGroupId() { if (array_key_exists("groupId", $this->_propDict)) { return $this->_propDict["groupId"]; } else { return null; } } /** * Sets the groupId * The identifier of the group representing the scope of the membership or ownership eligibility through PIM for groups. Required. Supports $filter (eq). * * @param string $val The groupId * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setGroupId($val) { $this->_propDict["groupId"] = $val; return $this; } /** * Gets the memberType * Indicates whether the assignment is derived from a group assignment. It can further imply whether the caller can manage the schedule. Required. The possible values are: direct, group, unknownFutureValue. Supports $filter (eq). * * @return PrivilegedAccessGroupMemberType|null The memberType */ public function getMemberType() { if (array_key_exists("memberType", $this->_propDict)) { if (is_a($this->_propDict["memberType"], "\Microsoft\Graph\Model\PrivilegedAccessGroupMemberType") || is_null($this->_propDict["memberType"])) { return $this->_propDict["memberType"]; } else { $this->_propDict["memberType"] = new PrivilegedAccessGroupMemberType($this->_propDict["memberType"]); return $this->_propDict["memberType"]; } } return null; } /** * Sets the memberType * Indicates whether the assignment is derived from a group assignment. It can further imply whether the caller can manage the schedule. Required. The possible values are: direct, group, unknownFutureValue. Supports $filter (eq). * * @param PrivilegedAccessGroupMemberType $val The memberType * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setMemberType($val) { $this->_propDict["memberType"] = $val; return $this; } /** * Gets the principalId * The identifier of the principal whose membership or ownership eligibility is granted through PIM for groups. Required. Supports $filter (eq). * * @return string|null The principalId */ public function getPrincipalId() { if (array_key_exists("principalId", $this->_propDict)) { return $this->_propDict["principalId"]; } else { return null; } } /** * Sets the principalId * The identifier of the principal whose membership or ownership eligibility is granted through PIM for groups. Required. Supports $filter (eq). * * @param string $val The principalId * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setPrincipalId($val) { $this->_propDict["principalId"] = $val; return $this; } /** * Gets the group * References the group that is the scope of the membership or ownership eligibility through PIM for groups. Supports $expand. * * @return Group|null The group */ public function getGroup() { if (array_key_exists("group", $this->_propDict)) { if (is_a($this->_propDict["group"], "\Microsoft\Graph\Model\Group") || is_null($this->_propDict["group"])) { return $this->_propDict["group"]; } else { $this->_propDict["group"] = new Group($this->_propDict["group"]); return $this->_propDict["group"]; } } return null; } /** * Sets the group * References the group that is the scope of the membership or ownership eligibility through PIM for groups. Supports $expand. * * @param Group $val The group * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setGroup($val) { $this->_propDict["group"] = $val; return $this; } /** * Gets the principal * References the principal that's in the scope of this membership or ownership eligibility request to the group that's governed by PIM. Supports $expand. * * @return DirectoryObject|null The principal */ public function getPrincipal() { if (array_key_exists("principal", $this->_propDict)) { if (is_a($this->_propDict["principal"], "\Microsoft\Graph\Model\DirectoryObject") || is_null($this->_propDict["principal"])) { return $this->_propDict["principal"]; } else { $this->_propDict["principal"] = new DirectoryObject($this->_propDict["principal"]); return $this->_propDict["principal"]; } } return null; } /** * Sets the principal * References the principal that's in the scope of this membership or ownership eligibility request to the group that's governed by PIM. Supports $expand. * * @param DirectoryObject $val The principal * * @return PrivilegedAccessGroupEligibilitySchedule */ public function setPrincipal($val) { $this->_propDict["principal"] = $val; return $this; } }
cải xoăn