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; import com.fasterxml.jackson.annotation.JsonProperty;
Resource group filter.
/** * Resource group filter. */
public class ResourceGroupFilter {
The tag name.
/** * The tag name. */
@JsonProperty(value = "tagName") private String tagName;
The tag value.
/** * The tag value. */
@JsonProperty(value = "tagValue") private String tagValue;
Get the tag name.
Returns:the tagName value
/** * Get the tag name. * * @return the tagName value */
public String tagName() { return this.tagName; }
Set the tag name.
Params:
  • tagName – the tagName value to set
Returns:the ResourceGroupFilter object itself.
/** * Set the tag name. * * @param tagName the tagName value to set * @return the ResourceGroupFilter object itself. */
public ResourceGroupFilter withTagName(String tagName) { this.tagName = tagName; return this; }
Get the tag value.
Returns:the tagValue value
/** * Get the tag value. * * @return the tagValue value */
public String tagValue() { return this.tagValue; }
Set the tag value.
Params:
  • tagValue – the tagValue value to set
Returns:the ResourceGroupFilter object itself.
/** * Set the tag value. * * @param tagValue the tagValue value to set * @return the ResourceGroupFilter object itself. */
public ResourceGroupFilter withTagValue(String tagValue) { this.tagValue = tagValue; return this; } }