Class MetricNamespace
Metric namespace class specifies the metadata for a metric namespace.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Monitor.dll
Syntax
public class MetricNamespace
Constructors
MetricNamespace()
Initializes a new instance of the MetricNamespace class.
Declaration
public MetricNamespace ();
MetricNamespace(String, String, String, MetricNamespaceName)
Initializes a new instance of the MetricNamespace class.
Declaration
public MetricNamespace (string id = null, string type = null, string name = null, Microsoft.Azure.Management.Monitor.Models.MetricNamespaceName properties = null);
Parameters
|
String
id
The ID of the metricNamespace. |
|
String
type
The type of the namespace. |
|
String
name
The name of the namespace. |
|
MetricNamespaceName
properties
Properties which include the fully qualified namespace name. |
Properties
Id
Gets or sets the ID of the metricNamespace.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="id")]
public string Id { get; set; }
Property Value
|
String
|
Name
Gets or sets the name of the namespace.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="name")]
public string Name { get; set; }
Property Value
|
String
|
Properties
Gets or sets properties which include the fully qualified namespace name.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="properties")]
public Microsoft.Azure.Management.Monitor.Models.MetricNamespaceName Properties { get; set; }
Property Value
|
MetricNamespaceName
|
Type
Gets or sets the type of the namespace.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="type")]
public string Type { get; set; }
Property Value
|
String
|