Udostępnij za pośrednictwem


GalleryApplicationCustomAction Constructors

Definition

Overloads

GalleryApplicationCustomAction()

Initializes a new instance of the GalleryApplicationCustomAction class.

GalleryApplicationCustomAction(String, String, String, IList<GalleryApplicationCustomActionParameter>)

Initializes a new instance of the GalleryApplicationCustomAction class.

GalleryApplicationCustomAction()

Initializes a new instance of the GalleryApplicationCustomAction class.

public GalleryApplicationCustomAction ();
Public Sub New ()

Applies to

GalleryApplicationCustomAction(String, String, String, IList<GalleryApplicationCustomActionParameter>)

Initializes a new instance of the GalleryApplicationCustomAction class.

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

Parameters

name
String

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

script
String

The script to run when executing this custom action.

description
String

Description to help the users understand what this custom action does.

parameters
IList<GalleryApplicationCustomActionParameter>

The parameters that this custom action uses

Applies to