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.resources.implementation; import com.microsoft.azure.management.resources.Tags; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.azure.ProxyResource;
Wrapper resource for tags API requests and responses.
/** * Wrapper resource for tags API requests and responses. */
public class TagsResourceInner extends ProxyResource {
The set of tags.
/** * The set of tags. */
@JsonProperty(value = "properties", required = true) private Tags properties;
Get the set of tags.
Returns:the properties value
/** * Get the set of tags. * * @return the properties value */
public Tags properties() { return this.properties; }
Set the set of tags.
Params:
  • properties – the properties value to set
Returns:the TagsResourceInner object itself.
/** * Set the set of tags. * * @param properties the properties value to set * @return the TagsResourceInner object itself. */
public TagsResourceInner withProperties(Tags properties) { this.properties = properties; return this; } }