PrepareRequest Constructors

Definition

Overloads

PrepareRequest()

Initializes a new instance of the PrepareRequest class.

PrepareRequest(IList<String>, Nullable<Boolean>, String)

Initializes a new instance of the PrepareRequest class.

PrepareRequest()

Initializes a new instance of the PrepareRequest class.

public PrepareRequest ();
Public Sub New ()

Applies to

PrepareRequest(IList<String>, Nullable<Boolean>, String)

Initializes a new instance of the PrepareRequest class.

public PrepareRequest (System.Collections.Generic.IList<string> moveResources, bool? validateOnly = default, string moveResourceInputType = default);
new Microsoft.Azure.Management.Migrate.ResourceMover.Models.PrepareRequest : System.Collections.Generic.IList<string> * Nullable<bool> * string -> Microsoft.Azure.Management.Migrate.ResourceMover.Models.PrepareRequest
Public Sub New (moveResources As IList(Of String), Optional validateOnly As Nullable(Of Boolean) = Nothing, Optional moveResourceInputType As String = Nothing)

Parameters

moveResources
IList<String>

Gets or sets the list of resource Id's, by default it accepts move resource id's unless the input type is switched via moveResourceInputType property.

validateOnly
Nullable<Boolean>

Gets or sets a value indicating whether the operation needs to only run pre-requisite.

moveResourceInputType
String

Possible values include: 'MoveResourceId', 'MoveResourceSourceId'

Applies to