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 09d9848f00395376b7e1360fe4372d15349bc401 (#70)
Address review comments.
- Loading branch information
1 parent
3be8239
commit eb81a5c
Showing
14 changed files
with
479 additions
and
48 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
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
31 changes: 31 additions & 0 deletions
31
.../microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferListResponse.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,31 @@ | ||
/** | ||
* 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.billing.v2019_10_01_preview; | ||
|
||
import com.microsoft.azure.arm.model.HasInner; | ||
import com.microsoft.azure.arm.resources.models.HasManager; | ||
import com.microsoft.azure.management.billing.v2019_10_01_preview.implementation.BillingManager; | ||
import com.microsoft.azure.management.billing.v2019_10_01_preview.implementation.ValidateTransferListResponseInner; | ||
import java.util.List; | ||
|
||
/** | ||
* Type representing ValidateTransferListResponse. | ||
*/ | ||
public interface ValidateTransferListResponse extends HasInner<ValidateTransferListResponseInner>, HasManager<BillingManager> { | ||
/** | ||
* @return the nextLink value. | ||
*/ | ||
String nextLink(); | ||
|
||
/** | ||
* @return the value value. | ||
*/ | ||
List<ValidateTransferResponse> value(); | ||
|
||
} |
76 changes: 76 additions & 0 deletions
76
.../com/microsoft/azure/management/billing/v2019_10_01_preview/ValidateTransferResponse.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,76 @@ | ||
/** | ||
* 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.billing.v2019_10_01_preview; | ||
|
||
import java.util.List; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.microsoft.rest.serializer.JsonFlatten; | ||
|
||
/** | ||
* Transfer validation response. | ||
*/ | ||
@JsonFlatten | ||
public class ValidateTransferResponse { | ||
/** | ||
* The status of validation. | ||
*/ | ||
@JsonProperty(value = "properties.status", access = JsonProperty.Access.WRITE_ONLY) | ||
private String status; | ||
|
||
/** | ||
* The product id for which this result applies. | ||
*/ | ||
@JsonProperty(value = "properties.productId", access = JsonProperty.Access.WRITE_ONLY) | ||
private String productId; | ||
|
||
/** | ||
* Array of validation results. | ||
*/ | ||
@JsonProperty(value = "properties.results") | ||
private List<ValidationResultProperties> results; | ||
|
||
/** | ||
* Get the status of validation. | ||
* | ||
* @return the status value | ||
*/ | ||
public String status() { | ||
return this.status; | ||
} | ||
|
||
/** | ||
* Get the product id for which this result applies. | ||
* | ||
* @return the productId value | ||
*/ | ||
public String productId() { | ||
return this.productId; | ||
} | ||
|
||
/** | ||
* Get array of validation results. | ||
* | ||
* @return the results value | ||
*/ | ||
public List<ValidationResultProperties> results() { | ||
return this.results; | ||
} | ||
|
||
/** | ||
* Set array of validation results. | ||
* | ||
* @param results the results value to set | ||
* @return the ValidateTransferResponse object itself. | ||
*/ | ||
public ValidateTransferResponse withResults(List<ValidationResultProperties> results) { | ||
this.results = results; | ||
return this; | ||
} | ||
|
||
} |
62 changes: 62 additions & 0 deletions
62
...om/microsoft/azure/management/billing/v2019_10_01_preview/ValidationResultProperties.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,62 @@ | ||
/** | ||
* 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.billing.v2019_10_01_preview; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* The properties of the validation result. | ||
*/ | ||
public class ValidationResultProperties { | ||
/** | ||
* Result Level. | ||
*/ | ||
@JsonProperty(value = "level", access = JsonProperty.Access.WRITE_ONLY) | ||
private String level; | ||
|
||
/** | ||
* Result Code. | ||
*/ | ||
@JsonProperty(value = "code", access = JsonProperty.Access.WRITE_ONLY) | ||
private String code; | ||
|
||
/** | ||
* The validation message. | ||
*/ | ||
@JsonProperty(value = "message", access = JsonProperty.Access.WRITE_ONLY) | ||
private String message; | ||
|
||
/** | ||
* Get result Level. | ||
* | ||
* @return the level value | ||
*/ | ||
public String level() { | ||
return this.level; | ||
} | ||
|
||
/** | ||
* Get result Code. | ||
* | ||
* @return the code value | ||
*/ | ||
public String code() { | ||
return this.code; | ||
} | ||
|
||
/** | ||
* Get the validation message. | ||
* | ||
* @return the message value | ||
*/ | ||
public String message() { | ||
return this.message; | ||
} | ||
|
||
} |
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.