GenericGalleryParameter Constructors

Definition

Overloads

Name Description
GenericGalleryParameter()

Initializes a new instance of the GenericGalleryParameter class.

GenericGalleryParameter(String, Nullable<Boolean>, String, String)

Initializes a new instance of the GenericGalleryParameter class.

GenericGalleryParameter()

Initializes a new instance of the GenericGalleryParameter class.

public GenericGalleryParameter();
Public Sub New ()

Applies to

GenericGalleryParameter(String, Nullable<Boolean>, String, String)

Initializes a new instance of the GenericGalleryParameter class.

public GenericGalleryParameter(string name, bool? required = default, string defaultValue = default, string description = default);
new Microsoft.Azure.Management.Compute.Models.GenericGalleryParameter : string * Nullable<bool> * string * string -> Microsoft.Azure.Management.Compute.Models.GenericGalleryParameter
Public Sub New (name As String, Optional required As Nullable(Of Boolean) = Nothing, Optional defaultValue As String = Nothing, Optional description As 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

Applies to