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.batch; import com.fasterxml.jackson.annotation.JsonProperty;
Parameters for a check name availability request.
/** * Parameters for a check name availability request. */
public class CheckNameAvailabilityParameters {
The name to check for availability.
/** * The name to check for availability. */
@JsonProperty(value = "name", required = true) private String name;
The resource type.
/** * The resource type. */
@JsonProperty(value = "type", required = true) private String type;
Creates an instance of CheckNameAvailabilityParameters class.
/** * Creates an instance of CheckNameAvailabilityParameters class. */
public CheckNameAvailabilityParameters() { type = "Microsoft.Batch/batchAccounts"; }
Get the name to check for availability.
Returns:the name value
/** * Get the name to check for availability. * * @return the name value */
public String name() { return this.name; }
Set the name to check for availability.
Params:
  • name – the name value to set
Returns:the CheckNameAvailabilityParameters object itself.
/** * Set the name to check for availability. * * @param name the name value to set * @return the CheckNameAvailabilityParameters object itself. */
public CheckNameAvailabilityParameters withName(String name) { this.name = name; return this; }
Get the resource type.
Returns:the type value
/** * Get the resource type. * * @return the type value */
public String type() { return this.type; }
Set the resource type.
Params:
  • type – the type value to set
Returns:the CheckNameAvailabilityParameters object itself.
/** * Set the resource type. * * @param type the type value to set * @return the CheckNameAvailabilityParameters object itself. */
public CheckNameAvailabilityParameters withType(String type) { this.type = type; return this; } }