com.microsoft.azure.management.trafficmanager.implementation.UserMetricsModelInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-trafficmanager Show documentation
Show all versions of azure-mgmt-trafficmanager Show documentation
This package contains Microsoft Azure Traffic Manager Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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.trafficmanager.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.ProxyResource;
/**
* Class representing Traffic Manager User Metrics.
*/
@JsonFlatten
public class UserMetricsModelInner extends ProxyResource {
/**
* The key returned by the User Metrics operation.
*/
@JsonProperty(value = "properties.key")
private String key;
/**
* Get the key returned by the User Metrics operation.
*
* @return the key value
*/
public String key() {
return this.key;
}
/**
* Set the key returned by the User Metrics operation.
*
* @param key the key value to set
* @return the UserMetricsModelInner object itself.
*/
public UserMetricsModelInner withKey(String key) {
this.key = key;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy