@@ -385,8 +385,8 @@ public static class ListDevicesOptionalParameters {
385385 /**
386386 * Set pageSize.
387387 *
388- * @param pageSize Size for a given page. The maximum allowed value is 100. (optional, default
389- * to 10 )
388+ * @param pageSize Size for a given page. The maximum allowed value is 500. Defaults to 50.
389+ * (optional, default to 50 )
390390 * @return ListDevicesOptionalParameters
391391 */
392392 public ListDevicesOptionalParameters pageSize (Long pageSize ) {
@@ -397,7 +397,7 @@ public ListDevicesOptionalParameters pageSize(Long pageSize) {
397397 /**
398398 * Set pageNumber.
399399 *
400- * @param pageNumber Specific page number to return. (optional, default to 0)
400+ * @param pageNumber Specific page number to return. Defaults to 0. (optional, default to 0)
401401 * @return ListDevicesOptionalParameters
402402 */
403403 public ListDevicesOptionalParameters pageNumber (Long pageNumber ) {
@@ -408,7 +408,8 @@ public ListDevicesOptionalParameters pageNumber(Long pageNumber) {
408408 /**
409409 * Set sort.
410410 *
411- * @param sort The field to sort the devices by. (optional)
411+ * @param sort The field to sort the devices by. Defaults to <code>name</code>. (optional,
412+ * default to "name")
412413 * @return ListDevicesOptionalParameters
413414 */
414415 public ListDevicesOptionalParameters sort (String sort ) {
@@ -515,7 +516,7 @@ public PaginationIterable<DevicesListData> listDevicesWithPagination(
515516 Long limit ;
516517
517518 if (parameters .pageSize == null ) {
518- limit = 10l ;
519+ limit = 50l ;
519520 parameters .pageSize (limit );
520521 } else {
521522 limit = parameters .pageSize ;
0 commit comments