GalleryApplicationCustomActionParameter Constructors

Definition

Overloads

GalleryApplicationCustomActionParameter()

Initializes a new instance of the GalleryApplicationCustomActionParameter class.

GalleryApplicationCustomActionParameter(String, Nullable<Boolean>, Nullable<GalleryApplicationCustomActionParameterType>, String, String)

Initializes a new instance of the GalleryApplicationCustomActionParameter class.

GalleryApplicationCustomActionParameter()

Initializes a new instance of the GalleryApplicationCustomActionParameter class.

public GalleryApplicationCustomActionParameter ();
Public Sub New ()

Applies to

GalleryApplicationCustomActionParameter(String, Nullable<Boolean>, Nullable<GalleryApplicationCustomActionParameterType>, String, String)

Initializes a new instance of the GalleryApplicationCustomActionParameter class.

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

Parameters

name
String

The name of the custom action. Must be unique within the Gallery Application Version.

required
Nullable<Boolean>

Indicates whether this parameter must be passed when running the custom action.

type
Nullable<GalleryApplicationCustomActionParameterType>

Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob. Possible values include: 'String', 'ConfigurationDataBlob', 'LogOutputBlob'

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