Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.batchai; import com.fasterxml.jackson.annotation.JsonProperty;
Additional parameters for list operation.
/** * Additional parameters for list operation. */
public class WorkspacesListOptions {
The maximum number of items to return in the response. A maximum of 1000 files can be returned.
/** * The maximum number of items to return in the response. A maximum of 1000 * files can be returned. */
@JsonProperty(value = "") private Integer maxResults;
Get the maximum number of items to return in the response. A maximum of 1000 files can be returned.
Returns:the maxResults value
/** * Get the maximum number of items to return in the response. A maximum of 1000 files can be returned. * * @return the maxResults value */
public Integer maxResults() { return this.maxResults; }
Set the maximum number of items to return in the response. A maximum of 1000 files can be returned.
Params:
  • maxResults – the maxResults value to set
Returns:the WorkspacesListOptions object itself.
/** * Set the maximum number of items to return in the response. A maximum of 1000 files can be returned. * * @param maxResults the maxResults value to set * @return the WorkspacesListOptions object itself. */
public WorkspacesListOptions withMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } }