예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AdRestoreParameters" /> class.
 /// </summary>
 /// <param name="credentials">credentials.</param>
 /// <param name="port">Specifies the port on which the AD domain controller&#39;s NTDS database will be mounted..</param>
 public AdRestoreParameters(Credentials credentials = default(Credentials), int?port = default(int?))
 {
     this.Port        = port;
     this.Credentials = credentials;
     this.Port        = port;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="MountVolumesHyperVParams" /> class.
 /// </summary>
 /// <param name="bringDisksOnline">Optional setting which will determine if the volumes need to be onlined within the target environment after attaching the disks. NOTE: If this is set to true, then target_entity_credentials must be specified and HyperV Integration Services must be installed on the VM..</param>
 /// <param name="targetEntityCredentials">targetEntityCredentials.</param>
 public MountVolumesHyperVParams(bool?bringDisksOnline = default(bool?), Credentials targetEntityCredentials = default(Credentials))
 {
     this.BringDisksOnline        = bringDisksOnline;
     this.BringDisksOnline        = bringDisksOnline;
     this.TargetEntityCredentials = targetEntityCredentials;
 }