![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.azure.management.monitor.MetricNamespaceName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-monitor Show documentation
Show all versions of azure-mgmt-monitor Show documentation
This package contains Microsoft Azure Monitor SDK.
/**
* 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.monitor;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The fully qualified metric namespace name.
*/
public class MetricNamespaceName {
/**
* The metric namespace name.
*/
@JsonProperty(value = "metricNamespaceName")
private String metricNamespaceName;
/**
* Get the metric namespace name.
*
* @return the metricNamespaceName value
*/
public String metricNamespaceName() {
return this.metricNamespaceName;
}
/**
* Set the metric namespace name.
*
* @param metricNamespaceName the metricNamespaceName value to set
* @return the MetricNamespaceName object itself.
*/
public MetricNamespaceName withMetricNamespaceName(String metricNamespaceName) {
this.metricNamespaceName = metricNamespaceName;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy