setODataType("#microsoft.graph.crossCloudAzureActiveDirectoryTenant"); } /** * Gets the cloudInstance * The ID of the cloud where the tenant is located, one of microsoftonline.com, microsoftonline.us or partner.microsoftonline.cn. Read only. * * @return string|null The cloudInstance */ public function getCloudInstance() { if (array_key_exists("cloudInstance", $this->_propDict)) { return $this->_propDict["cloudInstance"]; } else { return null; } } /** * Sets the cloudInstance * The ID of the cloud where the tenant is located, one of microsoftonline.com, microsoftonline.us or partner.microsoftonline.cn. Read only. * * @param string $val The value of the cloudInstance * * @return CrossCloudAzureActiveDirectoryTenant */ public function setCloudInstance($val) { $this->_propDict["cloudInstance"] = $val; return $this; } /** * Gets the displayName * The name of the Azure Active Directory tenant. Read only. * * @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 * The name of the Azure Active Directory tenant. Read only. * * @param string $val The value of the displayName * * @return CrossCloudAzureActiveDirectoryTenant */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the tenantId * The ID of the Azure Active Directory tenant. Read only. * * @return string|null The tenantId */ public function getTenantId() { if (array_key_exists("tenantId", $this->_propDict)) { return $this->_propDict["tenantId"]; } else { return null; } } /** * Sets the tenantId * The ID of the Azure Active Directory tenant. Read only. * * @param string $val The value of the tenantId * * @return CrossCloudAzureActiveDirectoryTenant */ public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; } }