你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

GalleryApplicationCustomActionParameter 构造函数

定义

重载

GalleryApplicationCustomActionParameter()

初始化 GalleryApplicationCustomActionParameter 类的新实例。

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

初始化 GalleryApplicationCustomActionParameter 类的新实例。

GalleryApplicationCustomActionParameter()

初始化 GalleryApplicationCustomActionParameter 类的新实例。

public GalleryApplicationCustomActionParameter ();
Public Sub New ()

适用于

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

初始化 GalleryApplicationCustomActionParameter 类的新实例。

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)

参数

name
String

自定义操作的名称。 在库应用程序版本中必须是唯一的。

required
Nullable<Boolean>

指示在运行自定义操作时是否必须传递此参数。

type
Nullable<GalleryApplicationCustomActionParameterType>

指定自定义操作参数的类型。 可能的值为:String、ConfigurationDataBlob 或 LogOutputBlob。 可能的值包括:“String”、“ConfigurationDataBlob”、“LogOutputBlob”

defaultValue
String

参数的默认值。 仅适用于字符串类型

description
String

帮助用户了解此参数的含义的说明

适用于