GalleryApplicationCustomActionParameter Class

The definition of a parameter that can be passed to a custom action of a Gallery Application Version.

Constructor

GalleryApplicationCustomActionParameter(*args: Any, **kwargs: Any)

Variables

Name Description
name
str

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

required

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

type

Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob. Known values are: "String", "ConfigurationDataBlob", and "LogOutputBlob".

default_value
str

The default value of the parameter. Only applies to string types.

description
str

A description to help users understand what this parameter means.

Attributes

default_value

The default value of the parameter. Only applies to string types.

default_value: str | None

description

A description to help users understand what this parameter means.

description: str | None

name

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

name: str

required

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

required: bool | None

type

String, ConfigurationDataBlob or LogOutputBlob. Known values are: "String", "ConfigurationDataBlob", and "LogOutputBlob".

type: str | _models.GalleryApplicationCustomActionParameterType | None