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.storage.implementation; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.ProxyResource;
Properties of the table, including Id, resource name, resource type.
/** * Properties of the table, including Id, resource name, resource type. */
@JsonFlatten public class TableInner extends ProxyResource {
Table name under the specified account.
/** * Table name under the specified account. */
@JsonProperty(value = "properties.tableName", access = JsonProperty.Access.WRITE_ONLY) private String tableName;
Get table name under the specified account.
Returns:the tableName value
/** * Get table name under the specified account. * * @return the tableName value */
public String tableName() { return this.tableName; } }