ScriptSource Constructors

Definition

Overloads

Name Description
ScriptSource()

Initializes a new instance of the ScriptSource class.

ScriptSource(String, IList<GalleryScriptParameter>)

Initializes a new instance of the ScriptSource class.

ScriptSource()

Initializes a new instance of the ScriptSource class.

public ScriptSource();
Public Sub New ()

Applies to

ScriptSource(String, IList<GalleryScriptParameter>)

Initializes a new instance of the ScriptSource class.

public ScriptSource(string scriptLink, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.GalleryScriptParameter> parameters = default);
new Microsoft.Azure.Management.Compute.Models.ScriptSource : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.GalleryScriptParameter> -> Microsoft.Azure.Management.Compute.Models.ScriptSource
Public Sub New (scriptLink As String, Optional parameters As IList(Of GalleryScriptParameter) = Nothing)

Parameters

scriptLink
String

Required. The link of the source script, it must be a readable storage blob with SAS URI or publicly accessible URI or managed identity enabled.

parameters
IList<GalleryScriptParameter>

Optional. Any input parameters that needs to passed to the script and are accessed within the script for its execution.

Applies to