
com.azure.resourcemanager.deviceupdate.models.CheckNameAvailabilityRequest Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.deviceupdate.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The check availability request body.
*/
@Fluent
public final class CheckNameAvailabilityRequest {
/*
* The name of the resource for which availability needs to be checked.
*/
@JsonProperty(value = "name")
private String name;
/*
* The resource type.
*/
@JsonProperty(value = "type")
private String type;
/**
* Creates an instance of CheckNameAvailabilityRequest class.
*/
public CheckNameAvailabilityRequest() {
}
/**
* Get the name property: The name of the resource for which availability needs to be checked.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The name of the resource for which availability needs to be checked.
*
* @param name the name value to set.
* @return the CheckNameAvailabilityRequest object itself.
*/
public CheckNameAvailabilityRequest withName(String name) {
this.name = name;
return this;
}
/**
* Get the type property: The resource type.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Set the type property: The resource type.
*
* @param type the type value to set.
* @return the CheckNameAvailabilityRequest object itself.
*/
public CheckNameAvailabilityRequest withType(String type) {
this.type = type;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy