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.containerinstance; import com.fasterxml.jackson.annotation.JsonProperty;
The name object of the resource.
/** * The name object of the resource. */
public class UsageName {
The name of the resource.
/** * The name of the resource. */
@JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY) private String value;
The localized name of the resource.
/** * The localized name of the resource. */
@JsonProperty(value = "localizedValue", access = JsonProperty.Access.WRITE_ONLY) private String localizedValue;
Get the name of the resource.
Returns:the value value
/** * Get the name of the resource. * * @return the value value */
public String value() { return this.value; }
Get the localized name of the resource.
Returns:the localizedValue value
/** * Get the localized name of the resource. * * @return the localizedValue value */
public String localizedValue() { return this.localizedValue; } }