示例#1
0
 /// <summary>
 /// Initializes a new instance of the UpgradeProfileInner class.
 /// </summary>
 /// <param name="properties">Properties of upgrade profile.</param>
 /// <param name="id">Id of upgrade profile.</param>
 /// <param name="name">Name of upgrade profile.</param>
 /// <param name="type">Type of upgrade profile.</param>
 public UpgradeProfileInner(UpgradeProfileProperties properties, string id = default(string), string name = default(string), string type = default(string))
 {
     Id         = id;
     Name       = name;
     Type       = type;
     Properties = properties;
     CustomInit();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the UpgradeProfileInner class.
 /// </summary>
 public UpgradeProfileInner()
 {
     Properties = new UpgradeProfileProperties();
     CustomInit();
 }