/// <summary> /// Initializes a new instance of the TagValue class. /// </summary> /// <param name="id">The tag ID.</param> /// <param name="tagValueProperty">The tag value.</param> /// <param name="count">The tag value count.</param> public TagValue(string id = default(string), string tagValueProperty = default(string), TagCount count = default(TagCount)) { Id = id; TagValueProperty = tagValueProperty; Count = count; CustomInit(); }
/// <summary> /// Initializes a new instance of the TagDetails class. /// </summary> /// <param name="id">The tag ID.</param> /// <param name="tagName">The tag name.</param> /// <param name="count">The total number of resources that use the /// resource tag. When a tag is initially created and has no associated /// resources, the value is 0.</param> /// <param name="values">The list of tag values.</param> public TagDetails(string id = default(string), string tagName = default(string), TagCount count = default(TagCount), IList <TagValue> values = default(IList <TagValue>)) { Id = id; TagName = tagName; Count = count; Values = values; CustomInit(); }