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.monitor; import com.fasterxml.jackson.annotation.JsonProperty;
The fully qualified metric namespace name.
/** * The fully qualified metric namespace name. */
public class MetricNamespaceName {
The metric namespace name.
/** * The metric namespace name. */
@JsonProperty(value = "metricNamespaceName") private String metricNamespaceName;
Get the metric namespace name.
Returns:the metricNamespaceName value
/** * Get the metric namespace name. * * @return the metricNamespaceName value */
public String metricNamespaceName() { return this.metricNamespaceName; }
Set the metric namespace name.
Params:
  • metricNamespaceName – the metricNamespaceName value to set
Returns:the MetricNamespaceName object itself.
/** * 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; } }