Example #1
0
 /// <summary>
 /// Initializes a new instance of the TagsPatchResource class.
 /// </summary>
 /// <param name="operation">The operation type for the patch API.
 /// Possible values include: 'Replace', 'Merge', 'Delete'</param>
 /// <param name="properties">The set of tags.</param>
 public TagsPatchResource(TagsPatchOperation operation = default(TagsPatchOperation), TagsInner properties = default(TagsInner))
 {
     Operation  = operation;
     Properties = properties;
     CustomInit();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the TagsResourceInner class.
 /// </summary>
 /// <param name="properties">The set of tags.</param>
 public TagsResourceInner(TagsInner properties, string id = default(string), string name = default(string), string type = default(string))
     : base(id, name, type)
 {
     Properties = properties;
     CustomInit();
 }