forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 111d1bc1666fe89cebb960135cf2f5336bbcb35a (#258)
Removed rogue file
- Loading branch information
1 parent
c0c86cd
commit ea194f0
Showing
39 changed files
with
1,017 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
...soft/azure/management/cognitiveservices/v2017_04_18/CheckDomainAvailabilityParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/** | ||
* 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.cognitiveservices.v2017_04_18; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Check Domain availability parameter. | ||
*/ | ||
public class CheckDomainAvailabilityParameter { | ||
/** | ||
* The subdomain name to use. | ||
*/ | ||
@JsonProperty(value = "subdomainName", required = true) | ||
private String subdomainName; | ||
|
||
/** | ||
* The Type of the resource. | ||
*/ | ||
@JsonProperty(value = "type", required = true) | ||
private String type; | ||
|
||
/** | ||
* Get the subdomain name to use. | ||
* | ||
* @return the subdomainName value | ||
*/ | ||
public String subdomainName() { | ||
return this.subdomainName; | ||
} | ||
|
||
/** | ||
* Set the subdomain name to use. | ||
* | ||
* @param subdomainName the subdomainName value to set | ||
* @return the CheckDomainAvailabilityParameter object itself. | ||
*/ | ||
public CheckDomainAvailabilityParameter withSubdomainName(String subdomainName) { | ||
this.subdomainName = subdomainName; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get the Type of the resource. | ||
* | ||
* @return the type value | ||
*/ | ||
public String type() { | ||
return this.type; | ||
} | ||
|
||
/** | ||
* Set the Type of the resource. | ||
* | ||
* @param type the type value to set | ||
* @return the CheckDomainAvailabilityParameter object itself. | ||
*/ | ||
public CheckDomainAvailabilityParameter withType(String type) { | ||
this.type = type; | ||
return this; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.