GalleryScriptParameter Constructors

Definition

Overloads

Name Description
GalleryScriptParameter()

Initializes a new instance of the GalleryScriptParameter class.

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

Initializes a new instance of the GalleryScriptParameter class.

GalleryScriptParameter()

Initializes a new instance of the GalleryScriptParameter class.

public GalleryScriptParameter();
Public Sub New ()

Applies to

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

Initializes a new instance of the GalleryScriptParameter class.

public GalleryScriptParameter(string name, bool? required = default, string defaultValue = default, string description = default, string type = default, string minValue = default, string maxValue = default, System.Collections.Generic.IList<string> enumValues = default);
new Microsoft.Azure.Management.Compute.Models.GalleryScriptParameter : string * Nullable<bool> * string * string * string * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Compute.Models.GalleryScriptParameter
Public Sub New (name As String, Optional required As Nullable(Of Boolean) = Nothing, Optional defaultValue As String = Nothing, Optional description As String = Nothing, Optional type As String = Nothing, Optional minValue As String = Nothing, Optional maxValue As String = Nothing, Optional enumValues As IList(Of String) = Nothing)

Parameters

name
String

The name of the parameter.

required
Nullable<Boolean>

Indicates whether this parameter must be passed.

defaultValue
String

The default value of the parameter, only applies to string types.

description
String

A description to help users understand what this parameter means

type
String

Specifies the type of the Gallery Script parameter. Possible values are: String, Int, Double, Boolean, Enum Possible values include: 'String', 'Int', 'Double', 'Boolean', 'Enum'

minValue
String

The minimum value of parameter.

maxValue
String

The minimum value of parameter.

enumValues
IList<String>

A list of permissible values. Only applicable values are from 'enum' values defined in 'GalleryScriptParameter'.

Applies to