Пример #1
0
 /// <summary>
 /// Initializes a new instance of the AccountUpdate class.
 /// </summary>
 /// <param name="tags">The tags of the resource.</param>
 /// <param name="identity">The identity of the Automanage
 /// account.</param>
 public AccountUpdate(IDictionary <string, string> tags = default(IDictionary <string, string>), AccountIdentity identity = default(AccountIdentity))
     : base(tags)
 {
     Identity = identity;
     CustomInit();
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the Account class.
 /// </summary>
 /// <param name="id">ARM resource id of the Automanage
 /// assignment.</param>
 /// <param name="name">Name of the Automanage assignment.</param>
 /// <param name="location">Region where the VM is located.</param>
 /// <param name="type">The type of the resource.</param>
 /// <param name="tags">Resource tags.</param>
 /// <param name="identity">The identity of the Automanage
 /// account.</param>
 public Account(string id = default(string), string name = default(string), string location = default(string), string type = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), AccountIdentity identity = default(AccountIdentity))
     : base(id, name, location, type, tags)
 {
     Identity = identity;
     CustomInit();
 }