Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the MoveResource class.
 /// </summary>
 /// <param name="id">Fully qualified resource Id for the
 /// resource.</param>
 /// <param name="name">The name of the resource</param>
 /// <param name="type">The type of the resource.</param>
 public MoveResource(string id = default(string), string name = default(string), string type = default(string), MoveResourceProperties properties = default(MoveResourceProperties))
 {
     Id         = id;
     Name       = name;
     Type       = type;
     Properties = properties;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the MoveResource class.
 /// </summary>
 /// <param name="id">Fully qualified resource Id for the
 /// resource.</param>
 /// <param name="name">The name of the resource</param>
 /// <param name="type">The type of the resource.</param>
 /// <param name="systemData">Metadata pertaining to creation and last
 /// modification of the resource.</param>
 public MoveResource(string id = default(string), string name = default(string), string type = default(string), MoveResourceProperties properties = default(MoveResourceProperties), SystemData systemData = default(SystemData))
 {
     Id         = id;
     Name       = name;
     Type       = type;
     Properties = properties;
     SystemData = systemData;
     CustomInit();
 }