TrackedResource.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/**
* Tracked Resource The resource model definition for an Azure Resource Manager tracked top level resource which has
* 'tags' and a 'location'.
*/
@Fluent
public class TrackedResource extends Resource {
/*
* Resource tags.
*/
@JsonProperty(value = "tags")
private Map<String, String> tags;
/*
* The geo-location where the resource lives
*/
@JsonProperty(value = "location", required = true)
private String location;
/**
* Get the tags property: Resource tags.
*
* @return the tags value.
*/
public Map<String, String> getTags() {
return this.tags;
}
/**
* Set the tags property: Resource tags.
*
* @param tags the tags value to set.
* @return the TrackedResource object itself.
*/
public TrackedResource setTags(Map<String, String> tags) {
this.tags = tags;
return this;
}
/**
* Get the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
public String getLocation() {
return this.location;
}
/**
* Set the location property: The geo-location where the resource lives.
*
* @param location the location value to set.
* @return the TrackedResource object itself.
*/
public TrackedResource setLocation(String location) {
this.location = location;
return this;
}
}